2024-07-01 16:04:40 +08:00

12 lines
262 B
C#

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