CloseModel.cs 388 B

12345678910111213
  1. using System.ComponentModel.DataAnnotations;
  2. namespace PaySharp.Alipay.Domain
  3. {
  4. public class CloseModel : QueryModel
  5. {
  6. /// <summary>
  7. /// 卖家端自定义的的操作员编号
  8. /// </summary>
  9. [StringLength(28, ErrorMessage = "卖家端自定义的的操作员编号最大长度为28位")]
  10. public string OperatorId { get; set; }
  11. }
  12. }