You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
109 lines
3.7 KiB
109 lines
3.7 KiB
package com.zc.business.controller;
|
|
|
|
import java.util.List;
|
|
import java.util.Map;
|
|
import javax.servlet.http.HttpServletResponse;
|
|
import org.springframework.security.access.prepost.PreAuthorize;
|
|
import org.springframework.beans.factory.annotation.Autowired;
|
|
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;
|
|
import com.ruoyi.common.annotation.Log;
|
|
import com.ruoyi.common.core.controller.BaseController;
|
|
import com.ruoyi.common.core.domain.AjaxResult;
|
|
import com.ruoyi.common.enums.BusinessType;
|
|
import com.zc.business.domain.DcObservationStation;
|
|
import com.zc.business.service.IDcObservationStationService;
|
|
import com.ruoyi.common.utils.poi.ExcelUtil;
|
|
import com.ruoyi.common.core.page.TableDataInfo;
|
|
|
|
/**
|
|
* 观测站信息Controller
|
|
*
|
|
* @author ruoyi
|
|
* @date 2024-12-09
|
|
*/
|
|
@RestController
|
|
@RequestMapping("/dcObservationStation")
|
|
public class DcObservationStationController extends BaseController
|
|
{
|
|
@Autowired
|
|
private IDcObservationStationService dcObservationStationService;
|
|
|
|
/**
|
|
* 查询观测站信息列表
|
|
*/
|
|
@GetMapping("/list")
|
|
public TableDataInfo list(DcObservationStation dcObservationStation)
|
|
{
|
|
startPage();
|
|
List<DcObservationStation> list = dcObservationStationService.selectDcObservationStationList(dcObservationStation);
|
|
return getDataTable(list);
|
|
}
|
|
|
|
/**
|
|
* 导出观测站信息列表
|
|
*/
|
|
@Log(title = "观测站信息", businessType = BusinessType.EXPORT)
|
|
@PostMapping("/export")
|
|
public void export(HttpServletResponse response, DcObservationStation dcObservationStation)
|
|
{
|
|
List<DcObservationStation> list = dcObservationStationService.selectDcObservationStationList(dcObservationStation);
|
|
ExcelUtil<DcObservationStation> util = new ExcelUtil<>(DcObservationStation.class);
|
|
util.exportExcel(response, list, "观测站信息数据");
|
|
}
|
|
|
|
/**
|
|
* 获取观测站信息详细信息
|
|
*/
|
|
@GetMapping(value = "/{id}")
|
|
public AjaxResult getInfo(@PathVariable("id") Long id)
|
|
{
|
|
return AjaxResult.success(dcObservationStationService.selectDcObservationStationById(id));
|
|
}
|
|
|
|
/**
|
|
* 新增观测站信息
|
|
*/
|
|
@Log(title = "观测站信息", businessType = BusinessType.INSERT)
|
|
@PostMapping
|
|
public AjaxResult add(@RequestBody DcObservationStation dcObservationStation)
|
|
{
|
|
return toAjax(dcObservationStationService.insertDcObservationStation(dcObservationStation));
|
|
}
|
|
|
|
/**
|
|
* 修改观测站信息
|
|
*/
|
|
@Log(title = "观测站信息", businessType = BusinessType.UPDATE)
|
|
@PutMapping
|
|
public AjaxResult edit(@RequestBody DcObservationStation dcObservationStation)
|
|
{
|
|
return toAjax(dcObservationStationService.updateDcObservationStation(dcObservationStation));
|
|
}
|
|
|
|
/**
|
|
* 删除观测站信息
|
|
*/
|
|
@Log(title = "观测站信息", businessType = BusinessType.DELETE)
|
|
@DeleteMapping("/{ids}")
|
|
public AjaxResult remove(@PathVariable Long[] ids)
|
|
{
|
|
return toAjax(dcObservationStationService.deleteDcObservationStationByIds(ids));
|
|
}
|
|
|
|
/**
|
|
* 查询所有观测站
|
|
*/
|
|
@Log(title = "查询所有观测站", businessType = BusinessType.DELETE)
|
|
@PostMapping("/selectAllStation")
|
|
public List<Map<String,Object>> selectAllStation()
|
|
{
|
|
return dcObservationStationService.selectAllStation();
|
|
}
|
|
}
|
|
|