ComplianceServer/oldcode/WX.CRM.DataSynFactory/Templates/Client_SubProduct.cs

80 lines
2.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 WX.CRM.DataSynFactory.Templates
{
public class Client_SubProduct
{
public int SUBPRODUCTID { get; set; }
public int PRODUCTID { get; set; }
public string SUBPRODUCTNAME { get; set; }
public string SUBPRODUCTDESC { get; set; }
public decimal? PRICE { get; set; }
public decimal? RIGHTPERIOD { get; set; }
public string RIGHTUNIT { get; set; }
public decimal? ISVALID { get; set; }
public decimal? ORDEROPENTYPE { get; set; }
public string OPENDATE { get; set; }
public string ENDDATE { get; set; }
public int SORT { get; set; }
public string PRODUCTALIAS { get; set; }
public string PRODUCTCODE { get; set; }
/// <summary>
/// 0-单一产品、1-组合产品
/// </summary>
public decimal PRODUCTTYPE { get; set; }
public decimal PRODUCTLEVEL { get; set; }
public decimal PRODUCTINVESTTIME { get; set; }
public decimal PRODUCTINVESTTYPE { get; set; }
/// <summary>
/// 是否合规1:是0:否。主要在线订单同步到线下的时候,根据该状态值来判断是否写入合同数据
/// </summary>
public int IsCompliance { get; set; }
public int CanUpgrade { get; set; }
/// <summary>
/// 产品的分类,主要用来标注同类型的产品
/// </summary>
public int? Category { get; set; }
/// <summary>
/// 升级订单,是否要关闭被升级订单权限
/// </summary>
public int? CloseUpgradeRole { get; set; }
/// <summary>
/// 第三方订单分类
/// </summary>
public int? ThirdOrderCate { get; set; }
public int? MidProductId { get; set; }
public int? Mid { get; set; }
public string Mids { get; set; }
public int? IsGift { get; set; }
public int? IsOnlineBuy { get; set; }
public string BuyLink { get; set; }
public string CallBackLink { get; set; }
public string Att { get; set; }
public string Remark { get; set; }
public string ProductExt { get; set; }
public string DISCOUNT { get; set; }
public int ISDISCOUNT { get; set; }
public string CUSTOMPRICE { get; set; }
public string productTxt3 { get; set; }
//public int? Channel { get; set; }
//public string CompanyCode { get; set; }
}
}