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.

53 lines
1.2 KiB
C#

using DS.Module.Core;
using FluentValidation;
namespace DS.WMS.Core.Code.Dtos;
/// <summary>
/// 业务来源请求实体
/// </summary>
public class CodeSourceReq
{
/// <summary>
/// 主键Id
/// </summary>
public long Id { get; set; }
/// <summary>
/// 业务来源唯一代码
/// </summary>
public string SourceCode { get; set; }
/// <summary>
/// 业务来源名称
/// </summary>
public string SourceName { get; set; }
/// <summary>
/// 英文名称
/// </summary>
public string EnName { get; set; }
/// <summary>
/// 状态 0 启用 1 禁用
/// </summary>
public StatusEnum? Status { get; set; } = StatusEnum.Enable;
/// <summary>
/// 备注
/// </summary>
public string Note { get; set; } = "";
}
/// <summary>
/// 验证
/// </summary>
public class CodeSourceReqValidator : AbstractValidator<CodeSourceReq>
{
/// <summary>
/// 构造函数
/// </summary>
public CodeSourceReqValidator()
{
this.RuleFor(o => o.SourceCode)
.NotEmpty().WithName("业务来源代码");
this.RuleFor(o => o.SourceName)
.NotEmpty().WithName("业务来源名称");
}
}