using System; using System.Linq; using System.Text; using SqlSugar; namespace SA.Entity.zxdcrm_Models { /// /// /// [SugarTable("wx_szzyorderrefund_514")] public partial class WxSzzyorderrefund514 { public WxSzzyorderrefund514(){ } /// /// Desc: /// Default: /// Nullable:False /// [SugarColumn(ColumnName="id")] public int Id {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;} /// /// Desc:渠道 /// Default: /// Nullable:True /// [SugarColumn(ColumnName="channel")] public int? Channel {get;set;} /// /// Desc: /// Default: /// Nullable:True /// [SugarColumn(ColumnName="isdelete")] public int? Isdelete {get;set;} /// /// Desc: /// Default: /// Nullable:True /// [SugarColumn(ColumnName="ismorepay")] public int? Ismorepay {get;set;} /// /// Desc: /// Default: /// Nullable:True /// [SugarColumn(ColumnName="creator")] public int? Creator {get;set;} /// /// Desc: /// Default: /// Nullable:True /// [SugarColumn(ColumnName="creatorname")] public string? Creatorname {get;set;} /// /// Desc:1:需要实际退款 0:退回可用余额(不需要实际退款) /// Default:1 /// Nullable:True /// [SugarColumn(ColumnName="isacturalrefund")] public int? Isacturalrefund {get;set;} /// /// Desc:1:老数据 0:新的退款数据 /// Default:0 /// Nullable:True /// [SugarColumn(ColumnName="isold")] public int? Isold {get;set;} } }