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 float Sort { get; set; }
}
///
/// 列表输出
///
public class DjyCustomerParamListOutput : DjyCustomerParamDto
{
}
}