Browse Source

专利、论文的点赞量和留言量

XMTT 7 years ago
parent
commit
83682c9ecc

+ 1 - 1
src/main/java/com/ekexiu/console/system/dao/LeaveWordDao.java

@ -21,6 +21,6 @@ public abstract class LeaveWordDao {
21 21
    @From(LeaveWord.class)
22 22
    @Column(handlerClass=IntHandler.class,value={"COUNT(1)"})
23 23
    @DefaultValue("0")
24
    public abstract int queryCount(Connection con, String articleId)throws SQLException;
24
    public abstract int queryCount(Connection con,String objId,String category)throws SQLException;
25 25
26 26
}

+ 26 - 0
src/main/java/com/ekexiu/console/system/dao/PaperAgreeDao.java

@ -0,0 +1,26 @@
1
package com.ekexiu.console.system.dao;
2
3
import com.ekexiu.console.system.po.PaperAgree;
4
import org.jfw.apt.annotation.DefaultValue;
5
import org.jfw.apt.orm.annotation.dao.Column;
6
import org.jfw.apt.orm.annotation.dao.DAO;
7
import org.jfw.apt.orm.annotation.dao.method.From;
8
import org.jfw.apt.orm.annotation.dao.method.operator.QueryVal;
9
import org.jfw.apt.orm.core.defaultImpl.IntHandler;
10
11
import java.sql.Connection;
12
import java.sql.SQLException;
13
14
/**
15
 * Created by TT on 2017/8/21.
16
 */
17
@DAO
18
public interface PaperAgreeDao {
19
20
    @QueryVal
21
    @From(PaperAgree.class)
22
    @Column(handlerClass = IntHandler.class, value = "COUNT(1)")
23
    @DefaultValue("0")
24
    int query(Connection con,String paperId) throws SQLException;
25
26
}

+ 25 - 0
src/main/java/com/ekexiu/console/system/dao/PatentAgreeDao.java

@ -0,0 +1,25 @@
1
package com.ekexiu.console.system.dao;
2
3
import com.ekexiu.console.system.po.PatentAgree;
4
import org.jfw.apt.annotation.DefaultValue;
5
import org.jfw.apt.orm.annotation.dao.Column;
6
import org.jfw.apt.orm.annotation.dao.DAO;
7
import org.jfw.apt.orm.annotation.dao.method.From;
8
import org.jfw.apt.orm.annotation.dao.method.operator.QueryVal;
9
import org.jfw.apt.orm.core.defaultImpl.IntHandler;
10
11
import java.sql.Connection;
12
import java.sql.SQLException;
13
14
/**
15
 * Created by TT on 2017/8/21.
16
 */
17
@DAO
18
public interface PatentAgreeDao {
19
20
    @QueryVal
21
    @From(PatentAgree.class)
22
    @Column(handlerClass = IntHandler.class, value = "COUNT(1)")
23
    @DefaultValue("0")
24
    int query(Connection con,String patentId) throws SQLException;
25
}

+ 14 - 5
src/main/java/com/ekexiu/console/system/po/LeaveWord.java

