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 = "ItemCode")] [Description("参数值")] public string ItemCode { get; set; } /// /// 备注 /// [SugarColumn(ColumnName = "Remark")] [Description("备注")] public string Remark { get; set; } /// /// 排序 /// [SugarColumn(ColumnName = "Sort")] [Description("排序")] public float Sort { get; set; } } }