同步专业数据修改

This commit is contained in:
2025-12-25 17:35:15 +08:00
parent e13af56d7f
commit 83f0751f5a
5 changed files with 15 additions and 9 deletions

View File

@@ -7,6 +7,7 @@ import com.srs.comprehensive.service.ICphTeacherService;
import com.srs.comprehensive.service.SyncDataService;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.web.bind.annotation.GetMapping;
import org.springframework.web.bind.annotation.PathVariable;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RestController;
@@ -36,9 +37,9 @@ public class SyncDataController extends BaseController {
}
//专业
@RequestMapping("/getSpecialtyInfoList")
public TableDataInfo getSpecialtyInfoList(){
public TableDataInfo getSpecialtyInfoList(String zydm){
startPage();
List<Map> list=syncDataService.getSpecialtyInfoList();
List<Map> list=syncDataService.getSpecialtyInfoList(zydm);
return getDataTable(list);
}
}