SignService.java 633 B

1234567891011121314151617181920212223
  1. package com.zzys.qhyscredit.channel.sign.service;
  2. import com.alibaba.fastjson2.JSONObject;
  3. import com.zzys.qhyscredit.channel.sign.dao.model.SignEntity;
  4. import org.springframework.data.domain.Page;
  5. public interface SignService {
  6. void updateChannelNameByChannelId(String channelId, String channelName);
  7. SignEntity save(SignEntity signEntity);
  8. Page<SignEntity> find(JSONObject jsonObject);
  9. SignEntity findById(String id);
  10. void deleteById(String id);
  11. void updatePosterByChannelId(String id, String posterPath);
  12. void endSignByChannelId(String channelId);
  13. SignEntity findByChannelId(String id);
  14. }