com.mycomm.dao.dao4comm.annotation.dialect.FieldMetaData Maven / Gradle / Ivy
/*
* 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.
*/
package com.mycomm.dao.dao4comm.annotation.dialect;
import com.mycomm.IProtocol.beans.JDataTypes;
/**
*
* @author jw362j
*/
public class FieldMetaData {
private JDataTypes jDataType;
private Object dataValue;
private String columName;
public FieldMetaData() {
}
public FieldMetaData(JDataTypes jDataType, Object dataValue, String columName) {
this.jDataType = jDataType;
this.dataValue = dataValue;
this.columName = columName;
}
public JDataTypes getjDataType() {
return jDataType;
}
public void setjDataType(JDataTypes jDataType) {
this.jDataType = jDataType;
}
public Object getDataValue() {
return dataValue;
}
public void setDataValue(Object dataValue) {
this.dataValue = dataValue;
}
public String getColumName() {
return columName;
}
public void setColumName(String columName) {
this.columName = columName;
}
@Override
public String toString() {
return "FieldMetaData{" + "jDataType=" + jDataType + ", dataValue=" + dataValue + ", columName=" + columName + '}';
}
}