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
28
29
30
| package org.dromara.demo.mapper;
|
| import org.dromara.demo.domain.RsTrafficIndex;
| import org.dromara.demo.domain.vo.RsTrafficIndexVo;
| import org.dromara.common.mybatis.core.mapper.BaseMapperPlus;
| import org.dromara.system.domain.SysOss;
|
| import java.util.List;
| import java.util.Map;
|
| /**
| * 交通指数Mapper接口
| *
| * @author Lion Li
| * @date 2024-02-26
| */
| public interface RsTrafficIndexMapper extends BaseMapperPlus<RsTrafficIndex, RsTrafficIndexVo> {
|
| /**
| * 获取图标配置
| * @return 图标
| */
| List<SysOss> icon();
|
| /**
| * 近3年交通事故指数
| * @return 近3年交通事故指数
| */
| RsTrafficIndexVo getTrafficIndex();
| }
|
|