Quanxue.Zhanghao.Daochu/LearningOfficer.OA.Core/Entities/OA/Summarize/SummarizMonth.cs

157 lines
4.2 KiB
C#

using System;
using System.Collections.Generic;
using System.Linq;
using SqlSugar;
using LearningOfficer.OA.Core.Entities;
namespace LearningOfficer.OA.Core.Entities.OA.Summarize
{
/// <summary>
/// 工作总结-月报
///</summary>
[SugarTable("summariz_month")]
public class SummarizMonth : BaseEntity
{
/// <summary>
/// 备 注:用户id
/// 默认值:
///</summary>
[SugarColumn(ColumnName = "user_id" )]
public long UserId { get; set; }
/// <summary>
/// 备 注:用户角色枚举(如果是组长,只有部长评价,如果是学习官,有部长和组长评价)
/// 默认值:
///</summary>
[SugarColumn(ColumnName = "user_enum" )]
public int UserEnum { get; set; }
/// <summary>
/// 备 注:工作年份
/// 默认值:
///</summary>
[SugarColumn(ColumnName = "work_year" )]
public int? WorkYear { get; set; }
/// <summary>
/// 备 注:工作月份
/// 默认值:
///</summary>
[SugarColumn(ColumnName = "work_month" )]
public int WorkMonth { get; set; }
/// <summary>
/// 备 注:问题反馈
/// 默认值:
///</summary>
[SugarColumn(ColumnName = "quest_content" )]
public string QuestContent { get; set; } = null!;
/// <summary>
/// 备 注:本月总结
/// 默认值:
///</summary>
[SugarColumn(ColumnName = "month_content" )]
public string MonthContent { get; set; } = null!;
/// <summary>
/// 备 注:添加时间
/// 默认值:
///</summary>
[SugarColumn(ColumnName = "add_time" )]
public DateTime AddTime { get; set; }
/// <summary>
/// 备 注:组长评价
/// 默认值:
///</summary>
[SugarColumn(ColumnName = "superior_evaluation" )]
public string? SuperiorEvaluation { get; set; }
/// <summary>
/// 备 注:组长评价人id
/// 默认值:
///</summary>
[SugarColumn(ColumnName = "superior_user_id" )]
public long? SuperiorUserId { get; set; }
/// <summary>
/// 备 注:组长评价时间
/// 默认值:
///</summary>
[SugarColumn(ColumnName = "superior_addtime" )]
public DateTime? SuperiorAddtime { get; set; }
/// <summary>
/// 备 注:部长评价
/// 默认值:
///</summary>
[SugarColumn(ColumnName = "minister_evaluation" )]
public string? MinisterEvaluation { get; set; }
/// <summary>
/// 备 注:部长评价人id
/// 默认值:
///</summary>
[SugarColumn(ColumnName = "minister_user_id" )]
public long? MinisterUserId { get; set; }
/// <summary>
/// 备 注:部长评价时间
/// 默认值:
///</summary>
[SugarColumn(ColumnName = "minister_addtime" )]
public DateTime? MinisterAddtime { get; set; }
/// <summary>
/// 备 注:下次工作内容
/// 默认值:
///</summary>
[SugarColumn(ColumnName = "next_time_content" )]
public string? NextTimeContent { get; set; }
/// <summary>
/// 备 注:总部长评价
/// 默认值:
///</summary>
[SugarColumn(ColumnName = "general_evaluation" )]
public string? GeneralEvaluation { get; set; }
/// <summary>
/// 备 注:总部长评价人id
/// 默认值:
///</summary>
[SugarColumn(ColumnName = "general_user_id" )]
public long? GeneralUserId { get; set; }
/// <summary>
/// 备 注:总部长评价时间
/// 默认值:
///</summary>
[SugarColumn(ColumnName = "general_addtime" )]
public DateTime? GeneralAddtime { get; set; }
}
}