123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105 |
- <?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="com.huaxia.imes.mapper.SysMeConfigMapper">
- <!--查询配置信息-->
- <select id="queryList" resultType="com.huaxia.comm.domain.imes.SysMeConfig">
- select *
- from sys_me_config as A
- <where>
- <if test="confiTime != null and confiTime != ''">
- and A.confi_time like concat('%', #{confiTime}, '%')
- </if>
- <if test="capacity != null">
- and A.capacity = #{capacity}
- </if>
- <if test="tblMachineNo != null and tblMachineNo != ''">
- and A.tbl_machine_no = #{tblMachineNo}
- </if>
- <if test="createTime != null">
- and A.create_time = #{createTime}
- </if>
- <if test="updateTime != null">
- and A.update_time = #{updateTime}
- </if>
- <if test="createBy != null and createBy != ''">
- and A.create_by = #{createBy}
- </if>
- <if test="updateBy != null and updateBy != ''">
- and A.update_by = #{updateBy}
- </if>
- </where>
- </select>
- <select id="countByParams" resultType="java.lang.Integer">
- SELECT COUNT(*)
- FROM sys_me_config
- <where>
- <if test="params.boy != null">
- <if test="params.boy.tblMachineNo != null">
- AND tblMachineNo = #{params.boy.tblMachineNo}
- </if>
- <if test="params.boy.confiTime != null">
- AND confiTime = #{params.boy.confiTime}
- </if>
- <if test="params.boy.capacity != null">
- AND capacity = #{params.boy.capacity}
- </if>
- <if test="params.boy.createTime != null">
- AND createTime = #{params.boy.createTime}
- </if>
- <if test="params.boy.updateTime != null">
- AND updateTime = #{params.boy.updateTime}
- </if>
- <if test="params.boy.createBy != null">
- AND createBy = #{params.boy.createBy}
- </if>
- <if test="params.boy.updateBy != null">
- AND updateBy = #{params.boy.updateBy}
- </if>
- <if test="params.boy.machine_name !=null">
- AND machine_name = #{params.boy.machineName}
- </if>
- </if>
- </where>
- </select>
- <!-- 分页查询列表 -->
- <select id="queryListPage" resultType="com.huaxia.comm.domain.imes.SysMeConfig">
- SELECT *
- FROM sys_me_config
- <where>
- <if test="params.boy != null">
- <if test="params.boy.tblMachineNo != null">
- AND tblMachineNo = #{params.boy.tblMachineNo}
- </if>
- <if test="params.boy.confiTime != null">
- AND confiTime = #{params.boy.confiTime}
- </if>
- <if test="params.boy.capacity != null">
- AND capacity = #{params.boy.capacity}
- </if>
- <if test="params.boy.createTime != null">
- AND createTime = #{params.boy.createTime}
- </if>
- <if test="params.boy.updateTime != null">
- AND updateTime = #{params.boy.updateTime}
- </if>
- <if test="params.boy.createBy != null">
- AND createBy = #{params.boy.createBy}
- </if>
- <if test="params.boy.updateBy != null">
- AND updateBy = #{params.boy.updateBy}
- </if>
- <if test="params.boy.machine_name !=null">
- AND machine_name = #{params.boy.machineName}
- </if>
- </if>
- </where>
- ORDER BY id
- OFFSET #{params.offset} ROWS
- FETCH NEXT #{params.pageSize} ROWS ONLY
- </select>
- </mapper>
|