Commit add9a4ea authored by zhengyi's avatar zhengyi

报价单详情查询sql修复

parent 1e47e0bd
...@@ -436,8 +436,8 @@ public interface OfferMapper extends BaseMapperX<OfferDO> { ...@@ -436,8 +436,8 @@ public interface OfferMapper extends BaseMapperX<OfferDO> {
"LEFT JOIN system_dept d on o.dept_id = d.id", "LEFT JOIN system_dept d on o.dept_id = d.id",
"LEFT JOIN system_user u on o.salesman_id = u.id", "LEFT JOIN system_user u on o.salesman_id = u.id",
"WHERE", "WHERE",
"o.order_id = #{orderId}", "o.offer_id = #{offerId}",
"</script>" "</script>"
}) })
OfferRespVO info(Long offerId); OfferRespVO info(@Param("offerId") Long offerId);
} }
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment