zhangherong
2025-06-12 6abc1a2fb78003bb1ea6283d813b8ccc0bcd9b2b
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
<?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="org.jeecg.modules.base.mapper.WarehouseClientMapper">
 
    <delete id="deleteByMainId" parameterType="java.lang.String">
        DELETE
        FROM  mom_base_warehouse_client
        WHERE
             warehouse_id = #{mainId}
    </delete>
 
    <select id="selectByMainId" parameterType="java.lang.String" resultType="org.jeecg.modules.base.entity.WarehouseClient">
        SELECT *
        FROM  mom_base_warehouse_client
        WHERE
             warehouse_id = #{mainId}
    </select>
</mapper>