| | |
| | | |
| | | |
| | | import com.baomidou.mybatisplus.extension.service.IService; |
| | | import com.fasterxml.jackson.annotation.JsonFormat; |
| | | import com.ruoyi.common.core.domain.AjaxResult; |
| | | import com.ruoyi.domain.TravelCount; |
| | | |
| | | import java.util.Date; |
| | | import java.util.List; |
| | | |
| | | /** |
| | |
| | | */ |
| | | public interface TravelCountService extends IService<TravelCount> { |
| | | |
| | | AjaxResult selectDataList(Long userId, Integer pageNum, Integer pageSize,TravelCount travelCount); |
| | | AjaxResult selectDataList(Long userId, Integer pageNum, Integer pageSize, TravelCount travelCount, String happenStartTime, String happenEndTime); |
| | | |
| | | void removeData(List<Long> list); |
| | | |