Quellcode durchsuchen

修改资源表里的字段和对应的Dao、Service方法

zzy.zhiyuan.foxmail vor 8 Jahren
Ursprung
Commit
8f13b19fe8

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

@ -37,6 +37,10 @@ public abstract class ResourceDao {
37 37
	@From(Resource.class)
38 38
	public abstract int updateDescp(Connection con, String resourceId, @Set String descp) throws SQLException;
39 39
	
40
	@UpdateWith
41
	@From(Resource.class)
42
	public abstract int updateHopePayMethod(Connection con, String resourceId, @Set String hopePayMethod) throws SQLException;
43
	
40 44
	@UpdateWith
41 45
	@From(Resource.class)
42 46
	public abstract int updateCooperationNotes(Connection con,String resourceId,@Set String cooperationNotes) throws SQLException;
@ -48,6 +52,9 @@ public abstract class ResourceDao {
48 52
	@SelectList
49 53
	public abstract List<Resource> query(Connection con) throws SQLException;
50 54
	
55
	@SelectList
56
	public abstract List<Resource> queryPro(Connection con, String professorId) throws SQLException;
57
	
51 58
	@DeleteWith
52 59
	@From(Resource.class)
53 60
	public abstract int delete(Connection con, String resourceId) throws SQLException;

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

@ -1,5 +1,7 @@
1 1
package com.ekexiu.portal.po;
2 2

3
import java.util.List;
4

3 5
import org.jfw.apt.orm.annotation.entry.Column;
4 6
import org.jfw.apt.orm.annotation.entry.PrimaryKey;
5 7
import org.jfw.apt.orm.annotation.entry.Table;
@ -23,18 +25,26 @@ public class Resource implements CreateTimeSupported, ModifyTimeSupported{
23 25
	private String descp;
24 26
	private String professorId;
25 27
	private Professor professor;
28
	private List<Image> images;
26 29
	/**
27 30
	 * 资源所属(个人/机构)
28 31
	 */
29 32
	private String ascription;
30 33
	private String createTime;
31 34
	private String modifyTime;
32
	private int hopePayMethod;
35
	private String hopePayMethod;
33 36
	/**
34 37
	 * 合作备注
35 38
	 */
36 39
	private String cooperationNotes;
37 40
	
41
	public List<Image> getImages() {
42
		return images;
43
	}
44
	public void setImages(List<Image> images) {
45
		this.images = images;
46
	}
47
	
38 48
	public Professor getProfessor() {
39 49
		return professor;
40 50
	}
@ -120,11 +130,11 @@ public class Resource implements CreateTimeSupported, ModifyTimeSupported{
120 130
		this.modifyTime = modifyTime;
121 131
	}
122 132
	
123
	@Column(DE.int_de)
124
	public int getHopePayMethod() {
133
	@Column(DE.string_de)
134
	public String getHopePayMethod() {
125 135
		return hopePayMethod;
126 136
	}
127
	public void setHopePayMethod(int hopePayMethod) {
137
	public void setHopePayMethod(String hopePayMethod) {
128 138
		this.hopePayMethod = hopePayMethod;
129 139
	}
130 140
	

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

@ -75,6 +75,12 @@ public class ResourceService {
75 75
	public List<Resource> queryAll(@JdbcConn Connection con) throws SQLException {
76 76
		return this.resourceDao.query(con);
77 77
	}
78
	
79
	@Get
80
	@Path("/qapro")
81
	public List<Resource> queryPro(@JdbcConn Connection con, String professorId) throws SQLException {
82
		return this.resourceDao.queryPro(con, professorId);
83
	}
78 84

79 85
	@Post
80 86
	@Path("/subject")
@ -94,6 +100,12 @@ public class ResourceService {
94 100
		this.resourceDao.updateDescp(con, resourceId, descp);
95 101
	}
96 102
	
103
	@Post
104
	@Path("/hopePayMethod")
105
	public void updateHopePayMethod(@JdbcConn(true) Connection con, String resourceId, String hopePayMethod) throws SQLException {
106
		this.resourceDao.updateHopePayMethod(con, resourceId, hopePayMethod);
107
	}
108
	
97 109
	@Delete
98 110
	@Path("/{resourceId}")
99 111
	public void delete(@JdbcConn(true) Connection con,@PathVar String resourceId) throws SQLException {