2022-09-26 17:39:34 +08:00

86 lines
2.1 KiB
C#
Raw Permalink Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

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;
/// <summary>
/// 编号,自增
/// </summary>
public int? Id
{
get { return id; }
set { id = value; }
}
/// <summary>
/// 通知内容
/// </summary>
public string Contents
{
get { return contents; }
set { contents = value; }
}
/// <summary>
/// 发布时长(显示秒数)
/// </summary>
public int? ReleaseTime
{
get { return releaseTime; }
set { releaseTime = value; }
}
/// <summary>
/// 发布次数(显示次数)
/// </summary>
public int? ReleaseCount
{
get { return releaseCount; }
set { releaseCount = value; }
}
/// <summary>
/// 操作员编号
/// </summary>
public int? OperatorId
{
get { return operatorId; }
set { operatorId = value; }
}
/// <summary>
/// 操作时间
/// </summary>
public DateTime? OperatorTime
{
get { return operatorTime; }
set { operatorTime = value; }
}
/// <summary>
/// 发送类型0或null发送通知1发送文件
/// </summary>
public int? SendType
{
get { return sendType; }
set { sendType = value; }
}
/// <summary>
/// 系统类型0或null手麻系统1ICU系统
/// </summary>
public int? SystemType
{
get { return systemType; }
set { systemType = value; }
}
}
}