15 lines
422 B
XML
15 lines
422 B
XML
|
|
<?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.fizz.business.mapper.ProMatmapMapper">
|
||
|
|
|
||
|
|
<!-- 更新 pro_matmap 表的 matid 字段 -->
|
||
|
|
<update id="updateMatidByDisplayName">
|
||
|
|
UPDATE pro_matmap
|
||
|
|
SET matid = #{matid}
|
||
|
|
WHERE display_name = 'MILL'
|
||
|
|
</update>
|
||
|
|
|
||
|
|
|
||
|
|
</mapper>
|