You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
84 lines
2.3 KiB
C#
84 lines
2.3 KiB
C#
using System;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using SqlSugar;
|
|
|
|
namespace SlnMesnac.Model.domain
|
|
{
|
|
///<summary>
|
|
///产品描述
|
|
///</summary>
|
|
[SugarTable("base_product_describe"), TenantAttribute("iot")]
|
|
public partial class base_product_describe
|
|
{
|
|
public base_product_describe(){
|
|
|
|
|
|
}
|
|
/// <summary>
|
|
/// Desc:标识
|
|
/// Default:
|
|
/// Nullable:False
|
|
/// </summary>
|
|
[SugarColumn(IsPrimaryKey=true,IsIdentity=true,ColumnName="objId")]
|
|
public int objid {get;set;}
|
|
|
|
/// <summary>
|
|
/// Desc:产品标识
|
|
/// Default:
|
|
/// Nullable:True
|
|
/// </summary>
|
|
[SugarColumn(ColumnName="product_code")]
|
|
public string productCode {get;set;}
|
|
|
|
/// <summary>
|
|
/// Desc:描述标题
|
|
/// Default:
|
|
/// Nullable:True
|
|
/// </summary>
|
|
[SugarColumn(ColumnName="describe_title")]
|
|
public string describeTitle {get;set;}
|
|
|
|
/// <summary>
|
|
/// Desc:描述内容
|
|
/// Default:
|
|
/// Nullable:True
|
|
/// </summary>
|
|
[SugarColumn(ColumnName="describe_content")]
|
|
public string describeContent {get;set;}
|
|
|
|
/// <summary>
|
|
/// Desc:创建人
|
|
/// Default:
|
|
/// Nullable:True
|
|
/// </summary>
|
|
[SugarColumn(ColumnName="created_by")]
|
|
public string createdBy {get;set;}
|
|
|
|
/// <summary>
|
|
/// Desc:创建时间
|
|
/// Default:
|
|
/// Nullable:True
|
|
/// </summary>
|
|
[SugarColumn(ColumnName="created_time")]
|
|
public DateTime? createdTime {get;set;}
|
|
|
|
/// <summary>
|
|
/// Desc:更新人
|
|
/// Default:
|
|
/// Nullable:True
|
|
/// </summary>
|
|
[SugarColumn(ColumnName="updated_by")]
|
|
public string updatedBy {get;set;}
|
|
|
|
/// <summary>
|
|
/// Desc:更新时间
|
|
/// Default:
|
|
/// Nullable:True
|
|
/// </summary>
|
|
[SugarColumn(ColumnName="updated_time")]
|
|
public DateTime? updatedTime {get;set;}
|
|
|
|
}
|
|
}
|