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

14 lines
293 B
C#
Raw Normal View History

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