whycxzp
2022-12-07 c8b9a3f16a82b5285449961a2de725d1a2bdbd07
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
package com.whyc.controller;
 
import com.whyc.service.ProcedureDocService;
import io.swagger.annotations.Api;
import io.swagger.annotations.ApiOperation;
import org.springframework.beans.factory.annotation.Autowired;
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 {
 
    @Autowired
    private ProcedureDocService service;
 
    @GetMapping("socket解释")
    @ApiOperation(value = "确认过程-各种类的确认状态统计-socket解释",notes = "ws协议,路径:/cad/procedureDocApproving,直连")
    public void socket(){
    }
 
}