using System;
|
using System.Collections.Generic;
|
using System.Linq;
|
using System.Text;
|
using System.Threading.Tasks;
|
using WIDESEA_Core.DB.Models;
|
using SqlSugar;
|
using WIDESEA_Core.Tenants;
|
|
namespace WIDESEA_Model.Models
|
{
|
[SugarTable("Sys_DictionaryList", "字典明细"), MultiTenant]
|
public class Sys_DictionaryList : BaseEntity
|
{
|
/// <summary>
|
/// 字典列表ID
|
/// </summary>
|
[SugarColumn(IsIdentity = true, IsPrimaryKey = true, ColumnDescription = "字典列表ID")]
|
public int DicListId { get; set; }
|
|
/// <summary>
|
/// 数据源Text
|
/// </summary>
|
[SugarColumn(IsNullable = true, Length = 50, ColumnDescription = "数据源Text")]
|
public string DicName { get; set; }
|
|
/// <summary>
|
/// 数据源Value
|
/// </summary>
|
[SugarColumn(IsNullable = true, Length = 50, ColumnDescription = "数据源Value")]
|
public string DicValue { get; set; }
|
|
/// <summary>
|
/// 数据源ID
|
/// </summary>
|
[SugarColumn(IsNullable = false, ColumnDescription = "数据源ID")]
|
public int DicId { get; set; }
|
|
/// <summary>
|
/// 是否可用
|
/// </summary>
|
[SugarColumn(IsNullable = true, ColumnDescription = "是否可用")]
|
public byte? Enable { get; set; }
|
|
/// <summary>
|
/// 排序号
|
/// </summary>
|
[SugarColumn(IsNullable = true, ColumnDescription = "排序号")]
|
public int? OrderNo { get; set; }
|
|
/// <summary>
|
/// 备注
|
/// </summary>
|
[SugarColumn(IsNullable = true, Length = 2000, ColumnDescription = "备注")]
|
public string Remark { get; set; }
|
}
|
}
|