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

com.javaoffers.batis.modelhelper.utils.FieldNameAnnoInfo Maven / Gradle / Ivy

There is a newer version: 3.5.11.12
Show newest version
package com.javaoffers.batis.modelhelper.utils;

/**
 * @author mingJie
 */
public class FieldNameAnnoInfo {
    private String fieldName;
    private boolean excludeColAll;

    public String getFieldName() {
        return fieldName;
    }

    public void setFieldName(String fieldName) {
        this.fieldName = fieldName;
    }

    public boolean isExcludeColAll() {
        return excludeColAll;
    }

    public void setExcludeColAll(boolean excludeColAll) {
        this.excludeColAll = excludeColAll;
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy