| | |
| | | package com.ycl.service.smoke; |
| | | |
| | | import com.baomidou.mybatisplus.extension.plugins.pagination.Page; |
| | | import com.baomidou.mybatisplus.extension.service.IService; |
| | | import com.ycl.dto.smoker.InTimeCountDto; |
| | | import com.ycl.entity.smoke.OdsInTime; |
| | | |
| | | /** |
| | |
| | | */ |
| | | public interface IOdsInTimeService extends IService<OdsInTime> { |
| | | |
| | | Page<OdsInTime> findList(String owner, String onlineStatus, String startTime, String endTime, String type, String status, Integer pageSize, Integer pageNum); |
| | | |
| | | InTimeCountDto getInTimeCount(); |
| | | } |