Browse Source

业务表和评价表添加实体类对象,resourceDao添加分页查询方法。

zzy.zhiyuan.foxmail 8 years ago
parent
commit
ad54fdd1e2

+ 187 - 0
src/main/java/com/ekexiu/portal/dao/ResourceDao.java

@ -1,12 +1,16 @@
1 1
package com.ekexiu.portal.dao;
2 2

3 3
import java.sql.Connection;
4
import java.sql.PreparedStatement;
5
import java.sql.ResultSet;
4 6
import java.sql.SQLException;
7
import java.util.ArrayList;
5 8
import java.util.List;
6 9

7 10
import org.jfw.apt.annotation.Nullable;
8 11
import org.jfw.apt.orm.annotation.dao.DAO;
9 12
import org.jfw.apt.orm.annotation.dao.method.From;
13
import org.jfw.apt.orm.annotation.dao.method.OrderBy;
10 14
import org.jfw.apt.orm.annotation.dao.method.operator.DeleteWith;
11 15
import org.jfw.apt.orm.annotation.dao.method.operator.Insert;
12 16
import org.jfw.apt.orm.annotation.dao.method.operator.SelectList;
@ -14,7 +18,9 @@ import org.jfw.apt.orm.annotation.dao.method.operator.SelectOne;
14 18
import org.jfw.apt.orm.annotation.dao.method.operator.Update;
15 19
import org.jfw.apt.orm.annotation.dao.method.operator.UpdateWith;
16 20
import org.jfw.apt.orm.annotation.dao.param.Set;
21
import org.jfw.util.PageQueryResult;
17 22

23
import com.ekexiu.portal.po.Professor;
18 24
import com.ekexiu.portal.po.Resource;
19 25

