23 lines
629 B
C#
23 lines
629 B
C#
using System;
|
|
using System.ComponentModel.DataAnnotations;
|
|
|
|
namespace CRM.Core.Model.Entity
|
|
{
|
|
public class Wx_SzzyOrderRefund_Detail
|
|
{
|
|
[Key]
|
|
public int id { get; set; }
|
|
public string resid { get; set; }
|
|
public int? orderid { get; set; }
|
|
public long refundid { get; set; }
|
|
public int depositid { get; set; }
|
|
public int payid { get; set; }
|
|
public decimal price { get; set; }
|
|
public DateTime? ctime { get; set; }
|
|
public int isdelete { get; set; }
|
|
public int status { get; set; }
|
|
public DateTime? utime { get; set; }
|
|
|
|
}
|
|
}
|