1
2
3
4
5
6
7
8
9
10
11
12
13
| package com.moral.api.mapper;
|
| import io.lettuce.core.dynamic.annotation.Param;
|
| import java.util.List;
|
| import com.baomidou.mybatisplus.core.mapper.BaseMapper;
| import com.moral.api.entity.SecondCruiserSort;
|
| public interface SecondCruiserSortMapper extends BaseMapper<SecondCruiserSort> {
|
| List<SecondCruiserSort> getSort(@Param("mac") String mac, @Param("startTime") String startTime,@Param("endTime") String endTime);
| }
|
|