123456789101112131415161718192021222324252627282930313233343536 |
- using System.Collections.Generic;
- using System.ComponentModel.DataAnnotations;
- using System.Data.Linq.Mapping;
- using PTMIBase.Entity;
- namespace DongGuanWI.Entity.Inpatient
- {
- class CancelUploadedFeeInput:EntityBase
- {
- /// <summary>
- /// 交易号
- /// 类型:string, 长度:20, 不允许为空
- /// </summary>
- [Column(Name = "function_id", Storage = null, DbType = "VarChar(20)", CanBeNull = false)]
- [Required(ErrorMessage = "交易号不能为空")]
- [StringLength(20, ErrorMessage = "交易号长度不能超过20个字符")]
- public string function_id { get; set; }
- /// <summary>
- /// 医疗机构编码
- /// 类型:string, 长度:20, 不允许为空
- /// </summary>
- [Column(Name = "akb020", Storage = null, DbType = "VarChar(20)", CanBeNull = false)]
- [Required(ErrorMessage = "医疗机构编码不能为空")]
- [StringLength(20, ErrorMessage = "医疗机构编码长度不能超过20个字符")]
- public string akb020 { get; set; }
- /// <summary>
- /// 就医登记号
- /// 类型:string, 长度:20, 不允许为空
- /// </summary>
- [Column(Name = "aaz218", Storage = null, DbType = "VarChar(20)", CanBeNull = false)]
- [Required(ErrorMessage = "就医登记号不能为空")]
- [StringLength(20, ErrorMessage = "就医登记号长度不能超过20个字符")]
- public string aaz218 { get; set; }
- }
- }
|