IMicroappService.java 1.1 KB

123456789101112131415161718192021222324252627282930313233343536373839
  1. package com.lightinit.hsdataportal.service;
  2. import com.lightinit.hsdataportal.entity.*;
  3. import com.lightinit.hsdataportal.model.*;
  4. import java.util.List;
  5. public interface IMicroappService {
  6. List<MicroappListModel> selectOpenList(MicroappSearchModel inputModel);
  7. long selectOpenCount(MicroappSearchModel inputModel);
  8. List<MicroappListModel> selectShareList(MicroappSearchModel inputModel);
  9. long selectShareCount(MicroappSearchModel inputModel);
  10. MicroappViewModel queryView(long id,String platformType);
  11. MicroappViewModel queryMicroapp(long id);
  12. ResultState doApply(MicroappApplyModel inputModel) throws Exception;
  13. ResourceMicroappWithBLOBs demo(long id);
  14. ResultState follow(ResourceFollow model);
  15. ResultState delfollow(long id);
  16. ResultState offlineConference(MicroappOfflineConferenceModel inputModel, Long id);
  17. List<ResourceAuth> isAPPly(Long id, Long publishSettingId);
  18. // PublishSetting selectSettingById(Long publishSettingId);
  19. //
  20. // ResultState add(Order order);
  21. //
  22. // ResultState add(OrderGoods orderGoods);
  23. }