TG.WXCRM.V4/Model/Entity/WX_SZZYORDERREFUND.cs

45 lines
1.7 KiB
C#

using System;
using System.ComponentModel.DataAnnotations;
using System.ComponentModel.DataAnnotations.Schema;
namespace WX.CRM.Model.Entity
{
//[Table("wx_szzyorderrefund")]
[Table("UPDEV.WX_SZZYORDERREFUND")]
public class WX_SZZYORDERREFUND
{
[Key]
public decimal ID { get; set; }
public decimal? SID { get; set; }
public decimal ORDERID { get; set; }
public decimal REFUNDPRICE { get; set; }
public string ACCOUNT { get; set; }
public string USERNAME { get; set; }
public decimal REFUNDTYPE { get; set; }
public string REFUNDTYPENAME { get; set; }
public DateTime? REFUNDDATE { get; set; }
public string REMARK { get; set; }
public string ATT { 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 ATT2 { get; set; }
public string COMPANYCODE { get; set; }
public decimal? ISDELETE { get; set; }
public decimal? CREATOR { get; set; }
public string CREATORNAME { get; set; }
public decimal? ISACTURALREFUND { get; set; }
public string DEPTCODE { get; set; }
public decimal? APPLYTYPE { get; set; }
public int? DEPTID { get; set; }
public string DEPTNAME { get; set; }
public int? GROUPID { get; set; }
public string REFUNDREASONTYPE { get; set; }
public string RETRACE_REFUND_FILE { get; set; } = "";
public DateTime? CUSTOMER_CANCEL_TIME { get; set; }
}
}