All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.hundsun.lightdb.unisql.model.SshResponse Maven / Gradle / Ivy

package com.hundsun.lightdb.unisql.model;

import lombok.AllArgsConstructor;
import lombok.Data;

/**
 * @Description: 远程执行命令数据接收对象
 * @Author: wuxiaojun
 * @Date: 2022/9/6 20:07
 **/
@Data
@AllArgsConstructor
public class SshResponse {

    /**
     * 正常输出信息
     */
    private String out;

    /**
     * 异常输出信息
     */
    private String err;

    /**
     * 状态码
     */
    private Integer status;
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy