2023-05-04 18:20:18 +08:00
|
|
|
|
using System.Collections.Generic;
|
2021-12-12 21:03:28 +08:00
|
|
|
|
|
|
|
|
|
|
namespace ZR.Model.System.Dto
|
|
|
|
|
|
{
|
|
|
|
|
|
public class SysdictDataDto
|
|
|
|
|
|
{
|
|
|
|
|
|
public string DictType { get; set; }
|
|
|
|
|
|
public string ColumnName { get; set; }
|
|
|
|
|
|
public List<SysDictData> List { get; set; }
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|