Explorar el Código

Merge branch 'org'

# Conflicts:
#	src/main/java/com/ekexiu/console/system/dao/UserInfoDao.java
#	src/main/java/com/ekexiu/console/system/service/UserInfoService.java
XMTT %!s(int64=7) %!d(string=hace) años
padre
commit
ffd9a9004e
Se han modificado 30 ficheros con 2110 adiciones y 60 borrados
  1. 41 0
      src/main/java/com/ekexiu/console/system/dao/ArticleDao.java
  2. 35 0
      src/main/java/com/ekexiu/console/system/dao/FeedbackDao.java
  3. 26 0
      src/main/java/com/ekexiu/console/system/dao/LeaveWordDao.java
  4. 24 4
      src/main/java/com/ekexiu/console/system/dao/OrgDao.java
  5. 35 0
      src/main/java/com/ekexiu/console/system/dao/OrgRecordDao.java
  6. 26 1
      src/main/java/com/ekexiu/console/system/dao/OrgUserDao.java
  7. 40 0
      src/main/java/com/ekexiu/console/system/dao/PpaperDao.java
  8. 40 0
      src/main/java/com/ekexiu/console/system/dao/PpatentDao.java
  9. 8 0
      src/main/java/com/ekexiu/console/system/dao/ProfessorDao.java
  10. 40 0
      src/main/java/com/ekexiu/console/system/dao/ResourceDao.java
  11. 7 1
      src/main/java/com/ekexiu/console/system/dao/UserInfoDao.java
  12. 24 0
      src/main/java/com/ekexiu/console/system/dao/WatchDao.java
  13. 148 0
      src/main/java/com/ekexiu/console/system/po/Article.java
  14. 165 0
      src/main/java/com/ekexiu/console/system/po/Feedback.java
  15. 64 0
      src/main/java/com/ekexiu/console/system/po/LeaveWord.java
  16. 68 0
      src/main/java/com/ekexiu/console/system/po/OrgRecord.java
  17. 82 0
      src/main/java/com/ekexiu/console/system/po/Organization.java
  18. 132 0
      src/main/java/com/ekexiu/console/system/po/Ppaper.java
  19. 166 0
      src/main/java/com/ekexiu/console/system/po/Ppatent.java
  20. 250 0
      src/main/java/com/ekexiu/console/system/po/Resource.java
  21. 65 0
      src/main/java/com/ekexiu/console/system/po/Watch.java
  22. 23 0
      src/main/java/com/ekexiu/console/system/pojo/ArticleInfo.java
  23. 17 15
      src/main/java/com/ekexiu/console/system/pojo/OrganizationInfo.java
  24. 23 0
      src/main/java/com/ekexiu/console/system/pojo/ResourceInfo.java
  25. 129 0
      src/main/java/com/ekexiu/console/system/service/ContentService.java
  26. 196 0
      src/main/java/com/ekexiu/console/system/service/FeedbackService.java
  27. 187 36
      src/main/java/com/ekexiu/console/system/service/OrgService.java
  28. 6 0
      src/main/java/com/ekexiu/console/system/service/ProfessorService.java
  29. 18 2
      src/main/java/com/ekexiu/console/system/service/UserInfoService.java
  30. 25 1
      src/main/resources/database.sql

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

@ -0,0 +1,41 @@
1
package com.ekexiu.console.system.dao;
2
3
import com.ekexiu.console.system.po.Article;
4
import com.ekexiu.console.system.pojo.ArticleInfo;
5
import org.jfw.apt.annotation.Nullable;
6
import org.jfw.apt.orm.annotation.dao.Column;
7
import org.jfw.apt.orm.annotation.dao.DAO;
8
import org.jfw.apt.orm.annotation.dao.method.From;
9
import org.jfw.apt.orm.annotation.dao.method.OrderBy;
10
import org.jfw.apt.orm.annotation.dao.method.operator.PageQuery;
11
import org.jfw.apt.orm.annotation.dao.method.operator.QueryVal;
12
import org.jfw.apt.orm.annotation.dao.param.Alias;
13
import org.jfw.apt.orm.annotation.dao.param.GtEq;
14
import org.jfw.apt.orm.annotation.dao.param.Like;
15
import org.jfw.apt.orm.annotation.dao.param.LtEq;
16
import org.jfw.apt.orm.core.defaultImpl.StringHandler;
17
import org.jfw.util.PageQueryResult;
18
19
import java.sql.Connection;
20
import java.sql.SQLException;
21
22
/**
23
 * Created by TT on 2017/7/26.
24
 */
25
@DAO
26
public interface ArticleDao {
27
28
    @Nullable
29
    @QueryVal
30
    @Column(handlerClass = StringHandler.class, value = "article_title")
31
    @From(Article.class)
32
    String queryById(Connection con, String articleId) throws SQLException;
33
34
    @PageQuery
35
    @OrderBy(" ORDER BY create_time DESC NULLS LAST")
36
    PageQueryResult<ArticleInfo> queryByTime(Connection con, @Nullable @Like String articleTitle, @Nullable @Like String professorName, @Nullable @GtEq @Alias("createTime") String bt, @Nullable @Alias("createTime") @LtEq String et, int pageSize, int pageNo) throws SQLException;
37
38
    @PageQuery
39
    @OrderBy(" ORDER BY page_views DESC NULLS LAST")
40
    PageQueryResult<ArticleInfo> queryByPV(Connection con, @Nullable @Like String articleTitle,@Nullable @Like String professorName, @Nullable @GtEq @Alias("createTime") String bt, @Nullable @Alias("createTime") @LtEq String et, int pageSize, int pageNo) throws SQLException;
41
}

+ 35 - 0
src/main/java/com/ekexiu/console/system/dao/FeedbackDao.java

@ -0,0 +1,35 @@
1
package com.ekexiu.console.system.dao;
2
3
import com.ekexiu.console.system.po.Feedback;
4
import org.jfw.apt.annotation.Nullable;
5
import org.jfw.apt.orm.annotation.dao.DAO;
6
import org.jfw.apt.orm.annotation.dao.method.OrderBy;
7
import org.jfw.apt.orm.annotation.dao.method.operator.PageQuery;
8
import org.jfw.apt.orm.annotation.dao.method.operator.SelectOne;
9
import org.jfw.apt.orm.annotation.dao.method.operator.Update;
10
import org.jfw.apt.orm.annotation.dao.param.Alias;
11
import org.jfw.apt.orm.annotation.dao.param.GtEq;
12
import org.jfw.apt.orm.annotation.dao.param.LtEq;
13
import org.jfw.util.PageQueryResult;
14
15
import java.sql.Connection;
16
import java.sql.SQLException;
17
18
/**
19
 * Created by TT on 2017/7/25.
20
 */
21
@DAO
22
public interface FeedbackDao {
23
24
    @Update
25
    int update(Connection con, Feedback feedback) throws SQLException;
26
27
    @SelectOne
28
    @Nullable
29
    Feedback query(Connection con, long id) throws SQLException;
30
31
    @PageQuery
32
    @OrderBy(" ORDER BY create_time DESC")
33
    PageQueryResult<Feedback> query(Connection con,@Nullable String state, @Nullable @GtEq @Alias("createTime") String bt, @Nullable @Alias("createTime") @LtEq String et, int pageSize, int pageNo) throws SQLException;
34
35
}

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

@ -0,0 +1,26 @@
1
package com.ekexiu.console.system.dao;
2
3
import com.ekexiu.console.system.po.LeaveWord;
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/7/27.
16
 */
17
@DAO
18
public abstract class LeaveWordDao {
19
20
    @QueryVal
21
    @From(LeaveWord.class)
22
    @Column(handlerClass=IntHandler.class,value={"COUNT(1)"})
23
    @DefaultValue("0")
24
    public abstract int queryCount(Connection con, String articleId)throws SQLException;
25
26
}

+ 24 - 4
src/main/java/com/ekexiu/console/system/dao/OrgDao.java

@ -9,8 +9,7 @@ import org.jfw.apt.orm.annotation.dao.DAO;
9 9
import org.jfw.apt.orm.annotation.dao.method.From;
10 10
import org.jfw.apt.orm.annotation.dao.method.OrderBy;
11 11
import org.jfw.apt.orm.annotation.dao.method.operator.*;
12
import org.jfw.apt.orm.annotation.dao.param.Like;
13
import org.jfw.apt.orm.annotation.dao.param.Set;
12
import org.jfw.apt.orm.annotation.dao.param.*;
14 13
import org.jfw.apt.orm.core.defaultImpl.StringHandler;
15 14
import org.jfw.util.PageQueryResult;
16 15

