修改施工方案和关键事项

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
+1 -1
View File
@@ -54,7 +54,7 @@ namespace BLL
string newKeyID = SQLHelper.GetNewID(typeof(Model.GJSX_detail));
Model.GJSX_detail newGJSXMX = new Model.GJSX_detail();
newGJSXMX.Cuid = newKeyID;
newGJSXMX.Cuid = gjsxmx.Cuid;
newGJSXMX.GJSXID = gjsxmx.GJSXID;
newGJSXMX.Progress_user = gjsxmx.Progress_user;
newGJSXMX.Progress_detail = gjsxmx.Progress_detail;
+4 -1
View File
@@ -43,7 +43,9 @@ namespace BLL
IsManypeople = _GJSX.IsManypeople,
CompleteDate = _GJSX.CompleteDate,
AttachUrl = _GJSX.AttachUrl,
User_Acceptance = _GJSX.User_Acceptance
User_Acceptance = _GJSX.User_Acceptance,
CsUsers=_GJSX.CsUsers
};
db.GJSX.InsertOnSubmit(newGJSX);
@@ -75,6 +77,7 @@ namespace BLL
newGJSX.CompleteDate = _GJSX.CompleteDate;
newGJSX.AttachUrl = _GJSX.AttachUrl;
newGJSX.User_Acceptance = _GJSX.User_Acceptance;
newGJSX.CsUsers = _GJSX.CsUsers;
db.SubmitChanges();
}
}