Quanxue.Zhanghao.Daochu/LearningOfficer.OA.Common/Dtos/OA/WorkProcess/Summarize/SummarizeMonthTaskResult.cs

146 lines
3.5 KiB
C#
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

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; }
/// <summary>
/// 备 注:用户id
/// 默认值:
///</summary>
public long UserId { get; set; }
/// <summary>
/// 用户姓名
/// </summary>
public string UserName { get; set; }
/// <summary>
/// 用户头像地址
/// </summary>
public string UserHeadImage { get; set; }
/// <summary>
/// 备 注:用户角色枚举(如果是组长,只有部长评价,如果是学习官,有部长和组长评价)
/// 默认值:
///</summary>
public int UserEnum { get; set; }
/// <summary>
/// 备 注:工作年份
/// 默认值:
///</summary>
public int? WorkYear { get; set; }
/// <summary>
/// 备 注:工作月份
/// 默认值:
///</summary>
public int WorkMonth { get; set; }
/// <summary>
/// 备 注:问题反馈
/// 默认值:
///</summary>
public string QuestContent { get; set; } = null!;
/// <summary>
/// 备 注:本月总结
/// 默认值:
///</summary>
public string MonthContent { get; set; } = null!;
/// <summary>
/// 备 注:添加时间
/// 默认值:
///</summary>
public DateTime AddTime { get; set; }
/// <summary>
/// 备 注:组长评价
/// 默认值:
///</summary>
public string? SuperiorEvaluation { get; set; }
/// <summary>
/// 备 注:组长评价人id
/// 默认值:
///</summary>
public long? SuperiorUserId { get; set; }
/// <summary>
/// 备 注:组长评价时间
/// 默认值:
///</summary>
public DateTime? SuperiorAddtime { get; set; }
/// <summary>
/// 组长用户名
/// </summary>
public string? SuperiorUserName { get; set; }
/// <summary>
/// 备 注:部长评价
/// 默认值:
///</summary>
public string? MinisterEvaluation { get; set; }
/// <summary>
/// 备 注:部长评价人id
/// 默认值:
///</summary>
public long? MinisterUserId { get; set; }
/// <summary>
/// 备 注:部长评价时间
/// 默认值:
///</summary>
public DateTime? MinisterAddtime { get; set; }
/// <summary>
/// 部长用户名
/// </summary>
public string? MinisterUserName { get; set; }
/// <summary>
/// 总部长评价
/// </summary>
public string GeneralEvaluation { get; set; }
/// <summary>
/// 总部长用户Id
/// </summary>
public long? GeneralUserId { get; set; }
/// <summary>
/// 总部长用户名
/// </summary>
public string GeneralUserName { get; set; }
/// <summary>
/// 备 注:下次工作内容
/// 默认值:
///</summary>
public string NextTimeContent { get; set; } = null!;
/// <summary>
/// 已读id如果null则未读
/// </summary>
public long? ReadId { get; set; }
}
}