@ -38,13 +37,21 @@ public interface OrgDao {
38 37
	@QueryOne
39 38
	OrganizationInfo query(Connection con, String id) throws SQLException;
40 39

40
	@UpdateWith
41
	@From(Organization.class)
42
	int updateOrgName(Connection con,String id,@Set String name)throws SQLException;
43

41 44
	@UpdateWith
42 45
	@From(Organization.class)
43 46
	int updateAuthStatus(Connection con,String id,@Set String authStatus)throws SQLException;
44 47

45 48
	@PageQuery
46
	@OrderBy(" ORDER BY create_time DESC")
47
	PageQueryResult<OrganizationInfo> query(Connection con,@Nullable @Like String inviterId, @Nullable @Like String name, @Nullable @Like String industry, @Nullable @Like String subject, @Nullable @Like String city, int pageSize, int pageNo) throws SQLException;
49
	@OrderBy(" ORDER BY create_time DESC NULLS LAST")
50
	PageQueryResult<OrganizationInfo> queryTime(Connection con, @Nullable @Like String name, @Nullable @Like String industry, @Nullable @Like String subject, @Nullable @Like String city, @Nullable String authStatus, @Nullable @GtEq @Alias("createTime") String bt, @Nullable @Alias("createTime") @LtEq String et, int pageSize, int pageNo) throws SQLException;
51

52
	@PageQuery
53
	@OrderBy(" ORDER BY page_views DESC NULLS LAST")
54
	PageQueryResult<OrganizationInfo> queryViews(Connection con, @Nullable @Like String name, @Nullable @Like String industry, @Nullable @Like String subject, @Nullable @Like String city, @Nullable String authStatus, @Nullable @GtEq @Alias("createTime") String bt, @Nullable @Alias("createTime") @LtEq String et, int pageSize, int pageNo) throws SQLException;
48 55

49 56
	@Nullable
50 57
	@QueryVal
@ -52,4 +59,17 @@ public interface OrgDao {
52 59
	@From(Organization.class)
53 60
	String queryByName(Connection con,String name)throws SQLException;
54 61

62
	@Nullable
63
	@SelectOne
64
	Organization entryCheck(Connection con, @Nullable String name) throws SQLException;
65

66
	@UpdateWith
67
	@From(Organization.class)
68
	int updateBusinessData(Connection con,String id,@Set String authStatus,@Set Long sortNum)throws SQLException;
69

70
	@Nullable
71
	@QueryVal
72
	@Column(handlerClass = StringHandler.class, value = "name")
73
	@From(Organization.class)
74
	String queryById(Connection con, String id) throws SQLException;
55 75
}

+ 35 - 0
src/main/java/com/ekexiu/console/system/dao/OrgRecordDao.java

@ -0,0 +1,35 @@
1
package com.ekexiu.console.system.dao;
2
3
import com.ekexiu.console.system.po.OrgRecord;
4
import org.jfw.apt.annotation.Nullable;
5
import org.jfw.apt.orm.annotation.dao.DAO;
6
import org.jfw.apt.orm.annotation.dao.method.From;
7
import org.jfw.apt.orm.annotation.dao.method.operator.Insert;
8
import org.jfw.apt.orm.annotation.dao.method.operator.SelectOne;
9
import org.jfw.apt.orm.annotation.dao.method.operator.Update;
10
import org.jfw.apt.orm.annotation.dao.method.operator.UpdateWith;
11
import org.jfw.apt.orm.annotation.dao.param.Set;
12
13
import java.sql.Connection;
14
import java.sql.SQLException;
15
16
/**
17
 * Created by TT on 2017/7/21.
18
 */
19
@DAO
20
public interface OrgRecordDao {
21
22
    @Insert
23
    int insert(Connection con, OrgRecord orgRecord) throws SQLException;
24
25
    @Update
26
    int update(Connection con, OrgRecord orgRecord) throws SQLException;
27
28
    @Nullable
29
    @SelectOne
30
    OrgRecord queryById(Connection con, String id) throws SQLException;
31
32
    @UpdateWith
33
    @From(OrgRecord.class)
34
    int updateModifier(Connection con,String id,@Set String modifier,@Set String modifyTime)throws SQLException;
35
}

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

@ -1,8 +1,13 @@
1 1
package com.ekexiu.console.system.dao;
2 2
3 3
import com.ekexiu.console.system.po.OrgUser;
4
import org.jfw.apt.annotation.Nullable;
5
import org.jfw.apt.orm.annotation.dao.Column;
4 6
import org.jfw.apt.orm.annotation.dao.DAO;
5
import org.jfw.apt.orm.annotation.dao.method.operator.Insert;
7
import org.jfw.apt.orm.annotation.dao.method.From;
8
import org.jfw.apt.orm.annotation.dao.method.operator.*;
9
import org.jfw.apt.orm.annotation.dao.param.Set;
10
import org.jfw.apt.orm.core.defaultImpl.StringHandler;
6 11
7 12
import java.sql.Connection;
8 13
import java.sql.SQLException;
@ -16,4 +21,24 @@ public interface OrgUserDao {
16 21
    @Insert
17 22
    int insert(Connection con, OrgUser orgUser) throws SQLException;
18 23
24
    @Nullable
25
    @QueryOne
26
    OrgUser query(Connection con, String id) throws SQLException;
27
28
    @Nullable
29
    @QueryVal
30
    @Column(handlerClass=StringHandler.class,value="id")
31
    @From(OrgUser.class)
32
    String queryByEmail(Connection con,String email)throws SQLException;
33
34
    @Update
35
    int update(Connection con, OrgUser org) throws SQLException;
36
37
    @UpdateWith
38
    @From(OrgUser.class)
39
    int updateEmail(Connection con,String id,@Set String email)throws SQLException;
40
41
    @Nullable
42
    @SelectOne
43
    OrgUser entryCheck(Connection con, @Nullable String email) throws SQLException;
19 44
}

+ 40 - 0
src/main/java/com/ekexiu/console/system/dao/PpaperDao.java

@ -0,0 +1,40 @@
1
package com.ekexiu.console.system.dao;
2
3
import com.ekexiu.console.system.po.Ppaper;
4
import org.jfw.apt.annotation.Nullable;
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.OrderBy;
9
import org.jfw.apt.orm.annotation.dao.method.operator.PageQuery;
10
import org.jfw.apt.orm.annotation.dao.method.operator.QueryVal;
11
import org.jfw.apt.orm.annotation.dao.param.Alias;
12
import org.jfw.apt.orm.annotation.dao.param.GtEq;
13
import org.jfw.apt.orm.annotation.dao.param.Like;
14
import org.jfw.apt.orm.annotation.dao.param.LtEq;
15
import org.jfw.apt.orm.core.defaultImpl.StringHandler;
16
import org.jfw.util.PageQueryResult;
17
18
import java.sql.Connection;
19
import java.sql.SQLException;
20
21
/**
22
 * Created by TT on 2017/7/26.
23
 */
24
@DAO
25
public interface PpaperDao {
26
27
    @Nullable
28
    @QueryVal
29
    @Column(handlerClass = StringHandler.class, value = "name")
30
    @From(Ppaper.class)
31
    String queryById(Connection con, String id) throws SQLException;
32
33
    @PageQuery
34
    @OrderBy(" ORDER BY create_time DESC NULLS LAST")
35
    PageQueryResult<Ppaper> queryByTime(Connection con, @Nullable @Like String name, @Nullable @Like String authors, @Nullable @GtEq @Alias("createTime") String bt, @Nullable @Alias("createTime") @LtEq String et, int pageSize, int pageNo) throws SQLException;
36
37
    @PageQuery
38
    @OrderBy(" ORDER BY page_views DESC NULLS LAST")
39
    PageQueryResult<Ppaper> queryByPV(Connection con, @Nullable @Like String name,@Nullable @Like String authors, @Nullable @GtEq @Alias("createTime") String bt, @Nullable @Alias("createTime") @LtEq String et, int pageSize, int pageNo) throws SQLException;
40
}

+ 40 - 0
src/main/java/com/ekexiu/console/system/dao/PpatentDao.java

@ -0,0 +1,40 @@
1
package com.ekexiu.console.system.dao;
2
3
import com.ekexiu.console.system.po.Ppatent;
4
import org.jfw.apt.annotation.Nullable;
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.OrderBy;
9
import org.jfw.apt.orm.annotation.dao.method.operator.PageQuery;
10
import org.jfw.apt.orm.annotation.dao.method.operator.QueryVal;
11
import org.jfw.apt.orm.annotation.dao.param.Alias;
12
import org.jfw.apt.orm.annotation.dao.param.GtEq;
13
import org.jfw.apt.orm.annotation.dao.param.Like;
14
import org.jfw.apt.orm.annotation.dao.param.LtEq;
15
import org.jfw.apt.orm.core.defaultImpl.StringHandler;
16
import org.jfw.util.PageQueryResult;
17
18
import java.sql.Connection;
19
import java.sql.SQLException;
20
21
/**
22
 * Created by TT on 2017/7/26.
23
 */
24
@DAO
25
public interface PpatentDao {
26
    @Nullable
27
    @QueryVal
28
    @Column(handlerClass = StringHandler.class, value = "name")
29
    @From(Ppatent.class)
30
    String queryById(Connection con, String id) throws SQLException;
31
32
    @PageQuery
33
    @OrderBy(" ORDER BY create_time DESC NULLS LAST")
34
    PageQueryResult<Ppatent> queryByTime(Connection con, @Nullable @Like String name, @Nullable @Like String reqPerson, @Nullable @GtEq @Alias("createTime") String bt, @Nullable @Alias("createTime") @LtEq String et, int pageSize, int pageNo) throws SQLException;
35
36
    @PageQuery
37
    @OrderBy(" ORDER BY page_views DESC NULLS LAST")
38
    PageQueryResult<Ppatent> queryByPV(Connection con, @Nullable @Like String name,@Nullable @Like String reqPerson, @Nullable @GtEq @Alias("createTime") String bt, @Nullable @Alias("createTime") @LtEq String et, int pageSize, int pageNo) throws SQLException;
39
40
}

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

@ -4,12 +4,14 @@ import com.ekexiu.console.system.po.Professor;
4 4
import com.ekexiu.console.system.pojo.ProfessorInfo;
5 5
import org.jfw.apt.annotation.Nullable;
6 6
import org.jfw.apt.orm.annotation.dao.Batch;
7
import org.jfw.apt.orm.annotation.dao.Column;
7 8
import org.jfw.apt.orm.annotation.dao.DAO;
8 9
import org.jfw.apt.orm.annotation.dao.method.From;
9 10
import org.jfw.apt.orm.annotation.dao.method.IncludeFixSet;
10 11
import org.jfw.apt.orm.annotation.dao.method.OrderBy;
11 12
import org.jfw.apt.orm.annotation.dao.method.operator.*;
12 13
import org.jfw.apt.orm.annotation.dao.param.*;
14
import org.jfw.apt.orm.core.defaultImpl.StringHandler;
13 15
import org.jfw.util.PageQueryResult;
14 16
15 17
import java.sql.Connection;
@ -71,4 +73,10 @@ public interface ProfessorDao {
71 73
    @UpdateWith
72 74
    @From(Professor.class)
73 75
    int[] updateAuthStatusExpert(Connection con, @Batch String[] id, @Set Integer authStatusExpert) throws SQLException;
76
77
    @Nullable
78
    @QueryVal
79
    @Column(handlerClass = StringHandler.class, value = "name")
80
    @From(Professor.class)
81
    String queryById(Connection con, String id) throws SQLException;
74 82
}

+ 40 - 0
src/main/java/com/ekexiu/console/system/dao/ResourceDao.java

@ -0,0 +1,40 @@
1
package com.ekexiu.console.system.dao;
2
3
import com.ekexiu.console.system.po.Resource;
4
import com.ekexiu.console.system.pojo.ResourceInfo;
5
import org.jfw.apt.annotation.Nullable;
6
import org.jfw.apt.orm.annotation.dao.Column;
7
import org.jfw.apt.orm.annotation.dao.DAO;
8
import org.jfw.apt.orm.annotation.dao.method.From;
9
import org.jfw.apt.orm.annotation.dao.method.OrderBy;
10
import org.jfw.apt.orm.annotation.dao.method.operator.PageQuery;
11
import org.jfw.apt.orm.annotation.dao.method.operator.QueryVal;
12
import org.jfw.apt.orm.annotation.dao.param.Alias;
13
import org.jfw.apt.orm.annotation.dao.param.GtEq;
14
import org.jfw.apt.orm.annotation.dao.param.Like;
15
import org.jfw.apt.orm.annotation.dao.param.LtEq;
16
import org.jfw.apt.orm.core.defaultImpl.StringHandler;
17
import org.jfw.util.PageQueryResult;
18
19
import java.sql.Connection;
20
import java.sql.SQLException;
21
22
/**
23
 * Created by TT on 2017/7/26.
24
 */
25
@DAO
26
public interface ResourceDao {
27
    @Nullable
28
    @QueryVal
29
    @Column(handlerClass = StringHandler.class, value = "resource_name")
30
    @From(Resource.class)
31
    String queryById(Connection con, String resourceId) throws SQLException;
32
33
    @PageQuery
34
    @OrderBy(" ORDER BY create_time DESC NULLS LAST")
35
    PageQueryResult<ResourceInfo> queryByTime(Connection con, @Nullable @Like String resourceName, @Nullable @Like String professorName, @Nullable @GtEq @Alias("createTime") String bt, @Nullable @Alias("createTime") @LtEq String et, int pageSize, int pageNo) throws SQLException;
36
37
    @PageQuery
38
    @OrderBy(" ORDER BY page_views DESC NULLS LAST")
39
    PageQueryResult<ResourceInfo> queryByPV(Connection con, @Nullable @Like String resourceName,@Nullable @Like String professorName, @Nullable @GtEq @Alias("createTime") String bt, @Nullable @Alias("createTime") @LtEq String et, int pageSize, int pageNo) throws SQLException;
40
}

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

@ -44,11 +44,17 @@ public interface UserInfoDao {
44 44
    @PageQuery
45 45
    @OrderBy(" ORDER BY create_time DESC")
46 46
    @Where("state<>'1'")
47
    PageQueryResult<UserInfo> queryAll(Connection con, @Nullable @Like String creatorName,@Nullable @Like String name, @Nullable @Like String orgName, @Nullable String state, @Nullable @GtEq @Alias("createTime") String bt, @Nullable @Alias("createTime") @LtEq String et, int pageSize, int pageNo) throws SQLException;
47
    PageQueryResult<UserInfo> queryAll(Connection con, @Nullable @Like String creatorName,@Nullable @Like Stringname, @Nullable @Like String orgName, @Nullable String state, @Nullable @GtEq @Alias("createTime") String bt, @Nullable @Alias("createTime") @LtEq String et, int pageSize, int pageNo) throws SQLException;
48 48
49 49
    @Or
50 50
    @Nullable
51 51
    @SelectOne
52 52
    UserInfo entryCheck(Connection con, @Alias({ "mobile", "email" }) String key) throws SQLException;
53 53
54
    @Nullable
55
    @QueryVal
56
    @Column(handlerClass=StringHandler.class,value="id")
57
    @From(UserInfo.class)
58
    String queryByKey(Connection con,@Alias({ "mobile", "email" }) String key)throws SQLException;
59
54 60
}

+ 24 - 0
src/main/java/com/ekexiu/console/system/dao/WatchDao.java

@ -0,0 +1,24 @@
1
package com.ekexiu.console.system.dao;
2
3
import com.ekexiu.console.system.po.Watch;
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/7/27.
16
 */
17
@DAO
18
public interface WatchDao {
19
    @QueryVal
20
    @From(Watch.class)
21
    @Column(value = "COUNT(1)", handlerClass = IntHandler.class)
22
    @DefaultValue("0")
23
    public abstract int countProfessor(Connection con, String watchObject, short watchType) throws SQLException;
24
}

+ 148 - 0
src/main/java/com/ekexiu/console/system/po/Article.java

@ -0,0 +1,148 @@
1
package com.ekexiu.console.system.po;
2
3
import com.ekexiu.console.basepo.CreateTimeSupported;
4
import com.ekexiu.console.basepo.ModifyTimeSupported;
5
import org.jfw.apt.orm.annotation.entry.Column;
6
import org.jfw.apt.orm.annotation.entry.PrimaryKey;
7
import org.jfw.apt.orm.annotation.entry.Table;
8
import org.jfw.apt.orm.core.defaultImpl.FixLenStringHandler;
9
import org.jfw.apt.orm.core.defaultImpl.IntHandler;
10
import org.jfw.apt.orm.core.enums.DE;
11
12
/**
13
 * Created by TT on 2017/7/26.
14
 */
15
@Table
16
@PrimaryKey("articleId")
17
public class Article implements CreateTimeSupported, ModifyTimeSupported {
18
    private String articleId;
19
    private String professorId;
20
    private String articleTitle;
21
    private String articleContent;
22
    private String subject;
23
    private String industry;
24
    private String createTime;
25
    private String modifyTime;
26
    private String publishTime;
27
    private String articleImg;
28
    private String orgId;
29
    private String articleType;
30
    private int articleAgree;
31
    private int pageViews;
32
    private String status;
33
    private long shareId;
34
35
    @Column(DE.id_32)
36
    public String getArticleId() {
37
        return articleId;
38
    }
39
    public void setArticleId(String articleId) {
40
        this.articleId = articleId;
41
    }
42
    @Column(handlerClass=FixLenStringHandler.class,dbType="CHAR(32)",nullable=true,renewable=false)
43
    public String getProfessorId() {
44
        return professorId;
45
    }
46
    public void setProfessorId(String professorId) {
47
        this.professorId = professorId;
48
    }
49
    @Column(value= DE.string_de,dbType="TEXT")
50
    public String getArticleTitle() {
51
        return articleTitle;
52
    }
53
    public void setArticleTitle(String articleTitle) {
54
        this.articleTitle = articleTitle;
55
    }
56
    @Column(value=DE.String_de,dbType="TEXT")
57
    public String getArticleContent() {
58
        return articleContent;
59
    }
60
    public void setArticleContent(String articleContent) {
61
        this.articleContent = articleContent;
62
    }
63
    @Column(value=DE.String_de,dbType="TEXT")
64
    public String getSubject() {
65
        return subject;
66
    }
67
    public void setSubject(String subject) {
68
        this.subject = subject;
69
    }
70
    @Column(value=DE.String_de,dbType="TEXT")
71
    public String getIndustry() {
72
        return industry;
73
    }
74
    public void setIndustry(String industry) {
75
        this.industry = industry;
76
    }
77
    public String getCreateTime() {
78
        return createTime;
79
    }
80
    public void setCreateTime(String createTime) {
81
        this.createTime = createTime;
82
    }
83
    public String getModifyTime() {
84
        return modifyTime;
85
    }
86
    public void setModifyTime(String modifyTime) {
87
        this.modifyTime = modifyTime;
88
    }
89
    @Column(handlerClass=FixLenStringHandler.class,dbType="CHAR(14)",nullable=true,renewable=false)
90
    public String getPublishTime() {
91
        return publishTime;
92
    }
93
    public void setPublishTime(String publishTime) {
94
        this.publishTime = publishTime;
95
    }
96
    @Column(DE.String_de)
97
    public String getArticleImg() {
98
        return articleImg;
99
    }
100
    public void setArticleImg(String articleImg) {
101
        this.articleImg = articleImg;
102
    }
103
    @Column(handlerClass=FixLenStringHandler.class,dbType="CHAR(32)",nullable=true,renewable=false)
104
    public String getOrgId() {
105
        return orgId;
106
    }
107
    public void setOrgId(String orgId) {
108
        this.orgId = orgId;
109
    }
110
    @Column(handlerClass=FixLenStringHandler.class,dbType="CHAR(1)",nullable=true,renewable=false)
111
    public String getArticleType() {
112
        return articleType;
113
    }
114
    public void setArticleType(String articleType) {
115
        this.articleType = articleType;
116
    }
117
    @Column(handlerClass=IntHandler.class,dbType="INTEGER",renewable=false)
118
    public int getArticleAgree() {
119
        return articleAgree;
120
    }
121
    public void setArticleAgree(int articleAgree) {
122
        this.articleAgree = articleAgree;
123
    }
124
    @Column(handlerClass=IntHandler.class,dbType="INTEGER",nullable=true,renewable=false)
125
    public int getPageViews() {
126
        return pageViews;
127
    }
128
    public void setPageViews(int pageViews) {
129
        this.pageViews = pageViews;
130
    }
131
    @Column(handlerClass=FixLenStringHandler.class,dbType="CHAR(1)",nullable=true,renewable=false)
132
    public String getStatus() {
133
        return status;
134
    }
135
    public void setStatus(String status) {
136
        this.status = status;
137
    }
138
    @Column(DE.bigSerial)
139
    public long getShareId() {
140
        return shareId;
141
    }
142
    public void setShareId(long shareId) {
143
        this.shareId = shareId;
144
    }
145
146
147
}
148

+ 165 - 0
src/main/java/com/ekexiu/console/system/po/Feedback.java

@ -0,0 +1,165 @@
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.defaultImpl.FixLenStringHandler;
8
import org.jfw.apt.orm.core.enums.DE;
9
10
/**
11
 * Created by TT on 2017/7/25.
12
 */
13
@PrimaryKey("id")
14
@Table
15
public class Feedback implements CreateTimeSupported {
16
    private long id;
17
    private String title;
18
    private int category;// int4 NOT NULL,
19
    private int schema;// int4 NOT NULL,
20
    private String param;// text NOT NULL,
21
    private String content;// text NOT NULL,
22
    private String createTime;// char(14) NOT NULL,
23
    private String state;// char(1) NOT NULL,
24
    private String userId;
25
    private String operator;
26
    private String operateTime;
27
    private String operateDescp;
28
    private String operatorName;
29
    private String userName;
30
    private String dataName;
31
32
    @Override
33
    public String getCreateTime() {
34
        return this.createTime;
35
    }
36
37
    @Override
38
    public void setCreateTime(String createTime) {
39
        this.createTime = createTime;
40
    }
41
42
    @Column(DE.bigSerial)
43
    public long getId() {
44
        return id;
45
    }
46
47
    public void setId(long id) {
48
        this.id = id;
49
    }
50
51
    @Column(DE.Text_de)
52
    public String getTitle() {
53
        return title;
54
    }
55
56
    public void setTitle(String title) {
57
        this.title = title;
58
    }
59
60
    @Column(DE.int_de)
61
    public int getCategory() {
62
        return category;
63
    }
64
65
    public void setCategory(int category) {
66
        this.category = category;
67
    }
68
69
    @Column(DE.int_de)
70
    public int getSchema() {
71
        return schema;
72
    }
73
74
    public void setSchema(int schema) {
75
        this.schema = schema;
76
    }
77
78
    @Column(DE.text_de)
79
    public String getParam() {
80
        return param;
81
    }
82
83
    public void setParam(String param) {
84
        this.param = param;
85
    }
86
87
    @Column(DE.text_de)
88
    public String getContent() {
89
        return content;
90
    }
91
92
    public void setContent(String content) {
93
        this.content = content;
94
    }
95
96
    @Column(DE.singleChar)
97
    public String getState() {
98
        return state;
99
    }
100
101
    public void setState(String state) {
102
        this.state = state;
103
    }
104
105
    @Column(DE.Text_de)
106
    public String getUserId() {
107
        return userId;
108
    }
109
110
    public void setUserId(String userId) {
111
        this.userId = userId;
112
    }
113
114
    @Column(handlerClass=FixLenStringHandler.class,dbType="CHAR(32)",insertable=true,nullable=true,renewable=true,queryable=true)
115
    public String getOperator() {
116
        return operator;
117
    }
118
119
    public void setOperator(String operator) {
120
        this.operator = operator;
121
    }
122
123
    @Column(DE.Text_de)
124
    public String getOperateTime() {
125
        return operateTime;
126
    }
127
128
    public void setOperateTime(String operateTime) {
129
        this.operateTime = operateTime;
130
    }
131
132
    @Column(DE.Text_de)
133
    public String getOperateDescp() {
134
        return operateDescp;
135
    }
136
137
    public void setOperateDescp(String operateDescp) {
138
        this.operateDescp = operateDescp;
139
    }
140
141
    public String getOperatorName() {
142
        return operatorName;
143
    }
144
145
    public void setOperatorName(String operatorName) {
146
        this.operatorName = operatorName;
147
    }
148
149
    public String getUserName() {
150
        return userName;
151
    }
152
153
    public void setUserName(String userName) {
154
        this.userName = userName;
155
    }
156
157
    public String getDataName() {
158
        return dataName;
159
    }
160
161
    public void setDataName(String dataName) {
162
        this.dataName = dataName;
163
    }
164
}
165

+ 64 - 0
src/main/java/com/ekexiu/console/system/po/LeaveWord.java

@ -0,0 +1,64 @@
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/7/27.
11
 */
12
@PrimaryKey("id")
13
@Table
14
public class LeaveWord implements CreateTimeSupported {
15
    private String id;
16
    private String content;
17
    private String sender;
18
    private String articleId;
19
    private String createTime;
20
    private long orderKey;
21
22
    @Column(DE.id_32)
23
    public String getId() {
24
        return id;
25
    }
26
    public void setId(String id) {
27
        this.id = id;
28
    }
29
    @Column(DE.text_de)
30
    public String getContent() {
31
        return content;
32
    }
33
    public void setContent(String content) {
34
        this.content = content;
35
    }
36
    @Column(DE.id_32)
37
    public String getSender() {
38
        return sender;
39
    }
40
    public void setSender(String sender) {
41
        this.sender = sender;
42
    }
43
    @Column(DE.id_32)
44
    public String getArticleId() {
45
        return articleId;
46
    }
47
    public void setArticleId(String articleId) {
48
        this.articleId = articleId;
49
    }
50
    public String getCreateTime() {
51
        return createTime;
52
    }
53
    public void setCreateTime(String createTime) {
54
        this.createTime = createTime;
55
    }
56
    @Column(DE.long_de)
57
    public long getOrderKey() {
58
        return orderKey;
59
    }
60
    public void setOrderKey(long orderKey) {
61
        this.orderKey = orderKey;
62
    }
63
64
}

+ 68 - 0
src/main/java/com/ekexiu/console/system/po/OrgRecord.java

@ -0,0 +1,68 @@
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.defaultImpl.FixLenStringHandler;
7
import org.jfw.apt.orm.core.enums.DE;
8
9
/**
10
 * Created by TT on 2017/7/20.
11
 */
12
@Table
13
@PrimaryKey("id")
14
public class OrgRecord {
15
16
    private String id;
17
    private String createTime;
18
    private String creator;
19
    private String modifyTime;
20
    private String modifier;
21
22
    @Column(DE.id_32)
23
    public String getId() {
24
        return id;
25
    }
26
27
    public void setId(String id) {
28
        this.id = id;
29
    }
30
31
    @Column(handlerClass=FixLenStringHandler.class,dbType="CHAR(32)",insertable=true,nullable=true,renewable=true,queryable=true)
32
    public String getCreator() {
33
        return creator;
34
    }
35
36
    public void setCreator(String creator) {
37
        this.creator = creator;
38
    }
39
40
    @Column(handlerClass=FixLenStringHandler.class,dbType="CHAR(32)",insertable=true,nullable=true,renewable=true,queryable=true)
41
    public String getModifier() {
42
        return modifier;
43
    }
44
45
    public void setModifier(String modifier) {
46
        this.modifier = modifier;
47
    }
48
49
    @Column(DE.Text_de)
50
    public String getModifyTime() {
51
        return modifyTime;
52
    }
53
54
55
    public void setModifyTime(String modifyTime) {
56
        this.modifyTime = modifyTime;
57
    }
58
59
    @Column(DE.Text_de)
60
    public String getCreateTime() {
61
        return createTime;
62
    }
63
64
65
    public void setCreateTime(String createTime) {
66
        this.createTime = createTime;
67
    }
68
}

+ 82 - 0
src/main/java/com/ekexiu/console/system/po/Organization.java

@ -7,6 +7,7 @@ import org.jfw.apt.orm.annotation.entry.Column;
7 7
import org.jfw.apt.orm.annotation.entry.PrimaryKey;
8 8
import org.jfw.apt.orm.annotation.entry.Table;
9 9
import org.jfw.apt.orm.core.defaultImpl.FixLenStringHandler;
10
import org.jfw.apt.orm.core.defaultImpl.LongHandler;
10 11
import org.jfw.apt.orm.core.enums.DE;
11 12

12 13
@PrimaryKey("id")
@ -32,6 +33,36 @@ public class Organization implements CreateTimeSupported, ModifyTimeSupported, D
32 33
    private String descp;
33 34
    private String authStatus;
34 35

36

37
    /**
38
     * 详细地址
39
     */
40
    private String addr;
41
    /**
42
     * 联系邮箱
43
     */
44
    private String email;
45
    /**
46
     * 联系电话
47
     */
48
    private String contactNum;
49
    /**
50
     * 客户领域
51
     */
52
    private String fieldOfCustomer;
53
    /**
54
     * 供应商领域
55
     */
56
    private String fieldOfSupplier;
57
    /**
58
     * 排序字段
59
     */
60
    private long sortNum;
61
    /**
62
     * 浏览量
63
     */
64
    private long pageViews;
65

35 66
    @Column(DE.string_de)
36 67
    public String getAuthStatus() {
37 68
        return authStatus;
@ -192,5 +223,56 @@ public class Organization implements CreateTimeSupported, ModifyTimeSupported, D
192 223
        this.isJoin = isJoin;
193 224
    }
194 225

226
    @Column(DE.Text_de)
227
    public String getAddr() {
228
        return addr;
229
    }
230
    public void setAddr(String addr) {
231
        this.addr = addr;
232
    }
233
    @Column(DE.Text_de)
234
    public String getEmail() {
235
        return email;
236
    }
237
    public void setEmail(String email) {
238
        this.email = email;
239
    }
240
    @Column(DE.Text_de)
241
    public String getContactNum() {
242
        return contactNum;
243
    }
244
    public void setContactNum(String contactNum) {
245
        this.contactNum = contactNum;
246
    }
247
    @Column(DE.Text_de)
248
    public String getFieldOfCustomer() {
249
        return fieldOfCustomer;
250
    }
251
    public void setFieldOfCustomer(String fieldOfCustomer) {
252
        this.fieldOfCustomer = fieldOfCustomer;
253
    }
254
    @Column(DE.Text_de)
255
    public String getFieldOfSupplier() {
256
        return fieldOfSupplier;
257
    }
258
    public void setFieldOfSupplier(String fieldOfSupplier) {
259
        this.fieldOfSupplier = fieldOfSupplier;
260
    }
261
    @Column(handlerClass=LongHandler.class,dbType="BIGINT",fixSqlValueWithInsert="0",insertable=true,renewable=false,nullable=false,queryable=true)
262
    public long getSortNum() {
263
        return sortNum;
264
    }
265
    public void setSortNum(long sortNum) {
266
        this.sortNum = sortNum;
267
    }
268
    @Column(handlerClass=LongHandler.class,dbType="BIGINT",fixSqlValueWithInsert="0",insertable=true,renewable=false,nullable=false,queryable=true)
269
    public long getPageViews() {
270
        return pageViews;
271
    }
272
    public void setPageViews(long pageViews) {
273
        this.pageViews = pageViews;
274
    }
275

276

195 277

196 278
}

