ChatRoomForGpt/ARW-net/ARW.Model/System/SysDictData.cs
2023-04-04 18:15:13 +08:00

32 lines
948 B
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 Dapper.Contrib.Extensions;
using System;
using System.Collections.Generic;
using System.Text;
using SqlSugar;
namespace ARW.Model.System
{
/// <summary>
/// 字典数据表
/// </summary>
[Tenant("0")]
[SugarTable("sys_dict_data")]
public class SysDictData: SysBase
{
//[Key]
/// <summary>
/// 字典主键
/// </summary>
[SugarColumn(IsPrimaryKey = true, IsIdentity = true)]//主键并且自增 string不能设置自增
public long DictCode{ get; set; }
public int DictSort { get; set; }
public string DictLabel { get; set; }
public string DictValue { get; set; }
public string DictType { get; set; }
public string CssClass { get; set; } = string.Empty;
public string ListClass { get; set; } = string.Empty;
public string IsDefault { get; set; }
public string Status { get; set; }
}
}