package com.dsh.course.feignclient;
|
|
import org.springframework.cloud.openfeign.FeignClient;
|
import org.springframework.web.bind.annotation.PostMapping;
|
import org.springframework.web.bind.annotation.RequestParam;
|
|
@FeignClient(value = "mb-cloud-course")
|
public interface CourseRecordClient {
|
|
@PostMapping("/base/courseRecord/queryDeduClassHours")
|
public Integer getDeductionClassHour(@RequestParam("courseId") Integer courseId,
|
@RequestParam("stuId") Integer stuId,
|
@RequestParam("appUserId") Integer appUserId);
|
|
}
|