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.

46 lines
886 B
C#

using FluentValidation;
namespace DS.WMS.Core.System.Dtos;
/// <summary>
///
/// </summary>
public class RoleInput
{
/// <summary>
///
/// </summary>
public long Id { get; set; }
/// <summary>
/// 唯一编码
/// </summary>
public string RoleCode { get; set; }
/// <summary>
/// 角色名称
/// </summary>
public string RoleName { get; set; }
/// <summary>
/// 备注
/// </summary>
public string Note { get; set; } = "";
}
/// <summary>
/// 验证
/// </summary>
public class RoleInputValidator : AbstractValidator<RoleInput>
{
/// <summary>
/// 构造函数
/// </summary>
public RoleInputValidator()
{
this.RuleFor(o => o.RoleName)
.NotEmpty().WithName("角色名称");
this.RuleFor(o => o.RoleCode)
.NotEmpty().WithName("角色唯一编码");
}
}