Browse Source

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

zzy.zhiyuan.foxmail 8 years ago
parent
commit
8f13b19fe8

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

37
	@From(Resource.class)
37
	@From(Resource.class)
38
	public abstract int updateDescp(Connection con, String resourceId, @Set String descp) throws SQLException;
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
	@UpdateWith
44
	@UpdateWith
41
	@From(Resource.class)
45
	@From(Resource.class)
42
	public abstract int updateCooperationNotes(Connection con,String resourceId,@Set String cooperationNotes) throws SQLException;
46
	public abstract int updateCooperationNotes(Connection con,String resourceId,@Set String cooperationNotes) throws SQLException;
48
	@SelectList
52
	@SelectList
49
	public abstract List<Resource> query(Connection con) throws SQLException;
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
	@DeleteWith
58
	@DeleteWith
52
	@From(Resource.class)
59
	@From(Resource.class)
53
	public abstract int delete(Connection con, String resourceId) throws SQLException;
60
	public abstract int delete(Connection con, String resourceId) throws SQLException;

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

1
package com.ekexiu.portal.po;
1
package com.ekexiu.portal.po;
2

2

3
import java.util.List;
4

3
import org.jfw.apt.orm.annotation.entry.Column;
5
import org.jfw.apt.orm.annotation.entry.Column;
4
import org.jfw.apt.orm.annotation.entry.PrimaryKey;
6
import org.jfw.apt.orm.annotation.entry.PrimaryKey;
5
import org.jfw.apt.orm.annotation.entry.Table;
7
import org.jfw.apt.orm.annotation.entry.Table;
23
	private String descp;
25
	private String descp;
24
	private String professorId;
26
	private String professorId;
25
	private Professor professor;
27
	private Professor professor;
28
	private List<Image> images;
26
	/**
29
	/**
27
	 * 资源所属(个人/机构)
30
	 * 资源所属(个人/机构)
28
	 */
31
	 */
29
	private String ascription;
32
	private String ascription;
30
	private String createTime;
33
	private String createTime;
31
	private String modifyTime;
34
	private String modifyTime;
32
	private int hopePayMethod;
35
	private String hopePayMethod;
33
	/**
36
	/**
34
	 * 合作备注
37
	 * 合作备注
35
	 */
38
	 */
36
	private String cooperationNotes;
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
	public Professor getProfessor() {
48
	public Professor getProfessor() {
39
		return professor;
49
		return professor;
40
	}
50
	}
120
		this.modifyTime = modifyTime;
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
		return hopePayMethod;
135
		return hopePayMethod;
126
	}
136
	}
127
	public void setHopePayMethod(int hopePayMethod) {
137
	public void setHopePayMethod(String hopePayMethod) {
128
		this.hopePayMethod = hopePayMethod;
138
		this.hopePayMethod = hopePayMethod;
129
	}
139
	}
130
	
140
	

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

75
	public List<Resource> queryAll(@JdbcConn Connection con) throws SQLException {
75
	public List<Resource> queryAll(@JdbcConn Connection con) throws SQLException {
76
		return this.resourceDao.query(con);
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
	@Post
85
	@Post
80
	@Path("/subject")
86
	@Path("/subject")
94
		this.resourceDao.updateDescp(con, resourceId, descp);
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
	@Delete
109
	@Delete
98
	@Path("/{resourceId}")
110
	@Path("/{resourceId}")
99
	public void delete(@JdbcConn(true) Connection con,@PathVar String resourceId) throws SQLException {
111
	public void delete(@JdbcConn(true) Connection con,@PathVar String resourceId) throws SQLException {