package com.web.supplier.service; import javax.servlet.http.HttpServletResponse; import org.springframework.data.domain.PageRequest; import com.app.base.data.ApiResponseResult; public interface PrintService { // 打印标签-2022-6-14 ApiResponseResult printLabel(String barcodeType, String suppNo, String ebeln,String ebelnQty ,String materialNo, String qty, String prodDate, String shipDate, String envirTag, String shelfLife, String flevel, String printQty, String remark,String actionType) throws Exception; //打印送货单-202206-18 ApiResponseResult printDelivery(String deliveryNo)throws Exception; //重打标签-2022-6-24 ApiResponseResult rePrintLabel(String labelId,String actionType)throws Exception; }