1.代客下单 删除订单接口

This commit is contained in:
2024-08-19 10:11:51 +08:00
committed by 牛叉闪闪
parent fa868cce31
commit 4909ebe807
4 changed files with 40 additions and 14 deletions

View File

@@ -0,0 +1,9 @@
package cn.ysk.cashier.dto.shoptable;
import lombok.Data;
@Data
public class DeleteOrderDTO {
private Integer shopId;
private Integer orderId;
}