123456789101112131415161718192021222324 |
- <?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.zfire.jiasm.syncdata.dao.mapper.RepairMxDownloadMapper">
- <select id="getMx" parameterType="com.zfire.jiasm.syncdata.parameter.OrderPar" resultType="com.zfire.jiasm.syncdata.plus.entity.OrderProduct">
- select a.pgmxid,a.jxno as province_id,a.jxmc as product_name,a.njtm as inside_code,a.wjtm as out_code,
- a.fee as price,a.shul as num,a.wwsl as undone_num,a.created_by,a.created_date as create_time,
- a.last_modified_by as update_by,a.last_modified_date as update_time,a.gzxx as fault_reason,
- b.websit_id as sale_websit,a.xsdwdh as sale_websit_mobile,
- c.websit_id as service_websit,a.fwdwdh as service_websit_mobile, a.gmsj as buy_time,a.beiz as remark
- from itf_tbl_assign_mx_download a
- left join websit b on b.websit_id in
- (select websit_id from customer_information_websit
- where ref_websit_id in
- (select xsdw from itf_tbl_assign_mx_download where syn_req_id = #{request.synReqId}))
- left join websit c on c.websit_id in
- (select websit_id from customer_information_websit
- where ref_websit_id in
- (select fwdw from itf_tbl_assign_mx_download where syn_req_id = #{request.synReqId}))
- where syn_req_id = #{request.synReqId}
- </select>
- </mapper>
|