Browse Source

对话列表

XMTT 7 years ago
parent
commit
271160648a

+ 34 - 0
src/main/java/com/ekexiu/console/system/dao/WebMsgDao.java

@ -0,0 +1,34 @@
1
package com.ekexiu.console.system.dao;
2
3
import com.ekexiu.console.system.po.WebMsgCnt;
4
import com.ekexiu.console.system.pojo.WebMsgIdxInfo;
5
import org.jfw.apt.annotation.Nullable;
6
import org.jfw.apt.orm.annotation.dao.DAO;
7
import org.jfw.apt.orm.annotation.dao.method.Exclude;
8
import org.jfw.apt.orm.annotation.dao.method.OrderBy;
9
import org.jfw.apt.orm.annotation.dao.method.operator.PageQuery;
10
import org.jfw.apt.orm.annotation.dao.method.operator.SelectList;
11
import org.jfw.apt.orm.annotation.dao.param.GroupSqlColumn;
12
import org.jfw.apt.orm.core.defaultImpl.StringHandler;
13
import org.jfw.util.PageQueryResult;
14
15
import java.sql.Connection;
16
import java.sql.SQLException;
17
import java.util.List;
18
19
/**
20
 * Created by TT on 2017/9/30.
21
 */
22
23
@DAO
24
public interface WebMsgDao {
25
26
    @Exclude({"showOfOwner", "showOfActor"})
27
    @PageQuery
28
    @OrderBy("ORDER BY LAST_TIME DESC,OWNER ASC")
29
    PageQueryResult<WebMsgIdxInfo> query(Connection con, @Nullable @GroupSqlColumn(handlerClass = StringHandler.class,value = {"own.name like ?","actor.name like ?"},isAnd = false)String name, int pageSize, int pageNo) throws SQLException;
30
31
    @SelectList
32
    @OrderBy("ORDER BY SEND_TIME asc")
33
    List<WebMsgCnt> queryAll(Connection con, @GroupSqlColumn(handlerClass = StringHandler.class, value = {"SENDER=?", "RECIVER=?"}, isAnd = false) String actor1, @GroupSqlColumn(handlerClass = StringHandler.class, value = {"SENDER=?", "RECIVER=?"}, isAnd = false) String actor2) throws SQLException;
34
}

+ 75 - 0
src/main/java/com/ekexiu/console/system/po/WebMsgCnt.java

@ -0,0 +1,75 @@
1
package com.ekexiu.console.system.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
/**
9
 * Created by TT on 2017/9/30.
10
 */
11
@PrimaryKey({"sender", "reciver", "sendTime"})
12
@Table
13
public class WebMsgCnt {
14
15
    private String cnt;
16
    private String sendTime;
17
    private String sender;
18
    private String reciver;
19
    private boolean readed;
20
21
22
    /**
23
     * 消息内容
24
     * @return
25
     */
26
    @Column(DE.text_de)
27
    public String getCnt() {
28
        return cnt;
29
    }
30
31
    public void setCnt(String cnt) {
32
        this.cnt = cnt;
33
    }
34
35
    @Column(DE.text_de)
36
    public String getSendTime() {
37
        return sendTime;
38
    }
39
40
    public void setSendTime(String sendTime) {
41
        this.sendTime = sendTime;
42
    }
43
44
    @Column(DE.text_de)
45
    public String getSender() {
46
        return sender;
47
    }
48
49
    public void setSender(String sender) {
50
        this.sender = sender;
51
    }
52
53
    @Column(DE.text_de)
54
    public String getReciver() {
55
        return reciver;
56
    }
57
58
    public void setReciver(String reciver) {
59
        this.reciver = reciver;
60
    }
61
62
    /**
63
     * 是否已读
64
     * @return
65
     */
66
    @Column(DE.boolean_de)
67
    public boolean isReaded() {
68
        return readed;
69
    }
70
71
    public void setReaded(boolean readed) {
72
        this.readed = readed;
73
    }
74
}
75

+ 130 - 0
src/main/java/com/ekexiu/console/system/po/WebMsgIdx.java

@ -0,0 +1,130 @@
1
package com.ekexiu.console.system.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
/**
9
 * Created by TT on 2017/9/30.
10
 */
