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.
57 lines
1.5 KiB
C#
57 lines
1.5 KiB
C#
using System;
|
|
using SqlSugar;
|
|
using System.ComponentModel;
|
|
using Myshipping.Core.Entity;
|
|
namespace Myshipping.Core.Entity
|
|
{
|
|
/// <summary>
|
|
/// 客户参数类别表
|
|
/// </summary>
|
|
[SugarTable("djy_customer_param")]
|
|
[Description("客户参数类别表")]
|
|
public class DjyCustomerParam : 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 = "Type")]
|
|
[Description("业务大类")]
|
|
public string Type { get; set; }
|
|
|
|
/// <summary>
|
|
/// 备注
|
|
/// </summary>
|
|
[SugarColumn(ColumnName = "Remark")]
|
|
[Description("备注")]
|
|
public string Remark { get; set; }
|
|
|
|
/// <summary>
|
|
/// 排序
|
|
/// </summary>
|
|
[SugarColumn(ColumnName = "Sort")]
|
|
[Description("排序")]
|
|
public int Sort { get; set; }
|
|
|
|
|
|
/// <summary>
|
|
/// 是否多选
|
|
/// </summary>
|
|
[SugarColumn(ColumnName = "MultiSelect")]
|
|
[Description("是否多选")]
|
|
public bool MultiSelect { get; set; }
|
|
}
|
|
} |