package org.yeshi.utils.generater.vo.xmlconfig.dao;
|
|
import org.yeshi.utils.generater.annotation.admin.DaoQueryCondition;
|
|
/**
|
* @author hxh
|
* @title: DaoQuery
|
* @description: dao条件查询
|
* @date 2022/3/28 14:42
|
*/
|
public class DaoQuery {
|
//字段名称
|
private String name;
|
private DaoQueryCondition.QueryType queryType;
|
|
public String getName() {
|
return name;
|
}
|
|
public void setName(String name) {
|
this.name = name;
|
}
|
|
public DaoQueryCondition.QueryType getQueryType() {
|
return queryType;
|
}
|
|
public void setQueryType(DaoQueryCondition.QueryType queryType) {
|
this.queryType = queryType;
|
}
|
}
|