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.
BookingHeChuan/Myshipping.Core/Entity/DJY/DjyCustomerParamItem.cs

36 lines
918 B
C#

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