ComplianceServer/oldcode/Core.Model/OrderDetial.cs

47 lines
1.4 KiB
C#
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

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; }
}
}