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.
48 lines
1.0 KiB
C#
48 lines
1.0 KiB
C#
8 months ago
|
using DS.Module.Core;
|
||
|
using FluentValidation;
|
||
|
|
||
|
namespace DS.WMS.Core.Code.Dtos;
|
||
|
|
||
|
/// <summary>
|
||
|
/// 运输条款请求实体
|
||
|
/// </summary>
|
||
|
public class CodeServiceReq
|
||
|
{
|
||
|
/// <summary>
|
||
|
/// 主键Id
|
||
|
/// </summary>
|
||
|
public long Id { get; set; }
|
||
|
|
||
|
/// <summary>
|
||
|
/// 运输条款-英文名称
|
||
|
/// </summary>
|
||
|
public string ServiceName { get; set; }= "";
|
||
|
/// <summary>
|
||
|
/// 中文名称
|
||
|
/// </summary>
|
||
|
public string CnName { get; set; }= "";
|
||
|
|
||
|
/// <summary>
|
||
|
/// 状态 0 启用 1 禁用
|
||
|
/// </summary>
|
||
|
public StatusEnum? Status { get; set; } = StatusEnum.Enable;
|
||
|
/// <summary>
|
||
|
/// 备注
|
||
|
/// </summary>
|
||
|
public string Note { get; set; } = "";
|
||
|
}
|
||
|
|
||
|
/// <summary>
|
||
|
/// 验证
|
||
|
/// </summary>
|
||
|
public class CodeServiceReqValidator : AbstractValidator<CodeServiceReq>
|
||
|
{
|
||
|
/// <summary>
|
||
|
/// 构造函数
|
||
|
/// </summary>
|
||
|
public CodeServiceReqValidator()
|
||
|
{
|
||
|
this.RuleFor(o => o.ServiceName)
|
||
|
.NotEmpty().WithName("运输条款-英文名称");
|
||
|
}
|
||
|
}
|