新火炬后端单体项目初始化代码
cuilei
2 天以前 c9d3f6285440719077a2ff48e922f94b0258fbc3
1
2
3
4
5
6
7
8
9
10
<?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.pms.mapper.PmsProcessBillMaterialsMapper">
    <select id="queryPageList" resultType="org.jeecg.modules.pms.entity.PmsProcessBillMaterials">
        select pbm.*, po.order_code
        from pms_process_bill_materials pbm
        left join mes_production_order po on pbm.order_id = po.id
        ${ew.customSqlSegment}
    </select>
</mapper>