CancelUploadedFee.cs 1.5 KB

123456789101112131415161718192021222324252627282930313233343536
  1. using System.Collections.Generic;
  2. using System.ComponentModel.DataAnnotations;
  3. using System.Data.Linq.Mapping;
  4. using PTMIBase.Entity;
  5. namespace DongGuanWI.Entity.Inpatient
  6. {
  7. class CancelUploadedFeeInput:EntityBase
  8. {
  9. /// <summary>
  10. /// 交易号
  11. /// 类型:string, 长度:20, 不允许为空
  12. /// </summary>
  13. [Column(Name = "function_id", Storage = null, DbType = "VarChar(20)", CanBeNull = false)]
  14. [Required(ErrorMessage = "交易号不能为空")]
  15. [StringLength(20, ErrorMessage = "交易号长度不能超过20个字符")]
  16. public string function_id { get; set; }
  17. /// <summary>
  18. /// 医疗机构编码
  19. /// 类型:string, 长度:20, 不允许为空
  20. /// </summary>
  21. [Column(Name = "akb020", Storage = null, DbType = "VarChar(20)", CanBeNull = false)]
  22. [Required(ErrorMessage = "医疗机构编码不能为空")]
  23. [StringLength(20, ErrorMessage = "医疗机构编码长度不能超过20个字符")]
  24. public string akb020 { get; set; }
  25. /// <summary>
  26. /// 就医登记号
  27. /// 类型:string, 长度:20, 不允许为空
  28. /// </summary>
  29. [Column(Name = "aaz218", Storage = null, DbType = "VarChar(20)", CanBeNull = false)]
  30. [Required(ErrorMessage = "就医登记号不能为空")]
  31. [StringLength(20, ErrorMessage = "就医登记号长度不能超过20个字符")]
  32. public string aaz218 { get; set; }
  33. }
  34. }