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

com.yqjr.modules.wsclient.entity.WsClient Maven / Gradle / Ivy

package com.yqjr.modules.wsclient.entity;

import com.yqjr.framework.base.BaseEntity;
import com.yqjr.modules.wsclient.entity.WsClient;

public class WsClient extends BaseEntity {

	private static final long serialVersionUID = -6450660951183594189L;

	private String serviceCode;

	private String url;

	private Integer timeout;

	private String transType;

	private String serviceName;

	/**
	 * @return the serviceCode
	 */
	public String getServiceCode() {
		return serviceCode;
	}

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

	/**
	 * @return the url
	 */
	public String getUrl() {
		return url;
	}

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

	/**
	 * @return the timeout
	 */
	public Integer getTimeout() {
		return timeout;
	}

	/**
	 * @param timeout
	 *            the timeout to set
	 */
	public void setTimeout(Integer timeout) {
		this.timeout = timeout;
	}

	/**
	 * @return the transType
	 */
	public String getTransType() {
		return transType;
	}

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

	/**
	 * @return the serviceName
	 */
	public String getServiceName() {
		return serviceName;
	}

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

	/*
	 * (non-Javadoc)
	 * 
	 * @see com.yqjr.framework.base.BaseEntity#getId()
	 */
	@Override
	public Integer getId() {
		return id;
	}

	/*
	 * (non-Javadoc)
	 * 
	 * @see com.yqjr.framework.base.BaseEntity#setId(java.lang.Object)
	 */
	@Override
	public void setId(Integer id) {
		this.id = id;
	}

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy