whyclxw
2024-12-17 53a88f20fe9b4890fb0e09ecbdd17395e7c70ea5
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
package com.whyc.controller;
 
import com.whyc.service.LockCtlLogService;
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;
 
@RestController
@Api(tags = "开锁日志")
@RequestMapping("lockLog")
public class LockCtlLogController {
    @Autowired
    private LockCtlLogService service;
}