Browse Source

专家表添加星级字段,并添加相应的更新方法;ConsultDao里添加计算专家平均星级的方法。

zzy.zhiyuan.foxmail 8 years ago
parent
commit
4b606dbf73

+ 22 - 0
src/main/java/com/ekexiu/portal/dao/ConsultDao.java

@ -100,6 +100,28 @@ public abstract class ConsultDao {
100 100
        }
101 101
    }
102 102
	
103
	/**
104
	 * 查询当前用户接受咨询被评价的平均星级
105
	 * @param con
106
	 * @param professorId 用户ID
107
	 * @return 返回用户被评价的平均星级
108
	 * @throws SQLException
109
	 */
110
	public int queryStarLevel(Connection con, String professorId) throws SQLException {
111
		int _m_2 = 1;
112
		String sql = " SELECT AVG(ASSESS_STAR) FROM CONSULT WHERE ASSESS_STATUS = 1 AND PROFESSOR_ID = ? ";
113
		PreparedStatement ps = con.prepareStatement(sql);
114
		try {
115
			ps.setString(_m_2++, professorId);
116
			ResultSet rs = ps.executeQuery();
117
			rs.next();
118
			int avg = rs.getInt(1);
119
			return avg;
120
		} finally{
121
            try{ps.close();}catch(Exception _m_3){}
122
        }
123
	}
124
	
103 125
	@SelectOne
104 126
	@Nullable
105 127
	public abstract Consult query(Connection con, String consultId) throws SQLException;

+ 4 - 0
src/main/java/com/ekexiu/portal/dao/ProfessorDao.java

@ -35,6 +35,10 @@ public abstract class ProfessorDao {
35 35

36 36
	@Update
37 37
	public abstract int update(Connection con, Professor professor) throws SQLException;
38
	
39
	@UpdateWith
40
	@From(Professor.class)
41
	public abstract int updateStarLevel(Connection con, String id, @Set int starLevel) throws SQLException;
38 42

39 43
	@UpdateWith
40 44
	@From(Professor.class)

+ 11 - 0
src/main/java/com/ekexiu/portal/po/Professor.java

@ -4,6 +4,7 @@ import org.jfw.apt.orm.annotation.entry.Column;
4 4
import org.jfw.apt.orm.annotation.entry.PrimaryKey;
5 5
import org.jfw.apt.orm.annotation.entry.Table;
6 6
import org.jfw.apt.orm.core.defaultImpl.FixLenStringHandler;
7
import org.jfw.apt.orm.core.defaultImpl.IntHandler;
7 8
import org.jfw.apt.orm.core.defaultImpl.StringHandler;
8 9
import org.jfw.apt.orm.core.enums.DE;
9 10
@ -36,6 +37,7 @@ public class Professor implements CreateTimeSupported, ModifyTimeSupported{
36 37
	private String descp;
37 38
	private String createTime;
38 39
	private String modifyTime;
40
	private int starLevel;
39 41
	private Organization organization;
40 42
	
41 43
	public Organization getOrganization() {
@ -174,4 +176,13 @@ public class Professor implements CreateTimeSupported, ModifyTimeSupported{
174 176
		this.modifyTime = modifyTime;
175 177
	}
176 178
179
	@Column(handlerClass=IntHandler.class,dbType="INT",insertable=false,nullable=true,renewable=true,queryable=true)
180
	public int getStarLevel() {
181
		return starLevel;
182
	}
183
184
	public void setStarLevel(int starLevel) {
185
		this.starLevel = starLevel;
186
	}
187
177 188
}

+ 7 - 2
src/main/java/com/ekexiu/portal/service/ProfessorService.java

@ -202,11 +202,16 @@ public class ProfessorService {
202 202
	}
203 203
	@Get
204 204
	@Path("/qa")
205
	public List<Professor> queryAll(@JdbcConn Connection con)throws SQLException
206
	{
205
	public List<Professor> queryAll(@JdbcConn Connection con)throws SQLException {
207 206
		return this.professorDao.query(con);
208 207
	}
209 208
	
209
	@Post
210
	@Path("/starLevel")
211
	public void updateStarLevel(@JdbcConn(true) Connection con, String id, int starLevel) throws SQLException{
212
		this.professorDao.updateStarLevel(con, id, starLevel);
213
	}
214
	
210 215
	@Post
211 216
	@Path("/subject")
212 217
	public void updateSubject(@JdbcConn(true) Connection con,String id, String subject) throws SQLException{

+ 2 - 0
src/main/java/com/ekexiu/portal/service/TidingsService.java

@ -45,6 +45,7 @@ public class TidingsService {
45 45
		this.tidingsDao.updateReadStatus(con, tidings.getSenderId(), tidings.getConsultId());
46 46
		String consultId = tidings.getConsultId();
47 47
		this.consultDao.updateRevoveryTime(con, consultId);
48
		this.consultDao.updateReadStatus(con, consultId);
48 49
		return tidingsId;
49 50
	}
50 51
	
@ -75,6 +76,7 @@ public class TidingsService {
75 76
	@Get
76 77
	@Path("/qacon")
77 78
	public List<Tidings> queryCon(@JdbcConn Connection con, String consultId) throws SQLException {
79
		this.consultDao.updateReadStatus(con, consultId);
78 80
		return this.tidingsDao.queryCon(con, consultId);
79 81
	}
80 82
}