You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
51 lines
974 B
51 lines
974 B
using cd.dapper.extension;
|
|
using System;
|
|
|
|
namespace learun.iapplication
|
|
{
|
|
/// <summary>
|
|
/// 版 本 EasyCode EC管理后台
|
|
/// Copyright (c) 2019-present EC管理有限公司
|
|
/// 创建人:tobin
|
|
/// 日 期:2019.11.05
|
|
/// 描 述:即时通讯消息内容
|
|
/// </summary>
|
|
[Table("lr_im_msg")]
|
|
public class IMMsgEntity
|
|
{
|
|
#region 实体成员
|
|
|
|
/// <summary>
|
|
/// 消息主键
|
|
/// </summary>
|
|
[Key]
|
|
public string F_MsgId { get; set; }
|
|
|
|
/// <summary>
|
|
/// 发送者ID
|
|
/// </summary>
|
|
public string F_SendUserId { get; set; }
|
|
|
|
/// <summary>
|
|
/// 接收者ID
|
|
/// </summary>
|
|
public string F_RecvUserId { get; set; }
|
|
|
|
/// <summary>
|
|
/// 消息内容
|
|
/// </summary>
|
|
public string F_Content { get; set; }
|
|
|
|
/// <summary>
|
|
/// 创建时间
|
|
/// </summary>
|
|
public DateTime? F_CreateDate { get; set; }
|
|
|
|
/// <summary>
|
|
/// 是否是系统消息
|
|
/// </summary>
|
|
public int? F_IsSystem { get; set; }
|
|
|
|
#endregion 实体成员
|
|
}
|
|
}
|