using System; using System.Collections.Generic; using System.Linq; using System.Text; namespace cn.sancainet.Resident.health.Entity.XiTong { public class sys_ycms { //`ID` int (11) NOT NULL AUTO_INCREMENT, //`ycName` varchar(255) DEFAULT NULL COMMENT '异常名称 ', //`ycCode` varchar(255) DEFAULT NULL COMMENT '异常编号 ', //`ycGTitle` varchar(255) DEFAULT NULL COMMENT '异常高标题', //`ycGContent` varchar(1000) DEFAULT NULL COMMENT '异常高内容', //`ycDTitle` varchar(255) DEFAULT NULL COMMENT '异常低标题', //`ycDContent` varchar(255) DEFAULT NULL COMMENT '异常低内容', public int ID { get; set; } public string ycName { get; set; } public string ycCode { get; set; } public string ycGTitle { get; set; } public string ycGContent { get; set; } public string ycDTitle { get; set; } public string ycDContent { get; set; } } }