自主管理加分项
This commit is contained in:
@@ -0,0 +1,105 @@
|
||||
using System;
|
||||
|
||||
namespace Model
|
||||
{
|
||||
public class BonusScoreSelfManagementItem
|
||||
{
|
||||
/// <summary>
|
||||
/// Id
|
||||
/// </summary>
|
||||
public string Id
|
||||
{
|
||||
get;
|
||||
set;
|
||||
}
|
||||
/// <summary>
|
||||
/// 项目ID
|
||||
/// </summary>
|
||||
public string ProjectId
|
||||
{
|
||||
get;
|
||||
set;
|
||||
}
|
||||
/// <summary>
|
||||
/// 人员Id
|
||||
/// </summary>
|
||||
public string PersonId
|
||||
{
|
||||
get;
|
||||
set;
|
||||
}
|
||||
///// <summary>
|
||||
///// 编号
|
||||
///// </summary>
|
||||
//public string Code
|
||||
//{
|
||||
// get;
|
||||
// set;
|
||||
//}
|
||||
/// <summary>
|
||||
/// 名称
|
||||
/// </summary>
|
||||
public string Name
|
||||
{
|
||||
get;
|
||||
set;
|
||||
}
|
||||
/// <summary>
|
||||
/// 加分项Id
|
||||
/// </summary>
|
||||
public string BonusScoreTypeId
|
||||
{
|
||||
get;
|
||||
set;
|
||||
}
|
||||
///// <summary>
|
||||
///// 加分项名称
|
||||
///// </summary>
|
||||
//public string BonusScoreTypeName
|
||||
//{
|
||||
// get;
|
||||
// set;
|
||||
//}
|
||||
///// <summary>
|
||||
///// 分值
|
||||
///// </summary>
|
||||
//public int Score
|
||||
//{
|
||||
// get;
|
||||
// set;
|
||||
//}
|
||||
/// <summary>
|
||||
/// 内容
|
||||
/// </summary>
|
||||
public string Content
|
||||
{
|
||||
get;
|
||||
set;
|
||||
}
|
||||
/// <summary>
|
||||
/// 备注
|
||||
/// </summary>
|
||||
public string Remark
|
||||
{
|
||||
get;
|
||||
set;
|
||||
}
|
||||
/// <summary>
|
||||
/// 附件
|
||||
/// </summary>
|
||||
public string AttachFile
|
||||
{
|
||||
get;
|
||||
set;
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// 附件地址
|
||||
/// </summary>
|
||||
public string AttachUrl
|
||||
{
|
||||
get;
|
||||
set;
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,38 @@
|
||||
using System;
|
||||
|
||||
namespace Model
|
||||
{
|
||||
public class RetakeCourseProducePlanInfo
|
||||
{
|
||||
/// <summary>
|
||||
/// 项目Id
|
||||
/// </summary>
|
||||
public string CurrProjectId { get; set; }
|
||||
/// <summary>
|
||||
/// 当前人员
|
||||
/// </summary>
|
||||
public string CurrUserId { get; set; }
|
||||
/// <summary>
|
||||
/// 检查Id
|
||||
/// </summary>
|
||||
public string CheckId { get; set; }
|
||||
/// <summary>
|
||||
/// 检查类别
|
||||
/// </summary>
|
||||
public int CheckType { get; set; }
|
||||
public string CheckTypeName { get; set; }
|
||||
/// <summary>
|
||||
/// 责任人Id
|
||||
/// </summary>
|
||||
public string PersonId { get; set; }
|
||||
/// <summary>
|
||||
/// 重修教材Id
|
||||
/// </summary>
|
||||
public string CompanyTrainingItemId { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 培训结束时间
|
||||
/// </summary>
|
||||
public DateTime? TrainEndDate { get; set; }
|
||||
}
|
||||
}
|
||||
@@ -1,5 +1,4 @@
|
||||
using MiniExcelLibs.Attributes;
|
||||
|
||||
|
||||
namespace Model
|
||||
{
|
||||
public class PostTrainingStandardInfo
|
||||
|
||||
File diff suppressed because it is too large
Load Diff
@@ -131,6 +131,7 @@
|
||||
<Compile Include="APIItem\HSSE\ReEvaluator.cs" />
|
||||
<Compile Include="APIItem\HSSE\RoutingInspectionItem.cs" />
|
||||
<Compile Include="APIItem\HSSE\SeDinMonthReport4OtherItem.cs" />
|
||||
<Compile Include="APIItem\HSSE\BonusScoreSelfManagementItem.cs" />
|
||||
<Compile Include="APIItem\OperationReportDto.cs" />
|
||||
<Compile Include="APIItem\ProjectGpsPointItem.cs" />
|
||||
<Compile Include="APIItem\ProjectItem.cs" />
|
||||
@@ -229,6 +230,7 @@
|
||||
<Compile Include="HJGL\SpRpNDTWeekReport.cs" />
|
||||
<Compile Include="HJGL\SpWeldingDailyItem.cs" />
|
||||
<Compile Include="HJGL\WelderEntrance.cs" />
|
||||
<Compile Include="HSSE\EduTrain\RetakeCourseProducePlanInfo.cs" />
|
||||
<Compile Include="HSSE\MonthReportCHSEDay.cs" />
|
||||
<Compile Include="HSSE\PageDataPersonInOutItem.cs" />
|
||||
<Compile Include="HSSE\PostTraining\PostTrainingStandardInfo.cs" />
|
||||
|
||||
Reference in New Issue
Block a user