Browse Source

查询评价的三个接口整合成一个接口。资源表里行业和学科改为可插入。

zzy.zhiyuan.foxmail 8 years ago
parent
commit
67653204c3

+ 61 - 1
src/main/java/com/ekexiu/portal/dao/AssessDao.java

@ -1,6 +1,7 @@
1 1
package com.ekexiu.portal.dao;
2 2

3 3
import java.sql.Connection;
4
import java.sql.PreparedStatement;
4 5
import java.sql.SQLException;
5 6
import java.util.List;
6 7

@ -173,7 +174,66 @@ public abstract class AssessDao {
173 174
            try{ps.close();}catch(Exception _m_4){}
174 175
        }
175 176
    }
176

177
	
178
	public List<Assess> queryAll(Connection con, String assessId, String resourceId, String professorId) throws SQLException {
179
		StringBuilder sql = new StringBuilder();
180
		boolean hasAssessId = null != assessId;
181
		boolean hasResourceId = null != resourceId;
182
		boolean hasProfessorId = null != professorId;
183
		sql.append(" SELECT ASSESS_ID,STAR_LEVEL,ASSESS.DESCP,ASSESS.OPERATION_ID,ASSESS.RESOURCE_ID,ASSESS.PROFESSOR_ID,RESOURCE_NAME,PROFESSOR.NAME FROM ASSESS INNER JOIN RESOURCE ON ASSESS.RESOURCE_ID = RESOURCE.RESOURCE_ID INNER JOIN PROFESSOR ON ASSESS.PROFESSOR_ID = PROFESSOR.ID ");
184
		if(hasAssessId){
185
			sql.append(" WHERE ASSESS_ID = ? ");
186
		}
187
		if(hasResourceId){
188
			sql.append(" WHERE ASSESS.RESOURCE_ID = ? ");
189
		}
190
		if(hasProfessorId){
191
			sql.append(" WHERE ASSESS.PROFESSOR_ID = ? ");
192
		}
193
		int _m_1 = 1;
194
        PreparedStatement ps = con.prepareStatement(sql.toString());
195
        try{
196
        	if(hasAssessId){
197
        		ps.setString(_m_1++, assessId);
198
        	}
199
        	if(hasResourceId){
200
        		ps.setString(_m_1++, resourceId);
201
        	}
202
        	if(hasProfessorId){
203
        		ps.setString(_m_1++, professorId);
204
        	}
205
            java.sql.ResultSet rs = ps.executeQuery();
206
            try{
207
                java.util.List<com.ekexiu.portal.po.Assess> _result = new java.util.ArrayList<com.ekexiu.portal.po.Assess>();
208
                while(rs.next()){
209
                    com.ekexiu.portal.po.Assess _obj =  new com.ekexiu.portal.po.Assess();
210
                    _obj.setAssessId(rs.getString(1));
211
                    _obj.setStarLevel(rs.getInt(2));
212
                    java.lang.String _m_2 = rs.getString(3);
213
                    if(rs.wasNull()){
214
                        _m_2 = null;
215
                    }
216
                    _obj.setDescp(_m_2);
217
                    _obj.setOperationId(rs.getString(4));
218
                    Resource resource = new Resource();
219
                    resource.setResourceId(rs.getString(5));
220
                    Professor professor = new Professor();
221
                    professor.setId(rs.getString(6));
222
                    resource.setResourceName(rs.getString(7));
223
                    _obj.setResource(resource);
224
                    professor.setName(rs.getString(8));
225
                    _obj.setProfessor(professor);
226
                    _result.add(_obj);
227
                }
228
                return _result;
229
            }finally{
230
                try{rs.close();}catch(Exception _m_3){}
231
            }
232
        }finally{
233
            try{ps.close();}catch(Exception _m_4){}
234
        }
235
	}
236
	
177 237
	@DeleteWith
178 238
	@From(Assess.class)
179 239
	public abstract int delete(Connection con, String assessId) throws SQLException;

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

