first commit

This commit is contained in:
qianhao.xu
2024-09-23 09:14:22 +08:00
commit fdbe20be5a
407 changed files with 35117 additions and 0 deletions

View File

@@ -0,0 +1,27 @@
namespace DOAN.Model.System.Dto
{
public class SysdictDataParamDto
{
public string DictType { get; set; }
//public string ColumnName { get; set; }
public List<SysDictDataDto> List { get; set; }
}
public class SysDictDataDto
{
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;
/// <summary>
/// 多语言翻译key值
/// </summary>
public string LangKey { get; set; } = string.Empty;
#region uniapp返回字段
public string Label { get; set; }
public string Value { get; set; }
#endregion
}
}