Преглед на файлове

新增资源Resource类和业务状态OperationStatus类

zzy.zhiyuan.foxmail преди 8 години
родител
ревизия
ae3bdfd50d

+ 17 - 0
src/main/java/com/ekexiu/portal/dao/OperationStatusDao.java

@ -0,0 +1,17 @@
1
package com.ekexiu.portal.dao;
2

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

7
import org.jfw.apt.orm.annotation.dao.DAO;
8
import org.jfw.apt.orm.annotation.dao.method.operator.SelectList;
9

10
import com.ekexiu.portal.po.OperationStatus;
11

12
@DAO
13
public interface OperationStatusDao {
14
	
15
	@SelectList
16
	public List<OperationStatus> query(Connection con) throws SQLException;
17
}

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

@ -0,0 +1,54 @@
1
package com.ekexiu.portal.dao;
2

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

7
import org.jfw.apt.annotation.Nullable;
8
import org.jfw.apt.orm.annotation.dao.DAO;
9
import org.jfw.apt.orm.annotation.dao.method.From;
10
import org.jfw.apt.orm.annotation.dao.method.operator.DeleteWith;
11
import org.jfw.apt.orm.annotation.dao.method.operator.Insert;
12
import org.jfw.apt.orm.annotation.dao.method.operator.SelectList;
13
import org.jfw.apt.orm.annotation.dao.method.operator.SelectOne;
14
import org.jfw.apt.orm.annotation.dao.method.operator.Update;
15
import org.jfw.apt.orm.annotation.dao.method.operator.UpdateWith;
16
import org.jfw.apt.orm.annotation.dao.param.Set;
17

18
import com.ekexiu.portal.po.Resource;
19

20
@DAO
21
public abstract class ResourceDao {
22
	@Insert
23
	public abstract int insert(Connection con,Resource resource) throws SQLException;
24
	
25
	@Update
26
	public abstract int update(Connection con,Resource resource) throws SQLException;
27
	
28
	@UpdateWith
29
	@From(Resource.class)
30
	public abstract int updateSubject(Connection con, String resourceId, @Set String subject) throws SQLException;
31

32
	@UpdateWith
33
	@From(Resource.class)
34
	public abstract int updateIndustry(Connection con, String resourceId, @Set String industry) throws SQLException;
35
	
36
	@UpdateWith
37
	@From(Resource.class)
38
	public abstract int updateDescp(Connection con, String resourceId, @Set String descp) throws SQLException;
39
	
40
	@UpdateWith
41
	@From(Resource.class)
42
	public abstract int updateCooperationNotes(Connection con,String resourceId,@Set String cooperationNotes) throws SQLException;
43
	
44
	@Nullable
45
	@SelectOne
46
	public abstract Resource query(Connection con, String resourceId) throws SQLException;
47
	
48
	@SelectList
49
	public abstract List<Resource> query(Connection con) throws SQLException;
50
	
51
	@DeleteWith
52
	@From(Resource.class)
53
	public abstract int delete(Connection con, String resourceId) throws SQLException;
54
}

+ 30 - 0
src/main/java/com/ekexiu/portal/po/OperationStatus.java

@ -0,0 +1,30 @@
1
package com.ekexiu.portal.po;
2

3
import org.jfw.apt.orm.annotation.entry.Column;
4
import org.jfw.apt.orm.annotation.entry.PrimaryKey;
5
import org.jfw.apt.orm.annotation.entry.Table;
6
import org.jfw.apt.orm.core.enums.DE;
7

8
@PrimaryKey("statusId")
9
@Table
10
public class OperationStatus {
11
	private int statusId;
12
	private String statusName;
13
	
14
	@Column(DE.int_de)
15
	public int getStatusId() {
16
		return statusId;
17
	}
18
	public void setStatusId(int statusId) {
19
		this.statusId = statusId;
20
	}
21
	
22
	@Column(DE.string_de)
23
	public String getStatusName() {
24
		return statusName;
25
	}
26
	public void setStatusName(String statusName) {
27
		this.statusName = statusName;
28
	}
29
	
30
}

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

@ -0,0 +1,138 @@
1
package com.ekexiu.portal.po;
2

3
import org.jfw.apt.orm.annotation.entry.Column;
4
import org.jfw.apt.orm.annotation.entry.PrimaryKey;
5
import org.jfw.apt.orm.annotation.entry.Table;
6
import org.jfw.apt.orm.core.defaultImpl.StringHandler;
7
import org.jfw.apt.orm.core.enums.DE;
8

