|
@@ -134,16 +134,10 @@ public interface SimulationProjectMapper {
|
|
|
|
|
|
SimulationManualProjectPO selectProjectReportIdByAlgorithmId(String algorithmId);
|
|
|
|
|
|
-
|
|
|
- @Update("update simulation_manual_project\n" +
|
|
|
- "set details = #{details}\n" +
|
|
|
- "where id = #{projectId}")
|
|
|
- void updateDetailsById(@Param("projectId") String projectId, @Param("details") String details);
|
|
|
-
|
|
|
@Update("update simulation_manual_project\n" +
|
|
|
"set details = #{details},now_run_state = #{nowRunState}\n" +
|
|
|
"where id = #{id}")
|
|
|
- void updateDetailsAndNowRunStateById(@Param("id") String projectId, @Param("details") String details, @Param("nowRunState") String nowRunState);
|
|
|
+ void updateDetailsAndNowRunStateById(@Param("id") String id, @Param("details") String details, @Param("nowRunState") String nowRunState);
|
|
|
|
|
|
@Update("update simulation_manual_project\n" +
|
|
|
"set id = #{newId}, details = #{details},now_run_state = #{nowRunState}\n" +
|
|
@@ -151,11 +145,6 @@ public interface SimulationProjectMapper {
|
|
|
void updateIdAndDetailsAndNowRunStateById(@Param("oldId") String oldId,@Param("newId") String newId, @Param("details") String details, @Param("nowRunState") String nowRunState);
|
|
|
|
|
|
|
|
|
- @Update("update simulation_manual_project\n" +
|
|
|
- "set id = #{newId}\n" +
|
|
|
- "where id = #{id}")
|
|
|
- void updateIdById(SimulationManualProjectPO simulationManualProjectPo);
|
|
|
-
|
|
|
@Select("select report from simulation_manual_project where id = #{id}")
|
|
|
String selectReportById(@Param("id") String id);
|
|
|
}
|