Enford 5 years ago
parent
commit
1b7b8ddc1f

+ 14 - 0
src/main/resources/mappings/modules/projectplanweekly/ProjectPlanWeeklyDao.xml

@@ -190,6 +190,20 @@
 			remarks_reason = #{remarksReason}
 		WHERE id = #{id}
 	</update>
+
+    <update id="updateInfo">
+		UPDATE project_plan_info SET
+			update_by = #{updateBy.id},
+			update_date = #{updateDate},
+			remarks = #{remarks},
+			begin_date = #{beginDate},
+			end_date = #{endDate},
+			project_id = #{projectId},
+			weekly_status = #{weeklyStatus},
+			remarks_status = #{remarksStatus},
+			remarks_reason = #{remarksReason}
+		WHERE id = #{id}
+	</update>
 	
 	<!--物理删除-->
 	<update id="delete">