台桌批量生成桌码接口

This commit is contained in:
张松
2025-02-18 16:11:32 +08:00
parent f00b51001a
commit d323ac3ef9
9 changed files with 115 additions and 4 deletions

View File

@@ -1,8 +1,12 @@
package com.czg.account.service;
import com.czg.account.dto.table.ShopTableAddDTO;
import com.mybatisflex.core.paginate.Page;
import com.mybatisflex.core.service.IService;
import com.czg.account.entity.ShopTable;
import jakarta.servlet.http.HttpServletResponse;
import java.io.IOException;
/**
* 台桌配置 服务层。
@@ -13,4 +17,6 @@ import com.czg.account.entity.ShopTable;
public interface ShopTableService extends IService<ShopTable> {
Boolean add(Long shopId, ShopTableAddDTO shopTableAddDTO);
void createQrCode(Long shopId, Integer num, HttpServletResponse response) throws IOException;
}