新火炬后端单体项目初始化代码
zhangherong
10 天以前 e6d788eef335aa02ac306e984c44affa68ab971c
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.TmsToolScrapDetailMapper">
 
    <delete id="deleteByMainId" parameterType="java.lang.String">
        DELETE 
        FROM  tms_tool_scrap_detail 
        WHERE
             order_id = #{mainId} 
    </delete>
    
    <select id="selectByMainId" parameterType="java.lang.String" resultType="org.jeecg.modules.tms.entity.TmsToolScrapDetail">
        SELECT * 
        FROM  tms_tool_scrap_detail
        WHERE
             order_id = #{mainId} 
    </select>
</mapper>