修改施工日志

This commit is contained in:
2023-09-25 19:20:08 +08:00
parent afce1cfc6a
commit 40afc9e40b
19 changed files with 5840 additions and 64 deletions
+21
View File
@@ -0,0 +1,21 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Model
{
public class ConstructionLogCQMS
{
public string ConstructionLogId { get; set; }
public string CQMSTodaySummary { get; set; }
public string CQMSTodaySummaryRemark { get; set; }
public string CQMSTomorrowPlan { get; set; }
public string CQMSTomorrowPlanRemark { get; set; }
}
}