55 lines
1.1 KiB
C#
55 lines
1.1 KiB
C#
namespace HL_FristAidPlatform_DTO
|
|
{
|
|
/// <summary>
|
|
/// 短信
|
|
/// </summary>
|
|
public class T_Service_NoticeSMSDTO
|
|
{
|
|
/// <summary>
|
|
/// ID
|
|
/// </summary>
|
|
public long ID { get; set; }
|
|
|
|
/// <summary>
|
|
/// GUID
|
|
/// </summary>
|
|
public string GUID { get; set; }
|
|
|
|
/// <summary>
|
|
/// NoticeID
|
|
/// </summary>
|
|
public long NoticeID { get; set; }
|
|
|
|
/// <summary>
|
|
/// Content
|
|
/// </summary>
|
|
public string Content { get; set; }
|
|
|
|
/// <summary>
|
|
/// State
|
|
/// </summary>
|
|
public int State { get; set; }
|
|
|
|
/// <summary>
|
|
/// CreationDate
|
|
/// </summary>
|
|
public string CreationDate { get; set; }
|
|
|
|
/// <summary>
|
|
/// CreatorID
|
|
/// </summary>
|
|
public long CreatorID { get; set; }
|
|
|
|
/// <summary>
|
|
/// Creator
|
|
/// </summary>
|
|
public string Creator { get; set; }
|
|
|
|
/// <summary>
|
|
/// DeleteFlag
|
|
/// </summary>
|
|
public int DeleteFlag { get; set; }
|
|
}
|
|
}
|
|
|