47 lines
1.4 KiB
C#
47 lines
1.4 KiB
C#
namespace CRM.Core.Model
|
||
{
|
||
public class OrderDetial
|
||
{
|
||
|
||
public decimal orderid { get; set; }
|
||
public string oyear { get; set; }
|
||
public string omonth { get; set; }
|
||
public int odays { get; set; }
|
||
public decimal pjz { get; set; }
|
||
public decimal jzcount { get; set; }
|
||
public string channel { get; set; }
|
||
public string opmonth { get; set; }
|
||
public string opyear { get; set; }
|
||
}
|
||
public class OrderDetial2
|
||
{
|
||
|
||
public string orderid { get; set; }
|
||
public string oyear { get; set; }
|
||
public string omonth { get; set; }
|
||
public int odays { get; set; }
|
||
public decimal pjz { get; set; }
|
||
public decimal jzcount { get; set; }
|
||
public string channel { get; set; }
|
||
public string opmonth { get; set; }
|
||
public string opyear { get; set; }
|
||
public string otime { get; set; }
|
||
public string pici { get; set; }
|
||
public int type { get; set; }
|
||
/// <summary>
|
||
/// 大类产品类型 例如:ql
|
||
/// </summary>
|
||
public string ordertype { get; set; }
|
||
|
||
/// <summary>
|
||
/// 喜欢产品分类 例如:ql_90_days
|
||
/// </summary>
|
||
public string smallType { get; set; }
|
||
/// <summary>
|
||
/// 喜欢产品分类名称 例如:擒龙季度版
|
||
/// </summary>
|
||
public string smallTypeName { get; set; }
|
||
|
||
}
|
||
}
|