| | |
| | | import com.baomidou.mybatisplus.core.mapper.BaseMapper; |
| | | import com.boying.entity.EnterPark; |
| | | import org.apache.ibatis.annotations.Mapper; |
| | | import org.apache.ibatis.annotations.Param; |
| | | import org.apache.ibatis.annotations.Select; |
| | | |
| | | import java.util.List; |
| | | |
| | | /** |
| | | * @author kdq |
| | |
| | | */ |
| | | @Mapper |
| | | public interface EnterParkMapper extends BaseMapper<EnterPark> { |
| | | |
| | | List<EnterPark> getList(@Param("current")long current, @Param("size")long size, @Param("carNo")String carNo, @Param("parkId")Integer parkId, @Param("date")String date); |
| | | |
| | | |
| | | long getCount(@Param("carNo")String carNo,@Param("parkId")Integer parkId,@Param("date")String date); |
| | | } |