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.
66 lines
1.3 KiB
C#
66 lines
1.3 KiB
C#
using SqlSugar;
|
|
|
|
namespace DS.WMS.Core.System.Entity;
|
|
|
|
[SugarTable("tSysEnumValue")]
|
|
public class SysEnum
|
|
{
|
|
/// <summary>
|
|
/// Desc:
|
|
/// Default:0
|
|
/// Nullable:False
|
|
/// </summary>
|
|
[SugarColumn(IsPrimaryKey=true)]
|
|
public decimal LangID {get;set;}
|
|
|
|
/// <summary>
|
|
/// Desc:
|
|
/// Default:0
|
|
/// Nullable:False
|
|
/// </summary>
|
|
[SugarColumn(IsPrimaryKey=true)]
|
|
public decimal EnumTypeID {get;set;}
|
|
|
|
/// <summary>
|
|
/// Desc:
|
|
/// Default:
|
|
/// Nullable:False
|
|
/// </summary>
|
|
[SugarColumn(IsPrimaryKey=true)]
|
|
public string EnumValueID {get;set;}
|
|
|
|
/// <summary>
|
|
/// Desc:
|
|
/// Default:1.00
|
|
/// Nullable:False
|
|
/// </summary>
|
|
public string EnumValueName {get;set;}
|
|
|
|
/// <summary>
|
|
/// Desc:
|
|
/// Default:0
|
|
/// Nullable:False
|
|
/// </summary>
|
|
public string IsDefault {get;set;}
|
|
|
|
/// <summary>
|
|
/// Desc:
|
|
/// Default:0
|
|
/// Nullable:False
|
|
/// </summary>
|
|
public decimal DispIndex {get;set;}
|
|
|
|
/// <summary>
|
|
/// Desc:
|
|
/// Default:1.00
|
|
/// Nullable:True
|
|
/// </summary>
|
|
public string VerNo {get;set;}
|
|
|
|
/// <summary>
|
|
/// Desc:
|
|
/// Default:
|
|
/// Nullable:True
|
|
/// </summary>
|
|
public string EnumValueName_2 {get;set;}
|
|
} |