| 123456789101112131415161718 |
- <?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.tld.mapper.MaintenanceMapper">
- <!-- 查询字典内容 -->
- <select id="getMaintenance" resultType="java.util.Map">
- select * from ${tableName}
- <trim prefix="WHERE" prefixOverrides="and |or">
- <if test="tldId != null and tldId != ''">
- and tld_id = #{tldId}
- </if>
- </trim>
- </select>
- <!-- 修改物料字典 -->
- <update id="updateMaterial">
- update tld_material set size = #{size} where tld_id = #{tldId}
- </update>
- </mapper>
|