Files
shgx_tz_mes_backend_sync/ZR.Model/System/Dto/SysdictDataDto.cs

12 lines
260 B
C#
Raw Normal View History

2023-05-04 18:20:18 +08:00
using System.Collections.Generic;
2021-12-12 21:03:28 +08:00
namespace ZR.Model.System.Dto
{
public class SysdictDataDto
{
public string DictType { get; set; }
public string ColumnName { get; set; }
public List<SysDictData> List { get; set; }
}
}