pang.jiabao
2025-05-13 688e299d29bd76cbd30bf3d7267bdc9afad954b0
src/main/java/com/zy/asrs/service/impl/CommandInfoServiceImpl.java
@@ -1,12 +1,12 @@
package com.zy.asrs.service.impl;
import com.alibaba.fastjson.JSON;
import com.baomidou.mybatisplus.service.impl.ServiceImpl;
import com.zy.asrs.entity.CommandInfo;
import com.zy.asrs.entity.CommandInfoLog;
import com.zy.asrs.mapper.CommandInfoMapper;
import com.zy.asrs.entity.CommandInfo;
import com.zy.asrs.service.CommandInfoLogService;
import com.zy.asrs.service.CommandInfoService;
import com.baomidou.mybatisplus.service.impl.ServiceImpl;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.stereotype.Service;
@@ -49,4 +49,20 @@
        }
        return count;
    }
    @Override
    public boolean saveToHistory(Integer id) {
        CommandInfo commandInfo = this.baseMapper.selectById(id);
        String jsonString = JSON.toJSONString(commandInfo);
        CommandInfoLog commandInfoLog = JSON.parseObject(jsonString, CommandInfoLog.class);
        commandInfoLog.setId(null);
        boolean result1 = commandInfoLogService.insert(commandInfoLog);
        Integer result2 = this.baseMapper.deleteById(id);
        return result1 && result2 > 0;
    }
    @Override
    public List<CommandInfo> selectCompleteManualCommand() {
        return this.baseMapper.selectCompleteManualCommand();
    }
}