using System;
using System.Collections.Generic;
using System.Linq;
using SqlSugar;
namespace SA.Entity.zxdcrm_audit_Models
{
///
/// 产品大类表
///
[SugarTable("wx_szzyproduct")]
public class wx_szzyproduct
{
///
/// 大产品id
///
[SugarColumn(ColumnName="productid" ,IsPrimaryKey = true )]
public int productid { get; set; }
///
/// 大产品名称
///
[SugarColumn(ColumnName="productname" )]
public string productname { get; set; } ="";
///
/// 产品描述
///
[SugarColumn(ColumnName="productdesc" )]
public string productdesc { get; set; } ="";
///
/// 产品简介
///
[SugarColumn(ColumnName="productbriefdesc" )]
public string productbriefdesc { get; set; } ="";
///
/// 是否有效
///
[SugarColumn(ColumnName="isvalid" )]
public int? isvalid { get; set; }
///
/// 产品向导
///
[SugarColumn(ColumnName="productguide" )]
public string productguide { get; set; } ="";
///
/// 产品代码
///
[SugarColumn(ColumnName="productcode" )]
public string productcode { get; set; } ="";
///
/// 是否是vip:1是,2不是,null不是
///
[SugarColumn(ColumnName="isvip" )]
public int? isvip { get; set; }
///
///
///
[SugarColumn(ColumnName="parentid" )]
public int? parentid { get; set; }
///
///
///
[SugarColumn(ColumnName="sort" )]
public int? sort { get; set; }
///
///
///
[SugarColumn(ColumnName="level" )]
public int? level { get; set; }
}
}