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/Service/DjyCustomerParam/Dto/DjyTenantParamDto.cs

54 lines
1.1 KiB
C#

using SqlSugar;
using System.ComponentModel;
namespace Myshipping.Core.Service
{
public class DjyCustomerParamDto
{
/// <summary>
/// id
/// </summary>
public long Id { get; set; }
/// <summary>
/// 类别代码
/// </summary>
[Description("类别代码")]
public string ParaCode { get; set; }
/// <summary>
/// 类别名称
/// </summary>
[Description("类别名称")]
public string ParaName { get; set; }
/// <summary>
/// 业务大类
/// </summary>
[Description("业务大类")]
public string Type { get; set; }
/// <summary>
/// 备注
/// </summary>
[Description("备注")]
public string Remark { get; set; }
/// <summary>
/// 排序
/// </summary>
[Description("排序")]
public float Sort { get; set; }
}
/// <summary>
/// 列表输出
/// </summary>
public class DjyCustomerParamListOutput : DjyCustomerParamDto
{
}
}