+ 132 - 0
src/main/java/com/ekexiu/console/system/po/Ppaper.java

@ -0,0 +1,132 @@
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/7/26.
11
 */
12
@PrimaryKey("id")
13
@Table
14
public class Ppaper implements CreateTimeSupported {
15
    private String id; // char(32)  NOT NULL,
16
    private String name; // text COLLATE "zh_CN.utf8" NOT NULL,
17
    private long pageViews;// int8 DEFAULT 0 NOT NULL,
18
    private String cn4periodical;// text,
19
    private String en4periodical;// text,
20
    private String periodicaltype;// text,
21
    private String pubDay;// text,
22
    private String summary;// text COLLATE "zh_CN.utf8" NOT NULL,
23
    private String keywords;// text COLLATE "zh_CN.utf8",
24
    private String ref_param;// text);
25
    private String createTime;
26
    private String authors;
27
    private long sortNum;
28
    private long shareId;
29
30
31
    public String getCreateTime() {
32
        return createTime;
33
    }
34
    public void setCreateTime(String createTime) {
35
        this.createTime = createTime;
36
    }
37
    @Column(DE.text_de)
38
    public String getAuthors() {
39
        return authors;
40
    }
41
    public void setAuthors(String authors) {
42
        this.authors = authors;
43
    }
44
    @Column(DE.long_de)
45
    public long getSortNum() {
46
        return sortNum;
47
    }
48
    public void setSortNum(long sortNum) {
49
        this.sortNum = sortNum;
50
    }
51
    @Column(DE.id_32)
52
    public String getId() {
53
        return id;
54
    }
55
    public void setId(String id) {
56
        this.id = id;
57
    }
58
    @Column(DE.text_de)
59
    public String getName() {
60
        return name;
61
    }
62
63
    public void setName(String name) {
64
        this.name = name;
65
    }
66
    @Column(value=DE.long_de)
67
    public long getPageViews() {
68
        return pageViews;
69
    }
70
    public void setPageViews(long pageViews) {
71
        this.pageViews = pageViews;
72
    }
73
    @Column(DE.Text_de)
74
    public String getCn4periodical() {
75
        return cn4periodical;
76
    }
77
    public void setCn4periodical(String cn4periodical) {
78
        this.cn4periodical = cn4periodical;
79
    }
80
    @Column(DE.Text_de)
81
    public String getEn4periodical() {
82
        return en4periodical;
83
    }
84
    public void setEn4periodical(String en4periodical) {
85
        this.en4periodical = en4periodical;
86
    }
87
    @Column(DE.Text_de)
88
    public String getPeriodicaltype() {
89
        return periodicaltype;
90
    }
91
    public void setPeriodicaltype(String periodicaltype) {
92
        this.periodicaltype = periodicaltype;
93
    }
94
    @Column(DE.text_de)
95
    public String getPubDay() {
96
        return pubDay;
97
    }
98
    public void setPubDay(String pubDay) {
99
        this.pubDay = pubDay;
100
    }
101
    @Column(DE.text_de)
102
    public String getSummary() {
103
        return summary;
104
    }
105
    public void setSummary(String summary) {
106
        this.summary = summary;
107
    }
108
    @Column(DE.Text_de)
109
    public String getKeywords() {
110
        return keywords;
111
    }
112
    public void setKeywords(String keywords) {
113
        this.keywords = keywords;
114
    }
115
    @Column(DE.Text_de)
116
    public String getRef_param() {
117
        return ref_param;
118
    }
119
    public void setRef_param(String ref_param) {
120
        this.ref_param = ref_param;
121
    }
122
    @Column(DE.bigSerial)
123
    public long getShareId() {
124
        return shareId;
125
    }
126
    public void setShareId(long shareId) {
127
        this.shareId = shareId;
128
    }
129
130
131
132
}