11
12
@PrimaryKey({"owner", "actor"})
13
@Table
14
public class WebMsgIdx {
15
16
    private String owner;
17
    private String actor;
18
    private long lastTime;
19
    private int numOfOwner;
20
    private int numOfActor;
21
    private String lastCnt;
22
    private boolean showOfOwner;
23
    private boolean showOfActor;
24
25
26
    /**
27
     * 所有者(两个ID相比小的是Owner)
28
     * @return
29
     */
30
    @Column(DE.text_de)
31
    public String getOwner() {
32
        return owner;
33
    }
34
35
    public void setOwner(String owner) {
36
        this.owner = owner;
37
    }
38
39
    /**
40
     * 参与者
41
     * @return
42
     */
43
    @Column(DE.text_de)
44
    public String getActor() {
45
        return actor;
46
    }
47
48
    public void setActor(String actor) {
49
        this.actor = actor;
50
    }
51
52
    /**
53
     * 最后发送时间
54
     * @return
55
     */
56
    @Column(DE.long_de)
57
    public long getLastTime() {
58
        return lastTime;
59
    }
60
61
    public void setLastTime(long lastTime) {
62
        this.lastTime = lastTime;
63
    }
64
65
    /**
66
     * 未读信息数(所有者)
67
     * @return
68
     */
69
    @Column(DE.int_de)
70
    public int getNumOfOwner() {
71
        return numOfOwner;
72
    }
73
74
    public void setNumOfOwner(int num) {
75
        this.numOfOwner = num;
76
    }
77
78
79
    /**
80
     * 未读信息数(参有者)
81
     * @return
82
     */
83
    @Column(DE.int_de)
84
    public int getNumOfActor() {
85
        return numOfActor;
86
    }
87
88
    public void setNumOfActor(int numOfActor) {
89
        this.numOfActor = numOfActor;
90
    }
91
92
    /**
93
     * 最后信息内容
94
     * @return
95
     */
96
    @Column(DE.text_de)
97
    public String getLastCnt() {
98
        return lastCnt;
99
    }
100
101
    public void setLastCnt(String lastCnt) {
102
        this.lastCnt = lastCnt;
103
    }
104
105
    /**
106
     * 所有者是否显示(会话在所有者的列表中未被删除)
107
     * @return
108
     */
109
    @Column(DE.boolean_de)
110
    public boolean isShowOfOwner() {
111
        return showOfOwner;
112
    }
113
114
    public void setShowOfOwner(boolean showOfOwner) {
115
        this.showOfOwner = showOfOwner;
116
    }
117
118
    /**
119
     * 参与者是否显示(会话在参与者的列表中未被删除)
120
     * @return
121
     */
122
    @Column(DE.boolean_de)
123
    public boolean isShowOfActor() {
124
        return showOfActor;
125
    }
126
127
    public void setShowOfActor(boolean showOfActor) {
128
        this.showOfActor = showOfActor;
129
    }
130
}

+ 33 - 0
src/main/java/com/ekexiu/console/system/pojo/WebMsgIdxInfo.java

@ -0,0 +1,33 @@
1
package com.ekexiu.console.system.pojo;
2
3
import com.ekexiu.console.system.po.WebMsgIdx;
4
import org.jfw.apt.orm.annotation.entry.CalcColumn;
5
import org.jfw.apt.orm.annotation.entry.ExtendView;
6
import org.jfw.apt.orm.core.defaultImpl.StringHandler;
7
8
/**
9
 * Created by TT on 2017/10/9.
10
 */
11
@ExtendView(fromSentence = "web_msg_idx msg LEFT JOIN professor own on own.id = msg.owner LEFT JOIN professor actor on actor.id = msg.actor",tableAlias = "msg")
12
public class WebMsgIdxInfo extends WebMsgIdx{
13
    private String ownerName;
14
    private String actorName;
15
16
    @CalcColumn(handlerClass = StringHandler.class, column = "own.name")
17
    public String getOwnerName() {
18
        return ownerName;
19
    }
20
21
    public void setOwnerName(String ownerName) {
22
        this.ownerName = ownerName;
23
    }
24
25
    @CalcColumn(handlerClass = StringHandler.class, column = "actor.name")
26
    public String getActorName() {
27
        return actorName;
28
    }
29
30
    public void setActorName(String actorName) {
31
        this.actorName = actorName;
32
    }
33
}

+ 48 - 0
src/main/java/com/ekexiu/console/system/service/WebMsgService.java

@ -0,0 +1,48 @@
1
package com.ekexiu.console.system.service;
2
3
import com.ekexiu.console.system.dao.WebMsgDao;
4
import com.ekexiu.console.system.po.WebMsgCnt;
5
import com.ekexiu.console.system.pojo.WebMsgIdxInfo;
6
import org.jfw.apt.annotation.Autowrie;
7
import org.jfw.apt.annotation.DefaultValue;
8
import org.jfw.apt.annotation.Nullable;
9
import org.jfw.apt.web.annotation.Path;
10
import org.jfw.apt.web.annotation.operate.Get;
11
import org.jfw.apt.web.annotation.param.JdbcConn;
12
import org.jfw.util.PageQueryResult;
13
14
import java.sql.Connection;
15
import java.sql.SQLException;
16
import java.util.List;
17
18
/**
19
 * Created by TT on 2017/9/30.
20
 */
21
@Path("/Msg")
22
public class WebMsgService {
23
    @Autowrie
24
    WebMsgDao webMsgDao;
25
26
    public WebMsgDao getWebMsgDao() {
27
        return webMsgDao;
28
    }
29
30
    public void setWebMsgDao(WebMsgDao webMsgDao) {
31
        this.webMsgDao = webMsgDao;
32
    }
33
34
    @Path("/qa")
35
    @Get
36
    public PageQueryResult<WebMsgIdxInfo> query(@JdbcConn Connection con, @Nullable String name,@DefaultValue("1") int pageNo, @DefaultValue("10") int pageSize)throws SQLException{
37
        if (name != null) {
38
            name =  "%" + name + "%";
39
        }
40
        return webMsgDao.query(con,name,pageSize, pageNo);
41
    }
42
43
    @Path("/cnt")
44
    @Get
45
    public List<WebMsgCnt> queryCnt(@JdbcConn Connection con, String actor1, String actor2)throws SQLException {
46
        return webMsgDao.queryAll(con, actor1, actor2);
47
    }
48
}