| 1234567891011121314151617 |
- package com.zswl.dataservice.dao.iot.extend;
- import com.zswl.dataservice.domain.iot.IotTemplate;
- import com.zswl.dataservice.domain.iot.IotTopic;
- import com.zswl.dataservice.model.iot.IotTemplateSearch;
- import com.zswl.dataservice.model.iot.IotTopicSearch;
- import org.springframework.data.domain.Page;
- import org.springframework.data.domain.Pageable;
- /**
- * @Author TRX
- * @CreateDate: 2023/7/7
- * @Version: 1.0
- */
- public interface IotTopicDaoExtend {
- Page<IotTopic> page(Pageable pageable, IotTopicSearch param);
- }
|