修复菜谱截取功能

This commit is contained in:
huangdeliang
2021-04-06 19:13:54 +08:00
parent 13f25e4f02
commit f2946fea59
4 changed files with 45 additions and 12 deletions

View File

@ -480,7 +480,7 @@
<!-- 根据客户ID查询该客户下所有订单 -->
<select id="getAllOrderByCusId" parameterType="Long" resultMap="SysOrderResult">
select * from sys_order where del_flag = 0 and cus_id = #{cusId} order by order_id asc
select * from sys_order where del_flag = 0 and cus_id = #{cusId} order by order_time asc
</select>
</mapper>