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

com.mycomm.dao.dao4comm.annotation.dialect.FieldMetaData Maven / Gradle / Ivy

There is a newer version: 1.0.8
Show newest version
/*
 * 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 + '}';
    }
    
    

    
    
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy