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(){
|
}
|
|
}
|