108 lines
2.9 KiB
C#
108 lines
2.9 KiB
C#
using System;
|
||
using System.Linq;
|
||
using System.Text;
|
||
using SqlSugar;
|
||
|
||
namespace SA.Entity.zxdcrm_Models
|
||
{
|
||
///<summary>
|
||
///产品大类表
|
||
///</summary>
|
||
[SugarTable("wx_szzyproduct")]
|
||
public partial class WxSzzyproduct
|
||
{
|
||
public WxSzzyproduct(){
|
||
|
||
|
||
}
|
||
/// <summary>
|
||
/// Desc:大产品id
|
||
/// Default:
|
||
/// Nullable:False
|
||
/// </summary>
|
||
[SugarColumn(IsPrimaryKey=true,IsIdentity=true,ColumnName="productid")]
|
||
public int Productid {get;set;}
|
||
|
||
/// <summary>
|
||
/// Desc:大产品名称
|
||
/// Default:
|
||
/// Nullable:False
|
||
/// </summary>
|
||
[SugarColumn(ColumnName="productname")]
|
||
public string Productname {get;set;}
|
||
|
||
/// <summary>
|
||
/// Desc:产品描述
|
||
/// Default:
|
||
/// Nullable:True
|
||
/// </summary>
|
||
[SugarColumn(ColumnName="productdesc")]
|
||
public string? Productdesc {get;set;}
|
||
|
||
/// <summary>
|
||
/// Desc:产品简介
|
||
/// Default:
|
||
/// Nullable:True
|
||
/// </summary>
|
||
[SugarColumn(ColumnName="productbriefdesc")]
|
||
public string? Productbriefdesc {get;set;}
|
||
|
||
/// <summary>
|
||
/// Desc:是否有效
|
||
/// Default:
|
||
/// Nullable:True
|
||
/// </summary>
|
||
[SugarColumn(ColumnName="isvalid")]
|
||
public int? Isvalid {get;set;}
|
||
|
||
/// <summary>
|
||
/// Desc:产品向导
|
||
/// Default:
|
||
/// Nullable:True
|
||
/// </summary>
|
||
[SugarColumn(ColumnName="productguide")]
|
||
public string? Productguide {get;set;}
|
||
|
||
/// <summary>
|
||
/// Desc:产品代码
|
||
/// Default:
|
||
/// Nullable:True
|
||
/// </summary>
|
||
[SugarColumn(ColumnName="productcode")]
|
||
public string? Productcode {get;set;}
|
||
|
||
/// <summary>
|
||
/// Desc:是否是vip:1是,2不是,null不是
|
||
/// Default:
|
||
/// Nullable:True
|
||
/// </summary>
|
||
[SugarColumn(ColumnName="isvip")]
|
||
public int? Isvip {get;set;}
|
||
|
||
/// <summary>
|
||
/// Desc:
|
||
/// Default:
|
||
/// Nullable:True
|
||
/// </summary>
|
||
[SugarColumn(ColumnName="parentid")]
|
||
public int? Parentid {get;set;}
|
||
|
||
/// <summary>
|
||
/// Desc:
|
||
/// Default:
|
||
/// Nullable:True
|
||
/// </summary>
|
||
[SugarColumn(ColumnName="sort")]
|
||
public int? Sort {get;set;}
|
||
|
||
/// <summary>
|
||
/// Desc:
|
||
/// Default:
|
||
/// Nullable:True
|
||
/// </summary>
|
||
[SugarColumn(ColumnName="level")]
|
||
public int? Level {get;set;}
|
||
|
||
}
|
||
}
|