食谱计划生成修改,根据客户ID重新生成,暂停记录不需要加订单ID
This commit is contained in:
@ -100,4 +100,10 @@ public interface SysOrderMapper
|
||||
* @return
|
||||
*/
|
||||
int selectSimpleOrderMessageCount(SysCommision sysCommision);
|
||||
|
||||
/**
|
||||
* 根据客户ID查询对应所有订单
|
||||
* @return
|
||||
*/
|
||||
List<SysOrder> getAllOrderByCusId(@Param("cusId") Long cusId);
|
||||
}
|
@ -82,4 +82,11 @@ public interface SysOrderPauseMapper
|
||||
* @return
|
||||
*/
|
||||
List<SysOrderPause> getPauseListByOrderId(@Param("orderId")Long orderId);
|
||||
|
||||
/**
|
||||
* 根据客户ID、订单ID查询暂停记录
|
||||
* @param sysOrderPause
|
||||
* @return
|
||||
*/
|
||||
List<SysOrderPause> getPauseListByCusIdAndOrderId(SysOrderPause sysOrderPause);
|
||||
}
|
@ -87,7 +87,7 @@ public interface SysRecipesPlanMapper
|
||||
* @param customerId
|
||||
* @return
|
||||
*/
|
||||
SysRecipesPlan getLastDayRecipesPlan(@Param("customerId")Long customerId);
|
||||
SysRecipesPlan getLastDayRecipesPlan(@Param("customerId")Long customerId, @Param("orderId")Long orderId);
|
||||
|
||||
/**
|
||||
* 根据订单ID查询食谱计划
|
||||
|
Reference in New Issue
Block a user