1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859 |
- using System;
- using System.Collections.Generic;
- using System.ComponentModel;
- using System.ComponentModel.DataAnnotations;
- using System.Data.Linq.Mapping;
- using System.Linq;
- using System.Text;
- using System.Threading.Tasks;
- namespace PTMedicalInsurance.Entity.Base.Clearing
- {
- class OutOfAreaClearingRollBackInput:EntityBase
- {
- /// <summary>
- /// 序号: 1
- /// 参数代码: trt_year
- /// 参数名称: 结算年度
- /// 参数类型: 字符型
- /// 参数长度: 4
- /// 代码标识:
- /// 是否必填: Y
- /// 说明:
- /// </summary>
- [Column(Name = "trt_year", CanBeNull = false, DbType = "VarChar(4)")]
- [StringLength(4)]
- [DisplayName("结算年度")]
- public string trt_year { get; set; }
- /// <summary>
- /// 序号: 2
- /// 参数代码: trt_month
- /// 参数名称: 结算月份
- /// 参数类型: 字符型
- /// 参数长度: 2
- /// 代码标识:
- /// 是否必填: Y
- /// 说明: 格式为:MM,如1月为01
- /// </summary>
- [Column(Name = "trt_month", CanBeNull = false, DbType = "VarChar(2)")]
- [StringLength(2)]
- [DisplayName("结算月份")]
- public string trt_month { get; set; }
- /// <summary>
- /// 序号: 3
- /// 参数代码: otransid
- /// 参数名称: 原交易流水号
- /// 参数类型: 字符型
- /// 参数长度: 22
- /// 代码标识:
- /// 是否必填: Y
- /// 说明: 需要作回退处理的原业务交易接收方报文ID(inf_refmsgid)。传入‘0’时,回退医疗机构该结算周期的所有确认业务
- /// </summary>
- [Column(Name = "otransid", CanBeNull = false, DbType = "VarChar(22)")]
- [StringLength(22)]
- [DisplayName("原交易流水号")]
- public string otransid { get; set; }
- }
- }
|