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

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

The newest version!
package com.mg.common.metadata.vo;

import com.mg.framework.entity.metadata.MirrorPropertyEntity;

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

/**
 * 元数据对象vo
 * Created by liukefu on 2016/4/22.
 */
public class MObjectExportVo {

    String templatePath;

    private List ids = new ArrayList<>();

    private Integer startCol;

    private Integer startRow;

    private Integer endCol;

    private Integer endRow;

    private String imgPath;

    private MirrorPropertyEntity pictureProperty;
    /**
     * 元数据列表
     */
    public List propertyList = new ArrayList<>();
    /**
     * 结构化对象列表
     */
    public List structList = new ArrayList<>();

    public MirrorPropertyEntity getPictureProperty() {
        return pictureProperty;
    }

    public void setPictureProperty(MirrorPropertyEntity pictureProperty) {
        this.pictureProperty = pictureProperty;
    }

    public String getTemplatePath() {
        return templatePath;
    }

    public void setTemplatePath(String templatePath) {
        this.templatePath = templatePath;
    }

    public List getIds() {
        return ids;
    }

    public void setIds(List ids) {
        this.ids = ids;
    }

    public Integer getStartCol() {
        return startCol;
    }

    public void setStartCol(Integer startCol) {
        this.startCol = startCol;
    }

    public Integer getStartRow() {
        return startRow;
    }

    public void setStartRow(Integer startRow) {
        this.startRow = startRow;
    }

    public Integer getEndCol() {
        return endCol;
    }

    public void setEndCol(Integer endCol) {
        this.endCol = endCol;
    }

    public Integer getEndRow() {
        return endRow;
    }

    public void setEndRow(Integer endRow) {
        this.endRow = endRow;
    }

    public String getImgPath() {
        return imgPath;
    }

    public void setImgPath(String imgPath) {
        this.imgPath = imgPath;
    }

    public List getPropertyList() {
        return propertyList;
    }

    public void setPropertyList(List propertyList) {
        this.propertyList = propertyList;
    }

    public List getStructList() {
        return structList;
    }

    public void setStructList(List structList) {
        this.structList = structList;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy