来单提醒 + 客户催单 业务代码开发

This commit is contained in:
zvv
2026-04-06 16:21:58 +08:00
parent 21bfc4430b
commit 0232c08966
5 changed files with 148 additions and 0 deletions

View File

@@ -0,0 +1,18 @@
package com.sky.config;
import org.springframework.context.annotation.Bean;
import org.springframework.context.annotation.Configuration;
import org.springframework.web.socket.server.standard.ServerEndpointExporter;
/**
* WebSocket配置类用于注册WebSocket的Bean
*/
@Configuration
public class WebSocketConfiguration {
@Bean
public ServerEndpointExporter serverEndpointExporter() {
return new ServerEndpointExporter();
}
}