Zxd.Core/code/Zxd.Entity/Zxd/Order/WX_SZZYORDERDEPOSIT.cs

43 lines
1.6 KiB
C#

namespace Zxd.Entity.Zxd.Order
{
[Table("WX_SZZYORDERDEPOSIT")]
public class WX_SZZYORDERDEPOSIT
{
[Key]
public int id { get; set; }
public string? resid { get; set; }
public int paytype { get; set; }
public string? paytypename { get; set; }
public DateTime? paydate { get; set; }
public decimal? payprice { get; set; }
public string? payname { get; set; }
public string? remark { get; set; }
public int auditstatus { get; set; }
public int? auditor { get; set; }
public string? auditorname { get; set; }
public DateTime? audittime { get; set; }
public DateTime ctime { get; set; }
public string? payno { get; set; }
public int isuse { get; set; }
public string? companycode { get; set; }
public int? orderid { get; set; }
public int? channel { get; set; }
public string? tradeno { get; set; }
public int? isdelete { get; set; }
public int? creator { get; set; }
public string? creatorname { get; set; }
public string? rejectremark { get; set; }
public string? checkreslut { get; set; }
public DateTime? checkpaytime { get; set; }
public decimal? lastprice { get; set; }
public decimal? useprice { get; set; }
public decimal? frozenprice { get; set; }
public int? isbu { get; set; }
public DateTime? butime { get; set; }
public string? deptcode { get; set; }
public int? deptid { get; set; }
public string? deptName { get; set; }
public int? groupid { get; set; }
}
}