using System; using System.Collections; using System.Collections.Generic; namespace AIMSModel { [Serializable] public partial class NoticeContent { private int? id; private string contents; private int? releaseTime; private int? releaseCount; private int? operatorId; private DateTime? operatorTime; private int? sendType; private int? systemType; /// /// 编号,自增 /// public int? Id { get { return id; } set { id = value; } } /// /// 通知内容 /// public string Contents { get { return contents; } set { contents = value; } } /// /// 发布时长(显示秒数) /// public int? ReleaseTime { get { return releaseTime; } set { releaseTime = value; } } /// /// 发布次数(显示次数) /// public int? ReleaseCount { get { return releaseCount; } set { releaseCount = value; } } /// /// 操作员编号 /// public int? OperatorId { get { return operatorId; } set { operatorId = value; } } /// /// 操作时间 /// public DateTime? OperatorTime { get { return operatorTime; } set { operatorTime = value; } } /// /// 发送类型(0或null:发送通知;1:发送文件) /// public int? SendType { get { return sendType; } set { sendType = value; } } /// /// 系统类型(0或null:手麻系统;1:ICU系统) /// public int? SystemType { get { return systemType; } set { systemType = value; } } } }