Browse Source

委托服务费用

master
张彭杰 3 weeks ago
parent
commit
0ae333f079
1 changed files with 2 additions and 2 deletions
  1. 4
      dating-agency-mall-server/src/main/resources/mapper/eso/EntrustServiceOrderDao.xml

4
dating-agency-mall-server/src/main/resources/mapper/eso/EntrustServiceOrderDao.xml

@ -18,7 +18,7 @@
daeso.create_time
from da_entrust_service_order as daeso
LEFT JOIN da_order as dao on dao.id=daeso.associate_order_id
where daeso.is_delete=0
where daeso.is_delete=0 and daeso.`status` !=0
<if test="queryParams.queryInitiatorUserId != null">
and daeso.initiator_user_id = #{queryParams.queryInitiatorUserId}
</if>
@ -49,7 +49,7 @@
daeso.create_time
from da_entrust_service_order as daeso
LEFT JOIN da_order as dao on dao.id=daeso.associate_order_id
where daeso.is_delete=0
where daeso.is_delete=0 and daeso.`status` !=0
<if test="queryParams.queryMatchmakerId != null">
and daeso.matchmaker_id = #{queryParams.queryMatchmakerId}
</if>

Loading…
Cancel
Save