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.

58 lines
1.3 KiB
C#

using DS.Module.Core;
using FluentValidation;
namespace DS.WMS.Core.Code.Dtos;
/// <summary>
/// 包装类型请求实体
/// </summary>
public class CodePackageReq
{
/// <summary>
/// 主键Id
/// </summary>
public long Id { get; set; }
/// <summary>
/// 包装类型
/// </summary>
public string PackageName { get; set; }
/// <summary>
/// 中文说明
/// </summary>
public string CnExplain { get; set; }
/// <summary>
/// AFR代码
/// </summary>
public string AfrCode { get; set; }
/// <summary>
/// EDI代码
/// </summary>
public string EdiCode { get; set; }
/// <summary>
/// 状态 0 启用 1 禁用
/// </summary>
public StatusEnum? Status { get; set; } = StatusEnum.Enable;
/// <summary>
/// 备注
/// </summary>
public string Note { get; set; } = "";
}
/// <summary>
/// 验证
/// </summary>
public class CodePackageReqValidator : AbstractValidator<CodePackageReq>
{
/// <summary>
/// 构造函数
/// </summary>
public CodePackageReqValidator()
{
this.RuleFor(o => o.PackageName)
.NotEmpty().WithName("包装类型");
//this.RuleFor(o => o.CnExplain)
// .NotEmpty().WithName("中文名称");
//this.RuleFor(o => o.EdiCode)
// .NotEmpty().WithName("EDI代码");
}
}