| @@ -133,7 +133,9 @@ | |||||
| <if test="activeLearn.state != null"> | <if test="activeLearn.state != null"> | ||||
| state = #{activeLearn.state}, | state = #{activeLearn.state}, | ||||
| </if> | </if> | ||||
| status_list = #{activeLearn.statusList}, | |||||
| <if test="activeLearn.statusList != null"> | |||||
| status_list = #{activeLearn.statusList}, | |||||
| </if> | |||||
| </set> | </set> | ||||
| where id = #{activeLearn.id} | where id = #{activeLearn.id} | ||||
| </update> | </update> | ||||
| @@ -221,7 +221,9 @@ | |||||
| <if test="state != null"> | <if test="state != null"> | ||||
| state = #{state}, | state = #{state}, | ||||
| </if> | </if> | ||||
| status_list = #{statusList}, | |||||
| <if test="statusList != null"> | |||||
| status_list = #{statusList}, | |||||
| </if> | |||||
| </set> | </set> | ||||
| where id = #{id} | where id = #{id} | ||||
| </update> | </update> | ||||
| @@ -40,7 +40,9 @@ | |||||
| <if test="machineLearn.updateBy != null and machineLearn.updateBy !=''"> | <if test="machineLearn.updateBy != null and machineLearn.updateBy !=''"> | ||||
| update_by = #{machineLearn.updateBy}, | update_by = #{machineLearn.updateBy}, | ||||
| </if> | </if> | ||||
| status_list = #{machineLearn.statusList}, | |||||
| <if test="machineLearn.statusList != null"> | |||||
| status_list = #{machineLearn.statusList}, | |||||
| </if> | |||||
| </set> | </set> | ||||
| where id = #{machineLearn.id} | where id = #{machineLearn.id} | ||||
| </update> | </update> | ||||
| @@ -70,7 +70,9 @@ | |||||
| <if test="ray.state != null"> | <if test="ray.state != null"> | ||||
| state = #{ray.state}, | state = #{ray.state}, | ||||
| </if> | </if> | ||||
| status_list = #{ray.statusList}, | |||||
| <if test="ray.statusList != null"> | |||||
| status_list = #{ray.statusList}, | |||||
| </if> | |||||
| model = #{ray.model}, | model = #{ray.model}, | ||||
| scheduler = #{ray.scheduler}, | scheduler = #{ray.scheduler}, | ||||
| search_alg = #{ray.searchAlg}, | search_alg = #{ray.searchAlg}, | ||||