Browse Source

优化

pull/268/head
chenzhihang 8 months ago
parent
commit
2a101d7f47
4 changed files with 12 additions and 4 deletions
  1. +3
    -1
      ruoyi-modules/management-platform/src/main/resources/mapper/managementPlatform/ActiveLearnDaoMapper.xml
  2. +3
    -1
      ruoyi-modules/management-platform/src/main/resources/mapper/managementPlatform/ExperimentDaoMapper.xml
  3. +3
    -1
      ruoyi-modules/management-platform/src/main/resources/mapper/managementPlatform/MachineLearnDaoMapper.xml
  4. +3
    -1
      ruoyi-modules/management-platform/src/main/resources/mapper/managementPlatform/RayDaoMapper.xml

+ 3
- 1
ruoyi-modules/management-platform/src/main/resources/mapper/managementPlatform/ActiveLearnDaoMapper.xml View File

@@ -133,7 +133,9 @@
<if test="activeLearn.state != null">
state = #{activeLearn.state},
</if>
status_list = #{activeLearn.statusList},
<if test="activeLearn.statusList != null">
status_list = #{activeLearn.statusList},
</if>
</set>
where id = #{activeLearn.id}
</update>


+ 3
- 1
ruoyi-modules/management-platform/src/main/resources/mapper/managementPlatform/ExperimentDaoMapper.xml View File

@@ -221,7 +221,9 @@
<if test="state != null">
state = #{state},
</if>
status_list = #{statusList},
<if test="statusList != null">
status_list = #{statusList},
</if>
</set>
where id = #{id}
</update>


+ 3
- 1
ruoyi-modules/management-platform/src/main/resources/mapper/managementPlatform/MachineLearnDaoMapper.xml View File

@@ -40,7 +40,9 @@
<if test="machineLearn.updateBy != null and machineLearn.updateBy !=''">
update_by = #{machineLearn.updateBy},
</if>
status_list = #{machineLearn.statusList},
<if test="machineLearn.statusList != null">
status_list = #{machineLearn.statusList},
</if>
</set>
where id = #{machineLearn.id}
</update>


+ 3
- 1
ruoyi-modules/management-platform/src/main/resources/mapper/managementPlatform/RayDaoMapper.xml View File

@@ -70,7 +70,9 @@
<if test="ray.state != null">
state = #{ray.state},
</if>
status_list = #{ray.statusList},
<if test="ray.statusList != null">
status_list = #{ray.statusList},
</if>
model = #{ray.model},
scheduler = #{ray.scheduler},
search_alg = #{ray.searchAlg},


Loading…
Cancel
Save