| | |
| | | select container_code,name,valid_flag,type,character_left,character_right from sys_laboratory_container where update_time >= #{startTime} and #{endTime} > update_time |
| | | </select> |
| | | |
| | | <select id="getSysLaboratoryContainer" parameterType="java.lang.String" resultMap="SysLaboratoryContainer" > |
| | | <select id="getSysLaboratoryContainer" resultMap="SysLaboratoryContainer" > |
| | | select su.*,ss.name as laboratoryName, ss.type as laboratoryType ,su.project project |
| | | from sys_laboratory_container as su |
| | | left join sys_laboratory as ss on su.laboratory_id = ss.id |
| | |
| | | and ss.valid_flag = 1 |
| | | </select> |
| | | |
| | | <select id="getSysLaboratoryContainerByContainerCode" parameterType="java.lang.String" resultMap="SysLaboratoryContainer"> |
| | | <select id="getSysLaboratoryContainerByContainerCode" resultMap="SysLaboratoryContainer"> |
| | | SELECT |
| | | sys_laboratory_container.* |
| | | FROM |
| | |
| | | </select> |
| | | |
| | | <select id="getSysLaboratoryContainerList" parameterType="java.util.Map" resultMap="SysLaboratoryContainer"> |
| | | select su.*,ss.name as laboratoryName, ss.type as laboratoryType,sc.controller_name as controllerName,su.project as project from sys_laboratory_container as su |
| | | select su.*,ss.name as laboratoryName, ss.type as laboratoryType,su.project as project from sys_laboratory_container as su |
| | | left join sys_laboratory as ss on su.laboratory_id = ss.id |
| | | left join sys_controller sc on sc.controller_code=su.controller_code |
| | | where su.valid_flag = 1 |
| | | AND sc.valid_flag = 1 |
| | | AND ss.valid_flag = 1 |
| | | <if test="laboratoryType != null and laboratoryType != ''"> |
| | | and ss.type = #{laboratoryType} |
| | |
| | | <if test="project != null and project != ''"> |
| | | and su.project like concat("%",#{project},"%") |
| | | </if> |
| | | <if test="controllerName != null and controllerName != ''"> |
| | | and sc.controller_name like concat("%",#{controllerName},"%") |
| | | </if> |
| | | order by ss.name ASC,sc.controller_name,su.container_code,su.name |
| | | order by ss.name ASC,su.container_code,su.name |
| | | <if test="first != null and pageSize != null"> |
| | | limit #{first}, #{pageSize} |
| | | </if> |
| | |
| | | |
| | | <select id="getSysLaboratoryContainerSimpleInfoList" parameterType="java.util.Map" resultMap="SysLaboratoryContainer"> |
| | | select su.id,su.name,su.container_code,su.info_code,su.project as project,bm1.meta_value as type,bm2.meta_value as structure, |
| | | ss.name as laboratoryName,sc.controller_name as controllerName from sys_laboratory_container as su |
| | | ss.name as laboratoryName from sys_laboratory_container as su |
| | | left join sys_laboratory as ss on su.laboratory_id = ss.id |
| | | left join sys_controller sc on sc.controller_code=su.controller_code |
| | | left join base_meta bm1 ON bm1.id = su.type |
| | | left join base_meta bm2 ON bm2.id = su.structure |
| | | where su.valid_flag = 1 |
| | | AND sc.valid_flag = 1 |
| | | AND ss.valid_flag = 1 |
| | | <if test="laboratoryName != null and laboratoryName != ''"> |
| | | and ss.name like #{laboratoryName} |
| | | </if> |
| | | <if test="controllerName != null and controllerName != ''"> |
| | | and sc.controller_name like concat("%",#{controllerName},"%") |
| | | </if> |
| | | order by su.create_time desc |
| | | <if test="first != null and pageSize != null"> |
| | |
| | | <select id="getSysLaboratoryContainerTotalCount" parameterType="java.util.Map" resultType="int"> |
| | | select count(1) from sys_laboratory_container as su |
| | | left join sys_laboratory as ss on su.laboratory_id = ss.id |
| | | left join sys_controller sc on sc.controller_code=su.controller_code |
| | | where su.valid_flag = 1 |
| | | AND sc.valid_flag = 1 |
| | | AND ss.valid_flag = 1 |
| | | <if test="laboratoryType != null and laboratoryType != ''"> |
| | | and ss.type = #{laboratoryType} |
| | |
| | | <if test="project != null and project != ''"> |
| | | and su.project like concat("%",#{project},"%") |
| | | </if> |
| | | <if test="controllerName != null and controllerName != ''"> |
| | | and sc.controller_name like concat("%",#{controllerName},"%") |
| | | </if> |
| | | </select> |
| | | |
| | | <insert id="insertSysLaboratoryContainer" parameterType="com.nanometer.smartlab.entity.SysLaboratoryContainer"> |
| | | insert into sys_laboratory_container(id, laboratory_id, type, container_code, info_code, structure, name, valid_flag, character_left, character_right, create_time, update_time, controller_code,project) |
| | | values (#{id}, #{laboratoryId}, #{type}, #{containerCode}, #{infoCode}, #{structure}, #{name}, 1, #{characterLeft}, #{characterRight}, now(), now(), #{controllerCode},#{project}) |
| | | <insert id="insertSysLaboratoryContainer" parameterType="com.nanometer.smartlab.entity.SysLaboratoryContainer" useGeneratedKeys = "true" keyProperty = "id"> |
| | | insert into sys_laboratory_container( laboratory_id, type, container_code, info_code, structure, name, valid_flag, character_left, character_right, create_time, update_time, controller_code,project) |
| | | values ( #{laboratoryId}, #{type}, #{containerCode}, #{infoCode}, #{structure}, #{name}, 1, #{characterLeft}, #{characterRight}, now(), now(), #{controllerCode},#{project}) |
| | | </insert> |
| | | |
| | | <update id="updateSysLaboratoryContainer" parameterType="com.nanometer.smartlab.entity.SysLaboratoryContainer"> |
| | |
| | | </foreach> |
| | | </select> |
| | | |
| | | <update id="updateSysLaboratoryContainerClearControllerCode" parameterType="java.lang.String" > |
| | | <update id="updateSysLaboratoryContainerClearControllerCode"> |
| | | update sys_laboratory_container set |
| | | controller_code=null |
| | | where controller_code=#{controllerCode} |
| | | </update> |
| | | |
| | | <select id="getSysLaboratoryContainerByControllerCode" parameterType="java.lang.String" resultMap="SysLaboratoryContainer"> |
| | | <select id="getSysLaboratoryContainerByControllerCode" resultMap="SysLaboratoryContainer"> |
| | | select * from sys_laboratory_container |
| | | where controller_code = #{controllerCode} |
| | | </select> |
| | |
| | | </update> |
| | | |
| | | |
| | | <select id="getContainerPersonInCharge" parameterType="java.lang.String" resultType="java.util.Map"> |
| | | <select id="getContainerPersonInCharge" resultType="java.util.Map"> |
| | | SELECT slc.container_code containCode,su.name name,su.phone phone, |
| | | CONCAT(sl.location1,"-",sl.location2) location |
| | | FROM sys_laboratory_container slc |
| | |
| | | |
| | | |
| | | |
| | | <select id="selectLocationByContainerCode" parameterType="java.lang.String" resultType="java.util.Map"> |
| | | <select id="selectLocationByContainerCode" resultType="java.util.Map"> |
| | | SELECT |
| | | sl.name, |
| | | CONCAT(sl.location1,"-",sl.location2) location,sl.bar_code barCode |
| | |
| | | and sl.valid_flag = 1 |
| | | </select> |
| | | |
| | | <select id="selectProjectsByContainerCode" resultType="java.lang.String"> |
| | | <select id="selectProjectsByContainerCode" resultType="string"> |
| | | SELECT |
| | | slc.project |
| | | FROM |
| | |
| | | and su.id != #{editId} |
| | | </if> |
| | | </select> |
| | | |
| | | <select id="getLaboratoryByProjectId" resultMap="SysLaboratoryContainer"> |
| | | select * from sys_laboratory_container |
| | | where find_in_set(#{projectId},project) |
| | | </select> |
| | | </mapper> |