蓝牙命令

This commit is contained in:
磷叶 2024-12-15 14:39:55 +08:00
parent a88e173a5f
commit 0561bbe4db
3 changed files with 44 additions and 21 deletions

View File

@ -76,11 +76,6 @@ public interface ICommandLogService
/**
* 插入一条蓝牙命令日志
*
* @param mac MAC
* @param command 命令
* @param reason 原因
* @param loginUser
*/
int addBluetoothLog(String mac, String command, String reason, LoginUser loginUser);
int addBluetoothLog(CommandLog po, LoginUser loginUser);
}

View File

@ -102,26 +102,26 @@ public class CommandLogServiceImpl implements ICommandLogService
@Override
public int addApiLog(String mac, String command, String result, String reason, LoginUser loginUser) {
return this.addLog(CommandLogType.API, mac, command, result, reason, loginUser);
}
@Override
public int addBluetoothLog(String mac, String command, String reason, LoginUser loginUser) {
return this.addLog(CommandLogType.BLUETOOTH, mac, command, "蓝牙操作", reason, loginUser);
}
private int addLog(CommandLogType type, String mac, String command, String result, String reason, LoginUser loginUser) {
if (StringUtils.isBlank(mac)) {
return 0;
}
CommandLog po = new CommandLog();
po.setType(type.getType());
po.setType(CommandLogType.API.getType());
po.setMac(mac);
po.setCommand(command);
po.setResult(result);
po.setOperaTime(LocalDateTime.now());
po.setReason(reason);
return this.addLog(po, loginUser);
}
@Override
public int addBluetoothLog(CommandLog po, LoginUser loginUser) {
po.setType(CommandLogType.BLUETOOTH.getType());
return this.addLog(po, loginUser);
}
private int addLog(CommandLog po, LoginUser loginUser) {
if (po == null || StringUtils.isBlank(po.getMac())) {
return 0;
}
po.setOperaTime(LocalDateTime.now());
if (loginUser != null) {
po.setUserId(loginUser.getUserId());

View File

@ -0,0 +1,28 @@
package com.ruoyi.web.controller.app;
import com.ruoyi.common.annotation.Anonymous;
import com.ruoyi.common.core.controller.BaseController;
import com.ruoyi.common.core.domain.AjaxResult;
import com.ruoyi.ss.commandLog.domain.CommandLog;
import com.ruoyi.ss.commandLog.service.ICommandLogService;
import io.swagger.annotations.ApiOperation;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.web.bind.annotation.PostMapping;
import org.springframework.web.bind.annotation.RequestBody;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RestController;
@RestController
@RequestMapping("/app/commandLog")
public class AppCommandLogController extends BaseController {
@Autowired
private ICommandLogService commandLogService;
@ApiOperation("记录蓝牙发送命令日志")
@PostMapping("/bluetooth")
public AjaxResult addBluetoothLog(@RequestBody CommandLog data) {
return toAjax(commandLogService.addBluetoothLog(data, getLoginUser()));
}
}