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 SummarizeMonthTaskResult
{
public long Id { get; set; }
///
/// 备 注:用户id
/// 默认值:
///
public long UserId { get; set; }
///
/// 用户姓名
///
public string UserName { get; set; }
///
/// 用户头像地址
///
public string UserHeadImage { get; set; }
///
/// 备 注:用户角色枚举(如果是组长,只有部长评价,如果是学习官,有部长和组长评价)
/// 默认值:
///
public int UserEnum { get; set; }
///
/// 备 注:工作年份
/// 默认值:
///
public int? WorkYear { get; set; }
///
/// 备 注:工作月份
/// 默认值:
///
public int WorkMonth { get; set; }
///
/// 备 注:问题反馈
/// 默认值:
///
public string QuestContent { get; set; } = null!;
///
/// 备 注:本月总结
/// 默认值:
///
public string MonthContent { get; set; } = null!;
///
/// 备 注:添加时间
/// 默认值:
///
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; }
}
}