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.
166 lines
5.6 KiB
166 lines
5.6 KiB
package com.zc.business.controller;
|
|
|
|
import com.ruoyi.common.annotation.Log;
|
|
import com.ruoyi.common.core.controller.BaseController;
|
|
import com.ruoyi.common.core.domain.AjaxResult;
|
|
import com.ruoyi.common.core.page.TableDataInfo;
|
|
import com.ruoyi.common.enums.BusinessType;
|
|
import com.ruoyi.common.utils.poi.ExcelUtil;
|
|
import com.zc.business.domain.DcShifts;
|
|
import com.zc.business.domain.DcShiftsRecord;
|
|
import com.zc.business.enums.UniversalEnum;
|
|
import com.zc.business.service.IDcShiftsService;
|
|
import io.swagger.annotations.Api;
|
|
import io.swagger.annotations.ApiOperation;
|
|
import org.apache.poi.xssf.usermodel.XSSFWorkbook;
|
|
import org.springframework.beans.factory.annotation.Autowired;
|
|
import org.springframework.web.bind.annotation.*;
|
|
import org.springframework.web.multipart.MultipartFile;
|
|
|
|
import javax.servlet.http.HttpServletResponse;
|
|
import java.io.InputStream;
|
|
import java.util.List;
|
|
|
|
/**
|
|
* 值班Controller
|
|
*
|
|
* @author ruoyi
|
|
* @date 2024-01-04
|
|
*/
|
|
@Api(tags = "值班管理")
|
|
@RestController
|
|
@RequestMapping("/business/shifts")
|
|
public class DcShiftsController extends BaseController
|
|
{
|
|
@Autowired
|
|
private IDcShiftsService dcShiftsService;
|
|
|
|
/**
|
|
* 查询值班列表
|
|
*/
|
|
@ApiOperation("查询值班列表")
|
|
// @PreAuthorize("@ss.hasPermi('business:shifts:list')")
|
|
@GetMapping("/list")
|
|
public TableDataInfo list(DcShifts dcShifts)
|
|
{
|
|
startPage();
|
|
List<DcShifts> list = dcShiftsService.selectDcShiftsList(dcShifts);
|
|
return getDataTable(list);
|
|
}
|
|
|
|
/**
|
|
* 导出值班列表
|
|
*/
|
|
@ApiOperation("导出值班列表")
|
|
//@PreAuthorize("@ss.hasPermi('business:shifts:export')")
|
|
@Log(title = "值班", businessType = BusinessType.EXPORT)
|
|
@PostMapping("/export")
|
|
public void export(HttpServletResponse response, @RequestBody DcShifts dcShifts)
|
|
{
|
|
List<DcShifts> list = dcShiftsService.selectDcShiftsListExcel(dcShifts);
|
|
ExcelUtil<DcShifts> util = new ExcelUtil<>(DcShifts.class);
|
|
util.exportExcel(response, list, UniversalEnum.DUTY_DATA.getValue());
|
|
}
|
|
|
|
/**
|
|
* 获取值班详细信息
|
|
*/
|
|
@ApiOperation("获取值班详细信息")
|
|
// @PreAuthorize("@ss.hasPermi('business:shifts:query')")
|
|
@GetMapping(value = "/{id}")
|
|
public AjaxResult getInfo(@PathVariable("id") Long id)
|
|
{
|
|
return AjaxResult.success(dcShiftsService.selectDcShiftsById(id));
|
|
}
|
|
//获取值班列表单个值班包含的人员信息
|
|
@PostMapping("/byStation")
|
|
public AjaxResult selectDcShiftsByStationId(@RequestBody DcShifts dcShifts)
|
|
{
|
|
if (dcShifts==null||dcShifts.getStation()==null||dcShifts.getDate()==null){
|
|
return AjaxResult.error(UniversalEnum.PARAMETER_ERROR.getValue());
|
|
}
|
|
return AjaxResult.success(dcShiftsService.selectDcShiftsByStationId(dcShifts));
|
|
}
|
|
/**
|
|
* 新增值班
|
|
*/
|
|
@ApiOperation("新增值班")
|
|
// @PreAuthorize("@ss.hasPermi('business:shifts:add')")
|
|
@Log(title = "值班", businessType = BusinessType.INSERT)
|
|
@PostMapping
|
|
public AjaxResult add(@RequestBody DcShifts dcShifts) throws Exception {
|
|
return toAjax(dcShiftsService.insertDcShifts(dcShifts));
|
|
}
|
|
|
|
/**
|
|
* 修改值班
|
|
*/
|
|
@ApiOperation("修改值班")
|
|
//@PreAuthorize("@ss.hasPermi('business:shifts:edit')")
|
|
@Log(title = "值班", businessType = BusinessType.UPDATE)
|
|
@PutMapping
|
|
public AjaxResult edit(@RequestBody DcShifts dcShifts) throws Exception {
|
|
return toAjax(dcShiftsService.updateDcShifts(dcShifts));
|
|
}
|
|
|
|
/**
|
|
* 删除值班
|
|
*/
|
|
@ApiOperation("删除值班")
|
|
// @PreAuthorize("@ss.hasPermi('business:shifts:remove')")
|
|
@Log(title = "值班", businessType = BusinessType.DELETE)
|
|
@DeleteMapping("/{ids}")
|
|
public AjaxResult remove(@PathVariable Long[] ids) throws Exception{
|
|
return toAjax(dcShiftsService.deleteDcShiftsByIds(ids));
|
|
}
|
|
/**
|
|
* 删除值班,某个时间下驻点下的全部值班信息
|
|
*/
|
|
// @PreAuthorize("@ss.hasPermi('business:shifts:remove')")
|
|
@Log(title = "值班", businessType = BusinessType.DELETE)
|
|
@PostMapping("/delete")
|
|
public AjaxResult removeDelete(@RequestBody DcShifts shifts) throws Exception{
|
|
return toAjax(dcShiftsService.deleteDcShiftsListId(shifts));
|
|
}
|
|
|
|
//导出模板
|
|
@ApiOperation("导出模板")
|
|
// @PreAuthorize("@ss.hasPermi('baseData:equipment:export')")
|
|
@Log(title = "值班模板", businessType = BusinessType.EXPORT)
|
|
@PostMapping("/exportModel")
|
|
public void exportModel(HttpServletResponse response)
|
|
{
|
|
response.setContentType(UniversalEnum.EXPORT_THE_TEMPLATE_CONTENT_TYPE.getValue());
|
|
response.setCharacterEncoding(UniversalEnum.LOWERCASE_UTF_8.getValue());
|
|
InputStream inputStream = this.getClass().getClassLoader().getResourceAsStream("excelTemplate/值班示例模板.xlsx");
|
|
try {
|
|
XSSFWorkbook workbook = new XSSFWorkbook(inputStream);
|
|
workbook.write(response.getOutputStream());
|
|
}catch (Exception e){
|
|
e.printStackTrace();
|
|
}
|
|
}
|
|
/**
|
|
* 导入值班列表
|
|
*/
|
|
@ApiOperation("导入值班列表")
|
|
@PostMapping("/importEquipment")
|
|
public AjaxResult importEquipment(MultipartFile file) throws Exception{
|
|
return dcShiftsService.importEquipment(file);
|
|
}
|
|
|
|
|
|
/**
|
|
* 查询操作记录
|
|
*/
|
|
@ApiOperation("查询操作记录")
|
|
@PostMapping("/recordList")
|
|
public TableDataInfo recordList(@RequestBody DcShifts dcShifts)
|
|
{
|
|
startPage();
|
|
List<DcShiftsRecord> list = dcShiftsService.selectDcShiftsRecord(dcShifts);
|
|
return getDataTable(list);
|
|
}
|
|
|
|
|
|
}
|
|
|