puzhibing
2023-07-04 d8bfa0bc04c65929f9f370f2ad1d0b8ff445805d
1
2
3
4
5
6
7
8
9
10
11
12
13
package com.dsh.account.feignclient.course;
 
import org.springframework.cloud.openfeign.FeignClient;
import org.springframework.web.bind.annotation.PostMapping;
import org.springframework.web.bind.annotation.RequestBody;
 
@FeignClient(value = "mb-cloud-course")
public interface CourseRecordClient {
 
    @PostMapping("/courseRecord/queryDeduClassHours")
    public Integer getDeductionClassHour(@RequestBody Integer courseId, @RequestBody Integer stuId, @RequestBody Integer appUserId);
 
}