|
@@ -1,112 +0,0 @@
|
|
|
-//package com.platform.yijia.controller;
|
|
|
-//
|
|
|
-//import java.util.Arrays;
|
|
|
-//import java.util.List;
|
|
|
-//
|
|
|
-//import com.platform.yijia.pojo.StationClassesSummary;
|
|
|
-//import com.platform.yijia.service.IStationClassesSummaryService;
|
|
|
-//import org.springframework.beans.factory.annotation.Autowired;
|
|
|
-//import org.springframework.stereotype.Controller;
|
|
|
-//import org.springframework.web.bind.annotation.GetMapping;
|
|
|
-//import org.springframework.web.bind.annotation.PostMapping;
|
|
|
-//import org.springframework.web.bind.annotation.PutMapping;
|
|
|
-//import org.springframework.web.bind.annotation.DeleteMapping;
|
|
|
-//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.RestController;
|
|
|
-//
|
|
|
-///**
|
|
|
-// * 【请填写功能名称】Controller
|
|
|
-// *
|
|
|
-// * @author yijia
|
|
|
-// * @date 2020-12-28
|
|
|
-// */
|
|
|
-//@Controller
|
|
|
-//@RequestMapping("/api")
|
|
|
-//public class StationClassesSummaryController
|
|
|
-//{
|
|
|
-// @Autowired
|
|
|
-// private IStationClassesSummaryService stationClassesSummaryService;
|
|
|
-// @Autowired
|
|
|
-// private ISysUserService sysUserService;
|
|
|
-// /**
|
|
|
-// * 查询【请填写功能名称】列表
|
|
|
-// */
|
|
|
-// @GetMapping("/list")
|
|
|
-// public TableDataInfo list(StationClassesSummary stationClassesSummary)
|
|
|
-// {
|
|
|
-// LoginUser currentUser = SecurityUtils.getLoginUser();
|
|
|
-// String selectDeptid= sysUserService.getUserRoleDeptId(currentUser);
|
|
|
-// if(selectDeptid !=null && selectDeptid!=""){
|
|
|
-// List<String> list = Arrays.asList(selectDeptid.split(","));
|
|
|
-// stationClassesSummary.setStationIdList(list);
|
|
|
-// }
|
|
|
-// startPage();
|
|
|
-//// stationClassesSummary.setStationId(Long.valueOf("5"));
|
|
|
-// List<StationClassesSummary> list = stationClassesSummaryService.selectStationClassesSummaryList(stationClassesSummary);
|
|
|
-// return getDataTable(list);
|
|
|
-// }
|
|
|
-//
|
|
|
-// /**
|
|
|
-// * 导出【请填写功能名称】列表
|
|
|
-// */
|
|
|
-// @PreAuthorize("@ss.hasPermi('station:summary:export')")
|
|
|
-// @Log(title = "【请填写功能名称】", businessType = BusinessType.EXPORT)
|
|
|
-// @GetMapping("/export")
|
|
|
-// public AjaxResult export(StationClassesSummary stationClassesSummary)
|
|
|
-// {
|
|
|
-// LoginUser currentUser = SecurityUtils.getLoginUser();
|
|
|
-// String selectDeptid= sysUserService.getUserRoleDeptId(currentUser);
|
|
|
-// if(selectDeptid !=null && selectDeptid!=""){
|
|
|
-// List<String> list = Arrays.asList(selectDeptid.split(","));
|
|
|
-// stationClassesSummary.setStationIdList(list);
|
|
|
-// }
|
|
|
-// List<StationClassesSummary> list = stationClassesSummaryService.selectStationClassesSummaryList(stationClassesSummary);
|
|
|
-// ExcelUtil<StationClassesSummary> util = new ExcelUtil<StationClassesSummary>(StationClassesSummary.class);
|
|
|
-// return util.exportExcel(list, "summary");
|
|
|
-// }
|
|
|
-//
|
|
|
-// /**
|
|
|
-// * 获取【请填写功能名称】详细信息
|
|
|
-// */
|
|
|
-// @PreAuthorize("@ss.hasPermi('station:summary:query')")
|
|
|
-// @GetMapping(value = "/{id}")
|
|
|
-// public AjaxResult getInfo(@PathVariable("id") Long id)
|
|
|
-// {
|
|
|
-// return AjaxResult.success(stationClassesSummaryService.selectStationClassesSummaryById(id));
|
|
|
-// }
|
|
|
-//
|
|
|
-// /**
|
|
|
-// * 新增【请填写功能名称】
|
|
|
-// */
|
|
|
-// @PreAuthorize("@ss.hasPermi('station:summary:add')")
|
|
|
-// @Log(title = "【请填写功能名称】", businessType = BusinessType.INSERT)
|
|
|
-// @PostMapping
|
|
|
-// public AjaxResult add(@RequestBody StationClassesSummary stationClassesSummary)
|
|
|
-// {
|
|
|
-// return toAjax(stationClassesSummaryService.insertStationClassesSummary(stationClassesSummary));
|
|
|
-// }
|
|
|
-//
|
|
|
-// /**
|
|
|
-// * 修改【请填写功能名称】
|
|
|
-// */
|
|
|
-// @PreAuthorize("@ss.hasPermi('station:summary:edit')")
|
|
|
-// @Log(title = "【请填写功能名称】", businessType = BusinessType.UPDATE)
|
|
|
-// @PutMapping
|
|
|
-// public AjaxResult edit(@RequestBody StationClassesSummary stationClassesSummary)
|
|
|
-// {
|
|
|
-// return toAjax(stationClassesSummaryService.updateStationClassesSummary(stationClassesSummary));
|
|
|
-// }
|
|
|
-//
|
|
|
-// /**
|
|
|
-// * 删除【请填写功能名称】
|
|
|
-// */
|
|
|
-// @PreAuthorize("@ss.hasPermi('station:summary:remove')")
|
|
|
-// @Log(title = "【请填写功能名称】", businessType = BusinessType.DELETE)
|
|
|
-// @DeleteMapping("/{ids}")
|
|
|
-// public AjaxResult remove(@PathVariable Long[] ids)
|
|
|
-// {
|
|
|
-// return toAjax(stationClassesSummaryService.deleteStationClassesSummaryByIds(ids));
|
|
|
-// }
|
|
|
-//}
|