using System;
using SqlSugar;
using System.ComponentModel;
using Myshipping.Core.Entity;
namespace Myshipping.Core.Entity
{
///
/// 客户参数类别表
///
[SugarTable("djy_customer_param")]
[Description("客户参数类别表")]
public class DjyCustomerParam : PrimaryKeyEntity
{
///
/// 类别代码
///
[SugarColumn(ColumnName = "ParaCode")]
[Description("类别代码")]
public string ParaCode { get; set; }
///
/// 类别名称
///
[SugarColumn(ColumnName = "ParaName")]
[Description("类别名称")]
public string ParaName { get; set; }
///
/// 业务大类
///
[SugarColumn(ColumnName = "Type")]
[Description("业务大类")]
public string Type { get; set; }
///
/// 备注
///
[SugarColumn(ColumnName = "Remark")]
[Description("备注")]
public string Remark { get; set; }
///
/// 排序
///
[SugarColumn(ColumnName = "Sort")]
[Description("排序")]
public int Sort { get; set; }
///
/// 是否多选
///
[SugarColumn(ColumnName = "MultiSelect")]
[Description("是否多选")]
public bool MultiSelect { get; set; }
}
}