10 lines
230 B
C#
10 lines
230 B
C#
namespace ZR.ServiceCore.Model.Dto
|
|
{
|
|
public class SysDictDataDto
|
|
{
|
|
public string DictType { get; set; }
|
|
public string ColumnName { get; set; }
|
|
public List<SysDictData> List { get; set; }
|
|
}
|
|
}
|