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.
26 lines
545 B
26 lines
545 B
using System;
|
|
|
|
namespace Znyc.Recruitment.Admin.Security.Dtos
|
|
{
|
|
/// <summary>
|
|
/// 输出对象模型
|
|
/// </summary>
|
|
[Serializable]
|
|
public class MessageLogsOutputDto
|
|
{
|
|
/// <summary>
|
|
/// 接收者Id
|
|
/// </summary>
|
|
public long ReceiverId { get; set; }
|
|
|
|
/// <summary>
|
|
/// 消息Id
|
|
/// </summary>
|
|
public long MessageId { get; set; }
|
|
|
|
/// <summary>
|
|
/// 状态
|
|
/// </summary>
|
|
public long Status { get; set; }
|
|
}
|
|
}
|