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); } }