Browse Source

留言模块。

zzy.zhiyuan.foxmail 8 years ago
parent
commit
b38f14a289

+ 118 - 0
src/main/java/com/ekexiu/portal/dao/MessagesDao.java

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

3
import java.sql.Connection;
4
import java.sql.PreparedStatement;
5
import java.sql.ResultSet;
6
import java.sql.SQLException;
7
import java.util.ArrayList;
8
import java.util.List;
9

10
import org.jfw.apt.orm.annotation.dao.DAO;
11
import org.jfw.apt.orm.annotation.dao.method.From;
12
import org.jfw.apt.orm.annotation.dao.method.operator.DeleteWith;
13
import org.jfw.apt.orm.annotation.dao.method.operator.Insert;
14

15
import com.ekexiu.portal.po.Messages;
16
import com.ekexiu.portal.po.Professor;
17

18
@DAO
19
public abstract class MessagesDao {
20
	@Insert
21
	public abstract int insert(Connection con, Messages messages) throws SQLException;
22
	
23
	public Messages query(Connection con, String messageId) throws SQLException{
24
        int _m_1 = 1;
25
        String sql = "SELECT MESSAGE_ID,MESSAGES.OPERATION_ID,MESSAGES.PROFESSOR_ID,LEAVE_WORD,MESSAGES.CREATE_TIME,PROFESSOR.NAME FROM MESSAGES LEFT JOIN PROFESSOR ON MESSAGES.PROFESSOR_ID = PROFESSOR.ID WHERE MESSAGE_ID = ?";
26
        PreparedStatement ps = con.prepareStatement(sql);
27
        try{
28
            ps.setString(_m_1++,messageId);
29
            ResultSet rs = ps.executeQuery();
30
            try{
31
                if(rs.next()){
32
                    Messages _result = new Messages();
33
                    _result.setMessageId(rs.getString(1));
34
                    _result.setOperationId(rs.getString(2));
35
                    Professor professor = new Professor();
36
                    professor.setId(rs.getString(3));
37
                    _result.setLeaveWord(rs.getString(4));
38
                    _result.setCreateTime(rs.getString(5));
39
                    professor.setName(rs.getString(6));
40
                    _result.setProfessor(professor);
41
                    return _result;
42
                }else{
43
                    return null;
44
                }
45
            }finally{
46
                try{rs.close();}catch(Exception _m_2){}
47
            }
48
        }finally{
49
            try{ps.close();}catch(Exception _m_3){}
50
        }
51
    }
52
	
53
	public List<Messages> queryOper(Connection con, String operationId) throws SQLException{
54
        int _m_1 = 1;
55
        String sql = "SELECT MESSAGE_ID,MESSAGES.OPERATION_ID,MESSAGES.PROFESSOR_ID,LEAVE_WORD,MESSAGES.CREATE_TIME,PROFESSOR.NAME FROM MESSAGES LEFT JOIN PROFESSOR ON MESSAGES.PROFESSOR_ID = PROFESSOR.ID WHERE MESSAGES.OPERATION_ID = ?";
56
        PreparedStatement ps = con.prepareStatement(sql);
57
        try{
58
            ps.setString(_m_1++,operationId);
59
            ResultSet rs = ps.executeQuery();
60
            try{
61
                List<Messages> _result = new ArrayList<Messages>();
62
                while(rs.next()){
63
                    Messages _obj =  new Messages();
64
                    _obj.setMessageId(rs.getString(1));
65
                    _obj.setOperationId(rs.getString(2));
66
                    Professor professor = new Professor();
67
                    professor.setId(rs.getString(3));
68
                    _obj.setLeaveWord(rs.getString(4));
69
                    _obj.setCreateTime(rs.getString(5));
70
                    professor.setName(rs.getString(6));
71
                    _obj.setProfessor(professor);
72
                    _result.add(_obj);
73
                }
74
                return _result;
75
            }finally{
76
                try{rs.close();}catch(Exception _m_2){}
77
            }
78
        }finally{
79
            try{ps.close();}catch(Exception _m_3){}
80
        }
81
    }
82
	
83
	public List<Messages> quetyPro(Connection con,String operationId, String professorId) throws SQLException{
84
        int _m_1 = 1;
85
        String sql = "SELECT MESSAGE_ID,MESSAGES.OPERATION_ID,MESSAGES.PROFESSOR_ID,LEAVE_WORD,MESSAGES.CREATE_TIME,PROFESSOR.NAME FROM MESSAGES LEFT JOIN PROFESSOR ON MESSAGES.PROFESSOR_ID = PROFESSOR.ID WHERE MESSAGES.OPERATION_ID = ? AND MESSAGES.PROFESSOR_ID = ?";
86
        PreparedStatement ps = con.prepareStatement(sql);
87
        try{
88
        	ps.setString(_m_1++, operationId);
89
            ps.setString(_m_1++,professorId);
90
            ResultSet rs = ps.executeQuery();
91
            try{
92
                List<Messages> _result = new ArrayList<Messages>();
93
                while(rs.next()){
94
                    Messages _obj =  new Messages();
95
                    _obj.setMessageId(rs.getString(1));
96
                    _obj.setOperationId(rs.getString(2));
97
                    Professor professor = new Professor();
98
                    professor.setId(rs.getString(3));
99
                    _obj.setLeaveWord(rs.getString(4));
100
                    _obj.setCreateTime(rs.getString(5));
101
                    professor.setName(rs.getString(6));
102
                    _obj.setProfessor(professor);
103
                    _result.add(_obj);
104
                }
105
                return _result;
106
            }finally{
107
                try{rs.close();}catch(Exception _m_2){}
108
            }
109
        }finally{
110
            try{ps.close();}catch(Exception _m_3){}
111
        }
112
    }
113
	
114
	@DeleteWith
115
	@From(Messages.class)
116
	public abstract int delete(Connection con, String messageId) throws SQLException;
117
	
118
}

