SysMeConfigMapper.xml 4.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105
  1. <?xml version="1.0" encoding="UTF-8" ?>
  2. <!DOCTYPE mapper
  3. PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
  4. "http://mybatis.org/dtd/mybatis-3-mapper.dtd">
  5. <mapper namespace="com.huaxia.imes.mapper.SysMeConfigMapper">
  6. <!--查询配置信息-->
  7. <select id="queryList" resultType="com.huaxia.comm.domain.imes.SysMeConfig">
  8. select *
  9. from sys_me_config as A
  10. <where>
  11. <if test="confiTime != null and confiTime != ''">
  12. and A.confi_time like concat('%', #{confiTime}, '%')
  13. </if>
  14. <if test="capacity != null">
  15. and A.capacity = #{capacity}
  16. </if>
  17. <if test="tblMachineNo != null and tblMachineNo != ''">
  18. and A.tbl_machine_no = #{tblMachineNo}
  19. </if>
  20. <if test="createTime != null">
  21. and A.create_time = #{createTime}
  22. </if>
  23. <if test="updateTime != null">
  24. and A.update_time = #{updateTime}
  25. </if>
  26. <if test="createBy != null and createBy != ''">
  27. and A.create_by = #{createBy}
  28. </if>
  29. <if test="updateBy != null and updateBy != ''">
  30. and A.update_by = #{updateBy}
  31. </if>
  32. </where>
  33. </select>
  34. <select id="countByParams" resultType="java.lang.Integer">
  35. SELECT COUNT(*)
  36. FROM sys_me_config
  37. <where>
  38. <if test="params.boy != null">
  39. <if test="params.boy.tblMachineNo != null">
  40. AND tblMachineNo = #{params.boy.tblMachineNo}
  41. </if>
  42. <if test="params.boy.confiTime != null">
  43. AND confiTime = #{params.boy.confiTime}
  44. </if>
  45. <if test="params.boy.capacity != null">
  46. AND capacity = #{params.boy.capacity}
  47. </if>
  48. <if test="params.boy.createTime != null">
  49. AND createTime = #{params.boy.createTime}
  50. </if>
  51. <if test="params.boy.updateTime != null">
  52. AND updateTime = #{params.boy.updateTime}
  53. </if>
  54. <if test="params.boy.createBy != null">
  55. AND createBy = #{params.boy.createBy}
  56. </if>
  57. <if test="params.boy.updateBy != null">
  58. AND updateBy = #{params.boy.updateBy}
  59. </if>
  60. <if test="params.boy.machine_name !=null">
  61. AND machine_name = #{params.boy.machineName}
  62. </if>
  63. </if>
  64. </where>
  65. </select>
  66. <!-- 分页查询列表 -->
  67. <select id="queryListPage" resultType="com.huaxia.comm.domain.imes.SysMeConfig">
  68. SELECT *
  69. FROM sys_me_config
  70. <where>
  71. <if test="params.boy != null">
  72. <if test="params.boy.tblMachineNo != null">
  73. AND tblMachineNo = #{params.boy.tblMachineNo}
  74. </if>
  75. <if test="params.boy.confiTime != null">
  76. AND confiTime = #{params.boy.confiTime}
  77. </if>
  78. <if test="params.boy.capacity != null">
  79. AND capacity = #{params.boy.capacity}
  80. </if>
  81. <if test="params.boy.createTime != null">
  82. AND createTime = #{params.boy.createTime}
  83. </if>
  84. <if test="params.boy.updateTime != null">
  85. AND updateTime = #{params.boy.updateTime}
  86. </if>
  87. <if test="params.boy.createBy != null">
  88. AND createBy = #{params.boy.createBy}
  89. </if>
  90. <if test="params.boy.updateBy != null">
  91. AND updateBy = #{params.boy.updateBy}
  92. </if>
  93. <if test="params.boy.machine_name !=null">
  94. AND machine_name = #{params.boy.machineName}
  95. </if>
  96. </if>
  97. </where>
  98. ORDER BY id
  99. OFFSET #{params.offset} ROWS
  100. FETCH NEXT #{params.pageSize} ROWS ONLY
  101. </select>
  102. </mapper>