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.
92 lines
2.0 KiB
C#
92 lines
2.0 KiB
C#
using SqlSugar;
|
|
using System.ComponentModel;
|
|
|
|
namespace Myshipping.Core.Service
|
|
{
|
|
public class DjyCustomerParamValueQueryInput : PageInputBase
|
|
{
|
|
/// <summary>
|
|
/// 参数类别
|
|
/// </summary>
|
|
public string ParaCode { get; set; }
|
|
/// <summary>
|
|
/// 客户id
|
|
/// </summary>
|
|
public long? CustomerId { get; set; }
|
|
}
|
|
|
|
public class DjyCustomerParamValueDto
|
|
{
|
|
/// <summary>
|
|
/// id
|
|
/// </summary>
|
|
public long Id { get; set; }
|
|
|
|
/// <summary>
|
|
/// 参数类别
|
|
/// </summary>
|
|
public string ParaCode { get; set; }
|
|
|
|
/// <summary>
|
|
/// 类别名称
|
|
/// </summary>
|
|
public string ParaName { get; set; }
|
|
|
|
/// <summary>
|
|
/// 业务大类
|
|
/// </summary>
|
|
public string ParamType { get; set; }
|
|
|
|
/// <summary>
|
|
/// 客户id
|
|
/// </summary>
|
|
public long? CustomerId { get; set; }
|
|
|
|
/// <summary>
|
|
/// 客户名称
|
|
/// </summary>
|
|
public string CustomerName { 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; }
|
|
}
|
|
|
|
public class DjyCustomerParamValueSaveInput : DjyCustomerParamValueDto
|
|
{
|
|
|
|
}
|
|
|
|
/// <summary>
|
|
/// 列表输出
|
|
/// </summary>
|
|
public class DjyCustomerParamValueListOutput : DjyCustomerParamValueDto
|
|
{
|
|
/// <summary>
|
|
/// 租户名称
|
|
/// </summary>
|
|
public string CustomerName { get; set; }
|
|
/// <summary>
|
|
/// 参数值名称
|
|
/// </summary>
|
|
public string ItemCodeName { get; set; }
|
|
|
|
}
|
|
}
|