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

46 lines
1.0 KiB

using System;
namespace Znyc.Recruitment.Admin.Security.Dtos
{
/// <summary>
/// 输出对象模型
/// </summary>
[Serializable]
public class MessageOutputDto
{
/// <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 Title { get; set; }
}
}