| | |
| | | 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(); |
| | | } |