提交代码

This commit is contained in:
2024-10-12 10:00:46 +08:00
parent f3491ae4b3
commit a9edf59cf3
29 changed files with 6756 additions and 133 deletions
@@ -0,0 +1,65 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Model
{
public class SafetyProductionEvaluationItem
{
public string SafetyProductionEvaluationItemId
{
get;
set;
}
public string SafetyProductionEvaluationId
{
get;
set;
}
public int? SortIndex
{
get;
set;
}
public string Type
{
get;
set;
}
public string EvaluateWork
{
get;
set;
}
public string EvaluationContent
{
get;
set;
}
public string FillingRequirements
{
get;
set;
}
public string CompletionDeadline
{
get;
set;
}
public string ImplementationStatus
{
get;
set;
}
}
}