Просмотр исходного кода

初版 用户信息管理、文章管理

XMTT лет назад: 7
Родитель
Сommit
9c3e070191

+ 5 - 0
src/main/java/com/ekexiu/console/system/dao/ArticleDao.java

@ -10,6 +10,7 @@ import org.jfw.apt.orm.annotation.dao.method.OrderBy;
10 10
import org.jfw.apt.orm.annotation.dao.method.Where;
11 11
import org.jfw.apt.orm.annotation.dao.method.operator.PageQuery;
12 12
import org.jfw.apt.orm.annotation.dao.method.operator.QueryVal;
13
import org.jfw.apt.orm.annotation.dao.method.operator.UpdateWith;
13 14
import org.jfw.apt.orm.annotation.dao.param.*;
14 15
import org.jfw.apt.orm.core.defaultImpl.StringHandler;
15 16
import org.jfw.util.PageQueryResult;
@ -38,4 +39,8 @@ public interface ArticleDao {
38 39
    @OrderBy(" ORDER BY page_views DESC NULLS LAST")
39 40
    @Where("status='1'")
40 41
    PageQueryResult<ArticleInfo> queryByPV(Connection con, @Nullable @Like String articleTitle, @SqlColumn(value = {"(p.name is null or p.name like ?)", "(o.name is null or o.name like ?)"}, handlerClass = StringHandler.class) String name, @Nullable @GtEq @Alias("publishTime") String bt, @Nullable @Alias("publishTime") @LtEq String et, int pageSize, int pageNo) throws SQLException;
42
43
    @UpdateWith
44
    @From(Article.class)
45
    int updateStatus(Connection con,String articleId,@Set String status) throws SQLException;
41 46
}

+ 9 - 0
src/main/java/com/ekexiu/console/system/dao/ProfessorDao.java

@ -2,6 +2,7 @@ package com.ekexiu.console.system.dao;
2 2
3 3
import com.ekexiu.console.system.po.Professor;
4 4
import com.ekexiu.console.system.pojo.ProfessorInfo;
5
import com.ekexiu.console.system.pojo.UserDetail;
5 6
import org.jfw.apt.annotation.Nullable;
6 7
import org.jfw.apt.orm.annotation.dao.Batch;
7 8
import org.jfw.apt.orm.annotation.dao.Column;
@ -79,4 +80,12 @@ public interface ProfessorDao {
79 80
    @Column(handlerClass = StringHandler.class, value = "name")
80 81
    @From(Professor.class)
81 82
    String queryById(Connection con, String id) throws SQLException;
83
84
    @PageQuery
85
    @OrderBy("ORDER BY create_time DESC NULLS LAST")
86
    PageQueryResult<UserDetail> pageQueryUserDetail(Connection con, @Nullable @Like String name,@Nullable @Alias("createTime") @GtEq String bt, @Nullable @Alias("createTime") @LtEq String et, int pageSize, int pageNo) throws SQLException;
87
88
    @UpdateWith
89
    @From(Professor.class)
90
    int updateBusinessData(Connection con,String id,@Set int authentication,@Set int authStatus,@Set int authStatusExpert ,@Set int sortFirst)throws SQLException;
82 91
}

+ 66 - 0
src/main/java/com/ekexiu/console/system/pojo/UserDetail.java

@ -0,0 +1,66 @@
1
package com.ekexiu.console.system.pojo;
2
3
import com.ekexiu.console.system.po.Professor;
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.IntHandler;
7
import org.jfw.apt.orm.core.defaultImpl.StringHandler;
8
9
/**
10
 * Created by TT on 2017/8/3.
11
 */
12
@ExtendView(fromSentence = "professor p RIGHT JOIN (select luser.id,luser.email,luser.mobile_phone,luser.invite_code,luser.send_mail_status,(case when luser.active_time is not null then '1' else '0' end )active_status from luser)l on l.id = p.id LEFT JOIN organization o on o.id = p.org_id ",tableAlias = "p")
13
public class UserDetail extends Professor {
14
15
    private String orgName;
16
    private String loginPhone;
17
    private String loginEmail;
18
    private String activeStatus;
19
    private int sendMailStatus;
20
21
    @CalcColumn(handlerClass = StringHandler.class, column = "o.name")
22
    public String getOrgName() {
23
        return orgName;
24
    }
25
26
    public void setOrgName(String orgName) {
27
        this.orgName = orgName;
28
    }
29
30
    @CalcColumn(handlerClass = StringHandler.class, column = "l.mobile_phone")
31
    public String getLoginPhone() {
32
        return loginPhone;
33
    }
34
35
    public void setLoginPhone(String loginPhone) {
36
        this.loginPhone = loginPhone;
37
    }
38
39
    @CalcColumn(handlerClass = StringHandler.class, column = "l.email")
40
    public String getLoginEmail() {
41
        return loginEmail;
42
    }
43
44
    public void setLoginEmail(String loginEmail) {
45
        this.loginEmail = loginEmail;
46
    }
47
48
    @CalcColumn(handlerClass = StringHandler.class, column = "l.active_status")
49
    public String getActiveStatus() {
50
        return activeStatus;
51
    }
52
53
    public void setActiveStatus(String activeStatus) {
54
        this.activeStatus = activeStatus;
55
    }
56
57
    @CalcColumn(handlerClass = IntHandler.class, column = "l.send_mail_status")
58
    public int getSendMailStatus() {
59
        return sendMailStatus;
60
    }
61
62
    public void setSendMailStatus(int sendMailStatus) {
63
        this.sendMailStatus = sendMailStatus;
64
    }
65
}
66

