1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
| package com.moral.api.mapper;
|
| import com.moral.api.entity.Device;
| import com.baomidou.mybatisplus.core.mapper.BaseMapper;
| import com.moral.api.util.DeviceExcelDTO;
| import org.apache.ibatis.annotations.Param;
|
| import java.util.List;
|
| /**
| * <p>
| * 设备表 Mapper 接口
| * </p>
| *
| * @author moral
| * @since 2021-06-22
| */
| public interface DeviceMapper extends BaseMapper<Device> {
|
| List<DeviceExcelDTO> ListDeviceExcel(@Param("startTime") String startTime,@Param("endTime") String endTime,@Param("id") int id);
| }
|
|