swb
2024-07-04 3faca3fc0bb178afd9cf17222bee14e1c8722f6b
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);
}