StableVersion4.3/HL_FristAidPlatform_Models/Sercice/T_Service_NoticeSMS.cs

59 lines
1.2 KiB
C#

using SqlSugar;
using System;
using System.ComponentModel.DataAnnotations;
namespace HL_FristAidPlatform_Models
{
/// <summary>
/// 短信
/// </summary>
public class T_Service_NoticeSMS
{
/// <summary>
/// ID
[SugarColumn(IsIdentity = true)]
public long ID { get; set; }
/// <summary>
/// GUID
/// </summary>
[Key]
[SugarColumn(IsPrimaryKey = true)]
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 DateTime 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; }
}
}