You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
77 lines
2.1 KiB
C#
77 lines
2.1 KiB
C#
using System;
|
|
using SqlSugar;
|
|
using System.ComponentModel;
|
|
using Myshipping.Core.Entity;
|
|
namespace Myshipping.Core.Entity
|
|
{
|
|
/// <summary>
|
|
/// 客户参数表
|
|
/// </summary>
|
|
[SugarTable("djy_customer_param_value")]
|
|
[Description("客户参数表")]
|
|
public class DjyCustomerParamValue : PrimaryKeyEntity
|
|
{
|
|
/// <summary>
|
|
/// 参数类别
|
|
/// </summary>
|
|
[SugarColumn(ColumnName = "ParaCode")]
|
|
[Description("参数类别")]
|
|
public string ParaCode { get; set; }
|
|
|
|
/// <summary>
|
|
/// 类别名称
|
|
/// </summary>
|
|
[SugarColumn(ColumnName = "ParaName")]
|
|
[Description("类别名称")]
|
|
public string ParaName { get; set; }
|
|
|
|
/// <summary>
|
|
/// 业务大类
|
|
/// </summary>
|
|
[SugarColumn(ColumnName = "ParamType")]
|
|
[Description("业务大类")]
|
|
public string ParamType { get; set; }
|
|
|
|
/// <summary>
|
|
/// 客户id
|
|
/// </summary>
|
|
[SugarColumn(ColumnName = "CustomerId")]
|
|
[Description("客户id")]
|
|
public long? CustomerId { get; set; }
|
|
|
|
/// <summary>
|
|
/// 客户名称
|
|
/// </summary>
|
|
[SugarColumn(ColumnName = "CustomerName")]
|
|
[Description("客户名称")]
|
|
public string CustomerName { get; set; }
|
|
|
|
/// <summary>
|
|
/// 选项代码
|
|
/// </summary>
|
|
[SugarColumn(ColumnName = "ItemCode")]
|
|
[Description("选项代码")]
|
|
public string ItemCode { get; set; }
|
|
|
|
/// <summary>
|
|
/// 选项名称
|
|
/// </summary>
|
|
[SugarColumn(ColumnName = "ItemName")]
|
|
[Description("选项名称")]
|
|
public string ItemName { get; set; }
|
|
|
|
/// <summary>
|
|
/// 备注
|
|
/// </summary>
|
|
[SugarColumn(ColumnName = "Remark")]
|
|
[Description("备注")]
|
|
public string Remark { get; set; }
|
|
|
|
/// <summary>
|
|
/// 排序
|
|
/// </summary>
|
|
[SugarColumn(ColumnName = "Sort")]
|
|
[Description("排序")]
|
|
public int Sort { get; set; }
|
|
}
|
|
} |