using SqlSugar; using System.ComponentModel; namespace Myshipping.Core.Service { public class DjyCustomerParamValueQueryInput : PageInputBase { /// /// 参数类别 /// public string ParaCode { get; set; } /// /// 客户id /// public long? CustomerId { get; set; } } public class DjyCustomerParamValueDto { /// /// id /// public long Id { get; set; } /// /// 参数类别 /// public string ParaCode { get; set; } /// /// 类别名称 /// public string ParaName { get; set; } /// /// 业务大类 /// public string ParamType { get; set; } /// /// 客户id /// public long? CustomerId { get; set; } /// /// 客户名称 /// public string CustomerName { get; set; } /// /// 选项代码 /// public string ItemCode { get; set; } /// /// 选项名称 /// public string ItemName { get; set; } /// /// 备注 /// public string Remark { get; set; } /// /// 排序 /// public int Sort { get; set; } } public class DjyCustomerParamValueSaveInput : DjyCustomerParamValueDto { } /// /// 列表输出 /// public class DjyCustomerParamValueListOutput : DjyCustomerParamValueDto { /// /// 租户名称 /// public string CustomerName { get; set; } /// /// 参数值名称 /// public string ItemCodeName { get; set; } } }