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