| | |
| | | Call<BaseResponse> uploadFiles(@PartMap Map<String, RequestBody> map); |
| | | |
| | | @Multipart |
| | | @POST(Constants.BASE_URL + "/app/webFile/upPhoto") |
| | | Call<BaseResponse> uploadFile(@Part MultipartBody.Part file,@Part("description") RequestBody description); |
| | | @POST(Constants.BASE_UPLOAD_FILE_URL + "/app/webFile/upPhoto") |
| | | Call<BaseResponse> uploadImgFile(@Part MultipartBody.Part file, @Part("description") RequestBody description); |
| | | |
| | | @Multipart |
| | | @POST(Constants.BASE_UPLOAD_FILE_URL + "/app/webFile/upVideo") |
| | | Call<BaseResponse> uploadVideoFile(@Part MultipartBody.Part file, @Part("description") RequestBody description); |
| | | |
| | | //获取验证码 |
| | | @GET(Constants.BASE_URL+"/app/captcha/get") |