ComplianceServer/oldcode/Model/Entity/WX_SZZYORDERREFUND.cs

38 lines
1.3 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; }
}
}