using System; using System.Linq; using System.Text; using SqlSugar; namespace SA.Entity.zxdcrm_Models { /// /// /// [SugarTable("wx_orderrpt_detial")] public partial class WxOrderrptDetial { public WxOrderrptDetial(){ } /// /// Desc:订单ID /// Default: /// Nullable:False /// [SugarColumn(ColumnName="orderid")] public string Orderid {get;set;} /// /// Desc:当前年份 /// Default: /// Nullable:True /// [SugarColumn(ColumnName="oyear")] public string? Oyear {get;set;} /// /// Desc:月份 /// Default: /// Nullable:True /// [SugarColumn(ColumnName="omonth")] public string? Omonth {get;set;} /// /// Desc:当月天数 /// Default: /// Nullable:True /// [SugarColumn(ColumnName="odays")] public int? Odays {get;set;} /// /// Desc:平均值 /// Default: /// Nullable:True /// [SugarColumn(ColumnName="pjz")] public decimal? Pjz {get;set;} /// /// Desc:价值和 /// Default: /// Nullable:True /// [SugarColumn(ColumnName="jzcount")] public decimal? Jzcount {get;set;} /// /// Desc:渠道号 /// Default: /// Nullable:True /// [SugarColumn(ColumnName="channel")] public string? Channel {get;set;} /// /// Desc:开通订单月份 /// Default: /// Nullable:True /// [SugarColumn(ColumnName="opmonth")] public string? Opmonth {get;set;} /// /// Desc:开通订单年份 /// Default: /// Nullable:True /// [SugarColumn(ColumnName="opyear")] public string? Opyear {get;set;} /// /// Desc:0:40%分的 1:本月的 /// Default:0 /// Nullable:True /// [SugarColumn(ColumnName="type")] public int? Type {get;set;} /// /// Desc:大类产品ID /// Default: /// Nullable:True /// [SugarColumn(ColumnName="productid")] public int? Productid {get;set;} /// /// Desc: /// Default: /// Nullable:True /// [SugarColumn(ColumnName="otime")] public string? Otime {get;set;} /// /// Desc:批次 /// Default: /// Nullable:True /// [SugarColumn(ColumnName="pici")] public string? Pici {get;set;} /// /// Desc:大类产品类型 例如:ql /// Default: /// Nullable:True /// [SugarColumn(ColumnName="ordertype")] public string? Ordertype {get;set;} /// /// Desc:产品分类 例如:ql_90_days /// Default: /// Nullable:True /// [SugarColumn(ColumnName="smallType")] public string? SmallType {get;set;} /// /// Desc:产品分类名称 例如:擒龙季度版 /// Default: /// Nullable:False /// [SugarColumn(ColumnName="smallTypeName")] public string SmallTypeName {get;set;} } }