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