|
@@ -182,7 +182,7 @@
|
|
|
|
|
|
|
|
|
<select id="selectProjectBaseById" parameterType="api.common.pojo.param.project.SimulationManualProjectParam" resultType="api.common.pojo.po.project.SimulationManualProjectPo">
|
|
|
- select id,algorithm,scene,algorithm_score,project_name,project_id,algorithm_type
|
|
|
+ select id,algorithm,scene,algorithm_score,project_name,project_id,algorithm_type,evaluation_level
|
|
|
from simulation_manual_project where id = #{id,jdbcType=VARCHAR} and is_deleted = '0'
|
|
|
</select>
|
|
|
|
|
@@ -290,6 +290,11 @@
|
|
|
order by modify_time desc
|
|
|
</select>
|
|
|
|
|
|
+
|
|
|
+ <select id="selectScenePackageInfoById" parameterType="string" resultType="api.common.pojo.po.scene.ScenePackagePO">
|
|
|
+ select a.package_id,a.package_name, a.scene_num from scene_package a where a.package_id = #{id,jdbcType=VARCHAR}
|
|
|
+ </select>
|
|
|
+
|
|
|
|
|
|
<select id="selectVehicleSensor" parameterType="string" resultType="api.common.pojo.po.model.ConfigSensorPO">
|
|
|
select
|
|
@@ -364,7 +369,7 @@
|
|
|
<select id="selectSubSceneByPid" parameterType="string" resultType="api.common.pojo.vo.project.ScenePackageSubListVO">
|
|
|
select sublist_id,sublist_name,scene_num,weight,parent_id,scene_natural_ids,scene_traffic_ids,scene_statue_ids,scene_generalization_ids
|
|
|
from scene_package_sublist
|
|
|
- where parent_id = #{id,jdbcType=VARCHAR} and is_deleted = '0'
|
|
|
+ where parent_id = #{id,jdbcType=VARCHAR}
|
|
|
order by seq
|
|
|
</select>
|
|
|
|