9
import com.ekexiu.portal.basepo.CreateTimeSupported;
10
import com.ekexiu.portal.basepo.ModifyTimeSupported;
11

12
@PrimaryKey("resourceId")
13
@Table
14
public class Resource implements CreateTimeSupported, ModifyTimeSupported{
15
	private String resourceId;
16
	private String resourceName;
17
	private String subject;
18
	private String industry;
19
	/**
20
	 * 资源提供的服务
21
	 */
22
	private String supportedServices;
23
	private String descp;
24
	private String professorId;
25
	private Professor professor;
26
	/**
27
	 * 资源所属(个人/机构)
28
	 */
29
	private String ascription;
30
	private String createTime;
31
	private String modifyTime;
32
	private int hopePayMethod;
33
	/**
34
	 * 合作备注
35
	 */
36
	private String cooperationNotes;
37
	
38
	public Professor getProfessor() {
39
		return professor;
40
	}
41
	public void setProfessor(Professor professor) {
42
		this.professor = professor;
43
	}
44
	
45
	@Column(DE.id_32)
46
	public String getResourceId() {
47
		return resourceId;
48
	}
49
	public void setResourceId(String resourceId) {
50
		this.resourceId = resourceId;
51
	}
52
	
53
	@Column(DE.dictCaption)
54
	public String getResourceName() {
55
		return resourceName;
56
	}
57
	public void setResourceName(String resourceName) {
58
		this.resourceName = resourceName;
59
	}
60
	
61
	@Column(handlerClass=StringHandler.class,dbType="TEXT",insertable=false,nullable=true,renewable=false,queryable=true)
62
	public String getSubject() {
63
		return subject;
64
	}
65
	public void setSubject(String subject) {
66
		this.subject = subject;
67
	}
68
	
69
	@Column(handlerClass=StringHandler.class,dbType="TEXT",insertable=false,nullable=true,renewable=false,queryable=true)
70
	public String getIndustry() {
71
		return industry;
72
	}
73
	public void setIndustry(String industry) {
74
		this.industry = industry;
75
	}
76
	
77
	@Column(DE.string_de)
78
	public String getSupportedServices() {
79
		return supportedServices;
80
	}
81
	public void setSupportedServices(String supportedServices) {
82
		this.supportedServices = supportedServices;
83
	}
84
	
85
	@Column(handlerClass=StringHandler.class,dbType="TEXT",insertable=false,nullable=true,renewable=false,queryable=true)
86
	public String getDescp() {
87
		return descp;
88
	}
89
	public void setDescp(String descp) {
90
		this.descp = descp;
91
	}
92
	
93
	@Column(DE.id_32)
94
	public String getProfessorId() {
95
		return professorId;
96
	}
97
	public void setProfessorId(String professorId) {
98
		this.professorId = professorId;
99
	}
100
	
101
	@Column(DE.string_de)
102
	public String getAscription() {
103
		return ascription;
104
	}
105
	public void setAscription(String ascription) {
106
		this.ascription = ascription;
107
	}
108
	
109
	public String getCreateTime() {
110
		return createTime;
111
	}
112
	public void setCreateTime(String createTime) {
113
		this.createTime = createTime;
114
	}
115
	
116
	public String getModifyTime() {
117
		return modifyTime;
118
	}
119
	public void setModifyTime(String modifyTime) {
120
		this.modifyTime = modifyTime;
121
	}
122
	
123
	@Column(DE.int_de)
124
	public int getHopePayMethod() {
125
		return hopePayMethod;
126
	}
127
	public void setHopePayMethod(int hopePayMethod) {
128
		this.hopePayMethod = hopePayMethod;
129
	}
130
	
131
	@Column(handlerClass=StringHandler.class,dbType="TEXT",insertable=false,nullable=true,renewable=true,queryable=true)
132
	public String getCooperationNotes() {
133
		return cooperationNotes;
134
	}
135
	public void setCooperationNotes(String cooperationNotes) {
136
		this.cooperationNotes = cooperationNotes;
137
	}
138
}

+ 33 - 0
src/main/java/com/ekexiu/portal/service/OperationStatusService.java

@ -0,0 +1,33 @@
1
package com.ekexiu.portal.service;
2

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

7
import org.jfw.apt.annotation.Autowrie;
8
import org.jfw.apt.web.annotation.Path;
9
import org.jfw.apt.web.annotation.operate.Get;
10
import org.jfw.apt.web.annotation.param.JdbcConn;
11

12
import com.ekexiu.portal.dao.OperationStatusDao;
13
import com.ekexiu.portal.po.OperationStatus;
14

