package org.yeshi.utils.generater.vo.xmlconfig.dao;
|
|
import java.util.List;
|
|
/**
|
* @author hxh
|
* @title: DaoData
|
* @description: Dao数据
|
* @date 2022/3/28 14:44
|
*/
|
public class DaoData {
|
private String pkg;
|
private String mapperDir;
|
private List<DaoQuery> queryList;
|
|
public String getPkg() {
|
return pkg;
|
}
|
|
public void setPkg(String pkg) {
|
this.pkg = pkg;
|
}
|
|
public String getMapperDir() {
|
return mapperDir;
|
}
|
|
public void setMapperDir(String mapperDir) {
|
this.mapperDir = mapperDir;
|
}
|
|
public List<DaoQuery> getQueryList() {
|
return queryList;
|
}
|
|
public void setQueryList(List<DaoQuery> queryList) {
|
this.queryList = queryList;
|
}
|
}
|