using SqlSugar;
using System.ComponentModel;
namespace Myshipping.Core.Service
{
public class DjyCustomerParamDto
{
///
/// id
///
public long Id { get; set; }
///
/// 类别代码
///
[Description("类别代码")]
public string ParaCode { get; set; }
///
/// 类别名称
///
[Description("类别名称")]
public string ParaName { get; set; }
///
/// 业务大类
///
[Description("业务大类")]
public string Type { get; set; }
///
/// 备注
///
[Description("备注")]
public string Remark { get; set; }
///
/// 排序
///
[Description("排序")]
public int Sort { get; set; }
}
///
/// 列表输出
///
public class DjyCustomerParamListOutput : DjyCustomerParamDto
{
}
public class DjyCustomerParamItemDto
{
///
/// ID
///
public virtual long Id { get; set; }
///
/// 客户参数类别
///
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; }
}
}