12 lines
260 B
C#
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; }
|
|||
|
|
}
|
|||
|
|
}
|