whyclxw
2025-04-21 3a6d4de77253bb86aed3383f9b9c54be5c25752c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
package com.whyc.controller;
 
import com.whyc.dto.*;
import com.whyc.service.LockIdcardService;
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;
 
import java.text.ParseException;
 
@RestController
@Api(tags = "锁的id卡查询")
@RequestMapping("lockId")
public class LockIdcardController {
 
    @Autowired
    private LockIdcardService service;
 
}