whyclxw
2025-04-17 86d7c7928cee6c86cadd3e9b22c9913c672f6d39
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;
 
}