whycxzp
2023-06-25 8d110762f4e4aacf02f837aee3598b41a72e1e37
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
package com.whyc.controller;
 
import com.whyc.service.SOPFileTypeService;
import io.swagger.annotations.Api;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RestController;
 
@RequestMapping("sopFileType")
@RestController
@Api(tags = "SOP文件类型")
public class SOPFileTypeController {
 
    @Autowired
    private SOPFileTypeService service;
 
}