@ -89,7 +89,7 @@ public class Operation {
89 89
		this.demandId = demandId;
90 90
	}
91 91
	
92
	@Column(handlerClass=StringHandler.class,dbType="TEXT",insertable=false,nullable=false,renewable=false,queryable=true)
92
	@Column(handlerClass=StringHandler.class,dbType="TEXT",insertable=true,nullable=false,renewable=true,queryable=true)
93 93
	public String getDetailDemand() {
94 94
		return detailDemand;
95 95
	}

+ 4 - 4
src/main/java/com/ekexiu/portal/po/Resource.java

@ -68,7 +68,7 @@ public class Resource implements CreateTimeSupported, ModifyTimeSupported{
68 68
		this.resourceName = resourceName;
69 69
	}
70 70
	
71
	@Column(handlerClass=StringHandler.class,dbType="TEXT",insertable=false,nullable=true,renewable=false,queryable=true)
71
	@Column(handlerClass=StringHandler.class,dbType="TEXT",insertable=true,nullable=true,renewable=true,queryable=true)
72 72
	public String getSubject() {
73 73
		return subject;
74 74
	}
@ -76,7 +76,7 @@ public class Resource implements CreateTimeSupported, ModifyTimeSupported{
76 76
		this.subject = subject;
77 77
	}
78 78
	
79
	@Column(handlerClass=StringHandler.class,dbType="TEXT",insertable=false,nullable=true,renewable=false,queryable=true)
79
	@Column(handlerClass=StringHandler.class,dbType="TEXT",insertable=true,nullable=true,renewable=true,queryable=true)
80 80
	public String getIndustry() {
81 81
		return industry;
82 82
	}
@ -92,7 +92,7 @@ public class Resource implements CreateTimeSupported, ModifyTimeSupported{
92 92
		this.supportedServices = supportedServices;
93 93
	}
94 94
	
95
	@Column(handlerClass=StringHandler.class,dbType="TEXT",insertable=false,nullable=true,renewable=false,queryable=true)
95
	@Column(handlerClass=StringHandler.class,dbType="TEXT",insertable=true,nullable=true,renewable=true,queryable=true)
96 96
	public String getDescp() {
97 97
		return descp;
98 98
	}
@ -138,7 +138,7 @@ public class Resource implements CreateTimeSupported, ModifyTimeSupported{
138 138
		this.hopePayMethod = hopePayMethod;
139 139
	}
140 140
	
141
	@Column(handlerClass=StringHandler.class,dbType="TEXT",insertable=false,nullable=true,renewable=true,queryable=true)
141
	@Column(handlerClass=StringHandler.class,dbType="TEXT",insertable=true,nullable=true,renewable=true,queryable=true)
142 142
	public String getCooperationNotes() {
143 143
		return cooperationNotes;
144 144
	}

+ 15 - 0
src/main/java/com/ekexiu/portal/service/AssessService.java

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

7 7
import org.jfw.apt.annotation.Autowrie;
8
import org.jfw.apt.annotation.Nullable;
8 9
import org.jfw.apt.web.annotation.Path;
9 10
import org.jfw.apt.web.annotation.operate.Delete;
10 11
import org.jfw.apt.web.annotation.operate.Get;
@ -64,6 +65,20 @@ public class AssessService {
64 65
		return this.queryPro(con, operationId);
65 66
	}
66 67
	
68
	@Get
69
	@Path("/qa")
70
	public List<Assess> queryAll(@JdbcConn Connection con, @Nullable String assessId, @Nullable String resourceId, @Nullable String professorId) throws SQLException {
71
		if(assessId != null) {
72
			resourceId = null;
73
			professorId = null;
74
		} else {
75
			if(resourceId != null) {
76
				professorId = null;
77
			}
78
		}
79
		return this.assessDao.queryAll(con, assessId, resourceId, professorId);
80
	}
81
	
67 82
	@Delete
68 83
	@Path("/{assessId}")
69 84
	public void delete(@JdbcConn(true) Connection con, String assessId) throws SQLException {