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

com.silentgo.orm.base.DaoMethod Maven / Gradle / Ivy

There is a newer version: 0.3.2
Show newest version
package com.silentgo.orm.base;

/**
 * Project : parent
 * Package : com.silentgo.core.db
 *
 * @author teddyzhu
 *         

* Created by teddyzhu on 2016/10/6. */ public class DaoMethod { private boolean isList; private boolean isArray; private Class type; public DaoMethod() { isList = false; isArray = false; } public boolean isList() { return isList; } public void setList(boolean list) { isList = list; } public boolean isArray() { return isArray; } public void setArray(boolean array) { isArray = array; } public Class getType() { return type; } public void setType(Class type) { this.type = type; } }





© 2015 - 2024 Weber Informatics LLC | Privacy Policy