招聘后台
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.
 
 

29 lines
687 B

using System;
using System.ComponentModel.DataAnnotations.Schema;
using Znyc.Recruitment.Admin.Commons.Entitys;
namespace Znyc.Recruitment.Admin.Security.Entitys
{
/// <summary>
/// 消息记录表
/// </summary>
[Table("rm_message_logs")]
[Serializable]
public class MessageLogsEntity : BaseEntity
{
/// <summary>
/// 接收者Id
/// </summary>
public long ReceiverId { get; set; }
/// <summary>
/// 消息Id
/// </summary>
public long MessageId { get; set; }
/// <summary>
/// 状态
/// </summary>
public long Status { get; set; }
}
}