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