2024-05-16 13:30:30 +08:00

12 lines
260 B
C#

using System.Collections.Generic;
namespace ZR.Model.System.Dto
{
public class SysdictDataDto
{
public string DictType { get; set; }
public string ColumnName { get; set; }
public List<SysDictData> List { get; set; }
}
}