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.

91 lines
2.2 KiB
C#

using DS.Module.Core;
using FluentValidation;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace DS.WMS.Core.Info.Dtos
{
/// <summary>
/// 往来单位参数请求实体
/// </summary>
public class ClientParamReq
{
/// <summary>
/// 主键Id
/// </summary>
public long Id { get; set; }
/// <summary>
/// 参数类型Id
/// </summary>
public long ParamId { get; set; }
/// <summary>
/// 名称
/// </summary>
public string ParamName { get; set; }
/// <summary>
/// 参数类型Code
/// </summary>
public string ParamCode { get; set; }
/// <summary>
/// 参数类型
/// </summary>
public string ParamType { get; set; }
/// <summary>
/// 参数代码
/// </summary>
public string ItemCode { get; set; }
/// <summary>
/// 参数名称
/// </summary>
public string ItemName { get; set; }
/// <summary>
/// 往来单位
/// </summary>
public string CustomerName { get; set; }
/// <summary>
/// 往来单位Id
/// </summary>
public long CustomerId { get; set; }
/// <summary>
/// 排序
/// </summary>
public int? OrderNo { get; set; } = 100;
/// <summary>
/// 状态
/// </summary>
public StatusEnum? Status { get; set; } = StatusEnum.Enable;
/// <summary>
/// 备注
/// </summary>
public string Note { get; set; }
}
/// <summary>
/// 验证
/// </summary>
public class InfoClientParamReqValidator : AbstractValidator<ClientParamReq>
{
/// <summary>
/// 构造函数
/// </summary>
public InfoClientParamReqValidator()
{
this.RuleFor(o => o.CustomerId)
.NotEmpty().WithName("往来单位");
this.RuleFor(o => o.ParamId)
.NotEmpty().WithName("参数类型");
this.RuleFor(o => o.ItemCode)
.NotEmpty().WithName("参数代码");
}
}
}