Selaa lähdekoodia

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

zzy.zhiyuan.foxmail 8 vuotta sitten
vanhempi
commit
4b606dbf73

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

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
	@SelectOne
125
	@SelectOne
104
	@Nullable
126
	@Nullable
105
	public abstract Consult query(Connection con, String consultId) throws SQLException;
127
	public abstract Consult query(Connection con, String consultId) throws SQLException;

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

35

35

36
	@Update
36
	@Update
37
	public abstract int update(Connection con, Professor professor) throws SQLException;
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
	@UpdateWith
43
	@UpdateWith
40
	@From(Professor.class)
44
	@From(Professor.class)

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

4
import org.jfw.apt.orm.annotation.entry.PrimaryKey;
4
import org.jfw.apt.orm.annotation.entry.PrimaryKey;
5
import org.jfw.apt.orm.annotation.entry.Table;
5
import org.jfw.apt.orm.annotation.entry.Table;
6
import org.jfw.apt.orm.core.defaultImpl.FixLenStringHandler;
6
import org.jfw.apt.orm.core.defaultImpl.FixLenStringHandler;
7
import org.jfw.apt.orm.core.defaultImpl.IntHandler;
7
import org.jfw.apt.orm.core.defaultImpl.StringHandler;
8
import org.jfw.apt.orm.core.defaultImpl.StringHandler;
8
import org.jfw.apt.orm.core.enums.DE;
9
import org.jfw.apt.orm.core.enums.DE;
9
10
36
	private String descp;
37
	private String descp;
37
	private String createTime;
38
	private String createTime;
38
	private String modifyTime;
39
	private String modifyTime;
40
	private int starLevel;
39
	private Organization organization;
41
	private Organization organization;
40
	
42
	
41
	public Organization getOrganization() {
43
	public Organization getOrganization() {
174
		this.modifyTime = modifyTime;
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
	}
202
	}
203
	@Get
203
	@Get
204
	@Path("/qa")
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
		return this.professorDao.query(con);
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
	@Post
215
	@Post
211
	@Path("/subject")
216
	@Path("/subject")
212
	public void updateSubject(@JdbcConn(true) Connection con,String id, String subject) throws SQLException{
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
		this.tidingsDao.updateReadStatus(con, tidings.getSenderId(), tidings.getConsultId());
45
		this.tidingsDao.updateReadStatus(con, tidings.getSenderId(), tidings.getConsultId());
46
		String consultId = tidings.getConsultId();
46
		String consultId = tidings.getConsultId();
47
		this.consultDao.updateRevoveryTime(con, consultId);
47
		this.consultDao.updateRevoveryTime(con, consultId);
48
		this.consultDao.updateReadStatus(con, consultId);
48
		return tidingsId;
49
		return tidingsId;
49
	}
50
	}
50
	
51
	
75
	@Get
76
	@Get
76
	@Path("/qacon")
77
	@Path("/qacon")
77
	public List<Tidings> queryCon(@JdbcConn Connection con, String consultId) throws SQLException {
78
	public List<Tidings> queryCon(@JdbcConn Connection con, String consultId) throws SQLException {
79
		this.consultDao.updateReadStatus(con, consultId);
78
		return this.tidingsDao.queryCon(con, consultId);
80
		return this.tidingsDao.queryCon(con, consultId);
79
	}
81
	}
80
}
82
}