修改文件查询bug

master
Diyu0904 2025-02-14 17:37:53 +08:00
parent 2b8c8abd5a
commit 69d3b7cdc4
2 changed files with 2 additions and 2 deletions

View File

@ -32,7 +32,7 @@
</update>
<select id="selectByFileName" resultType="com.mcwl.resource.domain.ModelVersion">
select key_rate from model_version where file_name = #{name}
select * from model_version where file_name = #{name}
</select>
</mapper>

View File

@ -24,6 +24,6 @@
</update>
<select id="selectByFileName" resultType="com.mcwl.resource.domain.WorkFlowVersion">
select key_rate from work_flow_version where file_name = #{name}
select * from work_flow_version where file_name = #{name}
</select>
</mapper>