1234567891011 |
- <?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="com.fjhx.sale.mapper.ext.ExtQuotationProductBomMapper">
- <select id="getList" resultType="com.fjhx.sale.entity.ext.vo.ExtQuotationProductBomVo">
- SELECT eqpb.*,
- pp.`name` AS materialName
- FROM ext_quotation_product_bom eqpb
- LEFT JOIN production_processes pp ON eqpb.material_id = pp.id
- ${ew.customSqlSegment}
- </select>
- </mapper>
|