41 lines
1.5 KiB
C#
41 lines
1.5 KiB
C#
using System;
|
|
using System.ComponentModel.DataAnnotations;
|
|
using System.ComponentModel.DataAnnotations.Schema;
|
|
|
|
namespace WX.CRM.Model.Entity
|
|
{
|
|
[Table("UPDEV.WX_SZZYORDERDEPOSIT")]
|
|
public class WX_SZZYORDERDEPOSIT
|
|
{
|
|
[Key]
|
|
public decimal ID { get; set; }
|
|
public string RESID { 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 ISUSE { get; set; }
|
|
public string COMPANYCODE { get; set; }
|
|
public decimal? ORDERID { 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? USEPRICE { get; set; }
|
|
public decimal? LASTPRICE { get; set; }
|
|
public decimal? FROZENPRICE { get; set; }
|
|
public string DEPTCODE { get; set; }
|
|
}
|
|
}
|