食谱计划优化、按天计算提成优化、图片logo修改
This commit is contained in:
@ -38,6 +38,18 @@ public class SysRecipesPlanController extends BaseController
|
||||
return getDataTable(list);
|
||||
}
|
||||
|
||||
/**
|
||||
* 根据订单查询完整食谱计划列表
|
||||
*/
|
||||
@PreAuthorize("@ss.hasPermi('recipes:recipesPlan:list')")
|
||||
@GetMapping("/getAllPlanByOrderId")
|
||||
public TableDataInfo getAllPlanByOrderId(SysRecipesPlan sysRecipesPlan)
|
||||
{
|
||||
startPage();
|
||||
List<SysRecipesPlan> list = sysRecipesPlanService.selectPlanListByOrderId(sysRecipesPlan);
|
||||
return getDataTable(list);
|
||||
}
|
||||
|
||||
/**
|
||||
* 获取食谱计划详细信息
|
||||
*/
|
||||
|
Reference in New Issue
Block a user