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

com.mg.common.metadata.vo.SimpleExportVo Maven / Gradle / Ivy

There is a newer version: 1.0.5
Show newest version
package com.mg.common.metadata.vo;

import java.util.ArrayList;
import java.util.List;
import java.util.Map;

/**
 * 简单的导出对象vo
 * Created by liukefu on 2016/4/22.
 */
public class SimpleExportVo {
    /**
     * 名称
     */
    private String name;
    /**
     * key,value
     */
    private List> list = new ArrayList<>();

    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;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy