You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
22 lines
827 B
22 lines
827 B
<?xml version="1.0" encoding="UTF-8"?>
|
|
<!DOCTYPE mapper PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" "http://mybatis.org/dtd/mybatis-3-mapper.dtd">
|
|
<mapper namespace="cn.iocoder.yudao.module.system.dal.mysql.config.FactoryMapper">
|
|
|
|
<select id="selectFactoryPage" resultType="cn.iocoder.yudao.module.system.dal.dataobject.config.FactoryDO">
|
|
SELECT
|
|
p.plant_id AS id,
|
|
p.plant_name AS name,
|
|
p.plant_shortname AS short_name,
|
|
p.area_id,
|
|
a.area_name AS area_name
|
|
FROM
|
|
plant_cfg AS p
|
|
LEFT JOIN area_cfg AS a ON p.area_id = a.area_id
|
|
<where>
|
|
<if test="reqVO.name != null and reqVO.name != ''">
|
|
AND p.plant_name LIKE CONCAT('%', #{reqVO.name}, '%')
|
|
</if>
|
|
</where>
|
|
</select>
|
|
|
|
</mapper>
|