提交代码
This commit is contained in:
@@ -0,0 +1,44 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
|
||||
namespace Model
|
||||
{
|
||||
public class ActionWorkLedger
|
||||
{
|
||||
public string ActionWorkLedgerId
|
||||
{
|
||||
get;
|
||||
set;
|
||||
}
|
||||
|
||||
public string UnitId
|
||||
{
|
||||
get;
|
||||
set;
|
||||
}
|
||||
|
||||
public DateTime? ReportDate
|
||||
{
|
||||
get;
|
||||
set;
|
||||
}
|
||||
|
||||
public int? Quarter
|
||||
{
|
||||
get;
|
||||
set;
|
||||
}
|
||||
|
||||
public int? YearId
|
||||
{
|
||||
get;
|
||||
set;
|
||||
}
|
||||
|
||||
public string CompileMan
|
||||
{
|
||||
get;
|
||||
set;
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,62 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
|
||||
namespace Model
|
||||
{
|
||||
public class ActionWorkLedgerItem
|
||||
{
|
||||
public string ActionWorkLedgerItemId
|
||||
{
|
||||
get;
|
||||
set;
|
||||
}
|
||||
|
||||
public string ActionWorkLedgerId
|
||||
{
|
||||
get;
|
||||
set;
|
||||
}
|
||||
|
||||
public int? SortIndex
|
||||
{
|
||||
get;
|
||||
set;
|
||||
}
|
||||
|
||||
public string Focus
|
||||
{
|
||||
get;
|
||||
set;
|
||||
}
|
||||
|
||||
public string SpecialTask
|
||||
{
|
||||
get;
|
||||
set;
|
||||
}
|
||||
|
||||
public string WorkPoints
|
||||
{
|
||||
get;
|
||||
set;
|
||||
}
|
||||
|
||||
public string FillingRequirements
|
||||
{
|
||||
get;
|
||||
set;
|
||||
}
|
||||
|
||||
public string CompletionDeadline
|
||||
{
|
||||
get;
|
||||
set;
|
||||
}
|
||||
|
||||
public string ImplementationStatus
|
||||
{
|
||||
get;
|
||||
set;
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,47 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using System.Text;
|
||||
using System.Threading.Tasks;
|
||||
|
||||
namespace Model
|
||||
{
|
||||
public class SafetyProductionEvaluation
|
||||
{
|
||||
public string SafetyProductionEvaluationId
|
||||
{
|
||||
get;
|
||||
set;
|
||||
}
|
||||
|
||||
public string UnitId
|
||||
{
|
||||
get;
|
||||
set;
|
||||
}
|
||||
|
||||
public DateTime? ReportDate
|
||||
{
|
||||
get;
|
||||
set;
|
||||
}
|
||||
|
||||
public int? Quarter
|
||||
{
|
||||
get;
|
||||
set;
|
||||
}
|
||||
|
||||
public int? YearId
|
||||
{
|
||||
get;
|
||||
set;
|
||||
}
|
||||
|
||||
public string CompileMan
|
||||
{
|
||||
get;
|
||||
set;
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -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;
|
||||
}
|
||||
}
|
||||
}
|
||||
+1901
-133
File diff suppressed because it is too large
Load Diff
@@ -63,6 +63,8 @@
|
||||
<Reference Include="System.Xml" />
|
||||
</ItemGroup>
|
||||
<ItemGroup>
|
||||
<Compile Include="APIItem\ActionWorkLedger.cs" />
|
||||
<Compile Include="APIItem\ActionWorkLedgerItem.cs" />
|
||||
<Compile Include="APIItem\ArchitectureReport.cs" />
|
||||
<Compile Include="APIItem\ArchitectureReportItem.cs" />
|
||||
<Compile Include="APIItem\BaseInfoItem.cs" />
|
||||
@@ -159,6 +161,8 @@
|
||||
<Compile Include="APIItem\QuarterlyProjectQuality.cs" />
|
||||
<Compile Include="APIItem\ReturnData.cs" />
|
||||
<Compile Include="APIItem\SafetyBriefing.cs" />
|
||||
<Compile Include="APIItem\SafetyProductionEvaluation.cs" />
|
||||
<Compile Include="APIItem\SafetyProductionEvaluationItem.cs" />
|
||||
<Compile Include="APIItem\SaveOnlineFileItem.cs" />
|
||||
<Compile Include="APIItem\SHHSE\NewSYHSEData.cs" />
|
||||
<Compile Include="APIItem\SHHSE\NewSYHSEDataHiddenDangerCheckItem.cs" />
|
||||
|
||||
Reference in New Issue
Block a user