+ 74 - 0
src/main/java/com/ekexiu/portal/po/Messages.java

@ -0,0 +1,74 @@
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

11
@PrimaryKey("messageId")
12
@Table
13
public class Messages implements CreateTimeSupported {
14
	private String messageId; //留言ID
15
	private String operationId; //订单ID
16
	private String professorId; //留言者ID
17
	private String leaveWord; //留言
18
	private String createTime; //留言时间
19
	private Operation operation;
20
	private Professor professor;
21
	
22
	public Operation getOperation() {
23
		return operation;
24
	}
25
	public void setOperation(Operation operation) {
26
		this.operation = operation;
27
	}
28
	
29
	public Professor getProfessor() {
30
		return professor;
31
	}
32
	public void setProfessor(Professor professor) {
33
		this.professor = professor;
34
	}
35
	
36
	@Column(DE.id_32)
37
	public String getMessageId() {
38
		return messageId;
39
	}
40
	public void setMessageId(String messageId) {
41
		this.messageId = messageId;
42
	}
43
	
44
	@Column(DE.id_32)
45
	public String getOperationId() {
46
		return operationId;
47
	}
48
	public void setOperationId(String operationId) {
49
		this.operationId = operationId;
50
	}
51
	
52
	@Column(DE.id_32)
53
	public String getProfessorId() {
54
		return professorId;
55
	}
56
	public void setProfessorId(String professorId) {
57
		this.professorId = professorId;
58
	}
59
	
60
	@Column(handlerClass=StringHandler.class,dbType="TEXT",insertable=true,nullable=false,renewable=false,queryable=true)
61
	public String getLeaveWord() {
62
		return leaveWord;
63
	}
64
	public void setLeaveWord(String leaveWord) {
65
		this.leaveWord = leaveWord;
66
	}
67
	
68
	public String getCreateTime() {
69
		return createTime;
70
	}
71
	public void setCreateTime(String createTime) {
72
		this.createTime = createTime;
73
	}
74
}

+ 64 - 0
src/main/java/com/ekexiu/portal/service/MessageService.java

@ -0,0 +1,64 @@
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.Delete;
10
import org.jfw.apt.web.annotation.operate.Get;
11
import org.jfw.apt.web.annotation.operate.Post;
12
import org.jfw.apt.web.annotation.param.JdbcConn;
13
import org.jfw.apt.web.annotation.param.PathVar;
14
import org.jfw.util.StringUtil;
15

16
import com.ekexiu.portal.dao.MessagesDao;
17
import com.ekexiu.portal.po.Messages;
18

19
@Path("/messages")
20
public class MessageService {
21
	@Autowrie
22
	private MessagesDao messagesDao;
23

24
	public MessagesDao getMessagesDao() {
25
		return messagesDao;
26
	}
27

28
	public void setMessagesDao(MessagesDao messagesDao) {
29
		this.messagesDao = messagesDao;
30
	}
31
	
32
	@Post
33
	@Path
34
	public String insert(@JdbcConn(true) Connection con, Messages messages) throws SQLException {
35
		messages.setMessageId(StringUtil.buildUUID());
36
		this.messagesDao.insert(con, messages);
37
		return messages.getMessageId();
38
	}
39
	
40
	@Get
41
	@Path("/{messageId}")
42
	public Messages query(@JdbcConn Connection con, @PathVar String messageId) throws SQLException {
43
		return this.messagesDao.query(con, messageId);
44
	}
45
	
46
	@Get
47
	@Path("/qaoper")
48
	public List<Messages> queryOper(@JdbcConn Connection con, String operationId) throws SQLException {
49
		return this.messagesDao.queryOper(con, operationId);
50
	}
51
	
52
	@Get
53
	@Path("/qapro")
54
	public List<Messages> queryPro(@JdbcConn Connection con, String operationId, String professorId) throws SQLException {
55
		return this.messagesDao.quetyPro(con, operationId, professorId);
56
	}
57
	
58
	@Delete
59
	@Path("/{messageId}")
60
	public void delete(@JdbcConn(true) Connection con, @PathVar String messageId) throws SQLException {
61
		this.messagesDao.delete(con, messageId);
62
	}
63
	
64
}