diff --git a/cloud-etl-server/src/main/resources/mapper/EngineMapper.xml b/cloud-etl-server/src/main/resources/mapper/EngineMapper.xml index 139fc88..32594b2 100644 --- a/cloud-etl-server/src/main/resources/mapper/EngineMapper.xml +++ b/cloud-etl-server/src/main/resources/mapper/EngineMapper.xml @@ -39,22 +39,22 @@ select * from engine_maintenance left join engine_version on engine_maintenance.version_id = engine_version.id - and name like concat('%',#{name},'%') + and engine_maintenance.name like concat('%',#{name},'%') - and engine_code = #{engineCode} + and engine_maintenance.engine_code = #{engineCode} - and description = #{description} + and engine_maintenance.description = #{description} - and is_activate = #{isActivate} + and engine_maintenance.is_activate = #{isActivate} - and type = #{type} + and engine_maintenance.type = #{type} - and scope = #{scope} + and engine_maintenance.scope = #{scope} and engine_maintenance.status = #{status}