admin
2023-04-12 651f2856e9ae10aacbfb8327d967aacbb6d58333
fanli/src/main/java/com/yeshi/fanli/service/inter/config/SpreadImgService.java
@@ -1,26 +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;
   long countAll();
   List<SpreadImg> listAll();
}
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();
}