TargetData

package com.hgx.test.common;

/**
* TargetData
*
* @author sasou <admin@php-gene.com> web:http://www.php-gene.com/
* @version 1.0.0
*/
public final class TargetData {
public String type = "";
public String ip = "";
public int port = 0;

/**
* @return the type
*/
public String getType() {
return type;
}

/**
* @param type
* the type to set
*/
public void setType(String type) {
this.type = type;
}

/**
* @return the ip
*/
public String getIp() {
return ip;
}

/**
* @param ip
* the ip to set
*/
public void setIp(String ip) {
this.ip = ip;
}

/**
* @return the port
*/
public int getPort() {
return port;
}

/**
* @param port
* the port to set
*/
public void setPort(int port) {
this.port = port;
}
}
原文地址:https://www.cnblogs.com/heguoxiu/p/10135345.html