using System; using System.Collections; using System.Collections.Generic; namespace AIMSModel { [Serializable] public partial class ChargsTemplate { private int? id; private string templateType; private string templateName; private string hCode; private string connectId; private string defaultValue; private int? isValid; private int? operatorId; private DateTime? operatorTime; /// /// 编号,自增 /// public int? Id { get{ return id; } set{ id=value; } } /// /// 模板类型 /// 1.麻醉师 /// 2.护士 /// public string TemplateType { get{ return templateType; } set{ templateType=value; } } /// /// 模板名称 /// public string TemplateName { get{ return templateName; } set{ templateName=value; } } /// /// 助记码 /// public string HCode { get{ return hCode; } set{ hCode=value; } } /// /// 所属费用编号,用','分隔 /// public string ConnectId { get{ return connectId; } set{ connectId=value; } } /// /// 所属费用数量,用','分隔 /// public string DefaultValue { get{ return defaultValue; } set{ defaultValue=value; } } /// /// 是否有效 /// public int? IsValid { get{ return isValid; } set{ isValid=value; } } /// /// 操作员编号 /// public int? OperatorId { get{ return operatorId; } set{ operatorId=value; } } /// /// 操作时间 /// public DateTime? OperatorTime { get{ return operatorTime; } set{ operatorTime=value; } } } }