15
@Path("/operationStatus")
16
public class OperationStatusService {
17
	@Autowrie
18
	private OperationStatusDao operationStatusDao;
19

20
	public OperationStatusDao getOperationStatusDao() {
21
		return operationStatusDao;
22
	}
23

24
	public void setOperationStatusDao(OperationStatusDao operationStatusDao) {
25
		this.operationStatusDao = operationStatusDao;
26
	}
27
	
28
	@Get
29
	@Path("/qa")
30
	public List<OperationStatus> queryAll(@JdbcConn(true) Connection con) throws SQLException{
31
		return this.operationStatusDao.query(con);
32
	}
33
}

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

@ -0,0 +1,112 @@
1
package com.ekexiu.portal.service;
2

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

8
import org.jfw.apt.annotation.Autowrie;
9
import org.jfw.apt.annotation.Nullable;
10
import org.jfw.apt.web.annotation.Path;
11
import org.jfw.apt.web.annotation.operate.Delete;
12
import org.jfw.apt.web.annotation.operate.Get;
13
import org.jfw.apt.web.annotation.operate.Post;
14
import org.jfw.apt.web.annotation.operate.Put;
15
import org.jfw.apt.web.annotation.param.JdbcConn;
16
import org.jfw.apt.web.annotation.param.PathVar;
17
import org.jfw.apt.web.annotation.param.RequestBody;
18
import org.jfw.util.StringUtil;
19

20
import com.ekexiu.portal.dao.ResourceDao;
21
import com.ekexiu.portal.po.Resource;
22

23
@Path("/resource")
24
public class ResourceService {
25
	@Autowrie
26
	private Resource resource;
27
	@Autowrie
28
	private ResourceDao resourceDao;
29
	@Autowrie
30
	private ImageService imageService;
31

32
	public Resource getResource() {
33
		return resource;
34
	}
35

36
	public void setResource(Resource resource) {
37
		this.resource = resource;
38
	}
39

40
	public ResourceDao getResourceDao() {
41
		return resourceDao;
42
	}
43

44
	public void setResourceDao(ResourceDao resourceDao) {
45
		this.resourceDao = resourceDao;
46
	}
47

48
	public ImageService getImageService() {
49
		return imageService;
50
	}
51

52
	public void setImageService(ImageService imageService) {
53
		this.imageService = imageService;
54
	}
55

56
	@Post
57
	@Path
58
	public String insert(@JdbcConn(true) Connection con, Resource resource,	@Nullable String professorId) throws SQLException, IOException {
59
		String resourceId = StringUtil.buildUUID();
60
		resource.setResourceId(resourceId);
61
		if (resource.getProfessorId() == null) {
62
			resource.setProfessorId(professorId);
63
		}
64
		this.resourceDao.insert(con, resource);
65
		this.imageService.saveDefaultResourcePhoto(resourceId);
66
		return resourceId;
67
	}
68

69
	@Put
70
	@Path
71
	public void update(@JdbcConn(true) Connection con, @RequestBody Resource resource, @Nullable String professorId) throws SQLException {
72
		if (resource.getProfessorId() != null)
73
			resource.setProfessorId(professorId);
74
		this.resourceDao.update(con, resource);
75
	}
76

77
	@Get
78
	@Path("/{resourceId}")
79
	public Resource query(@JdbcConn Connection con, @PathVar String resourceId) throws SQLException {
80
		return this.resourceDao.query(con, resourceId);
81
	}
82

83
	@Get
84
	@Path("/qa")
85
	public List<Resource> queryAll(@JdbcConn Connection con) throws SQLException {
86
		return this.resourceDao.query(con);
87
	}
88

89
	@Post
90
	@Path("/subject")
91
	public void updateSubject(@JdbcConn(true) Connection con, String resourceId, String subject) throws SQLException {
92
		this.resourceDao.updateSubject(con, resourceId, subject);
93
	}
94

95
	@Post
96
	@Path("/industry")
97
	public void updateIndustry(@JdbcConn(true) Connection con, String resourceId, String industry) throws SQLException {
98
		this.resourceDao.updateIndustry(con, resourceId, industry);
99
	}
100

101
	@Post
102
	@Path("/descp")
103
	public void updateDescp(@JdbcConn(true) Connection con, String resourceId, String descp) throws SQLException {
104
		this.resourceDao.updateDescp(con, resourceId, descp);
105
	}
106
	
107
	@Delete
108
	@Path("/{resourceId}")
109
	public void delete(@JdbcConn(true) Connection con,@PathVar String resourceId) throws SQLException {
110
		this.resourceDao.delete(con, resourceId);
111
	}
112
}