SACenter/SA.Entity/zxdcrm_Models/WxSzzysubproductGift.cs

108 lines
2.8 KiB
C#

using System;
using System.Linq;
using System.Text;
using SqlSugar;
namespace SA.Entity.zxdcrm_Models
{
///<summary>
///
///</summary>
[SugarTable("wx_szzysubproduct_gift")]
public partial class WxSzzysubproductGift
{
public WxSzzysubproductGift(){
}
/// <summary>
/// Desc:
/// Default:
/// Nullable:False
/// </summary>
[SugarColumn(IsPrimaryKey=true,IsIdentity=true,ColumnName="id")]
public int Id {get;set;}
/// <summary>
/// Desc:
/// Default:
/// Nullable:True
/// </summary>
[SugarColumn(ColumnName="subproductid")]
public int? Subproductid {get;set;}
/// <summary>
/// Desc:
/// Default:
/// Nullable:True
/// </summary>
[SugarColumn(ColumnName="subproductname")]
public string? Subproductname {get;set;}
/// <summary>
/// Desc:
/// Default:
/// Nullable:True
/// </summary>
[SugarColumn(ColumnName="giftdays")]
public int? Giftdays {get;set;}
/// <summary>
/// Desc:
/// Default:
/// Nullable:True
/// </summary>
[SugarColumn(ColumnName="giftdaysname")]
public string? Giftdaysname {get;set;}
/// <summary>
/// Desc:
/// Default:
/// Nullable:True
/// </summary>
[SugarColumn(ColumnName="sort")]
public int? Sort {get;set;}
/// <summary>
/// Desc:
/// Default:
/// Nullable:True
/// </summary>
[SugarColumn(ColumnName="isdefault")]
public int? Isdefault {get;set;}
/// <summary>
/// Desc:
/// Default:
/// Nullable:True
/// </summary>
[SugarColumn(ColumnName="type")]
public int? Type {get;set;}
/// <summary>
/// Desc:
/// Default:
/// Nullable:True
/// </summary>
[SugarColumn(ColumnName="giftname")]
public string? Giftname {get;set;}
/// <summary>
/// Desc:
/// Default:
/// Nullable:True
/// </summary>
[SugarColumn(ColumnName="channel")]
public int? Channel {get;set;}
/// <summary>
/// Desc:主产品ID
/// Default:
/// Nullable:True
/// </summary>
[SugarColumn(ColumnName="activeid")]
public int? Activeid {get;set;}
}
}