江苏省职业健康监护平台数据交换方案 UploadEntity06问诊

来源:互联网 发布:人民日报网络舆情 编辑:程序博客网 时间:2024/05/01 17:52
using System;using System.Collections.Generic;using System.Linq;using System.Text;using System.Xml.Serialization;namespace CYYFCheckupMgr.BaseInfoMgr.系统设置.网管使用.数据上报设置{    /// <summary>    /// UploadEntity6问诊    /// author CYTD Young    /// 2016/11/27 23:48:12    /// music: Lou Reed - Coney Island Baby (Live)    /// </summary>    public class UploadEntity06问诊    {        /// <summary>        /// 主键S..36 -- 不能为空,业务系统主键唯一标识        /// </summary>        [XmlElement(ElementName = "RID")]        public string RID { get; set; }        /// <summary>        /// 月经史-初潮年龄N2 -- --        /// </summary>        [XmlElement(ElementName = "MNRAGE")]        public int MNRAGE { get; set; }        /// <summary>        /// 月经史-经期S..10 -- --        /// </summary>        [XmlElement(ElementName = "MNS")]        public string MNS { get; set; }        /// <summary>        /// 月经史-周期S..10 -- --        /// </summary>        [XmlElement(ElementName = "CYC")]        public string CYC { get; set; }        /// <summary>        /// 月经史-停经年龄N2 -- --        /// </summary>        [XmlElement(ElementName = "MNLAGE")]        public int MNLAGE { get; set; }        /// <summary>        /// 月经史-是否经期N1 -- 对照字典3.2        /// </summary>        [XmlElement(ElementName = "ISXMNS")]        public int ISXMNS { get; set; }        /// <summary>        /// 生育史-子女人数N..2 -- --        /// </summary>        [XmlElement(ElementName = "CHLDQTY")]        public int CHLDQTY { get; set; }        /// <summary>        /// 生育史-流产次数N..2 -- --        /// </summary>        [XmlElement(ElementName = "ABRQTY")]        public int ABRQTY { get; set; }        /// <summary>        /// 生育史-早产次数N..2 -- --        /// </summary>        [XmlElement(ElementName = "SLNKQTY")]        public int SLNKQTY { get; set; }        /// <summary>        /// 生育史-死产次数N..2 -- --        /// </summary>        [XmlElement(ElementName = "STLQTY")]        public int STLQTY { get; set; }        /// <summary>        /// 生育史-畸胎次数N..2 -- --        /// </summary>        [XmlElement(ElementName = "TRSQTY")]        public int TRSQTY { get; set; }        /// <summary>        /// 生育史-子女健康状况S..250 -- --        /// </summary>        [XmlElement(ElementName = "CHLDHTHCND")]        public string CHLDHTHCND { get; set; }        /// <summary>        /// 婚姻史-结婚日期D10 -- --        /// </summary>        [XmlElement(ElementName = "MRYDAT")]        public DateTime MRYDAT { get; set; }        /// <summary>        /// 配偶接触放射线情况S..100 -- --        /// </summary>        [XmlElement(ElementName = "CPLRDTCND")]        public string CPLRDTCND { get; set; }        /// <summary>        /// 配偶职业及健康状况S..100 -- --        /// </summary>        [XmlElement(ElementName = "CPLPRFHTHCND")]        public string CPLPRFHTHCND { get; set; }        /// <summary>        /// 烟酒史-吸烟情况N1        /// 0:不吸烟        /// 1:偶尔吸        /// 2:经常吸;        /// --        /// </summary>        [XmlElement(ElementName = "SMKSTA")]        public int SMKSTA { get; set; }        /// <summary>        /// 每天吸烟包数S..10 -- --        /// </summary>        [XmlElement(ElementName = "SMKDAYBLE")]        public string SMKDAYBLE { get; set; }        /// <summary>        /// 吸烟年数S..10 -- --        /// </summary>        [XmlElement(ElementName = "SMKYERQTY")]        public string SMKYERQTY { get; set; }        /// <summary>        /// 烟酒史-饮酒情况N1        /// 0:不饮酒        /// 1:偶尔饮        /// 2:经常饮        /// --        /// </summary>        [XmlElement(ElementName = "WINSTA")]        public int WINSTA { get; set; }        /// <summary>        /// 饮酒每天毫升数S..10 -- --        /// </summary>        [XmlElement(ElementName = "WINDAYMLX")]        public string WINDAYMLX { get; set; }        /// <summary>        /// 饮酒年数S..10 -- --        /// </summary>        [XmlElement(ElementName = "WINYERQTY")]        public string WINYERQTY { get; set; }        /// <summary>        /// 家族史S..500 -- --        /// </summary>        [XmlElement(ElementName = "JZS")]        public string JZS { get; set; }        /// <summary>        /// 个人史S..500 -- --        /// </summary>        [XmlElement(ElementName = "GRS")]        public string GRS { get; set; }        /// <summary>        /// 其他情况S..250 -- --        /// </summary>        [XmlElement(ElementName = "OTH")]        public string OTH { get; set; }    }}

0 0