OutOfAreaClearingRollBack.cs 1.9 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859
  1. using System;
  2. using System.Collections.Generic;
  3. using System.ComponentModel;
  4. using System.ComponentModel.DataAnnotations;
  5. using System.Data.Linq.Mapping;
  6. using System.Linq;
  7. using System.Text;
  8. using System.Threading.Tasks;
  9. namespace PTMedicalInsurance.Entity.Base.Clearing
  10. {
  11. class OutOfAreaClearingRollBackInput:EntityBase
  12. {
  13. /// <summary>
  14. /// 序号: 1
  15. /// 参数代码: trt_year
  16. /// 参数名称: 结算年度
  17. /// 参数类型: 字符型
  18. /// 参数长度: 4
  19. /// 代码标识:
  20. /// 是否必填: Y
  21. /// 说明:
  22. /// </summary>
  23. [Column(Name = "trt_year", CanBeNull = false, DbType = "VarChar(4)")]
  24. [StringLength(4)]
  25. [DisplayName("结算年度")]
  26. public string trt_year { get; set; }
  27. /// <summary>
  28. /// 序号: 2
  29. /// 参数代码: trt_month
  30. /// 参数名称: 结算月份
  31. /// 参数类型: 字符型
  32. /// 参数长度: 2
  33. /// 代码标识:
  34. /// 是否必填: Y
  35. /// 说明: 格式为:MM,如1月为01
  36. /// </summary>
  37. [Column(Name = "trt_month", CanBeNull = false, DbType = "VarChar(2)")]
  38. [StringLength(2)]
  39. [DisplayName("结算月份")]
  40. public string trt_month { get; set; }
  41. /// <summary>
  42. /// 序号: 3
  43. /// 参数代码: otransid
  44. /// 参数名称: 原交易流水号
  45. /// 参数类型: 字符型
  46. /// 参数长度: 22
  47. /// 代码标识:
  48. /// 是否必填: Y
  49. /// 说明: 需要作回退处理的原业务交易接收方报文ID(inf_refmsgid)。传入‘0’时,回退医疗机构该结算周期的所有确认业务
  50. /// </summary>
  51. [Column(Name = "otransid", CanBeNull = false, DbType = "VarChar(22)")]
  52. [StringLength(22)]
  53. [DisplayName("原交易流水号")]
  54. public string otransid { get; set; }
  55. }
  56. }