using SqlSugar;
using System;
using System.Collections.Generic;
using System.Text;
namespace Operater.DbModel
{
///
///
///
[SugarTable("ali_msg_history")]
public class AliMsgHistory
{
///
///
///
public AliMsgHistory()
{
}
///
///
///
[SugarColumn(ColumnName = "id", IsPrimaryKey = true)]
public System.String Id { get; set; }
///
/// 消息id
///
[SugarColumn(ColumnName = "msg_id")]
public System.String MsgId { get; set; }
///
/// 消息推送时间
///
[SugarColumn(ColumnName = "gmt_born")]
public System.DateTime GmtBorn { get; set; }
///
/// 消息体内容
///
[SugarColumn(ColumnName = "data")]
public System.String Data { get; set; }
///
/// memberId
///
[SugarColumn(ColumnName = "user_info")]
public System.String UserInfo { get; set; }
///
/// 消息类型
///
[SugarColumn(ColumnName = "msg_type")]
public System.String MsgType { get; set; }
///
/// 创建时间
///
[SugarColumn(ColumnName = "create_time")]
public System.DateTime CreateTime { get; set; }
}
}