| | |
| | | |
| | | import com.doumee.core.model.PageData; |
| | | import com.doumee.core.model.PageWrap; |
| | | import com.doumee.dao.admin.request.DeviceEventQuery; |
| | | import com.doumee.dao.admin.response.DeviceEventDTO; |
| | | import com.doumee.dao.business.model.DeviceEvent; |
| | | import java.util.List; |
| | | |
| | |
| | | |
| | | /** |
| | | * 创建 |
| | | * |
| | | * |
| | | * @param deviceEvent 实体对象 |
| | | * @return Integer |
| | | */ |
| | |
| | | * @return List<DeviceEvent> |
| | | */ |
| | | List<DeviceEvent> findList(DeviceEvent deviceEvent); |
| | | |
| | | |
| | | /** |
| | | * 分页查询 |
| | | * |
| | |
| | | * @return long |
| | | */ |
| | | long count(DeviceEvent deviceEvent); |
| | | |
| | | /** |
| | | * 分页查询 |
| | | * |
| | | * @param pageWrap 分页对象 |
| | | * @return PageData<DeviceEvent> |
| | | */ |
| | | PageData<DeviceEventDTO> findDeviceEventDTOPage(PageWrap<DeviceEvent> pageWrap); |
| | | } |