admin
2024-04-26 5e7b0ed4a154ad067cbcf4aa1a1c7cce32f9864c
fanli/src/main/java/com/yeshi/fanli/service/inter/config/SpreadImgService.java
@@ -1,21 +1,26 @@
package com.yeshi.fanli.service.inter.config;
import java.util.List;
import org.springframework.web.multipart.MultipartFile;
import com.yeshi.fanli.entity.bus.invite.SpreadImg;
public interface SpreadImgService {
   public List<SpreadImg> listQuery(int start, int pageSize, String key);
   public long countQuery(String key);
   public void deleteInviteFriendImg(long id);
   public SpreadImg getInviteSpreadImg(long id);
   public void saveObject(MultipartFile file, SpreadImg record) throws Exception;
}
package com.yeshi.fanli.service.inter.config;
import java.util.List;
import org.springframework.web.multipart.MultipartFile;
import com.yeshi.fanli.entity.bus.invite.SpreadImg;
public interface SpreadImgService {
   public List<SpreadImg> listQuery(int start, int pageSize, String key);
   public long countQuery(String key);
   public void deleteInviteFriendImg(long id);
   public SpreadImg getInviteSpreadImg(long id);
   public void saveObject(MultipartFile file, SpreadImg record) throws Exception;
   long countAll();
   List<SpreadImg> listAll();
}