+ 166 - 0
src/main/java/com/ekexiu/console/system/po/Ppatent.java

@ -0,0 +1,166 @@
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/7/26.
11
 */
12
@PrimaryKey("id")
13
@Table
14
public class Ppatent implements CreateTimeSupported {
15
    private String id;// char(32) NOT NULL,
16
    private String name;// text COLLATE "zh_CN.utf8" NOT NULL,
17
    private long pageViews;// int8 DEFAULT 0 NOT NULL,
18
    private String code;// text NOT NULL,
19
    private String reqCode;// text NOT NULL,
20
    private String reqPerson;// text COLLATE "zh_CN.utf8",
21
    private String reqDay;// char(8) NOT NULL,
22
    private String pubDay;// char(8) NOT NULL,
23
    private String summary;// text COLLATE "zh_CN.utf8" NOT NULL,
24
    private String ref_param;// text ,
25
    private String keywords;// text COLLATE "zh_CN.utf8"
26
    private String createTime;
27
    private String authors;
28
    private long sortNum;
29
    private long shareId;
30
31
    public String getCreateTime() {
32
        return createTime;
33
    }
34
35
    public void setCreateTime(String createTime) {
36
        this.createTime = createTime;
37
    }
38
39
    @Column(DE.text_de)
40
    public String getAuthors() {
41
        return authors;
42
    }
43
44
    public void setAuthors(String authors) {
45
        this.authors = authors;
46
    }
47
48
    @Column(DE.long_de)
49
    public long getSortNum() {
50
        return sortNum;
51
    }
52
53
    public void setSortNum(long sortNum) {
54
        this.sortNum = sortNum;
55
    }
56
57
    @Column(DE.id_32)
58
    public String getId() {
59
        return id;
60
    }
61
62
    public void setId(String id) {
63
        this.id = id;
64
    }
65
66
    @Column(DE.text_de)
67
    public String getName() {
68
        return name;
69
    }
70
71
    public void setName(String name) {
72
        this.name = name;
73
    }
74
75
    @Column(DE.long_de)
76
    public long getPageViews() {
77
        return pageViews;
78
    }
79
80
    public void setPageViews(long pageViews) {
81
        this.pageViews = pageViews;
82
    }
83
84
    @Column(DE.Text_de)
85
    public String getCode() {
86
        return code;
87
    }
88
89
    public void setCode(String code) {
90
        this.code = code;
91
    }
92
93
    @Column(DE.Text_de)
94
    public String getReqCode() {
95
        return reqCode;
96
    }
97
98
    public void setReqCode(String reqCode) {
99
        this.reqCode = reqCode;
100
    }
101
102
    @Column(DE.Text_de)
103
    public String getReqPerson() {
104
        return reqPerson;
105
    }
106
107
    public void setReqPerson(String reqPerson) {
108
        this.reqPerson = reqPerson;
109
    }
110
111
    @Column(DE.Text_de)
112
    public String getReqDay() {
113
        return reqDay;
114
    }
115
116
    public void setReqDay(String reqDay) {
117
        this.reqDay = reqDay;
118
    }
119
120
    @Column(DE.Text_de)
121
    public String getPubDay() {
122
        return pubDay;
123
    }
124
125
    public void setPubDay(String pubDay) {
126
        this.pubDay = pubDay;
127
    }
128
129
    @Column(DE.text_de)
130
    public String getSummary() {
131
        return summary;
132
    }
133
134
    public void setSummary(String summary) {
135
        this.summary = summary;
136
    }
137
138
    @Column(DE.Text_de)
139
    public String getRef_param() {
140
        return ref_param;
141
    }
142
143
    public void setRef_param(String ref_param) {
144
        this.ref_param = ref_param;
145
    }
146
147
    @Column(DE.Text_de)
148
    public String getKeywords() {
149
        return keywords;
150
    }
151
152
    public void setKeywords(String keywords) {
153
        this.keywords = keywords;
154
    }
155
    @Column(DE.bigSerial)
156
    public long getShareId() {
157
        return shareId;
158
    }
159
160
    public void setShareId(long shareId) {
161
        this.shareId = shareId;
162
    }
163
164
165
}
166

