1234567891011121314151617181920212223 |
- package com.zzys.qhyscredit.channel.sign.service;
- import com.alibaba.fastjson2.JSONObject;
- import com.zzys.qhyscredit.channel.sign.dao.model.SignEntity;
- import org.springframework.data.domain.Page;
- public interface SignService {
- void updateChannelNameByChannelId(String channelId, String channelName);
- SignEntity save(SignEntity signEntity);
- Page<SignEntity> find(JSONObject jsonObject);
- SignEntity findById(String id);
- void deleteById(String id);
- void updatePosterByChannelId(String id, String posterPath);
- void endSignByChannelId(String channelId);
- SignEntity findByChannelId(String id);
- }
|