using System; using System.ComponentModel.DataAnnotations; using Model.Base; namespace Dto { /// /// 添加 /// public class SysDictAddDto { /// /// 字典类型 /// public string? dictType { get; set; } /// /// 描述 /// public string? description { get; set; } /// /// 备注信息 /// public string? remarks { get; set; } } }