whyclxw
2025-03-31 cea1480d01abf54e3b7a80dc94a0108c424e17f7
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
package com.whyc.controller;
 
import com.whyc.dto.LockHisDto;
import com.whyc.dto.LockIdDto;
import com.whyc.dto.Response;
import com.whyc.pojo.plus_user.UserInf;
import com.whyc.service.LockIdcardService;
import com.whyc.util.ActionUtil;
import io.swagger.annotations.Api;
import io.swagger.annotations.ApiOperation;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.web.bind.annotation.PostMapping;
import org.springframework.web.bind.annotation.RequestBody;
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;
 
}