1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
| package com.ruoyi.dataInterchange.dao;
|
| import com.ruoyi.dataInterchange.model.UPExgMsgRegister;
| import org.springframework.data.elasticsearch.repository.ElasticsearchRepository;
| import org.springframework.stereotype.Repository;
|
| /**
| * @author zhibing.pu
| * @Date 2025/3/7 16:10
| */
| @Repository
| public interface UPExgMsgRegisterDao extends ElasticsearchRepository<UPExgMsgRegister, String> {
|
| /**
| * 根据车牌号查询数据
| *
| * @param vehicleNo
| * @return
| */
| UPExgMsgRegister findByVehicleNo(String vehicleNo);
| }
|
|