奖学金评估接口

This commit is contained in:
2026-03-29 17:01:10 +08:00
parent d24c3cf269
commit 9b02f55436
3 changed files with 221 additions and 0 deletions

View File

@@ -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);
}
}