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

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

There is a newer version: 1.0.3
Show newest version
package com.duoec.doc.doclet.pojo.entity;

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

import java.util.List;

/**
 * @author xuwenzhen
 * @date 18/10/26
 */
public class EnvItem {
    /**
     * 环境代码
     *
     * @demo TEST
     * @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