shgx_tz_mom/ZR.Model/System/Dto/SysdictDataDto.cs

10 lines
225 B
C#
Raw Normal View History

2024-06-07 11:04:26 +08:00
namespace ZR.Model.System.Dto
2021-12-12 21:03:28 +08:00
{
public class SysdictDataDto
{
public string DictType { get; set; }
public string ColumnName { get; set; }
public List<SysDictData> List { get; set; }
}
}