package com.yuanchu.mom.controller;
|
|
import com.baomidou.mybatisplus.extension.plugins.pagination.Page;
|
import com.yuanchu.mom.annotation.ValueAuth;
|
import com.yuanchu.mom.annotation.ValueClassify;
|
import com.yuanchu.mom.numgen.NumberGenerator;
|
import com.yuanchu.mom.pojo.DeviceRecord;
|
import com.yuanchu.mom.service.DeviceRecordService;
|
import com.yuanchu.mom.vo.Result;
|
import io.swagger.annotations.Api;
|
import io.swagger.annotations.ApiOperation;
|
import org.springframework.beans.factory.annotation.Autowired;
|
import org.springframework.web.bind.annotation.*;
|
|
import javax.servlet.http.HttpServletResponse;
|
|
/**
|
* <p>
|
* cnas设备使用记录表 前端控制器
|
* </p>
|
*
|
* @author 江苏鵷雏网络科技有限公司
|
* @since 2024-09-21 11:06:47
|
*/
|
@Api(tags = "设备使用记录")
|
@RestController
|
@RequestMapping("/deviceRecord")
|
public class DeviceRecordController {
|
@Autowired
|
private DeviceRecordService deviceRecordService;
|
|
@Autowired
|
private NumberGenerator<DeviceRecord> numberGenerator;
|
|
@ValueClassify("设备使用记录")
|
@ApiOperation(value = "备使用记录查询")
|
@GetMapping("/deviceRecordPage")
|
public Result deviceRecordPage(Integer deviceId, Page page, String sampleCode, String managementNumber) {
|
return Result.success(deviceRecordService.deviceRecordPage(deviceId, page, sampleCode, managementNumber));
|
}
|
|
@ApiOperation(value = "新增")
|
@PostMapping("/saveDeviceRecord")
|
public Result saveDeviceRecords(@RequestBody DeviceRecord deviceRecord) {
|
return Result.success(deviceRecordService.save(deviceRecord));
|
}
|
|
/**
|
* 编辑设备使用记录
|
* @param deviceRecord
|
* @return
|
*/
|
@ApiOperation(value = "修改")
|
@PostMapping("/updateDeviceRecord")
|
public Result updateDeviceRecord(@RequestBody DeviceRecord deviceRecord) {
|
return Result.success(deviceRecordService.updateById(deviceRecord));
|
}
|
|
@DeleteMapping("/deleteDeviceRecord")
|
public Result deleteDeviceRecords(@RequestParam("id") Integer id) {
|
return Result.success(deviceRecordService.removeById(id));
|
}
|
|
@ApiOperation(value = "设备使用记录导出")
|
@GetMapping("/exportUseRecord")
|
@ValueAuth
|
public void exportUseRecord(Integer deviceId, String exportDate, HttpServletResponse response) throws Exception {
|
deviceRecordService.exportUseRecord(deviceId, exportDate, response);
|
}
|
}
|