whyclxw
2025-03-31 cea1480d01abf54e3b7a80dc94a0108c424e17f7
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.*;
 
@RestController
@Api(tags = "开锁日志")
@RequestMapping("lockLog")
public class LockCtlLogController {
    @Autowired
    private LockCtlLogService service;
 
}