whyclxw
3 天以前 bfa320956f20988fe671b0c4d25aa82fe766a98d
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
package com.whyc.controller;
 
import com.whyc.dto.Response;
import com.whyc.service.TechnicalSpecificationLockLogService;
import io.swagger.annotations.Api;
import io.swagger.annotations.ApiOperation;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.web.bind.annotation.*;
 
 
@Api(tags = "技术规格书日志")
@RestController
@RequestMapping("technicalSpecificationLog")
public class TechnicalSpecificationLockLogController {
    @Autowired
    private TechnicalSpecificationLockLogService service;
 
    @ApiOperation("查询指定id的说明书的锁定日志")
    @GetMapping("getLockLogInfoById")
    public Response getLockLogInfoById(@RequestParam int id){
        return service.getLockLogInfoById(id);
    }
 
 
}