Przeglądaj źródła

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

XMTT 7 lat temu
rodzic
commit
83682c9ecc

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

21
    @From(LeaveWord.class)
21
    @From(LeaveWord.class)
22
    @Column(handlerClass=IntHandler.class,value={"COUNT(1)"})
22
    @Column(handlerClass=IntHandler.class,value={"COUNT(1)"})
23
    @DefaultValue("0")
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

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

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
    private String id;
15
    private String id;
16
    private String content;
16
    private String content;
17
    private String sender;
17
    private String sender;
18
    private String articleId;
18
    private String objId;
19
    private String createTime;
19
    private String createTime;
20
    private long orderKey;
20
    private long orderKey;
21
    private String category;
21
22
22
    @Column(DE.id_32)
23
    @Column(DE.id_32)
23
    public String getId() {
24
    public String getId() {
41
        this.sender = sender;
42
        this.sender = sender;
42
    }
43
    }
43
    @Column(DE.id_32)
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
    public String getCreateTime() {
51
    public String getCreateTime() {
51
        return createTime;
52
        return createTime;
60
    public void setOrderKey(long orderKey) {
61
    public void setOrderKey(long orderKey) {
61
        this.orderKey = orderKey;
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

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

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
 */
16
 */
17
@Path("/content")
17
@Path("/content")
18
public class ContentService {
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
    @Autowrie
24
    @Autowrie
20
    private ArticleDao articleDao;
25
    private ArticleDao articleDao;
21
    @Autowrie
26
    @Autowrie
80
    @Get
85
    @Get
81
    @Path("/lwCount")
86
    @Path("/lwCount")
82
    public int queryCount(@JdbcConn Connection con,String articleId)throws SQLException{
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
    @Get
103
    @Get

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

1
package com.ekexiu.console.system.service;
1
package com.ekexiu.console.system.service;
2
2
3
import com.ekexiu.console.system.dao.PaperAgreeDao;
3
import com.ekexiu.console.system.dao.PpaperDao;
4
import com.ekexiu.console.system.dao.PpaperDao;
4
import com.ekexiu.console.system.po.Ppaper;
5
import com.ekexiu.console.system.po.Ppaper;
5
import com.ekexiu.console.system.po.Ppatent;
6
import org.jfw.apt.annotation.Autowrie;
6
import org.jfw.apt.annotation.Autowrie;
7
import org.jfw.apt.annotation.DefaultValue;
7
import org.jfw.apt.annotation.DefaultValue;
8
import org.jfw.apt.annotation.Nullable;
8
import org.jfw.apt.annotation.Nullable;
24
24
25
    @Autowrie
25
    @Autowrie
26
    private PpaperDao ppaperDao;
26
    private PpaperDao ppaperDao;
27
    @Autowrie
28
    private PaperAgreeDao paperAgreeDao;
27
29
28
    public PpaperDao getPpaperDao() {
30
    public PpaperDao getPpaperDao() {
29
        return ppaperDao;
31
        return ppaperDao;
33
        this.ppaperDao = ppaperDao;
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
    @Path("/pq")
46
    @Path("/pq")
37
    @Get
47
    @Get
38
    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 {
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
        return this.ppaperDao.query(con, id);
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
package com.ekexiu.console.system.service;
1
package com.ekexiu.console.system.service;
2
2
3
import com.ekexiu.console.system.dao.PatentAgreeDao;
3
import com.ekexiu.console.system.dao.PpatentDao;
4
import com.ekexiu.console.system.dao.PpatentDao;
4
import com.ekexiu.console.system.po.Ppatent;
5
import com.ekexiu.console.system.po.Ppatent;
5
import org.jfw.apt.annotation.Autowrie;
6
import org.jfw.apt.annotation.Autowrie;
23
24
24
    @Autowrie
25
    @Autowrie
25
    private PpatentDao ppatentDao;
26
    private PpatentDao ppatentDao;
27
    @Autowrie
28
    private PatentAgreeDao patentAgreeDao;
26
29
27
    public PpatentDao getPpatentDao() {
30
    public PpatentDao getPpatentDao() {
28
        return ppatentDao;
31
        return ppatentDao;
32
        this.ppatentDao = ppatentDao;
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
    @Path("/pq")
46
    @Path("/pq")
36
    @Get
47
    @Get
37
    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 {
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
    public Ppatent query(@JdbcConn Connection con, @PathVar String id) throws SQLException {
66
    public Ppatent query(@JdbcConn Connection con, @PathVar String id) throws SQLException {
56
        return this.ppatentDao.query(con, id);
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
}