20 26
@DAO
@ -55,7 +61,188 @@ public abstract class ResourceDao {
55 61
	@SelectList
56 62
	public abstract List<Resource> queryPro(Connection con, String professorId) throws SQLException;
57 63
	
64
	@SelectList
65
	@OrderBy(" ORDER BY CREATE_TIME ")
66
	public abstract List<Resource> queryOrder(Connection con, String professorId) throws SQLException;
67
	
58 68
	@DeleteWith
59 69
	@From(Resource.class)
60 70
	public abstract int delete(Connection con, String resourceId) throws SQLException;
71
	
72
	/**
73
	 * 分页查找所有资源,按资源名称排序
74
	 * @param key 查询内容(搜索框搜索内容-模糊查询)
75
	 * @param subject 学术领域
76
	 * @param industry 研究方向
77
	 * @param pageSize 
78
	 * @param pageNo
79
	 * @return
80
	 * @throws SQLException
81
	 */
82
	public PageQueryResult<Resource> queryPage(Connection con, @Nullable String key, String subject, String industry, int pageSize, int pageNo) throws SQLException {
83
		PageQueryResult<Resource> _result = new PageQueryResult<Resource>();
84
		StringBuilder sql = new StringBuilder();
85
		boolean hasKey = null != key;
86
		if (hasKey) {
87
			sql.append(
88
					" WHERE (( RESOURCE_NAME LIKE ? ) OR ( SUPPORTED_SERVICES LIKE ? ) OR ( DESCP LIKE ? ) OR ( COOPERATION_NOTES LIKE ? ))");
89
		}
90
		boolean hasSubject = null != subject;
91
		boolean hasIndustry = null != industry;
92
		if (hasSubject) {
93
			sql.append(sql.length() > 0 ? " AND " : " WHERE ").append("(SUBJECT LIKE ?)");
94
		}
95
		if (hasIndustry) {
96
			sql.append(sql.length() > 0 ? " AND " : " WHERE ").append("(INDUSTRY LIKE ?)");
97
		}
98
		StringBuilder whereSql = sql;
99
		sql = new StringBuilder();
100
		sql.append("SELECT COUNT(1) FROM RESOURCE");
101
		if (whereSql.length() > 0) {
102
			sql.append(whereSql);
103
		}
104
		PreparedStatement ps = con.prepareStatement(sql.toString());
105
		int paramIndex = 1;
106
		int totalSize = 0;
107
		try {
108
			if (hasKey) {
109
				ps.setString(paramIndex++, key);
110
				ps.setString(paramIndex++, key);
111
				ps.setString(paramIndex++, key);
112
				ps.setString(paramIndex++, key);
113
			}
114
			if (hasSubject) {
115
				ps.setString(paramIndex++, subject);
116
			}
117
			if (hasIndustry) {
118
				ps.setString(paramIndex++, industry);
119
			}
120
			_result.setPageSize(pageSize);
121
			ResultSet _pageRs = ps.executeQuery();
122
			try {
123
				_pageRs.next();
124
				totalSize = _pageRs.getInt(1);
125
			} finally {
126
				try {
127
					_pageRs.close();
128
				} catch (Exception _m_6) {
129
				}
130
			}
131
		} finally {
132
			try {
133
				ps.close();
134
			} catch (Exception _m_7) {
135
			}
136
		}
137
		_result.setTotal(totalSize);
138
		if (0 == totalSize) {
139
			_result.setPageNo(1);
140
			_result.setData(java.util.Collections.<com.ekexiu.portal.po.Resource> emptyList());
141
			return _result;
142
		}
143
		paramIndex = 1;
144
		if (1 == pageNo) {
145
			_result.setPageNo(1);
146
			sql = new StringBuilder();
147
			//左连接查询资源表和专家表,方便前台显示专家姓名
148
			sql.append(" SELECT RESOURCE_ID,RESOURCE_NAME,SUPPORTED_SERVICES,R.DESCP,PROFESSOR_ID,P.NAME,R.CREATE_TIME,R.MODIFY_TIME,HOPE_PAY_METHOD,COOPERATION_NOTES,R.SUBJECT,R.INDUSTRY FROM RESOURCE R LEFT JOIN PROFESSOR P ON PROFESSOR_ID = P.ID ");
149
			if (whereSql.length() > 0) {
150
				sql.append(whereSql);
151
			}
152
			sql.append(" ORDER BY RESOURCE_NAME ");
153
			sql.append(" LIMIT ").append(pageSize);
154
		} else {
155
			int _pageSize = totalSize / pageSize;
156
			if (totalSize % pageSize != 0) {
157
				++_pageSize;
158
			}
159
			if (pageNo > _pageSize) {
160
				pageNo = _pageSize;
161
			}
162
			_result.setPageNo(pageNo);
163
			--pageNo;
164
			int _m_10 = (pageNo * pageSize);
165
			sql = new StringBuilder();
166
			sql.append(" SELECT RESOURCE_ID,RESOURCE_NAME,SUPPORTED_SERVICES,R.DESCP,PROFESSOR_ID,P.NAME,R.CREATE_TIME,R.MODIFY_TIME,HOPE_PAY_METHOD,COOPERATION_NOTES,R.SUBJECT,R.INDUSTRY FROM RESOURCE R LEFT JOIN PROFESSOR P ON PROFESSOR_ID = P.ID ");
167
			if (whereSql.length() > 0) {
168
				sql.append(whereSql);
169
			}
170
			sql.append(" ORDER BY RESOURCE ");
171
			sql.append(" LIMIT ").append(pageSize).append(" OFFSET ").append(_m_10);
172
		}
173
		ps = con.prepareStatement(sql.toString());
174
		try {
175
			if (hasKey) {
176
				ps.setString(paramIndex++, key);
177
				ps.setString(paramIndex++, key);
178
				ps.setString(paramIndex++, key);
179
				ps.setString(paramIndex++, key);
180
			}
181
			if (hasSubject) {
182
				ps.setString(paramIndex++, subject);
183
			}
184
			if (hasIndustry) {
185
				ps.setString(paramIndex++, industry);
186
			}
187
			ResultSet rs = ps.executeQuery();
188
			try {
189
				List<Resource> _m_11 = new ArrayList<Resource>();
190
				_result.setData(_m_11);
191
				while (rs.next()) {
192
					Resource obj = new Resource();
193
					obj.setResourceId(rs.getString(1));
194
					String _m_13 = rs.getString(2);
195
					if (rs.wasNull()) {
196
						_m_13 = null;
197
					}
198
					obj.setResourceName(_m_13);
199
					String _m_14 = rs.getString(3);
200
					if (rs.wasNull()) {
201
						_m_14 = null;
202
					}
203
					obj.setSupportedServices(_m_14);
204
					String _m_15 = rs.getString(4);
205
					if (rs.wasNull()) {
206
						_m_15 = null;
207
					}
208
					obj.setDescp(_m_15);
209
					Professor professor = new Professor();
210
					professor.setId(rs.getString(5));
211
					professor.setName(rs.getString(6));
212
					obj.setProfessor(professor);
213
					obj.setCreateTime(rs.getString(7));
214
					obj.setModifyTime(rs.getString(8));
215
					obj.setHopePayMethod(rs.getString(9));
216
					String _m_16 = rs.getString(10);
217
					if (rs.wasNull()) {
218
						_m_16 = null;
219
					}
220
					obj.setCooperationNotes(_m_16);
221
					String _m_17 = rs.getString(11);
222
					if (rs.wasNull()) {
223
						_m_17 = null;
224
					}
225
					obj.setSubject(_m_17);
226
					String _m_18 = rs.getString(12);
227
					if (rs.wasNull()) {
228
						_m_18 = null;
229
					}
230
					obj.setIndustry(_m_18);
231
					_m_11.add(obj);
232
				}
233
				return _result;
234
			} finally {
235
				try {
236
					rs.close();
237
				} catch (Exception _m_19) {
238
				}
239
			}
240
		} finally {
241
			try {
242
				ps.close();
243
			} catch (Exception _m_20) {
244
			}
245
		}
246
	}
247
	
61 248
}

