-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtestBaseDao.java
More file actions
21 lines (18 loc) · 621 Bytes
/
testBaseDao.java
File metadata and controls
21 lines (18 loc) · 621 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
package test;
import com.nxdcms.dao.BaseDao;
import com.nxdcms.dao.impl.BaseDaoImpl;
public class testBaseDao {
public static void main(String[] args) {
BaseDao bd = new BaseDaoImpl();
// bd.addCollegeDictionary("信息工程学院");
// bd.addCollegeDictionary("电子工程学院");
// bd.addCollegeDictionary("商学院");
// bd.addCollegeDictionary("美术学院");
bd.addCompetitionLevel("院级");
bd.addCompetitionLevel("校级");
bd.addCompetitionLevel("市级");
bd.addCompetitionLevel("省级");
bd.addCompetitionLevel("国家级");
//bd.addCollegeDictionary("环境工程学院");
}
}