package org.yeshi.utils.generater.entity; import org.yeshi.utils.generater.annotation.admin.DaoQueryCondition; public class DaoQueryColumnData extends ColumnData { //查询方式 private DaoQueryCondition.QueryType queryType; public DaoQueryColumnData(String columnName, String type, DaoQueryCondition.QueryType queryType) { super(columnName, type); this.queryType = queryType; } public DaoQueryCondition.QueryType getQueryType() { return queryType; } public void setQueryType(DaoQueryCondition.QueryType queryType) { this.queryType = queryType; } }