修改包名

This commit is contained in:
lifangliang 2025-07-14 09:51:48 +08:00
parent 34890faee6
commit 55a0898b1d
3 changed files with 6 additions and 6 deletions

View File

@ -9,10 +9,10 @@
<relativePath/> <!-- lookup parent from repository -->
</parent>
<groupId>com.goeing</groupId>
<artifactId>printServer</artifactId>
<artifactId>zipship</artifactId>
<version>0.0.1-SNAPSHOT</version>
<name>goeingPrintServer</name>
<description>goeingPrintServer</description>
<name>goeingPrintService</name>
<description>goeingPrintService</description>
<url/>
<licenses>
<license/>

View File

@ -69,7 +69,7 @@ public class PrintTaskSearchPanel extends JPanel implements LocaleChangeListener
gbc.gridx = 1;
gbc.weightx = 1.0;
printerComboBox = new JComboBox<>(new String[]{MessageUtils.getMessage("common.all"), "打印机1", "打印机2", "打印机3"});
printerComboBox = new JComboBox<>(new String[]{MessageUtils.getMessage("common.all")});
searchPanel.add(printerComboBox, gbc);
// 状态选择

View File

@ -70,12 +70,12 @@ public class PrinterClient implements ApplicationRunner {
// 发送任务已接收的确认消息
Map<String,String> map = new HashMap<>();
map.put("status", "queued");
map.put("status", "success");
map.put("msg", "打印任务已加入队列,等待处理");
map.put("queueSize", String.valueOf(printQueueService.getQueueSize()));
WebSocketMessageDTO queuedResponse = new WebSocketMessageDTO();
queuedResponse.setType("QUEUED");
queuedResponse.setType("RESPONSE");
queuedResponse.setRequestId(webSocketMessageDTO.getRequestId());
queuedResponse.setPayload(JSONUtil.toJsonStr(map));