IotTopicDaoExtend.java 523 B

1234567891011121314151617
  1. package com.zswl.dataservice.dao.iot.extend;
  2. import com.zswl.dataservice.domain.iot.IotTemplate;
  3. import com.zswl.dataservice.domain.iot.IotTopic;
  4. import com.zswl.dataservice.model.iot.IotTemplateSearch;
  5. import com.zswl.dataservice.model.iot.IotTopicSearch;
  6. import org.springframework.data.domain.Page;
  7. import org.springframework.data.domain.Pageable;
  8. /**
  9. * @Author TRX
  10. * @CreateDate: 2023/7/7
  11. * @Version: 1.0
  12. */
  13. public interface IotTopicDaoExtend {
  14. Page<IotTopic> page(Pageable pageable, IotTopicSearch param);
  15. }