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

32 lines
749 B

using AutoMapper;
using System;
using Znyc.Recruitment.Admin.Commons.Dtos;
using Znyc.Recruitment.Admin.Security.Entitys;
namespace Znyc.Recruitment.Admin.Security.Dtos
{
/// <summary>
/// 输入对象模型
/// </summary>
[AutoMap(typeof(MessageLogsEntity))]
[Serializable]
public class MessageLogsInputDto : IInputDto<long>
{
/// <summary>
/// 接收者Id
/// </summary>
public long ReceiverId { get; set; }
/// <summary>
/// 消息Id
/// </summary>
public long MessageId { get; set; }
/// <summary>
/// 状态
/// </summary>
public long Status { get; set; }
public long Id { get; set; }
}
}