不做码农 be515339fe ♻️代码重构
2023-09-02 17:55:34 +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; }
}
}