15 lines
293 B
C#
15 lines
293 B
C#
using SqlSugar;
|
|
|
|
namespace Seyounth.Hyosung.Data.Entities;
|
|
|
|
[SugarTable("system_dict", TableDescription = "字典表")]
|
|
public class DictEntity
|
|
{
|
|
public int Id { get; set; }
|
|
|
|
public string Key { get; set; }
|
|
|
|
public string Type { get; set; }
|
|
|
|
public string Value { get; set; }
|
|
} |