桌码下载修改

This commit is contained in:
张松
2025-02-28 09:37:27 +08:00
parent 41faa3a5f1
commit 10e399bde5
3 changed files with 19 additions and 9 deletions

View File

@@ -4,6 +4,7 @@ import com.czg.account.dto.table.ShopTableAddDTO;
import com.czg.account.dto.table.ShopTableBindDTO;
import com.czg.account.entity.ShopTable;
import com.mybatisflex.core.service.IService;
import jakarta.servlet.http.HttpServletRequest;
import jakarta.servlet.http.HttpServletResponse;
import jakarta.validation.constraints.NotBlank;
import jakarta.validation.constraints.NotNull;
@@ -22,7 +23,7 @@ public interface ShopTableService extends IService<ShopTable> {
ShopTable getOneByTableCode(@NotNull Long shopId,@NotBlank String tableCode);
void createQrCode(Long shopId, Integer num, HttpServletResponse response) throws IOException;
void createQrCode(Long shopId, Integer num, HttpServletResponse response, HttpServletRequest request) throws IOException;
Boolean bind(Long shopId, ShopTableBindDTO shopTableBindDTO);