修改施工日志

This commit is contained in:
2023-09-14 10:43:51 +08:00
parent 2b6b7c5d5e
commit c96394016a
11 changed files with 2347 additions and 173 deletions
@@ -44,13 +44,22 @@ namespace BLL
ConstructionLogId = ConstructionLog.ConstructionLogId,
ProjectId = ConstructionLog.ProjectId,
Weather = ConstructionLog.Weather,
TemperatureMax = ConstructionLog.TemperatureMax,
TemperatureMin = ConstructionLog.TemperatureMin,
MainWork = ConstructionLog.MainWork,
MainProblems = ConstructionLog.MainProblems,
Remark = ConstructionLog.Remark,
Temperature = ConstructionLog.Temperature,
ContractNo = ConstructionLog.ContractNo,
UnitWorks = ConstructionLog.UnitWorks,
Professional = ConstructionLog.Professional,
CompileMan = ConstructionLog.CompileMan,
CompileDate = ConstructionLog.CompileDate,
State= ConstructionLog.State,
Remark= ConstructionLog.Remark,
HSETodaySummary= ConstructionLog.HSETodaySummary,
HSETodaySummaryRemark = ConstructionLog.HSETodaySummaryRemark,
HSETomorrowPlan = ConstructionLog.HSETomorrowPlan,
HSETomorrowPlanRemark = ConstructionLog.HSETomorrowPlanRemark,
CQMSTodaySummary = ConstructionLog.CQMSTodaySummary,
CQMSTodaySummaryRemark = ConstructionLog.CQMSTodaySummaryRemark,
CQMSTomorrowPlan = ConstructionLog.CQMSTomorrowPlan,
CQMSTomorrowPlanRemark = ConstructionLog.CQMSTomorrowPlanRemark,
};
db.ZHGL_ConstructionLog.InsertOnSubmit(newConstructionLog);
db.SubmitChanges();
@@ -67,11 +76,20 @@ namespace BLL
if (newConstructionLog != null)
{
newConstructionLog.Weather = ConstructionLog.Weather;
newConstructionLog.TemperatureMax = ConstructionLog.TemperatureMax;
newConstructionLog.TemperatureMin = ConstructionLog.TemperatureMin;
newConstructionLog.MainWork = ConstructionLog.MainWork;
newConstructionLog.MainProblems = ConstructionLog.MainProblems;
newConstructionLog.Temperature = ConstructionLog.Temperature;
newConstructionLog.ContractNo = ConstructionLog.ContractNo;
newConstructionLog.UnitWorks = ConstructionLog.UnitWorks;
newConstructionLog.Professional = ConstructionLog.Professional;
newConstructionLog.State = ConstructionLog.State;
newConstructionLog.Remark = ConstructionLog.Remark;
newConstructionLog.HSETodaySummary = ConstructionLog.HSETodaySummary;
newConstructionLog.HSETodaySummaryRemark = ConstructionLog.HSETodaySummaryRemark;
newConstructionLog.HSETomorrowPlan = ConstructionLog.HSETomorrowPlan;
newConstructionLog.HSETomorrowPlanRemark = ConstructionLog.HSETomorrowPlanRemark;
newConstructionLog.CQMSTodaySummary = ConstructionLog.CQMSTodaySummary;
newConstructionLog.CQMSTodaySummaryRemark = ConstructionLog.CQMSTodaySummaryRemark;
newConstructionLog.CQMSTomorrowPlan = ConstructionLog.CQMSTomorrowPlan;
newConstructionLog.CQMSTomorrowPlanRemark = ConstructionLog.CQMSTomorrowPlanRemark;
db.SubmitChanges();
}
}