using System; using System.Collections.Generic; using System.Text; using Edu.Common.Enum.Public; using VT.FW.DB; namespace Edu.Model.Entity.System { /// /// 短信发送记录实体表 /// [Serializable] [DB(ConnectionName = "DefaultConnection")] public class RB_Msg_Base { public int ID { get; set; } /// /// 集团编号 /// public int Group_Id { get; set; } public int Status { get; set; } /// /// 存储位置,1-腾讯云,2-阿里,3-其他 /// public StoreTypeEnum StoreType { get; set; } /// /// 消息配置信息 /// public string MsgConfigure { get; set; } /// /// 创建人 /// public int CreateBy { get; set; } /// /// 创建时间 /// public DateTime CreateDate { get; set; } } }