Commit 02fe5315 authored by fangxinjiang's avatar fangxinjiang

Merge remote-tracking branch 'origin/develop' into develop

parents aac47340 3612b2f6
......@@ -68,7 +68,7 @@ public class TEmployeeProjectController {
**/
@Operation(summary = "根据人员档案id获取项目list,projectStatus:1或不传,则查全部;0,查在项。", description = "根据人员档案id获取项目list")
@GetMapping("/getListByEmpId" )
public R<List<TEmployeeProject>> getListByEmpId(@RequestParam String empId, Integer projectStatus) {
public R<List<TEmployeeProject>> getListByEmpId(@RequestParam String empId, @RequestParam(required = false) Integer projectStatus) {
if (projectStatus == null) {
projectStatus = CommonConstants.ONE_INT;
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment