package com.hxzk.mapper;
|
|
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
|
import com.github.pagehelper.PageInfo;
|
import com.hxzk.pojo.TbLixianrecord0829;
|
import org.apache.ibatis.annotations.Param;
|
import org.apache.ibatis.annotations.Select;
|
|
import java.util.List;
|
|
public interface LiXianTongJiDao extends BaseMapper<TbLixianrecord0829> {
|
|
@Select("select * from tb_lixianrecord_0829 where name like #{name} and time > #{time1} and time < #{time2} or tagid like #{name} and time > #{time1} and time < #{time2} ")
|
List<TbLixianrecord0829> findSearch(@Param("time1") String time1, @Param("time2")String time2, @Param("name")String name);
|
}
|