2025-03-16 03:17:36 +08:00

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; }
}