using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace IStation.Application { /// /// 添加客户字典数据 /// public class AddCorpDictDataInput { /// /// 客户id /// public long CorpID { get; set; } /// /// 字典类型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; } } }