| | |
| | | bm1.meta_value containerType , |
| | | slc.info_code infoCode , |
| | | bm3.meta_value structure, |
| | | slc.`name` name |
| | | slc.`name` name, |
| | | slc.project |
| | | FROM |
| | | sys_laboratory_container slc |
| | | LEFT JOIN base_meta bm1 ON bm1.id = slc.type |
| | |
| | | <if test="name != null and name != ''"> |
| | | and sl.name like concat("%",#{name},"%") |
| | | </if> |
| | | <if test="project != null and project != ''"> |
| | | and slc.project like concat("%",#{project},"%") |
| | | </if> |
| | | <if test="controllerName != null and controllerName != ''"> |
| | | and sc.controller_name like concat("%",#{controllerName},"%") |
| | | </if> |
| | | order by sl.name ASC,sc.controller_name,slc.container_code,slc.name |
| | | |
| | | </select> |