using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace LearningOfficer.OA.Common.Dtos.OA.WorkProcess.Summarize
{
public class SummarizeWeekListResult
{
///
/// 任务列表
///
public List TaskList { get; set; }
///
/// 周报结果
///
public SummarizWeekTaskResult summarizWeekTaskResult { get; set; }
}
public class SummarizWeekTaskResult
{
public long Id { get; set; }
///
/// 用户角色枚举
///
public int UserEnum { get; set; }
///
/// 用户Id
///
public long UserId { get; set; }
///
/// 用户姓名
///
public string UserName { get; set; }
///
/// 用户头像地址
///
public string UserHeadImage { get; set; }
///
/// 总结年份
///
public int WorkYear { get; set; }
///
/// 总结月份
///
public int WorkMonth { get; set; }
///
/// 总结周
///
public int WorkWeek { get; set; }
///
/// 开始日期
///
public DateTime? BeginDate { get; set; }
///
/// 结束日期
///
public DateTime? EndDate { get; set; }
///
/// 问题反馈
///
public string QuestContent { get; set; }
///
/// 创建时间
///
public DateTime AddTime { get; set; }
///
/// 组长评价
///
public string? SuperiorEvaluation { get; set; }
///
/// 组长用户Id
///
public long? SuperiorUserId { get; set; }
///
/// 备 注:组长评价时间
/// 默认值:
///
public DateTime? SuperiorAddtime { get; set; }
///
/// 组长用户名
///
public string? SuperiorUserName { get; set; }
///
/// 部长评价
///
public string? MinisterEvaluation { get; set; }
///
/// 部长用户Id
///
public long? MinisterUserId { get; set; }
///
/// 备 注:部长评价时间
/// 默认值:
///
public DateTime? MinisterAddtime { get; set; }
///
/// 部长用户名
///
public string? MinisterUserName { get; set; }
///
/// 总部长评价
///
public string GeneralEvaluation { get; set; }
///
/// 总部长用户Id
///
public long? GeneralUserId { get; set; }
///
/// 总部长用户名
///
public string GeneralUserName { get; set; }
///
/// 备 注:下次工作内容
/// 默认值:
///
public string NextTimeContent { get; set; } = null!;
///
/// 已读id(如果null则未读)
///
public long? ReadId { get; set; }
}
}