using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace IStation.Application { /// /// 添加系统字典数据 /// public class AddSysDictDataInput_Version1_1 { /// /// 字典类型Id /// public long TypeID { get; set; } /// /// 名称 /// public string Name { get; set; } /// /// 编码 /// public string Code { get; set; } /// /// 排序 /// public int SortCode { get; set; } /// /// 备注 /// public string Description { get; set; } } }