MaintenanceMapper.xml 691 B

123456789101112131415161718
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <!DOCTYPE mapper PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
  3. "http://mybatis.org/dtd/mybatis-3-mapper.dtd">
  4. <mapper namespace="com.tld.mapper.MaintenanceMapper">
  5. <!-- 查询字典内容 -->
  6. <select id="getMaintenance" resultType="java.util.Map">
  7. select * from ${tableName}
  8. <trim prefix="WHERE" prefixOverrides="and |or">
  9. <if test="tldId != null and tldId != ''">
  10. and tld_id = #{tldId}
  11. </if>
  12. </trim>
  13. </select>
  14. <!-- 修改物料字典 -->
  15. <update id="updateMaterial">
  16. update tld_material set size = #{size} where tld_id = #{tldId}
  17. </update>
  18. </mapper>