ZrAdminNetCore/ZR.Model/System/Dto/SysdictDataDto.cs
2023-05-05 09:45:45 +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; }
}
}