+ 51 - 0
src/main/java/com/ekexiu/console/system/service/ArticleService.java

@ -0,0 +1,51 @@
1
package com.ekexiu.console.system.service;
2
3
import com.ekexiu.console.system.dao.ArticleDao;
4
import com.ekexiu.console.system.pojo.ArticleInfo;
5
import org.jfw.apt.annotation.Autowrie;
6
import org.jfw.apt.annotation.DefaultValue;
7
import org.jfw.apt.annotation.Nullable;
8
import org.jfw.apt.web.annotation.Path;
9
import org.jfw.apt.web.annotation.operate.Get;
10
import org.jfw.apt.web.annotation.operate.Post;
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
17
/**
18
 * Created by TT on 2017/8/3.
19
 */
20
@Path("/article")
21
public class ArticleService {
22
    @Autowrie
23
    private ArticleDao articleDao;
24
25
    public ArticleDao getArticleDao() {
26
        return articleDao;
27
    }
28
29
    public void setArticleDao(ArticleDao articleDao) {
30
        this.articleDao = articleDao;
31
    }
32
33
    @Path("/pq")
34
    @Get
35
    public PageQueryResult<ArticleInfo> pageQueryResult(@JdbcConn Connection con, @Nullable String title, @Nullable String name, int orderBy, @Nullable String bt, @Nullable String et, @DefaultValue("1") int pageNo, @DefaultValue("10") int pageSize)throws SQLException {
36
        if (orderBy == 1) {
37
            return this.articleDao.queryByTime(con, title == null ? null : "%" + title + "%",  name == null ? "%" : "%" + name + "%", bt == null ? null : bt + "000000", et == null ? null : et + "235959", pageSize, pageNo);
38
        }
39
        if (orderBy == 2) {
40
            return this.articleDao.queryByPV(con, title == null ? null : "%" + title + "%",  name == null ? "%" : "%" + name + "%", bt == null ? null : bt + "000000", et == null ? null : et + "235959", pageSize, pageNo);
41
        }
42
        return null;
43
    }
44
45
    @Post
46
    @Path("/deleteArticle")
47
    public void deleteArticle(@JdbcConn(true) Connection con,String articleId) throws SQLException{
48
        //修改文章状态为删除
49
        this.articleDao.updateStatus(con, articleId, "3");
50
    }
51
}

+ 14 - 1
src/main/java/com/ekexiu/console/system/service/ProfessorService.java

@ -4,6 +4,7 @@ import com.ekexiu.console.system.dao.OrgDao;
4 4
import com.ekexiu.console.system.dao.ProfessorDao;
5 5
import com.ekexiu.console.system.po.Professor;
6 6
import com.ekexiu.console.system.pojo.ProfessorInfo;
7
import com.ekexiu.console.system.pojo.UserDetail;
7 8
import com.ekexiu.console.system.vo.ConsoleAuthUser;
8 9
import org.jfw.apt.annotation.Autowrie;
9 10
import org.jfw.apt.annotation.DefaultValue;
@ -106,7 +107,7 @@ public class ProfessorService {
106 107
107 108
    @Get
108 109
    @Path("/id/{id}")
109
    public ProfessorInfo sortFirst(@JdbcConn Connection con,@PathVar String id) throws SQLException {
110
    public ProfessorInfo query(@JdbcConn Connection con,@PathVar String id) throws SQLException {
110 111
        return this.professorDao.query(con, id);
111 112
    }
112 113
@ -147,4 +148,16 @@ public class ProfessorService {
147 148
    public String getName(@JdbcConn Connection con,@PathVar String id) throws SQLException {
148 149
        return this.professorDao.queryById(con, id);
149 150
    }
151
152
    @Get
153
    @Path("/pqUserDetail")
154
    public PageQueryResult<UserDetail> userDetailPageQueryResult(@JdbcConn Connection con, @Nullable String name, @Nullable String bt, @Nullable String et, @DefaultValue("10") int pageSize, @DefaultValue("1") int pageNo)throws SQLException {
155
        return this.professorDao.pageQueryUserDetail(con, name == null ? null : "%" + name + "%", bt, et, pageSize, pageNo);
156
    }
157
158
    @Post
159
    @Path("/updateBusinessData")
160
    public void updateBusinessData(@JdbcConn(true) Connection con,String id,@Nullable int authentication,@Nullable int authStatus,@Nullable int authStatusExpert,int sortFirst)throws SQLException{
161
        this.professorDao.updateBusinessData(con, id, authentication, authStatus, authStatusExpert, sortFirst);
162
    }
150 163
}

+ 6 - 1
src/main/resources/database.sql

@ -51,4 +51,9 @@ COMMENT ON COLUMN feedback.operator IS '处理人ID';
51 51
ALTER TABLE feedback ADD COLUMN operate_time  TEXT;
52 52
COMMENT ON COLUMN feedback.operate_time IS '处理时间';
53 53
ALTER TABLE feedback ADD COLUMN operate_descp TEXT;
54
COMMENT ON COLUMN feedback.operate_descp IS '处理备注';
54
COMMENT ON COLUMN feedback.operate_descp IS '处理备注';
55
56
-----begin version 1.9.1------------------------
57
58
ALTER TABLE article ADD COLUMN sort_num  int8 default 0 not null;
59
COMMENT ON COLUMN article.sort_num IS '排序字段,人工权重';