using System; using System.Linq; using System.Text; using SqlSugar; namespace SA.Entity.zxdcrm_Models { /// ///退款记录表 /// [SugarTable("mon_orderrefund")] public partial class MonOrderrefund { public MonOrderrefund(){ } /// /// Desc: /// Default: /// Nullable:False /// [SugarColumn(IsPrimaryKey=true,ColumnName="id")] public int Id {get;set;} /// /// Desc:月结年月 /// Default: /// Nullable:False /// [SugarColumn(ColumnName="month")] public DateTime Month {get;set;} /// /// Desc: /// Default: /// Nullable:False /// [SugarColumn(ColumnName="orderid")] public int Orderid {get;set;} /// /// Desc:退款金额 /// Default: /// Nullable:False /// [SugarColumn(ColumnName="refundprice")] public decimal Refundprice {get;set;} /// /// Desc:退款账号 /// Default: /// Nullable:True /// [SugarColumn(ColumnName="account")] public string? Account {get;set;} /// /// Desc:退款人姓名 /// Default: /// Nullable:True /// [SugarColumn(ColumnName="username")] public string? Username {get;set;} /// /// Desc:退款类型 /// Default: /// Nullable:False /// [SugarColumn(ColumnName="refundtype")] public int Refundtype {get;set;} /// /// Desc:退款类型名称 /// Default: /// Nullable:False /// [SugarColumn(ColumnName="refundtypename")] public string Refundtypename {get;set;} /// /// Desc:退款时间 /// Default: /// Nullable:True /// [SugarColumn(ColumnName="refunddate")] public DateTime? Refunddate {get;set;} /// /// Desc:备注 /// Default: /// Nullable:True /// [SugarColumn(ColumnName="remark")] public string? Remark {get;set;} /// /// Desc:附件 /// Default: /// Nullable:True /// [SugarColumn(ColumnName="att")] public string? Att {get;set;} /// /// Desc:审核状态 1:通过,0:未通过 /// Default:0 /// Nullable:False /// [SugarColumn(ColumnName="auditstatus")] public int Auditstatus {get;set;} /// /// Desc:审核人 /// Default: /// Nullable:True /// [SugarColumn(ColumnName="auditor")] public int? Auditor {get;set;} /// /// Desc:审核人姓名 /// Default: /// Nullable:True /// [SugarColumn(ColumnName="auditorname")] public string? Auditorname {get;set;} /// /// Desc:审核时间 /// Default: /// Nullable:True /// [SugarColumn(ColumnName="audittime")] public DateTime? Audittime {get;set;} /// /// Desc: /// Default: /// Nullable:False /// [SugarColumn(ColumnName="ctime")] public DateTime Ctime {get;set;} /// /// Desc:财务退款之后上传凭证 /// Default: /// Nullable:True /// [SugarColumn(ColumnName="att2")] public string? Att2 {get;set;} /// /// Desc:营业部编码 /// Default: /// Nullable:True /// [SugarColumn(ColumnName="companycode")] public string? Companycode {get;set;} } }