@ -15,9 +15,10 @@ public class LeaveWord implements CreateTimeSupported {
15 15
    private String id;
16 16
    private String content;
17 17
    private String sender;
18
    private String articleId;
18
    private String objId;
19 19
    private String createTime;
20 20
    private long orderKey;
21
    private String category;
21 22
22 23
    @Column(DE.id_32)
23 24
    public String getId() {
@ -41,11 +42,11 @@ public class LeaveWord implements CreateTimeSupported {
41 42
        this.sender = sender;
42 43
    }
43 44
    @Column(DE.id_32)
44
    public String getArticleId() {
45
        return articleId;
45
    public String getObjId() {
46
        return objId;
46 47
    }
47
    public void setArticleId(String articleId) {
48
        this.articleId = articleId;
48
    public void setObjId(String objId) {
49
        this.objId = objId;
49 50
    }
50 51
    public String getCreateTime() {
51 52
        return createTime;
@ -60,5 +61,13 @@ public class LeaveWord implements CreateTimeSupported {
60 61
    public void setOrderKey(long orderKey) {
61 62
        this.orderKey = orderKey;
62 63
    }
64
    @Column(DE.singleChar)
65
    public String getCategory() {
66
        return category;
67
    }
68
    public void setCategory(String category) {
69
        this.category = category;
70
    }
71
63 72
64 73
}

+ 39 - 0
src/main/java/com/ekexiu/console/system/po/PaperAgree.java

@ -0,0 +1,39 @@
1
package com.ekexiu.console.system.po;
2
3
import com.ekexiu.console.basepo.CreateTimeSupported;
4
import org.jfw.apt.orm.annotation.entry.Column;
5
import org.jfw.apt.orm.annotation.entry.PrimaryKey;
6
import org.jfw.apt.orm.annotation.entry.Table;
7
import org.jfw.apt.orm.core.enums.DE;
8
9
/**
10
 * Created by TT on 2017/8/21.
11
 */
12
@PrimaryKey({"paperId","opId"})
13
@Table
14
public class PaperAgree implements CreateTimeSupported {
15
    private String opId;
16
    private String paperId;
17
    private String createTime;
18
    @Column(DE.id_32)
19
    public String getOpId() {
20
        return opId;
21
    }
22
    public void setOpId(String opId) {
23
        this.opId = opId;
24
    }
25
    @Column(DE.id_32)
26
    public String getPaperId() {
27
        return paperId;
28
    }
29
    public void setPaperId(String paperId) {
30
        this.paperId = paperId;
31
    }
32
    public String getCreateTime() {
33
        return createTime;
34
    }
35
    public void setCreateTime(String createTime) {
36
        this.createTime = createTime;
37
    }
38
39
}

+ 39 - 0
src/main/java/com/ekexiu/console/system/po/PatentAgree.java

@ -0,0 +1,39 @@
1
package com.ekexiu.console.system.po;
2
3
import com.ekexiu.console.basepo.CreateTimeSupported;
4
import org.jfw.apt.orm.annotation.entry.Column;
5
import org.jfw.apt.orm.annotation.entry.PrimaryKey;
6
import org.jfw.apt.orm.annotation.entry.Table;
7
import org.jfw.apt.orm.core.enums.DE;
8
9
/**
10
 * Created by TT on 2017/8/21.
11
 */
12
@PrimaryKey({"patentId","opId"})
13
@Table
14
public class PatentAgree implements CreateTimeSupported {
15
    private String opId;
16
    private String patentId;
17
    private String createTime;
18
    @Column(DE.id_32)
19
    public String getOpId() {
20
        return opId;
21
    }
22
    public void setOpId(String opId) {
23
        this.opId = opId;
24
    }
25
    @Column(DE.id_32)
26
    public String getPatentId() {
27
        return patentId;
28
    }
29
    public void setPatentId(String patentId) {
30
        this.patentId = patentId;
31
    }
32
    public String getCreateTime() {
33
        return createTime;
34
    }
35
    public void setCreateTime(String createTime) {
36
        this.createTime = createTime;
37
    }
38
39
}

+ 18 - 1
src/main/java/com/ekexiu/console/system/service/ContentService.java

@ -16,6 +16,11 @@ import java.sql.SQLException;
16 16
 */
17 17
@Path("/content")
18 18
public class ContentService {
19
20
    public static final String ARTICLE="1";
21
    public static final String PAPER="2";
22
    public static final String PATENT="3";
23
19 24
    @Autowrie
20 25
    private ArticleDao articleDao;
21 26
    @Autowrie
@ -80,7 +85,19 @@ public class ContentService {
80 85
    @Get
81 86
    @Path("/lwCount")
82 87
    public int queryCount(@JdbcConn Connection con,String articleId)throws SQLException{
83
        return this.leaveWordDao.queryCount(con, articleId);
88
        return this.leaveWordDao.queryCount(con, articleId,ARTICLE);
89
    }
90
91
    @Get
92
    @Path("/lwCount/paper")
93
    public int queryCountByPaper(@JdbcConn Connection con,String paperId)throws SQLException{
94
        return this.leaveWordDao.queryCount(con, paperId,PAPER);
95
    }
96
97
    @Get
98
    @Path("/lwCount/patent")
99
    public int queryCountByPatent(@JdbcConn Connection con,String patentId)throws SQLException{
100
        return this.leaveWordDao.queryCount(con, patentId,PATENT);
84 101
    }
85 102
86 103
    @Get

+ 16 - 2
src/main/java/com/ekexiu/console/system/service/PaperService.java

@ -1,8 +1,8 @@
1 1
package com.ekexiu.console.system.service;
2 2
3
import com.ekexiu.console.system.dao.PaperAgreeDao;
3 4
import com.ekexiu.console.system.dao.PpaperDao;
4 5
import com.ekexiu.console.system.po.Ppaper;
5
import com.ekexiu.console.system.po.Ppatent;
6 6
import org.jfw.apt.annotation.Autowrie;
7 7
import org.jfw.apt.annotation.DefaultValue;
8 8
import org.jfw.apt.annotation.Nullable;
@ -24,6 +24,8 @@ public class PaperService {
24 24
25 25
    @Autowrie
26 26
    private PpaperDao ppaperDao;
27
    @Autowrie
28
    private PaperAgreeDao paperAgreeDao;
27 29
28 30
    public PpaperDao getPpaperDao() {
29 31
        return ppaperDao;
@ -33,6 +35,14 @@ public class PaperService {
33 35
        this.ppaperDao = ppaperDao;
34 36
    }
35 37
38
    public PaperAgreeDao getPaperAgreeDao() {
39
        return paperAgreeDao;
40
    }
41
42
    public void setPaperAgreeDao(PaperAgreeDao paperAgreeDao) {
43
        this.paperAgreeDao = paperAgreeDao;
44
    }
45
36 46
    @Path("/pq")
37 47
    @Get
38 48
    public PageQueryResult<Ppaper> 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 {
@ -57,6 +67,10 @@ public class PaperService {
57 67
        return this.ppaperDao.query(con, id);
58 68
    }
59 69
60
70
    @Get
71
    @Path("/agreeCount")
72
    public int agreeCount(@JdbcConn(false) Connection con,String id)throws SQLException{
73
        return this.paperAgreeDao.query(con,id);
74
    }
61 75
62 76
}

+ 17 - 0
src/main/java/com/ekexiu/console/system/service/PatentService.java

@ -1,5 +1,6 @@
1 1
package com.ekexiu.console.system.service;
2 2
3
import com.ekexiu.console.system.dao.PatentAgreeDao;
3 4
import com.ekexiu.console.system.dao.PpatentDao;
4 5
import com.ekexiu.console.system.po.Ppatent;
5 6
import org.jfw.apt.annotation.Autowrie;
@ -23,6 +24,8 @@ public class PatentService {
23 24
24 25
    @Autowrie
25 26
    private PpatentDao ppatentDao;
27
    @Autowrie
28
    private PatentAgreeDao patentAgreeDao;
26 29
27 30
    public PpatentDao getPpatentDao() {
28 31
        return ppatentDao;
@ -32,6 +35,14 @@ public class PatentService {
32 35
        this.ppatentDao = ppatentDao;
33 36
    }
34 37
38
    public PatentAgreeDao getPatentAgreeDao() {
39
        return patentAgreeDao;
40
    }
41
42
    public void setPatentAgreeDao(PatentAgreeDao patentAgreeDao) {
43
        this.patentAgreeDao = patentAgreeDao;
44
    }
45
35 46
    @Path("/pq")
36 47
    @Get
37 48
    public PageQueryResult<Ppatent> 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 {
@ -55,4 +66,10 @@ public class PatentService {
55 66
    public Ppatent query(@JdbcConn Connection con, @PathVar String id) throws SQLException {
56 67
        return this.ppatentDao.query(con, id);
57 68
    }
69
70
    @Get
71
    @Path("/agreeCount")
72
    public int agreeCount(@JdbcConn(false) Connection con,String id)throws SQLException{
73
        return this.patentAgreeDao.query(con,id);
74
    }
58 75
}