TG.WXCRM.V4/Model/Entity/WX_SZZYSUBPRODUCT.cs

87 lines
2.7 KiB
C#

namespace WX.CRM.Model.Entity
{
using System.ComponentModel.DataAnnotations;
using System.ComponentModel.DataAnnotations.Schema;
[Table("UPDEV.WX_SZZYSUBPRODUCT")]
public partial class WX_SZZYSUBPRODUCT
{
[Key]
public decimal SUBPRODUCTID { get; set; }
public decimal PRODUCTID { get; set; }
[StringLength(50)]
public string SUBPRODUCTNAME { get; set; }
[StringLength(4000)]
public string SUBPRODUCTDESC { get; set; }
public decimal? PRICE { get; set; }
public decimal? RIGHTPERIOD { get; set; }
[StringLength(50)]
public string RIGHTUNIT { get; set; }
public decimal? ISVALID { get; set; }
public decimal? ORDEROPENTYPE { get; set; }
[StringLength(20)]
public string OPENDATE { get; set; }
[StringLength(20)]
public string ENDDATE { get; set; }
public int SORT { get; set; }
[StringLength(50)]
public string PRODUCTALIAS { get; set; }
[StringLength(50)]
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; }
public decimal MID { get; set; }
public int ISGIFT { get; set; }
public decimal? ISONLINEBUY { get; set; }
public string BUYLINK { get; set; }
public decimal CANUPGRADE { get; set; }
public decimal? CATEGORY { get; set; }
public string CALLBACKLINK { get; set; }
public int MIDPRODUCTID { get; set; }
public decimal ISCOMPLIANCE { get; set; }
public string MIDS { get; set; }
public decimal CLOSEUPGRADEROLE { get; set; }
public decimal THIRDORDERCATE { get; set; }
public string ATT { get; set; }
public string REMARK { get; set; }
public string PRODUCTEXT { get; set; }
public string DISCOUNT { get; set; }
public string CUSTOMPRICE { get; set; }
public decimal? ISDISCOUNT { get; set; }
//public decimal CHANNEL { get; set; }
//public string COMPANYCODE { get; set; }
public decimal? ISSHOW { get; set; }
public string HID_DISCOUNT { get; set; }
public string HID_CUSTOMPRICE { get; set; }
public int? DELIVER_TYPE { get; set; }
public int? DELIVER_PERMISSION { get; set; }
public string DELIVER_URL { get; set; }
public int? ISDISCOUNTAREA { get; set; }
public string DISCOUNTAREA { get; set; }
public string MODULES { get; set; }
}
}