修改施工方案和关键事项

This commit is contained in:
2024-10-12 15:27:37 +08:00
parent a360cb9448
commit d35d9efdcb
54 changed files with 10572 additions and 2051 deletions
@@ -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;
}
}
}