whycxzp
2023-10-20 9ac1c4a81b6ad9bbfe733adbd81af63b2c2a126a
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
package com.whyc.controller;
 
import io.swagger.annotations.Api;
import io.swagger.annotations.ApiOperation;
import org.springframework.web.bind.annotation.GetMapping;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RestController;
 
@Api(tags = "流程卡和SOP")
@RequestMapping("procedureDocApproving")
@RestController
public class ProcedureDocApprovingController {
 
    @GetMapping("socket解释")
    @ApiOperation(value = "确认过程-各种类的确认状态统计-socket解释",notes = "ws协议,路径:/cad/procedureDocApproving,直连")
    public void socket(){
    }
 
}