起菜上菜接口
This commit is contained in:
@@ -0,0 +1,22 @@
|
||||
package com.czg.order.dto;
|
||||
|
||||
import lombok.Data;
|
||||
|
||||
/**
|
||||
* @author Administrator
|
||||
*/
|
||||
@Data
|
||||
public class OrderDetailStatusDTO {
|
||||
/**
|
||||
* 订单id
|
||||
*/
|
||||
private Long orderId;
|
||||
/**
|
||||
* 订单详情id
|
||||
*/
|
||||
private Long orderDetailId;
|
||||
/**
|
||||
* 0起菜 1上菜
|
||||
*/
|
||||
private Integer type;
|
||||
}
|
||||
@@ -71,4 +71,6 @@ public interface OrderInfoService extends IService<OrderInfo> {
|
||||
|
||||
void updateOrderDetailStatus(Long orderDetailId);
|
||||
|
||||
Boolean upOrderDetail(Long shopId, OrderDetailStatusDTO detailStatusDTO);
|
||||
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user