百度上传文件到写入数据库之五

package cn.toher.util.common;

/*
 * To change this license header, choose License Headers in Project Properties.
 * To change this template file, choose Tools | Templates
 * and open the template in the editor.
 */

/**
 *
 * @author Administrator
 */
public class MapData {
    
    private String name;
    private Object filedType;

    public String getName() {
        return name;
    }

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

    public Object getFiledType() {
        return filedType;
    }

    public void setFiledType(Object filedType) {
        this.filedType = filedType;
    }

    
    
}
原文地址:https://www.cnblogs.com/itchenfirst/p/7285768.html