重新同步教职工数据
This commit is contained in:
@@ -144,7 +144,7 @@ public class CphSqlServerDataController extends BaseController {
|
||||
List<Map> list=sqlServerDataService.getBZRClassInfoList();
|
||||
return success(list);
|
||||
}
|
||||
//辅导员
|
||||
//教职工
|
||||
@RequestMapping("/getEmployEEInfoList")
|
||||
public AjaxResult getEmployEEInfoList(){
|
||||
//startPage();
|
||||
|
||||
@@ -0,0 +1,26 @@
|
||||
package com.srs.web.controller.comprehensive;
|
||||
|
||||
import com.srs.common.core.controller.BaseController;
|
||||
import com.srs.common.core.domain.AjaxResult;
|
||||
import com.srs.common.core.page.TableDataInfo;
|
||||
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.RequestMapping;
|
||||
import org.springframework.web.bind.annotation.RestController;
|
||||
|
||||
import java.util.List;
|
||||
import java.util.Map;
|
||||
|
||||
@RestController
|
||||
@RequestMapping("/syncdata")
|
||||
public class SyncDataController extends BaseController {
|
||||
@Autowired
|
||||
private SyncDataService syncDataService;
|
||||
@GetMapping("/getEmployEEInfoList")
|
||||
public TableDataInfo getEmployEEInfoList(){
|
||||
startPage();
|
||||
List<Map> list=syncDataService.getEmployEEInfoList();
|
||||
return getDataTable(list);
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user