using System;
using GxPress.EnumConst;
using GxPress.Result.App.Middle;
namespace GxPress.Result.Notice
{
///
/// App通知列表显示
///
public class NoticeListPageResult : Middle
{
///
/// 通知自增ID
///
public int Id { get; set; }
///
/// 通知标题
///
public string Title { get; set; }
///
/// 用户姓名
///
public string UserName { get; set; }
///
/// 工作审核人
///
///
public string FlowUserName { get; set; }
///
/// 内容
///
///
public string Content { get; set; }
///
/// 头像地址
///
public string AvatarUrl { get; set; }
///
/// 创建时间
///
public DateTime? CreatedDate { get; set; }
///
/// 收件人数量
///
public int AllCount { get; set; }
///
/// 是否阅读
///
///
public bool IsRead { get; set; }
///
/// 阅读量
///
public int ReadCount { get; set; }
///
/// 未读阅读量
///
public int UReadCount { get; set; }
///
///
///
public int NoticeAddresseeId { get; set; }
///
///
///
public int NoticeId { get; set; }
///
/// 文件数量
///
public int FileCount { get; set; }
///
/// 是否收藏
///
public bool IsCollection { get; set; }
///
/// 是否点赞
///
public bool IsLaud { get; set; }
///
/// 是否转发
///
public bool IsRetransmission { get; set; }
///
/// 评论数量
///
public int CommentCount { get; set; }
///
/// 收藏数量
///
public int CollectCount { get; set; }
///
/// 转发数量
///
public int RetransmissionCount { get; set; }
///
/// 点赞数量
///
public int PraiseCount { get; set; }
///
/// 通知状态 0 删除 1 正常 2 草稿
///
///
public int NoticeStatus { get; set; }
///
/// 关联通知Id
///
///
public int SourceId { get; set; }
///
/// 5 通知 6站内信 15 我审批的 16 我发出的 17 抄送我的
///
///
public int TypeValue { get; set; }
///
/// 发件人
///
///
public string SendUserName { get; set; }
///
/// 发件人用户ID
///
///
public int SendUserId { get; set; }
///
/// 工作未处理数量
///
///
public int UCheckedCount { get; set; }
///
/// 工作已处理数量
///
///
public int CheckedCount { get; set; }
///
/// 工作是否处理 我审批的
///
///
public bool IsFlowChecked { get; set; }
///
/// 工作是否阅读 抄送我的
///
///
public bool IsFlowRead { get; set; }
///
/// 工作是否阅读 我发起的
///
///
public bool IsMyFlowRead { get; set; }
///
/// 是否撤销
///
///
public bool IsRecall { get; set; }
///
/// 是否处理
///
///
public bool IsDone { get; set; }
///
/// 是否审核通过
///
///
public bool IsChecked { get; set; }
///
/// 处理状态 1 上会 2 待定
///
///
public int DoneType { get; set; }
///
/// 工作状态
///
///
public FlowState FlowState { get; set; }
}
}