108 lines
3.3 KiB
C#
108 lines
3.3 KiB
C#
using System;
|
||
using System.Collections.Generic;
|
||
using System.Linq;
|
||
using System.Text;
|
||
using System.Threading.Tasks;
|
||
|
||
namespace Hg.Core.Entity
|
||
{
|
||
[Table("WX_SZZYSUBPRODUCT")]
|
||
public partial class WX_SZZYSUBPRODUCT
|
||
{
|
||
[Key]
|
||
[DatabaseGenerated(DatabaseGeneratedOption.None)]
|
||
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 int? RIGHTPERIOD { get; set; }
|
||
|
||
public string? RIGHTUNIT { get; set; }
|
||
|
||
public int? ISVALID { get; set; }
|
||
|
||
public int? 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 int PRODUCTTYPE { get; set; }
|
||
|
||
public int PRODUCTLEVEL { get; set; }
|
||
public int PRODUCTINVESTTIME { get; set; }
|
||
public int 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 int IsDelete { get; set; }
|
||
public int? LableNameId { get; set; }
|
||
public int SettleType { get; set; }
|
||
//public int? Channel { get; set; }
|
||
//public string? CompanyCode { get; set; }
|
||
/// <summary>
|
||
/// 1:需要风控才能开通订单 2:不需要风控开通订单
|
||
/// </summary>
|
||
public int? NeedFK { get; set; }
|
||
/// <summary>
|
||
/// 1:自动开通 0:不自动开通
|
||
/// </summary>
|
||
public int? AutomaticOpen { get; set; }
|
||
/// <summary>
|
||
/// 是否交付
|
||
/// </summary>
|
||
public int? DeliverType { get; set; }
|
||
/// <summary>
|
||
/// 交付可选方式(1:可邮件,2不可邮件)
|
||
/// </summary>
|
||
public int? DeliverPermission { get; set; }
|
||
/// <summary>
|
||
/// 在线交付地址
|
||
/// </summary>
|
||
public string? DeliverUrl { get; set; }
|
||
}
|
||
}
|