package cn.seecoder.courselearningdemo.network; import cn.seecoder.courselearningdemo.model.ResultVO; import retrofit2.Call; import retrofit2.http.POST; import retrofit2.http.Query; public interface NotifyService { @POST("/notify/course_order_success") Call> sendCourseOrderSuccessNotify(@Query(value = "uid") String uid, @Query(value = "courseId") Integer courseId); }