38 lines
1.4 KiB
C#
38 lines
1.4 KiB
C#
using System;
|
|
using System.ComponentModel.DataAnnotations;
|
|
using System.ComponentModel.DataAnnotations.Schema;
|
|
|
|
namespace WX.CRM.Model.Entity
|
|
{
|
|
[Table("UPDEV.WX_SZZYORDERPAY")]
|
|
public class WX_SZZYORDERPAY
|
|
{
|
|
[Key]
|
|
public decimal ID { get; set; }
|
|
public decimal ORDERID { get; set; }
|
|
public decimal NEEDPAY { get; set; }
|
|
public decimal 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 decimal AUDITSTATUS { get; set; }
|
|
public decimal? AUDITOR { get; set; }
|
|
public string AUDITORNAME { get; set; }
|
|
public DateTime? AUDITTIME { get; set; }
|
|
public DateTime CTIME { get; set; }
|
|
public string PAYNO { get; set; }
|
|
public decimal? SID { get; set; }
|
|
public string TRADENO { get; set; }
|
|
public decimal? ISDELETE { get; set; }
|
|
public string QRCODE { get; set; }
|
|
public DateTime? QRCODETIME { get; set; }
|
|
public decimal? CREATOR { get; set; }
|
|
public string CREATORNAME { get; set; }
|
|
public string REJECTREMARK { get; set; }
|
|
public decimal? DEPOSITID { get; set; }
|
|
public string DEPTCODE { get; set; }
|
|
}
|
|
}
|