追溯查询模块代码提交
parent
88b5ae6a04
commit
6ac03f9d3a
@ -1,4 +1,15 @@
|
||||
<?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.glxp.api.dao.trace.TraceManuCodeRelMapper">
|
||||
<select id="filterTraceManuCodeRel" parameterType="com.glxp.api.req.trace.TraceManuDetailRequest"
|
||||
resultType="com.glxp.api.res.trace.TraceManuCodeRellResponse">
|
||||
SELECT tmo.nameCode,tmo.cpmctymc,tmo.ggxh,tmcr.*
|
||||
FROM trace_manu_code_rel tmcr
|
||||
LEFT JOIN trace_manu_order tmo ON tmo.billNo = tmcr.manuOrderNo
|
||||
<where>
|
||||
<if test="manuOrderNo != '' and manuOrderNo != null">
|
||||
and manuOrderNo = #{manuOrderNo}
|
||||
</if>
|
||||
</where>
|
||||
</select>
|
||||
</mapper>
|
||||
|
Loading…
Reference in New Issue