+ 24 - 0
src/main/java/com/ekexiu/portal/po/Assess.java

@ -15,6 +15,30 @@ public class Assess {
15 15
	private String operationId;
16 16
	private String resourceId;
17 17
	private String professorId;
18
	private Operation operation;
19
	private Resource resource;
20
	private Professor professor;
21
	
22
	public Operation getOperation() {
23
		return operation;
24
	}
25
	public void setOperation(Operation operation) {
26
		this.operation = operation;
27
	}
28
	
29
	public Resource getResource() {
30
		return resource;
31
	}
32
	public void setResource(Resource resource) {
33
		this.resource = resource;
34
	}
35
	
36
	public Professor getProfessor() {
37
		return professor;
38
	}
39
	public void setProfessor(Professor professor) {
40
		this.professor = professor;
41
	}
18 42
	
19 43
	@Column(DE.id_32)
20 44
	public String getAssessId() {

+ 16 - 0
src/main/java/com/ekexiu/portal/po/Operation.java

@ -32,6 +32,22 @@ public class Operation {
32 32
	private String payMethod;//支付方式
33 33
	private String replyNotes; //回复备注
34 34
	private String createTime;//创建时间
35
	private Professor professor;
36
	private Resource resource;
37
	
38
	public Professor getProfessor() {
39
		return professor;
40
	}
41
	public void setProfessor(Professor professor) {
42
		this.professor = professor;
43
	}
44
	
45
	public Resource getResource() {
46
		return resource;
47
	}
48
	public void setResource(Resource resource) {
49
		this.resource = resource;
50
	}
35 51
	
36 52
	@Column(DE.string_de)
37 53
	public String getReplyNotes() {

+ 18 - 0
src/main/java/com/ekexiu/portal/service/ResourceService.java

@ -6,6 +6,7 @@ import java.sql.SQLException;
6 6
import java.util.List;
7 7

8 8
import org.jfw.apt.annotation.Autowrie;
9
import org.jfw.apt.annotation.DefaultValue;
9 10
import org.jfw.apt.annotation.Nullable;
10 11
import org.jfw.apt.web.annotation.Path;
11 12
import org.jfw.apt.web.annotation.operate.Delete;
@ -15,6 +16,7 @@ import org.jfw.apt.web.annotation.operate.Put;
15 16
import org.jfw.apt.web.annotation.param.JdbcConn;
16 17
import org.jfw.apt.web.annotation.param.PathVar;
17 18
import org.jfw.apt.web.annotation.param.RequestBody;
19
import org.jfw.util.PageQueryResult;
18 20
import org.jfw.util.StringUtil;
19 21

20 22
import com.ekexiu.portal.dao.ImageDao;
@ -92,6 +94,12 @@ public class ResourceService {
92 94
	public List<Resource> queryPro(@JdbcConn Connection con, String professorId) throws SQLException {
93 95
		return this.resourceDao.queryPro(con, professorId);
94 96
	}
97
	
98
	@Get
99
	@Path("/qactime")
100
	public List<Resource> queryOrder(@JdbcConn Connection con, String professorId) throws SQLException {
101
		return this.resourceDao.queryOrder(con, professorId);
102
	}
95 103

96 104
	@Post
97 105
	@Path("/subject")
@ -123,4 +131,14 @@ public class ResourceService {
123 131
		this.imageDao.deleteRes(con, resourceId);
124 132
		this.resourceDao.delete(con, resourceId);
125 133
	}
134
	
135
	@Get
136
	@Path("/pq")
137
	public PageQueryResult<Resource> queryPage(@JdbcConn(true) Connection con, @Nullable String key, @Nullable String subject, @Nullable String industry, @DefaultValue("10") int pageSize, @DefaultValue("1") int pageNo) throws SQLException {
138
		if(key!=null) key="%"+key+"%";
139
		if(subject!=null) subject ="%"+subject+"%";
140
		if(industry!=null)industry="%"+industry+"%";
141
		return this.resourceDao.queryPage(con, key, subject, industry, pageSize, pageNo);
142
	}
143
	
126 144
}