奖学金评估接口
This commit is contained in:
@@ -36,6 +36,7 @@ import org.springframework.web.bind.annotation.PostMapping;
|
||||
import org.springframework.web.bind.annotation.PathVariable;
|
||||
import org.springframework.web.bind.annotation.RequestBody;
|
||||
import org.springframework.web.bind.annotation.RequestMapping;
|
||||
import org.springframework.web.bind.annotation.RequestParam;
|
||||
import org.springframework.web.bind.annotation.RestController;
|
||||
import io.swagger.annotations.*;
|
||||
import com.srs.comprehensive.domain.CphGoodApply;
|
||||
@@ -729,4 +730,13 @@ public class CphGoodApplyController extends BaseController {
|
||||
return cphGoodApplyService.reApplyYxgb(cphApplyYxgb);
|
||||
}
|
||||
|
||||
@PermitAll
|
||||
@GetMapping("/checkXyjxjEligibility")
|
||||
@ApiOperation("学业奖学金资格检查")
|
||||
public AjaxResult checkXyjxjEligibility(
|
||||
@RequestParam String stuNo,
|
||||
@RequestParam(required = false) String typeCode) {
|
||||
return cphGoodApplyService.checkXyjxjEligibility(stuNo, typeCode);
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user