|
|
|
@ -51,7 +51,11 @@ namespace EntrustSettle.Model.Validator
|
|
|
|
|
public ApplyInvoiceValidator()
|
|
|
|
|
{
|
|
|
|
|
RuleFor(x => x.CompanyName).NotNull().NotEmpty().WithMessage("公司全称不能为空");
|
|
|
|
|
//RuleFor(x=>x.)
|
|
|
|
|
RuleFor(x => x.Address).NotNull().NotEmpty().WithMessage("地址不能为空");
|
|
|
|
|
RuleFor(x => x.TaxCode).NotNull().NotEmpty().WithMessage("税号不能为空");
|
|
|
|
|
RuleFor(x => x.Tel).NotNull().NotEmpty().WithMessage("电话不能为空");
|
|
|
|
|
RuleFor(x => x.Bank).NotNull().NotEmpty().WithMessage("开户行不能为空");
|
|
|
|
|
RuleFor(x => x.BankAccount).NotNull().NotEmpty().WithMessage("银行账户不能为空");
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|