| | |
| | | package com.yeshi.fanli.service.inter.user;
|
| | |
|
| | | import java.io.IOException;
|
| | | import java.util.List;
|
| | |
|
| | | import org.springframework.web.multipart.MultipartFile;
|
| | |
|
| | | import com.yeshi.fanli.exception.user.UserComplaintException;
|
| | |
|
| | | public interface UserComplaintService {
|
| | |
|
| | | /**
|
| | | * 新增用户吐槽记录
|
| | | * @param fileList 文件列表可为空
|
| | | * @param uid 用户id 可为空
|
| | | * @param content 内容
|
| | | * @throws UserComplaintException
|
| | | */
|
| | | public void addUserComplaint(List<MultipartFile> fileList, Long uid, String content)
|
| | | throws UserComplaintException, IOException, Exception;
|
| | |
|
| | | |
| | | }
|
| | | package com.yeshi.fanli.service.inter.user; |
| | | |
| | | import java.io.IOException; |
| | | import java.util.List; |
| | | |
| | | import org.springframework.web.multipart.MultipartFile; |
| | | |
| | | import com.yeshi.fanli.exception.user.UserComplaintException; |
| | | |
| | | public interface UserComplaintService { |
| | | |
| | | /** |
| | | * 新增用户吐槽记录 |
| | | * @param fileList 文件列表可为空 |
| | | * @param uid 用户id 可为空 |
| | | * @param content 内容 |
| | | * @throws UserComplaintException |
| | | */ |
| | | public void addUserComplaint(List<MultipartFile> fileList, Long uid, String content) |
| | | throws UserComplaintException, IOException, Exception; |
| | | |
| | | |
| | | } |