using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace PMS.EntityModels.NoticeManager
{
public class MessageTemplate
{
///
/// id:
///
public string id { get; set; }
///
/// 模版code:
///
public string 模版CODE { get; set; }
///
/// 名称:
///
public string 名称 { get; set; }
///
/// 短信模板内容:
///
public string 内容 { get; set; }
///
/// 内容参数:内容下标参数说明
///
public string 内容参数 { get; set; }
///
/// 发送渠道: 短信 = 1,微信=2,其他=9
///
public string 发送渠道 { get; set; }
///
/// 登记人id:
///
public string 登记人id { get; set; }
///
/// 登记时间:
///
public DateTime 登记时间 { get; set; }
///
/// 编辑时间:
///
public DateTime 编辑时间 { get; set; }
///
/// 数据标识: 0 删除(停用)1 正常
///
public string 数据标识 { get; set; }
}
}