package com.dsh.course.mapper;
|
|
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
|
import com.dsh.guns.modular.system.model.TbUserExit;
|
import org.apache.ibatis.annotations.Param;
|
|
import java.util.List;
|
|
/**
|
* <p>
|
* banner信息表 Mapper 接口
|
* </p>
|
*
|
* @author stylefeng
|
* @since 2022-06-17
|
*/
|
public interface TbUserExitMapper extends BaseMapper<TbUserExit> {
|
|
|
List<TbUserExit> getList(@Param("sTime") String sTime, @Param("eTime") String eTime, @Param("name") String name, @Param("state") Integer state);
|
|
List<TbUserExit> getList1(@Param("sTime") String sTime, @Param("eTime") String eTime, @Param("state") Integer state);
|
|
List<TbUserExit> getSevenDay();
|
|
|
void updatestate(@Param("id") Integer id);
|
|
|
}
|