using SqlSugar;
using System;
using System.Collections.Generic;
using System.Text;
namespace Operater.DbModel
{
///
///
///
[SugarTable("message_notify")]
public class MessageNotify
{
///
///
///
public MessageNotify()
{
}
///
/// 主键
///
[SugarColumn(ColumnName = "id")]
public System.String Id { get; set; }
///
/// 消息内容
///
[SugarColumn(ColumnName = "msg")]
public System.String Msg { get; set; }
///
/// 消息标识
///
[SugarColumn(ColumnName = "mark")]
public System.String Mark { get; set; }
///
/// 创建时间
///
[SugarColumn(ColumnName = "create_time")]
public System.DateTime? CreateTime { get; set; }
///
/// 是否处理0否 1是
///
[SugarColumn(ColumnName = "is_solve")]
public System.Int32? IsSolve { get; set; }
///
/// 处理时间
///
[SugarColumn(ColumnName = "solve_time")]
public System.DateTime? SolveTime { get; set; }
///
/// 消息渠道
///
[SugarColumn(ColumnName = "msg_channel")]
public System.String MsgChannel { get; set; }
}
}