whyclxw
2025-04-10 1505d97abb4b18e900a9305a2b5a06a07ad6dece
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;
 
}