using System; namespace Myshipping.Core.Service { /// /// 租户参数类别表输出参数 /// public class DJYTenantParamOutput { /// /// 主键Id /// public long Id { get; set; } /// /// 类别代码 /// public string ParaCode { get; set; } /// /// 类别名称 /// public string ParaName { get; set; } /// /// 业务大类 /// public string Type { get; set; } /// /// 业务大类名称 /// public string TypeName { get; set; } /// /// 备注 /// public string Remark { get; set; } /// /// 排序 /// public int Sort { get; set; } } }