15 lines
293 B
C#
Raw Normal View History

2025-03-16 03:17:36 +08:00
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; }
}