use of com.orion.ops.entity.vo.CommandExecVO in project orion-ops by lijiahangmax.
the class CommandExecServiceImpl method execDetail.
@Override
public CommandExecVO execDetail(Long id) {
CommandExecDO execDO = this.selectById(id);
Valid.notNull(execDO, MessageConst.EXEC_TASK_ABSENT);
CommandExecVO execVO = Converts.to(execDO, CommandExecVO.class);
this.assembleExecData(Collections.singletonList(execVO), false);
return execVO;
}
Aggregations