using System; using System.Collections.Generic; using System.Linq; using SqlSugar; namespace SA.Entity.zxdcrm_audit_Models { /// /// 重新计算表 /// [SugarTable("wx_szzyorder_redefine_time_update")] public class wx_szzyorder_redefine_time_update { /// /// 订单ID /// [SugarColumn(ColumnName="orderid" ,IsPrimaryKey = true )] public int orderid { get; set; } /// /// 软件用户名 /// [SugarColumn(ColumnName="softusername" )] public string softusername { get; set; } =""; /// /// 状态码 /// [SugarColumn(ColumnName="status" )] public int? status { get; set; } /// /// 状态名称 /// [SugarColumn(ColumnName="statusname" )] public string statusname { get; set; } =""; /// /// 开始时间 /// [SugarColumn(ColumnName="starttime" )] public DateTime? starttime { get; set; } /// /// 结束时间 /// [SugarColumn(ColumnName="endtime" )] public DateTime? endtime { get; set; } /// /// 订单类型: /// [SugarColumn(ColumnName="ordertype" )] public string ordertype { get; set; } =""; /// /// 订单小类 /// [SugarColumn(ColumnName="midproductid" )] public int? midproductid { get; set; } /// /// 渠道 /// [SugarColumn(ColumnName="channel" )] public int? channel { get; set; } /// /// /// [SugarColumn(ColumnName="arrivalpay" )] public decimal? arrivalpay { get; set; } /// /// /// [SugarColumn(ColumnName="opendays" )] public int? opendays { get; set; } /// /// /// [SugarColumn(ColumnName="giftdays" )] public int? giftdays { get; set; } /// /// /// [SugarColumn(ColumnName="xuhao" )] public int? xuhao { get; set; } /// /// /// [SugarColumn(ColumnName="otime" )] public DateTime? otime { get; set; } /// /// 是否是一天的订单 /// [SugarColumn(ColumnName="isoneday" )] public int? isoneday { get; set; } } }