SACenter/SA.Entity/zxdcrm_audit_Models/WxSzzyproduct.cs

70 lines
2.1 KiB
C#
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

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