1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
| package org.dromara.demo.mapper;
|
|
| import org.apache.ibatis.annotations.Mapper;
| import org.dromara.common.mybatis.core.mapper.BaseMapperPlus;
| import org.dromara.demo.domain.JdCruxIndexData;
| import org.dromara.demo.domain.vo.JdCruxIndexDataVo;
|
| /**
| * 关键指标数据(卡片)Mapper接口
| *
| * @author Lion Li
| * @date 2024-02-22
| */
| @Mapper
| public interface JdCruxIndexDataMapper extends BaseMapperPlus<JdCruxIndexData, JdCruxIndexDataVo> {
|
| }
|
|