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

59 lines
1.4 KiB

using System;
using System.ComponentModel.DataAnnotations.Schema;
using Znyc.Recruitment.Admin.Commons.Entitys;
namespace Znyc.Recruitment.Admin.Security.Entitys
{
/// <summary>
/// 站内消息表,数据实体对象
/// </summary>
[Table("rm_message")]
[Serializable]
public class MessageEntity : BaseEntity
{
/// <summary>
/// 发送者Id
/// </summary>
public long SendId { get; set; }
/// <summary>
/// 发送类型
/// </summary>
public long Type { get; set; }
/// <summary>
/// 组Id(不涉及组消息可不用)
/// </summary>
public long GroupId { get; set; }
/// <summary>
/// 消息内容
/// </summary>
public string Content { get; set; }
/// <summary>
/// 发送时间
/// </summary>
public DateTime SendTime { get; set; }
/// <summary>
/// 产品Id
/// </summary>
public long ProductId { get; set; }
/// <summary>
/// 消息标题
/// </summary>
public string MessageTitle { get; set; }
/// <summary>
/// 标题
/// </summary>
public string Title { get; set; }
/// <summary>
/// 产品类型
/// </summary>
public long ProductType { get; set; }
}
}