using System; using SqlSugar; using System.ComponentModel; using Myshipping.Core.Entity; namespace Myshipping.Core.Entity { /// /// 客户参数表 /// [SugarTable("djy_customer_param_value")] [Description("客户参数表")] public class DjyCustomerParamValue : PrimaryKeyEntity { /// /// 参数类别 /// [SugarColumn(ColumnName = "ParaCode")] [Description("参数类别")] public string ParaCode { get; set; } /// /// 类别名称 /// [SugarColumn(ColumnName = "ParaName")] [Description("类别名称")] public string ParaName { get; set; } /// /// 业务大类 /// [SugarColumn(ColumnName = "ParamType")] [Description("业务大类")] public string ParamType { get; set; } /// /// 客户id /// [SugarColumn(ColumnName = "CustomerId")] [Description("客户id")] public long? CustomerId { get; set; } /// /// 客户名称 /// [SugarColumn(ColumnName = "CustomerName")] [Description("客户名称")] public string CustomerName { get; set; } /// /// 选项代码 /// [SugarColumn(ColumnName = "ItemCode")] [Description("选项代码")] public string ItemCode { get; set; } /// /// 选项名称 /// [SugarColumn(ColumnName = "ItemName")] [Description("选项名称")] public string ItemName { get; set; } /// /// 备注 /// [SugarColumn(ColumnName = "Remark")] [Description("备注")] public string Remark { get; set; } /// /// 排序 /// [SugarColumn(ColumnName = "Sort")] [Description("排序")] public int Sort { get; set; } } }