using System; using System.Collections.Generic; using System.Text; using GxPress.Result.User; namespace GxPress.Result.App.Missive { /// /// 查询站内信 /// public class MissiveSearchResult : Middle.Middle { /// /// 自增ID /// public int Id { get; set; } /// /// 标题 /// public string Title { get; set; } /// /// json数据 /// /// public string Content { get; set; } /// /// 发件人姓名 /// public string SendName { get; set; } /// /// 1 普通 2 匿名 /// public int MissiveType { get; set; } /// /// 收件人 /// public List AddresseeUsers { get; set; } /// /// 已读数量 /// public int ReadCount { get; set; } /// /// 总量 /// public int AllCount { get; set; } /// /// 时间 /// public DateTime? CreatedDate { get; set; } /// /// 文件个数 /// public int FileCount { get; set; } /// /// 发件人ID /// /// public int SendUserId { get; set; } /// /// 站内信状态 0 删除 1 正常 2 草稿 /// /// public int MissiveStatus { get; set; } /// /// 关联站内信Id /// /// public int SourceId { get; set; } } }