cuilei
2025-06-10 123b81e8a7d6b78fc4b0729f5fd6b32a876cf740
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.tms.mapper.PreparationOrderDetailMapper">
 
    <delete id="deleteByMainId" parameterType="java.lang.String">
        DELETE
        FROM  tms_preparation_order_detail
        WHERE
            preparation_order_id = #{mainId}
    </delete>
 
    <select id="selectByMainId" parameterType="java.lang.String" resultType="org.jeecg.modules.tms.entity.PreparationOrderDetail">
        SELECT *
        FROM  tms_preparation_order_detail
        WHERE
            preparation_order_id = #{mainId}
    </select>
</mapper>