+ 250 - 0
src/main/java/com/ekexiu/console/system/po/Resource.java

@ -0,0 +1,250 @@
1
package com.ekexiu.console.system.po;
2
3
import com.ekexiu.console.basepo.CreateTimeSupported;
4
import com.ekexiu.console.basepo.ModifyTimeSupported;
5
import org.jfw.apt.orm.annotation.entry.Column;
6
import org.jfw.apt.orm.annotation.entry.PrimaryKey;
7
import org.jfw.apt.orm.annotation.entry.Table;
8
import org.jfw.apt.orm.core.defaultImpl.FixLenStringHandler;
9
import org.jfw.apt.orm.core.defaultImpl.IntHandler;
10
import org.jfw.apt.orm.core.defaultImpl.StringHandler;
11
import org.jfw.apt.orm.core.enums.DE;
12
13
/**
14
 * Created by TT on 2017/7/26.
15
 */
16
@PrimaryKey("resourceId")
17
@Table
18
public class Resource implements CreateTimeSupported, ModifyTimeSupported {
19
    private String resourceId;
20
    private String resourceName;
21
    /**
22
     * 关键字
23
     */
24
    private String subject;
25
    private String industry;
26
    /**
27
     * 资源提供的服务、应用用途
28
     */
29
    private String supportedServices;
30
    private String orgName;
31
    /**
32
     * 厂商及型号规格
33
     */
34
    private String spec;
35
    /**
36
     * 性能参数
37
     */
38
    private String parameter;
39
    /**
40
     *
41
     */
42
    private String status;
43
    private String descp;
44
    private String professorId;
45
    /**
46
     * 资源所属(个人/机构)
47
     */
48
    private String ascription;
49
    private String createTime;
50
    private String modifyTime;
51
    private String hopePayMethod;
52
    /**
53
     * 合作备注
54
     */
55
    private String cooperationNotes;
56
    /**
57
     * 发布时间
58
     */
59
    private String publishTime;
60
    /**
61
     * 浏览量
62
     */
63
    private int pageViews;
64
    /**
65
     * 所在单位
66
     */
67
    private String comp;
68
    /**
69
     * 资源类型(1-个人资源,2-企业资源)
70
     */
71
    private String resourceType;
72
    private String orgId;
73
74
    private long shareId;
75
76
    @Column(DE.id_32)
77
    public String getResourceId() {
78
        return resourceId;
79
    }
80
    public void setResourceId(String resourceId) {
81
        this.resourceId = resourceId;
82
    }
83
84
    @Column(DE.dictCaption)
85
    public String getResourceName() {
86
        return resourceName;
87
    }
88
    public void setResourceName(String resourceName) {
89
        this.resourceName = resourceName;
90
    }
91
92
    @Column(handlerClass=StringHandler.class,dbType="TEXT",insertable=true,nullable=true,renewable=true,queryable=true)
93
    public String getSubject() {
94
        return subject;
95
    }
96
    public void setSubject(String subject) {
97
        this.subject = subject;
98
    }
99
100
    @Column(handlerClass=StringHandler.class,dbType="TEXT",insertable=true,nullable=true,renewable=true,queryable=true)
101
    public String getIndustry() {
102
        return industry;
103
    }
104
    public void setIndustry(String industry) {
105
        this.industry = industry;
106
    }
107
108
    @Column(DE.string_de)
109
    public String getSupportedServices() {
110
        return supportedServices;
111
    }
112
    public void setSupportedServices(String supportedServices) {
113
        this.supportedServices = supportedServices;
114
    }
115
116
    @Column(DE.String_de)
117
    public String getOrgName() {
118
        return orgName;
119
    }
120
    public void setOrgName(String orgName) {
121
        this.orgName = orgName;
122
    }
123
124
    @Column(DE.String_de)
125
    public String getSpec() {
126
        return spec;
127
    }
128
    public void setSpec(String spec) {
129
        this.spec = spec;
130
    }
131
132
    @Column(handlerClass=FixLenStringHandler.class,dbType="TEXT",nullable=true)
133
    public String getParameter() {
134
        return parameter;
135
    }
136
    public void setParameter(String parameter) {
137
        this.parameter = parameter;
138
    }
139
140
    @Column(handlerClass=FixLenStringHandler.class,dbType="CHAR(1)",nullable=true,renewable=false)
141
    public String getStatus() {
142
        return status;
143
    }
144
    public void setStatus(String status) {
145
        this.status = status;
146
    }
147
148
    @Column(handlerClass=StringHandler.class,dbType="TEXT",insertable=true,nullable=true,renewable=true,queryable=true)
149
    public String getDescp() {
150
        return descp;
151
    }
152
    public void setDescp(String descp) {
153
        this.descp = descp;
154
    }
155
156
    @Column(handlerClass=FixLenStringHandler.class,dbType="CHAR(32)",nullable=true,renewable=false)
157
    public String getProfessorId() {
158
        return professorId;
159
    }
160
    public void setProfessorId(String professorId) {
161
        this.professorId = professorId;
162
    }
163
164
    @Column(DE.String_de)
165
    public String getAscription() {
166
        return ascription;
167
    }
168
    public void setAscription(String ascription) {
169
        this.ascription = ascription;
170
    }
171
172
    public String getCreateTime() {
173
        return createTime;
174
    }
175
    public void setCreateTime(String createTime) {
176
        this.createTime = createTime;
177
    }
178
179
    public String getModifyTime() {
180
        return modifyTime;
181
    }
182
    public void setModifyTime(String modifyTime) {
183
        this.modifyTime = modifyTime;
184
    }
185
186
    @Column(DE.String_de)
187
    public String getHopePayMethod() {
188
        return hopePayMethod;
189
    }
190
    public void setHopePayMethod(String hopePayMethod) {
191
        this.hopePayMethod = hopePayMethod;
192
    }
193
194
    @Column(handlerClass=StringHandler.class,dbType="TEXT",insertable=true,nullable=true,renewable=true,queryable=true)
195
    public String getCooperationNotes() {
196
        return cooperationNotes;
197
    }
198
    public void setCooperationNotes(String cooperationNotes) {
199
        this.cooperationNotes = cooperationNotes;
200
    }
201
202
    @Column(handlerClass=FixLenStringHandler.class,dbType="CHAR(14)",nullable=true,renewable=false)
203
    public String getPublishTime() {
204
        return publishTime;
205
    }
206
    public void setPublishTime(String publishTime) {
207
        this.publishTime = publishTime;
208
    }
209
210
    @Column(handlerClass=IntHandler.class,dbType="INTEGER",nullable=true,renewable=false)
211
    public int getPageViews() {
212
        return pageViews;
213
    }
214
    public void setPageViews(int pageViews) {
215
        this.pageViews = pageViews;
216
    }
217
218
    @Column(handlerClass=StringHandler.class,nullable=true,renewable=false)
219
    public String getComp() {
220
        return comp;
221
    }
222
    public void setComp(String comp) {
223
        this.comp = comp;
224
    }
225
226
    @Column(handlerClass=FixLenStringHandler.class,nullable=true,renewable=false)
227
    public String getResourceType() {
228
        return resourceType;
229
    }
230
    public void setResourceType(String resourceType) {
231
        this.resourceType = resourceType;
232
    }
233
234
    @Column(handlerClass=FixLenStringHandler.class,dbType="CHAR(32)",nullable=true,renewable=false)
235
    public String getOrgId() {
236
        return orgId;
237
    }
238
    public void setOrgId(String orgId) {
239
        this.orgId = orgId;
240
    }
241
    @Column(DE.bigSerial)
242
    public long getShareId() {
243
        return shareId;
244
    }
245
    public void setShareId(long shareId) {
246
        this.shareId = shareId;
247
    }
248
249
250
}

+ 65 - 0
src/main/java/com/ekexiu/console/system/po/Watch.java

@ -0,0 +1,65 @@
1
package com.ekexiu.console.system.po;
2
3
import com.ekexiu.console.basepo.CreateTimeSupported;
4
import org.jfw.apt.orm.annotation.entry.*;
5
import org.jfw.apt.orm.core.enums.DE;
6
7
/**
8
 * Created by TT on 2017/7/27.
9
 */
10
@Uniques(@Unique(clolumns = { "professorId","watchObject","watchType" }, name = "WATCH_RELATION_UQ"))
11
@PrimaryKey({"professorId","watchObject"})
12
@Table
13
public class Watch implements CreateTimeSupported {
14
    private String professorId;
15
    private String watchObject;
16
    private String createTime;
17
    private short watchType;
18
    private Resource resource;
19
    private Article article;
20
21
    public Resource getResource() {
22
        return resource;
23
    }
24
    public void setResource(Resource resource) {
25
        this.resource = resource;
26
    }
27
    public Article getArticle() {
28
        return article;
29
    }
30
    public void setArticle(Article article) {
31
        this.article = article;
32
    }
33
34
    @Column(DE.id_32)
35
    public String getProfessorId() {
36
        return professorId;
37
    }
38
    public void setProfessorId(String professorId) {
39
        this.professorId = professorId;
40
    }
41
42
    @Column(DE.string_de)
43
    public String getWatchObject() {
44
        return watchObject;
45
    }
46
    public void setWatchObject(String watchObject) {
47
        this.watchObject = watchObject;
48
    }
49
50
    public String getCreateTime() {
51
        return createTime;
52
    }
53
    public void setCreateTime(String createTime) {
54
        this.createTime = createTime;
55
    }
56
57
    @Column(DE.short_de)
58
    public short getWatchType() {
59
        return watchType;
60
    }
61
    public void setWatchType(short watchType) {
62
        this.watchType = watchType;
63
    }
64
65
}

+ 23 - 0
src/main/java/com/ekexiu/console/system/pojo/ArticleInfo.java

@ -0,0 +1,23 @@
1
package com.ekexiu.console.system.pojo;
2
3
import com.ekexiu.console.system.po.Article;
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/7/27.
10
 */
11
@ExtendView(fromSentence = "article a LEFT JOIN professor p on p.id = a.professor_id ", tableAlias = "a")
12
public class ArticleInfo extends Article{
13
    private String professorName;
14
15
    @CalcColumn(handlerClass = StringHandler.class, column = "p.name")
16
    public String getProfessorName() {
17
        return professorName;
18
    }
19
20
    public void setProfessorName(String professorName) {
21
        this.professorName = professorName;
22
    }
23
}

+ 17 - 15
src/main/java/com/ekexiu/console/system/pojo/OrganizationInfo.java

@ -3,17 +3,27 @@ package com.ekexiu.console.system.pojo;
3 3
import com.ekexiu.console.system.po.Organization;
4 4
import org.jfw.apt.orm.annotation.entry.CalcColumn;
5 5
import org.jfw.apt.orm.annotation.entry.ExtendView;
6
import org.jfw.apt.orm.core.defaultImpl.IntHandler;
6 7
import org.jfw.apt.orm.core.defaultImpl.StringHandler;
7 8
8 9
/**
9 10
 * Created by TT on 2017/5/18.
10 11
 */
11
@ExtendView(fromSentence = "organization o LEFT JOIN org_user ou on ou.id = o.id LEFT JOIN cuser c on ou.inviter_id = c.id", tableAlias = "o")
12
@ExtendView(fromSentence = "organization o RIGHT JOIN org_user ou on ou.id = o.id LEFT JOIN (select watch_object id,count(1) num from watch WHERE watch_type = 6 group by id)as fans  on fans.id = o.id", tableAlias = "o")
12 13
public class OrganizationInfo extends Organization {
13
    private String principal;
14 14
    private String inviterId;
15
    private String email;
15
    private String registerEmail;
16 16
    private boolean hasOrgLogo;
17
    private int fans;
18
19
    @CalcColumn(handlerClass = IntHandler.class, column = "fans.num")
20
    public int getFans() {
21
        return fans;
22
    }
23
24
    public void setFans(int fans) {
25
        this.fans = fans;
26
    }
17 27
18 28
    public boolean isHasOrgLogo() {
19 29
        return hasOrgLogo;
@ -24,12 +34,12 @@ public class OrganizationInfo extends Organization {
24 34
    }
25 35
26 36
    @CalcColumn(handlerClass = StringHandler.class, column = "ou.email")
27
    public String getEmail() {
28
        return email;
37
    public String getRegisterEmail() {
38
        return registerEmail;
29 39
    }
30 40
31
    public void setEmail(String email) {
32
        this.email = email;
41
    public void setRegisterEmail(String registerEmail) {
42
        this.registerEmail = registerEmail;
33 43
    }
34 44
35 45
    @CalcColumn(handlerClass = StringHandler.class, column = "ou.inviter_id")
@ -41,12 +51,4 @@ public class OrganizationInfo extends Organization {
41 51
        this.inviterId = inviterId;
42 52
    }
43 53
44
    @CalcColumn(handlerClass = StringHandler.class, column = "c.name")
45
    public String getPrincipal() {
46
        return principal;
47
    }
48
49
    public void setPrincipal(String principal) {
50
        this.principal = principal;
51
    }
52 54
}

+ 23 - 0
src/main/java/com/ekexiu/console/system/pojo/ResourceInfo.java

@ -0,0 +1,23 @@
1
package com.ekexiu.console.system.pojo;
2
3
import com.ekexiu.console.system.po.Resource;
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/7/27.
10
 */
11
@ExtendView(fromSentence = "resource r LEFT JOIN professor p on p.id = r.professor_id ", tableAlias = "r")
12
public class ResourceInfo extends Resource{
13
    private String professorName;
14
15
    @CalcColumn(handlerClass = StringHandler.class, column = "p.name")
16
    public String getProfessorName() {
17
        return professorName;
18
    }
19
20
    public void setProfessorName(String professorName) {
21
        this.professorName = professorName;
22
    }
23
}

+ 129 - 0
src/main/java/com/ekexiu/console/system/service/ContentService.java

@ -0,0 +1,129 @@
1
package com.ekexiu.console.system.service;
2
3
import com.ekexiu.console.system.dao.*;
4
import org.jfw.apt.annotation.Autowrie;
5
import org.jfw.apt.annotation.DefaultValue;
6
import org.jfw.apt.annotation.Nullable;
7
import org.jfw.apt.web.annotation.Path;
8
import org.jfw.apt.web.annotation.operate.Get;
9
import org.jfw.apt.web.annotation.param.JdbcConn;
10
11
import java.sql.Connection;
12
import java.sql.SQLException;
13
14
/**
15
 * Created by TT on 2017/7/27.
16
 */
17
@Path("/content")
18
public class ContentService {
19
    @Autowrie
20
    private ArticleDao articleDao;
21
    @Autowrie
22
    private ResourceDao resourceDao;
23
    @Autowrie
24
    private PpatentDao ppatentDao;
25
    @Autowrie
26
    private PpaperDao ppaperDao;
27
    @Autowrie
28
    private LeaveWordDao leaveWordDao;
29
    @Autowrie
30
    private WatchDao watchDao;
31
32
    public ArticleDao getArticleDao() {
33
        return articleDao;
34
    }
35
36
    public void setArticleDao(ArticleDao articleDao) {
37
        this.articleDao = articleDao;
38
    }
39
40
    public ResourceDao getResourceDao() {
41
        return resourceDao;
42
    }
43
44
    public void setResourceDao(ResourceDao resourceDao) {
45
        this.resourceDao = resourceDao;
46
    }
47
48
    public PpatentDao getPpatentDao() {
49
        return ppatentDao;
50
    }
51
52
    public void setPpatentDao(PpatentDao ppatentDao) {
53
        this.ppatentDao = ppatentDao;
54
    }
55
56
    public PpaperDao getPpaperDao() {
57
        return ppaperDao;
58
    }
59
60
    public void setPpaperDao(PpaperDao ppaperDao) {
61
        this.ppaperDao = ppaperDao;
62
    }
63
64
    public LeaveWordDao getLeaveWordDao() {
65
        return leaveWordDao;
66
    }
67
68
    public void setLeaveWordDao(LeaveWordDao leaveWordDao) {
69
        this.leaveWordDao = leaveWordDao;
70
    }
71
72
    public WatchDao getWatchDao() {
73
        return watchDao;
74
    }
75
76
    public void setWatchDao(WatchDao watchDao) {
77
        this.watchDao = watchDao;
78
    }
79
80
    @Get
81
    @Path("/lwCount")
82
    public int queryCount(@JdbcConn Connection con,String articleId)throws SQLException{
83
        return this.leaveWordDao.queryCount(con, articleId);
84
    }
85
86
    @Get
87
    @Path("/countProfessor")
88
    public int countProfessor(@JdbcConn Connection con,String id,short type)throws SQLException{
89
        return this.watchDao.countProfessor(con, id, type);
90
    }
91
92
    @Path("/pq")
93
    @Get
94
    public Object pageQuery(@JdbcConn Connection con, int contentType, @Nullable String title, @Nullable String name, int orderBy, @Nullable String bt, @Nullable String et, @DefaultValue("1") int pageNo, @DefaultValue("10") int pageSize)throws SQLException{
95
        if (contentType == 3){
96
            if (orderBy == 1) {
97
                return this.articleDao.queryByTime(con, title == null ? null : "%" + title + "%",  name == null ? null : "%" + name + "%", bt == null ? null : bt + "000000", et == null ? null : et + "235959", pageSize, pageNo);
98
            }
99
            if (orderBy == 2) {
100
                return this.articleDao.queryByPV(con, title == null ? null : "%" + title + "%",  name == null ? null : "%" + name + "%", bt == null ? null : bt + "000000", et == null ? null : et + "235959", pageSize, pageNo);
101
            }
102
        }
103
        if (contentType == 2){
104
            if (orderBy == 1){
105
                return this.resourceDao.queryByTime(con, title == null ? null : "%" + title + "%",  name == null ? null : "%" + name + "%", bt == null ? null : bt + "000000", et == null ? null : et + "235959", pageSize, pageNo);
106
            }
107
            if (orderBy == 2) {
108
                return this.resourceDao.queryByPV(con, title == null ? null : "%" + title + "%",  name == null ? null : "%" + name + "%", bt == null ? null : bt + "000000", et == null ? null : et + "235959", pageSize, pageNo);
109
            }
110
        }
111
        if (contentType == 5){
112
            if (orderBy == 1){
113
                return this.ppaperDao.queryByTime(con,title == null ? null : "%" + title + "%",  name == null ? null : "%" + name + "%", bt == null ? null : bt + "000000", et == null ? null : et + "235959", pageSize, pageNo);
114
            }
115
            if (orderBy == 2) {
116
                return this.ppaperDao.queryByPV(con, title == null ? null : "%" + title + "%",  name == null ? null : "%" + name + "%", bt == null ? null : bt + "000000", et == null ? null : et + "235959", pageSize, pageNo);
117
            }
118
        }
119
        if (contentType == 4){
120
            if (orderBy == 1){
121
                return this.ppatentDao.queryByTime(con, title == null ? null : "%" + title + "%",  name == null ? null : "%" + name + "%", bt == null ? null : bt + "000000", et == null ? null : et + "235959", pageSize, pageNo);
122
            }
123
            if (orderBy == 2) {
124
                return this.ppatentDao.queryByPV(con, title == null ? null : "%" + title + "%",  name == null ? null : "%" + name + "%", bt == null ? null : bt + "000000", et == null ? null : et + "235959", pageSize, pageNo);
125
            }
126
        }
127
        return null;
128
    }
129
}

+ 196 - 0
src/main/java/com/ekexiu/console/system/service/FeedbackService.java

@ -0,0 +1,196 @@
1
package com.ekexiu.console.system.service;
2
3
import com.ekexiu.console.system.dao.*;
4
import com.ekexiu.console.system.po.Feedback;
5
import com.ekexiu.console.system.po.Professor;
6
import com.ekexiu.console.system.vo.ConsoleAuthUser;
7
import org.jfw.apt.annotation.Autowrie;
8
import org.jfw.apt.annotation.DefaultValue;
9
import org.jfw.apt.annotation.Nullable;
10
import org.jfw.apt.web.annotation.LoginUser;
11
import org.jfw.apt.web.annotation.Path;
12
import org.jfw.apt.web.annotation.operate.Get;
13
import org.jfw.apt.web.annotation.operate.Post;
14
import org.jfw.apt.web.annotation.param.JdbcConn;
15
import org.jfw.apt.web.annotation.param.PathVar;
16
import org.jfw.util.DateUtil;
17
import org.jfw.util.PageQueryResult;
18
19
import java.sql.Connection;
20
import java.sql.SQLException;
21
import java.util.List;
22
23
/**
24
 * Created by TT on 2017/7/25.
25
 */
26
@Path("/feedback")
27
public class FeedbackService {
28
29
    @Autowrie
30
    private FeedbackDao feedbackDao;
31
    @Autowrie
32
    private UserDao userDao;
33
    @Autowrie
34
    private ProfessorDao professorDao;
35
    @Autowrie
36
    private PpaperDao ppaperDao;
37
    @Autowrie
38
    private PpatentDao ppatentDao;
39
    @Autowrie
40
    private OrgDao orgDao;
41
    @Autowrie
42
    private ResourceDao resourceDao;
43
    @Autowrie
44
    private ArticleDao articleDao;
45
46
47
    public FeedbackDao getFeedbackDao() {
48
        return feedbackDao;
49
    }
50
51
    public void setFeedbackDao(FeedbackDao feedbackDao) {
52
        this.feedbackDao = feedbackDao;
53
    }
54
55
    public UserDao getUserDao() {
56
        return userDao;
57
    }
58
59
    public void setUserDao(UserDao userDao) {
60
        this.userDao = userDao;
61
    }
62
63
    public ProfessorDao getProfessorDao() {
64
        return professorDao;
65
    }
66
67
    public void setProfessorDao(ProfessorDao professorDao) {
68
        this.professorDao = professorDao;
69
    }
70
71
    public PpaperDao getPpaperDao() {
72
        return ppaperDao;
73
    }
74
75
    public void setPpaperDao(PpaperDao ppaperDao) {
76
        this.ppaperDao = ppaperDao;
77
    }
78
79
    public PpatentDao getPpatentDao() {
80
        return ppatentDao;
81
    }
82
83
    public void setPpatentDao(PpatentDao ppatentDao) {
84
        this.ppatentDao = ppatentDao;
85
    }
86
87
    public OrgDao getOrgDao() {
88
        return orgDao;
89
    }
90
91
    public void setOrgDao(OrgDao orgDao) {
92
        this.orgDao = orgDao;
93
    }
94
95
    public ResourceDao getResourceDao() {
96
        return resourceDao;
97
    }
98
99
    public void setResourceDao(ResourceDao resourceDao) {
100
        this.resourceDao = resourceDao;
101
    }
102
103
    public ArticleDao getArticleDao() {
104
        return articleDao;
105
    }
106
107
    public void setArticleDao(ArticleDao articleDao) {
108
        this.articleDao = articleDao;
109
    }
110
111
    @Path("/update")
112
    @Post
113
    public void update(@JdbcConn(true) Connection con,long id,String state,@Nullable String operateDescp,@LoginUser ConsoleAuthUser user) throws SQLException {
114
        Feedback feedback = this.feedbackDao.query(con, id);
115
        feedback.setState(state);
116
        feedback.setOperateDescp(operateDescp);
117
        feedback.setOperator(user.getId());
118
        feedback.setOperateTime(DateUtil.formatDateTime(System.currentTimeMillis()));
119
        this.feedbackDao.update(con, feedback);
120
    }
121
122
    @Path("/id/{id}")
123
    @Get
124
    public Feedback query(@JdbcConn Connection con, @PathVar long id)throws SQLException {
125
        Feedback feedback = this.feedbackDao.query(con, id);
126
        if (feedback.getOperator()!=null) {
127
            feedback.setOperatorName(this.userDao.queryById(con, feedback.getOperator()).getName());
128
        }
129
        if (feedback.getUserId() != null) {
130
            Professor professor = this.professorDao.query(con, feedback.getUserId());
131
            if (professor!=null) {
132
                feedback.setUserName(professor.getName());
133
            }
134
        }
135
        if (feedback.getParam()!=null){
136
            if (feedback.getSchema() == 1) {
137
                String name = this.ppaperDao.queryById(con, feedback.getParam());
138
                if (name != null) {
139
                    feedback.setDataName(name);
140
                }
141
            }
142
            if (feedback.getSchema() == 2) {
143
                String name = this.ppatentDao.queryById(con, feedback.getParam());
144
                if (name != null) {
145
                    feedback.setDataName(name);
146
                }
147
            }
148
            if (feedback.getSchema() == 3) {
149
                String name = this.professorDao.queryById(con, feedback.getParam());
150
                if (name != null) {
151
                    feedback.setDataName(name);
152
                }
153
            }
154
            if (feedback.getSchema() == 4) {
155
                String name = this.orgDao.queryById(con, feedback.getParam());
156
                if (name != null) {
157
                    feedback.setDataName(name);
158
                }
159
            }if (feedback.getSchema() == 5) {
160
                String name = this.resourceDao.queryById(con, feedback.getParam());
161
                if (name != null) {
162
                    feedback.setDataName(name);
163
                }
164
            }
165
            if (feedback.getSchema() == 6) {
166
                String name = this.articleDao.queryById(con, feedback.getParam());
167
                if (name != null) {
168
                    feedback.setDataName(name);
169
                }
170
            }
171
        }
172
        return feedback;
173
    }
174
175
    @Path("/pq")
176
    @Get
177
    public PageQueryResult<Feedback> pageQuery(@JdbcConn Connection con,@Nullable String state, @Nullable String bt, @Nullable String et, @DefaultValue("1") int pageNo, @DefaultValue("10") int pageSize) throws SQLException {
178
        PageQueryResult<Feedback> queryResult = this.feedbackDao.query(con,state, bt == null ? null : bt + "000000", et == null ? null : et + "235959", pageSize, pageNo);
179
        List<Feedback> feedbacks = queryResult.getData();
180
        if (!feedbacks.isEmpty()) {
181
            for (Feedback feedback : feedbacks) {
182
                if (feedback.getOperator()!=null) {
183
                    feedback.setOperatorName(this.userDao.queryById(con, feedback.getOperator()).getName());
184
                }
185
                if (feedback.getUserId() != null) {
186
                    Professor professor = this.professorDao.query(con, feedback.getUserId());
187
                    if (professor!=null) {
188
                            feedback.setUserName(professor.getName());
189
                    }
190
                }
191
            }
192
            queryResult.setData(feedbacks);
193
        }
194
        return queryResult;
195
    }
196
}

+ 187 - 36
src/main/java/com/ekexiu/console/system/service/OrgService.java

@ -1,7 +1,9 @@
1 1
package com.ekexiu.console.system.service;
2 2

3 3
import com.ekexiu.console.system.dao.OrgDao;
4
import com.ekexiu.console.system.dao.OrgRecordDao;
4 5
import com.ekexiu.console.system.dao.OrgUserDao;
6
import com.ekexiu.console.system.po.OrgRecord;
5 7
import com.ekexiu.console.system.po.OrgUser;
6 8
import com.ekexiu.console.system.po.Organization;
7 9
import com.ekexiu.console.system.pojo.OrganizationInfo;
@ -9,24 +11,25 @@ import com.ekexiu.console.system.vo.ConsoleAuthUser;
9 11
import org.jfw.apt.annotation.Autowrie;
10 12
import org.jfw.apt.annotation.DefaultValue;
11 13
import org.jfw.apt.annotation.Nullable;
12
import org.jfw.apt.orm.annotation.dao.param.Like;
13 14
import org.jfw.apt.web.annotation.LoginUser;
14 15
import org.jfw.apt.web.annotation.Path;
15 16
import org.jfw.apt.web.annotation.operate.Delete;
16 17
import org.jfw.apt.web.annotation.operate.Get;
17 18
import org.jfw.apt.web.annotation.operate.Post;
18
import org.jfw.apt.web.annotation.param.FieldParam;
19 19
import org.jfw.apt.web.annotation.param.JdbcConn;
20 20
import org.jfw.apt.web.annotation.param.PathVar;
21 21
import org.jfw.apt.web.annotation.param.RequestParam;
22
import org.jfw.util.DateUtil;
22 23
import org.jfw.util.JpgUtil;
23 24
import org.jfw.util.PageQueryResult;
24 25
import org.jfw.util.StringUtil;
26
import org.jfw.util.exception.JfwBaseException;
25 27
import org.jfw.util.io.IoUtil;
26 28

27 29
import java.io.*;
28 30
import java.sql.Connection;
29 31
import java.sql.SQLException;
32
import java.util.Objects;
30 33

31 34
@Path("/sys/org")
32 35
public class OrgService extends com.ekexiu.console.service.Upload {
@ -62,6 +65,16 @@ public class OrgService extends com.ekexiu.console.service.Upload {
62 65
    private OrgDao orgDao;
63 66
    @Autowrie
64 67
    private OrgUserDao orgUserDao;
68
    @Autowrie
69
    private OrgRecordDao orgRecordDao;
70

71
    public OrgRecordDao getOrgRecordDao() {
72
        return orgRecordDao;
73
    }
74

75
    public void setOrgRecordDao(OrgRecordDao orgRecordDao) {
76
        this.orgRecordDao = orgRecordDao;
77
    }
65 78

66 79
    public File getDefaultHeadPhoto() {
67 80
        return defaultHeadPhoto;
@ -260,21 +273,7 @@ public class OrgService extends com.ekexiu.console.service.Upload {
260 273

261 274
    @Post
262 275
    @Path("/create")
263
    public String insertOrg(@JdbcConn(true) Connection con,
264
                            @RequestParam(fields = {@FieldParam(value = "email", valueClass = String.class, required = true),
265
                                    @FieldParam(value = "inviterId", valueClass = String.class, required = true),
266
                                    @FieldParam(value = "name", valueClass = String.class, required = true),
267
                                    @FieldParam(value = "forShort", valueClass = String.class, required = true),
268
                                    @FieldParam(value = "province", valueClass = String.class, required = true),
269
                                    @FieldParam(value = "city", valueClass = String.class, required = true),
270
                                    @FieldParam(value = "foundTime", valueClass = String.class, required = false),
271
                                    @FieldParam(value = "descp", valueClass = String.class, required = false),
272
                                    @FieldParam(value = "orgType", valueClass = String.class, required = false),
273
                                    @FieldParam(value = "industry", valueClass = String.class, required = false),
274
                                    @FieldParam(value = "subject", valueClass = String.class, required = false),
275
                                    @FieldParam(value = "orgSize", valueClass = String.class, required = false),
276
                                    @FieldParam(value = "qualification", valueClass = String.class, required = false),
277
                                    @FieldParam(value = "orgUrl", valueClass = String.class, required = false)}) OrganizationInfo info,@Nullable String fn)
276
    public String insertOrg(@JdbcConn(true) Connection con, OrganizationInfo info,@Nullable String fn)
278 277
            throws SQLException,IOException {
279 278
        String id = StringUtil.buildUUID();
280 279
        OrgUser orgUser = new OrgUser();
@ -292,35 +291,156 @@ public class OrgService extends com.ekexiu.console.service.Upload {
292 291
        return orgUser.getId();
293 292
    }
294 293

294
    @Path("/entryCheck")
295
    @Get
296
    public int entryCheck(@JdbcConn Connection con, String name, String email) throws SQLException, JfwBaseException {
297
        OrgUser orgUser = this.orgUserDao.entryCheck(con, email);
298
        if (orgUser != null) {
299
            return 1;//该邮箱已被注册
300
        }
301
        String orgId = this.orgDao.queryByName(con, name);
302
        if ((orgId != null) && (this.orgUserDao.query(con, orgId) != null)) {
303
            return 2;//该企业已注册科袖账号
304
        }
305
        return 3;//可以创建
306
    }
307

308
    @Path("/editCheck")
309
    @Get
310
    public int editCheck(@JdbcConn Connection con, String name, String email,String id) throws SQLException, JfwBaseException {
311
        String orgUserId = this.orgUserDao.queryByEmail(con, email);
312
        if ((orgUserId != null)&&(!Objects.equals(orgUserId, id))) {
313
            return 2;//该邮箱已被注册
314
        }
315
        String orgId = this.orgDao.queryByName(con, name);
316
        if ((orgId != null) && (!Objects.equals(orgId, id))) {
317
            return 3;//该企业名称已经注册
318
        }
319
        return 1;
320
    }
321

322
    @Post
323
    @Path("/createAccount")
324
    public void createOrg(@JdbcConn(true) Connection con, String email,String name,@LoginUser ConsoleAuthUser user) throws SQLException, IOException, JfwBaseException {
325
        String orgId = this.orgDao.queryByName(con, name);
326
        if ((orgId != null) && (this.orgUserDao.query(con, orgId) != null)) {
327
            throw new JfwBaseException(3002, "该企业已注册科袖账号");
328
        }
329
        String orgUserId = this.orgUserDao.queryByEmail(con,email);
330
        if (orgUserId!=null){
331
            throw new JfwBaseException(3003, "该邮箱已被注册");
332
        }
333
        if ((orgId !=null)&&(this.orgUserDao.query(con,orgId)==null)){
334
            OrgUser orgUser = new OrgUser();
335
            orgUser.setId(orgId);
336
            orgUser.setEmail(email);
337
            orgUser.setInviterId(user.getId());
338
            orgUser.setPasswd(DEFAULT_PW_STR);
339
            orgUser.setUserType("1");
340
            this.orgUserDao.insert(con, orgUser);
341
            OrgRecord orgRecord = new OrgRecord();
342
            orgRecord.setId(orgId);
343
            orgRecord.setCreator(user.getId());
344
            orgRecord.setCreateTime(DateUtil.formatDateTime(System.currentTimeMillis()));
345
            orgRecord.setModifyTime(DateUtil.formatDateTime(System.currentTimeMillis()));
346
            this.orgRecordDao.insert(con, orgRecord);
347
        }
348
        if ((orgId == null)&&(this.orgUserDao.queryByEmail(con,email)==null)) {
349
            String id = this.createOrganization(con, name);
350
            OrgUser orgUser = new OrgUser();
351
            orgUser.setId(id);
352
            orgUser.setEmail(email);
353
            orgUser.setInviterId(user.getId());
354
            orgUser.setPasswd(DEFAULT_PW_STR);
355
            orgUser.setUserType("1");
356
            this.orgUserDao.insert(con, orgUser);
357
            OrgRecord orgRecord = new OrgRecord();
358
            orgRecord.setId(id);
359
            orgRecord.setCreator(user.getId());
360
            orgRecord.setCreateTime(DateUtil.formatDateTime(System.currentTimeMillis()));
361
            orgRecord.setModifyTime(DateUtil.formatDateTime(System.currentTimeMillis()));
362
            this.orgRecordDao.insert(con, orgRecord);
363
        }
364

365
    }
366

367
    @Get
368
    @Path("/queryAccount/{id}")
369
    public Account queryAccount(@JdbcConn Connection con,@PathVar String id)throws SQLException {
370
        Organization organization = this.orgDao.query(con, id);
371
        OrgUser orgUser = this.orgUserDao.query(con, id);
372
        Account account = new Account();
373
        if (orgUser!=null) {
374
            account.setEmail(orgUser.getEmail());
375
        }
376
        account.setName(organization.getName());
377
        account.setId(id);
378

379
        return account;
380
    }
381

382

383

384
    @Post
385
    @Path("/updateAccount")
386
    public void updateAccount(@JdbcConn(true) Connection con, String email, String name, String id,@LoginUser ConsoleAuthUser user) throws SQLException, JfwBaseException {
387
        String orgUserId = this.orgUserDao.queryByEmail(con, email);
388
        if ((orgUserId != null)&&(!Objects.equals(orgUserId, id))) {
389
            throw new JfwBaseException(2001, "该邮箱已被注册");
390
        }
391
        String orgId = this.orgDao.queryByName(con, name);
392
        if ((orgId != null) && (!Objects.equals(orgId, id))) {
393
            throw new JfwBaseException(2002, "该企业已注册科袖账号");
394
        }
395
        this.orgUserDao.updateEmail(con, id, email);
396
        this.orgDao.updateOrgName(con, id, name);
397
        OrgRecord orgRecord = this.orgRecordDao.queryById(con, id);
398
        if (orgRecord == null){
399
            OrgRecord orgRecord1 = new OrgRecord();
400
            orgRecord1.setId(id);
401
            orgRecord1.setModifier(user.getId());
402
            orgRecord1.setModifyTime(DateUtil.formatDateTime(System.currentTimeMillis()));
403
            this.orgRecordDao.insert(con, orgRecord1);
404
        }else {
405
            this.orgRecordDao.updateModifier(con, id, user.getId(), DateUtil.formatDateTime(System.currentTimeMillis()));
406
        }
407
    }
408

409

410

295 411
    @Post
296 412
    @Path("/update")
297
    public void update(@JdbcConn(true) Connection con, Organization orgn,@Nullable String fn) throws SQLException, IOException {
298
        if(fn != null){
413
    public void update(@JdbcConn(true) Connection con, Organization orgn, @Nullable String fn,@LoginUser ConsoleAuthUser user) throws SQLException, IOException {
414
        if (fn != null) {
299 415
            this.saveOrgLogo(orgn.getId(), fn);
300 416
        }
301 417
        this.orgDao.update(con, orgn);
418
        OrgRecord orgRecord = this.orgRecordDao.queryById(con, orgn.getId());
419
        if (orgRecord == null){
420
            OrgRecord orgRecord1 = new OrgRecord();
421
            orgRecord1.setId(orgn.getId());
422
            orgRecord1.setModifier(user.getId());
423
            orgRecord1.setModifyTime(DateUtil.formatDateTime(System.currentTimeMillis()));
424
            this.orgRecordDao.insert(con, orgRecord1);
425
        }else {
426
            this.orgRecordDao.updateModifier(con, orgn.getId(), user.getId(),DateUtil.formatDateTime(System.currentTimeMillis()));
427
        }
428
    }
429

430
    @Post
431
    @Path("/updateBusinessData")
432
    public void updateBusinessData(@JdbcConn(true) Connection con,String id,@Nullable String authStatus,@Nullable Long sortNum)throws SQLException{
433
        this.orgDao.updateBusinessData(con, id, authStatus, sortNum);
302 434
    }
303 435

304 436
    @Get
305 437
    @Path("/pq")
306
    public PageQueryResult<OrganizationInfo> pageQuery(@JdbcConn Connection con, @LoginUser ConsoleAuthUser cau, @Nullable @Like String name, @Nullable @Like String industry, @Nullable @Like String subject, @Nullable @Like String city, @DefaultValue("1") int pageNo, @DefaultValue("10") int pageSize) throws SQLException {
307
        String cName = null;
308
        if (name != null) {
309
            cName = "%" + name + "%";
310
        }
311
        String cIndustry = null;
312
        if (industry != null) {
313
            cIndustry = "%" + industry + "%";
314
        }
315
        String cSubject = null;
316
        if (subject != null) {
317
            cSubject = "%" + subject + "%";
318
        }
319
        String cCity = null;
320
        if (city != null) {
321
            cCity = "%" + city + "%";
438
    public PageQueryResult<OrganizationInfo> pageQuery(@JdbcConn Connection con, @Nullable String name, @Nullable String industry, @Nullable String subject, @Nullable String city,@Nullable String authStatus,int orderBy, @Nullable String bt, @Nullable String et,  @DefaultValue("1") int pageNo, @DefaultValue("10") int pageSize) throws SQLException {
439
        if (orderBy == 1) {
440
            return this.orgDao.queryTime(con, name == null ? null : "%" + name + "%", industry == null ? null : "%" + industry + "%", subject == null ? null : "%" + subject + "%", city == null ? null : "%" + city + "%", authStatus, bt == null ? null : bt + "000000", et == null ? null : et + "235959", pageSize, pageNo);
441
        }else{
442
            return this.orgDao.queryViews(con, name == null ? null : "%" + name + "%", industry == null ? null : "%" + industry + "%", subject == null ? null : "%" + subject + "%", city == null ? null : "%" + city + "%", authStatus, bt == null ? null : bt + "000000", et == null ? null : et + "235959", pageSize, pageNo);
322 443
        }
323
        return this.orgDao.query(con,cau.getId(), cName, cIndustry, cSubject, cCity, pageSize, pageNo);
324 444
    }
325 445

326 446
    @Get
@ -369,5 +489,36 @@ public class OrgService extends com.ekexiu.console.service.Upload {
369 489
        return id;
370 490
    }
371 491

492
    public static class Account{
493
        private String id;
494
        private String email;
495
        private String name;
496

497
        public String getId() {
498
            return id;
499
        }
500

501
        public void setId(String id) {
502
            this.id = id;
503
        }
504

505
        public String getEmail() {
506
            return email;
507
        }
508

509
        public void setEmail(String email) {
510
            this.email = email;
511
        }
512

513
        public String getName() {
514
            return name;
515
        }
516

517
        public void setName(String name) {
518
            this.name = name;
519
        }
520

521
    }
522

372 523

373 524
}

+ 6 - 0
src/main/java/com/ekexiu/console/system/service/ProfessorService.java

@ -141,4 +141,10 @@ public class ProfessorService {
141 141
        this.professorDao.updateAuthType(con, ids, authType);
142 142
        this.professorDao.updateAuthStatusExpert(con, ids, authStatusExpert);
143 143
    }
144
145
    @Get
146
    @Path("/getName/{id}")
147
    public String getName(@JdbcConn Connection con,@PathVar String id) throws SQLException {
148
        return this.professorDao.queryById(con, id);
149
    }
144 150
}

+ 18 - 2
src/main/java/com/ekexiu/console/system/service/UserInfoService.java

@ -170,8 +170,8 @@ public class UserInfoService {
170 170
171 171
    @Path("/pqAll")
172 172
    @Get
173
    PageQueryResult<UserInfo> pageQueryAll(@JdbcConn Connection con,@Nullable String creatorName, @Nullable String name, @Nullable String orgName, @Nullable String state, @Nullable String bt, @Nullable String et, @DefaultValue("1") int pageNo, @DefaultValue("10") int pageSize) throws SQLException {
174
        return this.userInfoDao.queryAll(con, creatorName == null ? null : "%" + creatorName + "%", name == null ? null : "%" + name + "%", orgName == null ? null : "%" + orgName + "%", state, bt == null ? null : bt + "000000", et == null ? null : et + "235959", pageSize, pageNo);
173
    PageQueryResult<UserInfo> pageQueryAll(@JdbcConn Connection con, @Nullable String creatorName, @Nullable Stringname, @Nullable String orgName, @Nullable String state, @Nullable String bt, @Nullable String et, @DefaultValue("1") int pageNo, @DefaultValue("10") int pageSize) throws SQLException {
174
        return this.userInfoDao.queryAll(con, creatorName == null ? null : "%" + creatorName + "%",name == null ? null : "%" + name + "%", orgName == null ? null : "%" + orgName + "%", state, bt == null ? null : bt + "000000", et == null ? null : et + "235959", pageSize, pageNo);
175 175
    }
176 176
177 177
    @Path("/entryCheck")
@ -184,6 +184,22 @@ public class UserInfoService {
184 184
        return userInfo1 == null && userInfo2 == null && luser1 == null && luser2 == null;
185 185
    }
186 186
187
    @Path("/editCheck")
188
    @Get
189
    public Boolean editCheck(@JdbcConn Connection con, @Nullable String mobile, @Nullable String email,String id) throws SQLException {
190
        String orgId = this.userInfoDao.queryByKey(con, mobile);
191
        if ((orgId != null) && (!Objects.equals(orgId, id))){
192
            return false;
193
        }
194
        String orgId1 = this.userInfoDao.queryByKey(con, email);
195
        if ((orgId1 != null) && (!Objects.equals(orgId, id))){
196
            return false;
197
        }
198
        Luser luser1 = this.luserDao.check(con, mobile);
199
        Luser luser2 = this.luserDao.check(con, email);
200
        return luser1 == null && luser2 == null;
201
    }
202
187 203
    @Path("/reviewCheck")
188 204
    @Get
189 205
    public Boolean reviewCheck(@JdbcConn Connection con, @Nullable String mobile, @Nullable String email) throws SQLException {

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

@ -26,4 +26,28 @@ COMMENT ON COLUMN public.user_info.email IS '注册邮箱';
26 26
-- ----------------------------
27 27
-- Uniques structure for table user_info
28 28
-- ----------------------------
29
ALTER TABLE USER_INFO ADD PRIMARY KEY (ID);
29
ALTER TABLE USER_INFO ADD PRIMARY KEY (ID);
30
31
-- ----------------------------
32
-- Table structure for org_record
33
-- ----------------------------
34
CREATE TABLE public.org_record (
35
  id CHARACTER(32) PRIMARY KEY NOT NULL,
36
  creator CHARACTER(32), -- 创建人ID
37
  modifier CHARACTER(32), -- 修改人
38
  create_time CHARACTER(14), -- 创建时间
39
  modify_time CHARACTER(14) -- 修改时间
40
);
41
COMMENT ON COLUMN public.org_record.creator IS '创建人ID';
42
COMMENT ON COLUMN public.org_record.modifier IS '修改人ID';
43
COMMENT ON COLUMN public.org_record.create_time IS '创建时间';
44
COMMENT ON COLUMN public.org_record.modify_time IS '修改时间';
45
46
47
48
ALTER TABLE feedback ADD COLUMN operator  CHAR(32);
49
COMMENT ON COLUMN feedback.operator IS '处理人ID';
50
ALTER TABLE feedback ADD COLUMN operate_time  TEXT;
51
COMMENT ON COLUMN feedback.operate_time IS '处理时间';
52
ALTER TABLE feedback ADD COLUMN operate_descp TEXT;
53
COMMENT ON COLUMN feedback.operate_descp IS '处理备注';