修复暂停计划

This commit is contained in:
huangdeliang
2021-03-02 18:56:31 +08:00
parent 0f47bb8bc9
commit 14f7113765
4 changed files with 10 additions and 1 deletions

View File

@ -217,7 +217,7 @@
<!-- 根据cusId查询食谱计划-->
<select id="selectPlanListByCusId" parameterType="Long" resultMap="SysRecipesPlanResult">
select id, out_id, start_date, end_date, start_num_day, end_num_day, recipes_id, review_status from sys_recipes_plan
where cus_id=#{cusId} order by id desc
where cus_id=#{cusId} order by id asc
</select>
<select id="getCusIdByOutId" parameterType="String" resultType="Long">