using System.Collections.Generic;
using GxPress.Common.Tools;
using GxPress.EnumConst;
namespace GxPress.Request.Notice
{
///
/// 添加收件箱
///
public class NoticeInRequest
{
///
///
///
///
public int Id { get; set; }
///
/// 标题
///
public string Title { get; set; }
///
/// 简单标题
///
///
public string SimplenessTitle { get; set; }
///
/// 用户ID
///
public int UserId { get; set; }
///
/// 内容
///
public string Content { get; set; }
///
/// 内容
///
public string HtmlContent { get; set; }
///
/// 类型 (1 发送 2 草稿)
///
public NoticeTypeConst NoticeType { get; set; }
///
/// 收件人
///
public List NoticeAddresseeUserIds { get; set; }
///
/// 新版收件人
///
///
public List AddresseeUserMiddles { get; set; }
///
/// 新版抄送人
///
///
public List CcUserMiddles { get; set; }
///
/// 抄送人
///
public List NoticeCcUserIds { get; set; }
///
/// 是否删除
///
public bool IsDelete { get; set; }
///
///
///
public NoticeInRequest()
{
AddresseeUserMiddles = new List();
CcUserMiddles = new List();
NoticeAddresseeUserIds = new List();
NoticeCcUserIds = new List();
}
///
/// 文件夹Id
///
///
public int FolderId { get; set; }
///
/// 来源ID
///
///
public int SoureId { get; set; }
///
/// 5 通知 6站内信 15 我审批的 16 我发出的 17 抄送我的 18 匿名信
///
///
public int TypeValue { get; set; }
///
/// 父级ID
///
///
public int ParentId { get; set; }
///
/// 子
///
///
public int SonId { get; set; }
///
/// 发件人
///
///
public string SendUserName { get; set; }
///
/// 发件人用户ID
///
///
public int SendUserId { get; set; }
}
}