using System; using SqlSugar; using System.ComponentModel; using Myshipping.Core.Entity; namespace Myshipping.Core.Entity { /// /// 客户参数定义 /// [SugarTable("djy_customer_param_item")] [Description("客户参数定义")] public class DjyCustomerParamItem : PrimaryKeyEntity { /// /// 客户参数类别 /// public string ParaCode { get; set; } /// /// 客户参数代码 /// public string ItemCode { get; set; } /// /// 客户参数名称 /// public string ItemName { get; set; } /// /// 备注 /// public string Remark { get; set; } /// /// 排序 /// public int Sort { get; set; } } }