using System; using System.Collections.Generic; using System.Linq; using SqlSugar; namespace SA.Entity.zxdcrm_audit_Models { /// /// /// [SugarTable("module_order")] public class module_order { /// /// /// [SugarColumn(ColumnName="id" ,IsPrimaryKey = true ,IsIdentity = true )] public int id { get; set; } /// /// /// [SugarColumn(ColumnName="username" )] public string username { get; set; } =""; /// /// /// 默认值: 0 /// [SugarColumn(ColumnName="moduleid" )] public string moduleid { get; set; } =""; /// /// /// 默认值: /// [SugarColumn(ColumnName="szzyorderid" )] public string szzyorderid { get; set; } =""; /// /// /// [SugarColumn(ColumnName="productcode2" )] public string productcode2 { get; set; } =""; /// /// /// [SugarColumn(ColumnName="starttime2" )] public DateTime? starttime2 { get; set; } /// /// /// [SugarColumn(ColumnName="endtime2" )] public DateTime? endtime2 { get; set; } /// /// /// [SugarColumn(ColumnName="usedays" )] public int? usedays { get; set; } /// /// 产品名称 /// [SugarColumn(ColumnName="subproductname2" )] public string subproductname2 { get; set; } =""; /// /// /// [SugarColumn(ColumnName="opendays2" )] public int? opendays2 { get; set; } /// /// 开通(天) /// [SugarColumn(ColumnName="totaldays" )] public int? totaldays { get; set; } /// /// /// [SugarColumn(ColumnName="price2" )] public decimal? price2 { get; set; } /// /// /// [SugarColumn(ColumnName="ctime2" )] public DateTime? ctime2 { get; set; } /// /// /// [SugarColumn(ColumnName="otime2" )] public DateTime? otime2 { get; set; } /// /// /// [SugarColumn(ColumnName="channel2" )] public int? channel2 { get; set; } /// /// 订单状态:新订单180、已开通220、已停用/已退款90、已过期80、已取消70,去掉"已支付200、暂缓开通210"状态 /// [SugarColumn(ColumnName="status2" )] public short? status2 { get; set; } /// /// 退款状态(0-默认、1-已退款),为兼容客服系统 /// [SugarColumn(ColumnName="isrefund" )] public byte? isrefund { get; set; } /// /// /// [SugarColumn(ColumnName="canceluser" )] public string canceluser { get; set; } =""; /// /// /// [SugarColumn(ColumnName="canceltime" )] public DateTime? canceltime { get; set; } /// /// /// [SugarColumn(ColumnName="returnPrice" )] public decimal? returnPrice { get; set; } } }