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

com.power.doc.model.ApiDoc Maven / Gradle / Ivy

package com.power.doc.model;

import java.util.List;

public class ApiDoc {


    /**
     * 类名
     */
    private String name;

    /**
     * 方法文档列表
     */
    private List list;

    /**
     * 类注解描述
     */
    private String desc;

    public String getName() {
        return name;
    }

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

    public List getList() {
        return list;
    }

    public void setList(List list) {
        this.list = list;
    }

    public String getDesc() {
        return desc;
    }

    public void setDesc(String desc) {
        this.desc = desc;
    }


}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy