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

com.duoec.doc.doclet.pojo.EnvItem Maven / Gradle / Ivy

The newest version!
package com.duoec.doc.doclet.pojo;

import com.duoec.doc.doclet.enums.EnvEnum;

import java.io.Serializable;
import java.util.List;

/**
 * @author xuwenzhen
 */
public class EnvItem implements Serializable {
    private static final long serialVersionUID = 1L;
    /**
     * 环境代码
     *
     * @see EnvEnum
     */
    private String code;

    /**
     * 环境名称
     */
    private String name;

    /**
     * 接口地址
     */
    private String url;

    /**
     * 指定请求头
     */
    private List headers;

    public String getCode() {
        return code;
    }

    public void setCode(String code) {
        this.code = code;
    }

    public String getName() {
        return name;
    }

    public void setName(String name) {
        this.name = name;
    }

    public String getUrl() {
        return url;
    }

    public void setUrl(String url) {
        this.url = url;
    }

    public List getHeaders() {
        return headers;
    }

    public void setHeaders(List headers) {
        this.headers = headers;
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy