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

产品1.9版本对应的运营系统

XMTT лет назад: 7
Родитель
Сommit
ad472c9eeb
29 измененных файлов с 1918 добавлено и 32 удалено
  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. 12 3
      src/main/java/com/ekexiu/console/system/dao/OrgDao.java
  5. 35 0
      src/main/java/com/ekexiu/console/system/dao/OrgRecordDao.java
  6. 8 0
      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. 8 0
      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. 132 0
      src/main/java/com/ekexiu/console/system/po/Ppaper.java
  18. 166 0
      src/main/java/com/ekexiu/console/system/po/Ppatent.java
  19. 250 0
      src/main/java/com/ekexiu/console/system/po/Resource.java
  20. 65 0
      src/main/java/com/ekexiu/console/system/po/Watch.java
  21. 23 0
      src/main/java/com/ekexiu/console/system/pojo/ArticleInfo.java
  22. 13 10
      src/main/java/com/ekexiu/console/system/pojo/OrganizationInfo.java
  23. 23 0
      src/main/java/com/ekexiu/console/system/pojo/ResourceInfo.java
  24. 129 0
      src/main/java/com/ekexiu/console/system/service/ContentService.java
  25. 196 0
      src/main/java/com/ekexiu/console/system/service/FeedbackService.java
  26. 112 18
      src/main/java/com/ekexiu/console/system/service/OrgService.java
  27. 6 0
      src/main/java/com/ekexiu/console/system/service/ProfessorService.java
  28. 16 0
      src/main/java/com/ekexiu/console/system/service/UserInfoService.java
  29. 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
}

+ 12 - 3
src/main/java/com/ekexiu/console/system/dao/OrgDao.java

@ -35,7 +35,7 @@ public interface OrgDao {
35 35

36 36
	@Nullable
37 37
	@QueryOne
38
	Organization query(Connection con, String id) throws SQLException;
38
	OrganizationInfo query(Connection con, String id) throws SQLException;
39 39

40 40
	@UpdateWith
41 41
	@From(Organization.class)
@ -46,11 +46,11 @@ public interface OrgDao {
46 46
	int updateAuthStatus(Connection con,String id,@Set String authStatus)throws SQLException;
47 47

48 48
	@PageQuery
49
	@OrderBy(" ORDER BY create_time DESC")
49
	@OrderBy(" ORDER BY create_time DESC NULLS LAST")
50 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 51

52 52
	@PageQuery
53
	@OrderBy(" ORDER BY page_views DESC")
53
	@OrderBy(" ORDER BY page_views DESC NULLS LAST")
54 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;
55 55

56 56
	@Nullable
@ -63,4 +63,13 @@ public interface OrgDao {
63 63
	@SelectOne
64 64
	Organization entryCheck(Connection con, @Nullable String name) throws SQLException;
65 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;
66 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
}

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

@ -2,10 +2,12 @@ package com.ekexiu.console.system.dao;
2 2
3 3
import com.ekexiu.console.system.po.OrgUser;
4 4
import org.jfw.apt.annotation.Nullable;
5
import org.jfw.apt.orm.annotation.dao.Column;
5 6
import org.jfw.apt.orm.annotation.dao.DAO;
6 7
import org.jfw.apt.orm.annotation.dao.method.From;
7 8
import org.jfw.apt.orm.annotation.dao.method.operator.*;
8 9
import org.jfw.apt.orm.annotation.dao.param.Set;
10
import org.jfw.apt.orm.core.defaultImpl.StringHandler;
9 11
10 12
import java.sql.Connection;
11 13
import java.sql.SQLException;
@ -23,6 +25,12 @@ public interface OrgUserDao {
23 25
    @QueryOne
24 26
    OrgUser query(Connection con, String id) throws SQLException;
25 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
26 34
    @Update
27 35
    int update(Connection con, OrgUser org) throws SQLException;
28 36

+ 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
}

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

@ -2,6 +2,7 @@ package com.ekexiu.console.system.dao;
2 2
3 3
import com.ekexiu.console.system.po.UserInfo;
4 4
import org.jfw.apt.annotation.Nullable;
5
import org.jfw.apt.orm.annotation.dao.Column;
5 6
import org.jfw.apt.orm.annotation.dao.DAO;
6 7
import org.jfw.apt.orm.annotation.dao.method.From;
7 8
import org.jfw.apt.orm.annotation.dao.method.Or;
@ -12,6 +13,7 @@ import org.jfw.apt.orm.annotation.dao.param.Alias;
12 13
import org.jfw.apt.orm.annotation.dao.param.GtEq;
13 14
import org.jfw.apt.orm.annotation.dao.param.Like;
14 15
import org.jfw.apt.orm.annotation.dao.param.LtEq;
16
import org.jfw.apt.orm.core.defaultImpl.StringHandler;
15 17
import org.jfw.util.PageQueryResult;
16 18
17 19
import java.sql.Connection;
@ -51,4 +53,10 @@ public interface UserInfoDao {
51 53
    @SelectOne
52 54
    UserInfo entryCheck(Connection con, @Alias({ "mobile", "email" }) String key) throws SQLException;
53 55
56
    @Nullable
57
    @QueryVal
58
    @Column(handlerClass=StringHandler.class,value="id")
59
    @From(UserInfo.class)
60
    String queryByKey(Connection con,@Alias({ "mobile", "email" }) String key)throws SQLException;
61
54 62
}

+ 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
}

+ 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
}

+ 13 - 10
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 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;
@ -27,6 +37,7 @@ public class OrganizationInfo extends Organization {
27 37
    public String getRegisterEmail() {
28 38
        return registerEmail;
29 39
    }
40
30 41
    public void setRegisterEmail(String registerEmail) {
31 42
        this.registerEmail = registerEmail;
32 43
    }
@ -40,12 +51,4 @@ public class OrganizationInfo extends Organization {
40 51
        this.inviterId = inviterId;
41 52
    }
42 53
43
    @CalcColumn(handlerClass = StringHandler.class, column = "c.name")
44
    public String getPrincipal() {
45
        return principal;
46
    }
47
48
    public void setPrincipal(String principal) {
49
        this.principal = principal;
50
    }
51 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
}

+ 112 - 18
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,7 +11,6 @@ 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;
@ -18,6 +19,7 @@ import org.jfw.apt.web.annotation.operate.Post;
18 19
import org.jfw.apt.web.annotation.param.JdbcConn;
19 20
import org.jfw.apt.web.annotation.param.PathVar;
20 21
import org.jfw.apt.web.annotation.param.RequestParam;
22
import org.jfw.util.DateUtil;
21 23
import org.jfw.util.JpgUtil;
22 24
import org.jfw.util.PageQueryResult;
23 25
import org.jfw.util.StringUtil;
@ -27,6 +29,7 @@ import org.jfw.util.io.IoUtil;
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;
@ -280,15 +293,30 @@ public class OrgService extends com.ekexiu.console.service.Upload {
280 293

281 294
    @Path("/entryCheck")
282 295
    @Get
283
    public void entryCheck(@JdbcConn Connection con, String name, String email) throws SQLException, JfwBaseException {
296
    public int entryCheck(@JdbcConn Connection con, String name, String email) throws SQLException, JfwBaseException {
284 297
        OrgUser orgUser = this.orgUserDao.entryCheck(con, email);
285 298
        if (orgUser != null) {
286
            throw new JfwBaseException(1, "该邮箱已被注册");
299
            return 1;//该邮箱已被注册
287 300
        }
288 301
        String orgId = this.orgDao.queryByName(con, name);
289 302
        if ((orgId != null) && (this.orgUserDao.query(con, orgId) != null)) {
290
            throw new JfwBaseException(2, "该企业已注册科袖账号");
303
            return 2;//该企业已注册科袖账号
291 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;
292 320
    }
293 321

294 322
    @Post
@ -296,16 +324,44 @@ public class OrgService extends com.ekexiu.console.service.Upload {
296 324
    public void createOrg(@JdbcConn(true) Connection con, String email,String name,@LoginUser ConsoleAuthUser user) throws SQLException, IOException, JfwBaseException {
297 325
        String orgId = this.orgDao.queryByName(con, name);
298 326
        if ((orgId != null) && (this.orgUserDao.query(con, orgId) != null)) {
299
            throw new JfwBaseException(2, "该企业已注册科袖账号");
327
            throw new JfwBaseException(3002, "该企业已注册科袖账号");
300 328
        }
301
        String id = this.createOrganization(con, name);
302
        OrgUser orgUser = new OrgUser();
303
        orgUser.setId(id);
304
        orgUser.setEmail(email);
305
        orgUser.setInviterId(user.getId());
306
        orgUser.setPasswd(DEFAULT_PW_STR);
307
        orgUser.setUserType("1");
308
        this.orgUserDao.insert(con, orgUser);
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

309 365
    }
310 366

311 367
    @Get
@ -327,25 +383,59 @@ public class OrgService extends com.ekexiu.console.service.Upload {
327 383

328 384
    @Post
329 385
    @Path("/updateAccount")
330
    public void updateAccount(@JdbcConn(true) Connection con, String email, String name, String id) throws SQLException {
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
        }
331 395
        this.orgUserDao.updateEmail(con, id, email);
332 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
        }
333 407
    }
334 408

335 409

336 410

337 411
    @Post
338 412
    @Path("/update")
339
    public void update(@JdbcConn(true) Connection con, Organization orgn, @Nullable String fn) throws SQLException, IOException {
413
    public void update(@JdbcConn(true) Connection con, Organization orgn, @Nullable String fn,@LoginUser ConsoleAuthUser user) throws SQLException, IOException {
340 414
        if (fn != null) {
341 415
            this.saveOrgLogo(orgn.getId(), fn);
342 416
        }
343 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);
344 434
    }
345 435

346 436
    @Get
347 437
    @Path("/pq")
348
    public PageQueryResult<OrganizationInfo> pageQuery(@JdbcConn Connection con, @Nullable @Like String name, @Nullable @Like String industry, @Nullable @Like String subject, @Nullable @Like String city,@Nullable String authStatus,int orderBy, @Nullable String bt, @Nullable String et,  @DefaultValue("1") int pageNo, @DefaultValue("10") int pageSize) throws SQLException {
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 {
349 439
        if (orderBy == 1) {
350 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);
351 441
        }else{
@ -355,8 +445,12 @@ public class OrgService extends com.ekexiu.console.service.Upload {
355 445

356 446
    @Get
357 447
    @Path("/id/{id}")
358
    public Organization query(@JdbcConn Connection con, @PathVar String id) throws SQLException {
359
        return this.orgDao.query(con, id);
448
    public OrganizationInfo query(@JdbcConn Connection con, @PathVar String id) throws SQLException {
449
        OrganizationInfo organizationInfo = this.orgDao.query(con, id);
450
        if (organizationInfo != null) {
451
            organizationInfo.setHasOrgLogo(this.hasOrgLogo(organizationInfo.getId()));
452
        }
453
        return organizationInfo;
360 454
    }
361 455

362 456
    @Delete

+ 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
}

+ 16 - 0
src/main/java/com/ekexiu/console/system/service/UserInfoService.java

@ -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 '处理备注';