XMTT преди 5 години
родител
ревизия
a23c6bd326

+ 8 - 9
src/main/java/com/ekexiu/portal/job/HotKeyJobEntry.java

@ -1,5 +1,12 @@
1 1
package com.ekexiu.portal.job;
2 2

3
import com.ekexiu.portal.pojo.DataDictCode;
4
import com.ekexiu.portal.service.DataDictService;
5
import org.jfw.apt.annotation.Autowrie;
6
import org.jfw.apt.annotation.Bean;
7
import org.jfw.util.jdbc.JdbcUtil;
8

9
import javax.sql.DataSource;
3 10
import java.sql.Connection;
4 11
import java.sql.ResultSet;
5 12
import java.sql.SQLException;
@ -10,15 +17,6 @@ import java.util.Comparator;
10 17
import java.util.HashMap;
11 18
import java.util.Map;
12 19

13
import javax.sql.DataSource;
14

15
import org.jfw.apt.annotation.Autowrie;
16
import org.jfw.apt.annotation.Bean;
17
import org.jfw.util.jdbc.JdbcUtil;
18

19
import com.ekexiu.portal.pojo.DataDictCode;
20
import com.ekexiu.portal.service.DataDictService;
21

22 20
@Bean
23 21
public class HotKeyJobEntry extends DictTaskJobEntry implements Runnable {
24 22
	private String taskTime = "2:00:00";
@ -101,6 +99,7 @@ public class HotKeyJobEntry extends DictTaskJobEntry implements Runnable {
101 99
				addEntrys(con, "SELECT KW FROM RES_KEY_WORD", tmpMap);
102 100
				addEntrys(con, "SELECT KW FROM PAP_KEY_WORD", tmpMap);
103 101
				addEntrys(con, "SELECT KW FROM PAT_KEY_WORD", tmpMap);
102
				addEntrys(con, "SELECT KW FROM TEAM_KEY_WORD", tmpMap);
104 103
				ArrayList<DataDictCode> list = new ArrayList<DataDictCode>(tmpMap.size());
105 104
				list.addAll(tmpMap.values());
106 105
				Collections.sort(list, new Comparator<DataDictCode>() {

+ 12 - 0
src/main/java/com/ekexiu/portal/resResult/ResearchResult.java

@ -0,0 +1,12 @@
1
package com.ekexiu.portal.resResult;
2
3
/**
4
 * Created by TT on 2019/7/8.
5
 */
6
//@Table(descp = "非专利成果表")
7
//@PrimaryKey("id")
8
//public class ResearchResult {
9
//
10
//
11
//
12
//}

+ 26 - 1
src/main/java/com/ekexiu/portal/service/KeyWordService.java

@ -14,6 +14,8 @@ import com.ekexiu.portal.po.ProKeyWord;
14 14
import com.ekexiu.portal.po.ResKeyWord;
15 15
import com.ekexiu.portal.product.ProductKeyWord;
16 16
import com.ekexiu.portal.product.ProductKeyWordDao;
17
import com.ekexiu.portal.team.TeamKeyWord;
18
import com.ekexiu.portal.team.TeamKeyWordDao;
17 19
import com.ekexiu.portal.ware.WreKeyWord;
18 20
import com.ekexiu.portal.ware.WreKeyWordDao;
19 21
import org.jfw.apt.annotation.Autowrie;
@ -42,7 +44,8 @@ public class KeyWordService {
42 44
	private WreKeyWordDao wreKeyWordDao;
43 45
	@Autowrie
44 46
	private ProductKeyWordDao productKeyWordDao;
45
	
47
	@Autowrie
48
	private TeamKeyWordDao teamKeyWordDao;
46 49
	
47 50

48 51
	public WreKeyWordDao getWreKeyWordDao() {
@ -109,6 +112,14 @@ public class KeyWordService {
109 112
		this.productKeyWordDao = productKeyWordDao;
110 113
	}
111 114

115
	public TeamKeyWordDao getTeamKeyWordDao() {
116
		return teamKeyWordDao;
117
	}
118

119
	public void setTeamKeyWordDao(TeamKeyWordDao teamKeyWordDao) {
120
		this.teamKeyWordDao = teamKeyWordDao;
121
	}
122

112 123
	public void refreshWrae(Connection con, String id, String[] kws)throws SQLException{
113 124
		wreKeyWordDao.delete(con, id);
114 125
		if (kws != null && kws.length > 0) {
@ -227,6 +238,20 @@ public class KeyWordService {
227 238
		productKeyWordDao.delete(con, id);
228 239
	}
229 240

241
	public void refreshTeam(Connection con,String id,String[] kws)throws SQLException {
242
		teamKeyWordDao.delete(con, id);
243
		if (kws != null && kws.length > 0) {
244
			TeamKeyWord[] teamKeyWords = new TeamKeyWord[kws.length];
245
			for (int i = 0;i<kws.length;++i) {
246
				TeamKeyWord teamKeyWord = new TeamKeyWord();
247
				teamKeyWord.setId(id);
248
				teamKeyWord.setKw(kws[i]);
249
				teamKeyWords[i] = teamKeyWord;
250
			}
251
			teamKeyWordDao.insert(con, teamKeyWords);
252
		}
253
	}
254

230 255
	public static String[] splitKeyWord(String kws) {
231 256
		if (kws == null || kws.trim().length() == 0)
232 257
			return null;

+ 160 - 0
src/main/java/com/ekexiu/portal/team/Team.java

@ -0,0 +1,160 @@
1
package com.ekexiu.portal.team;
2
3
import com.ekexiu.portal.basepo.CreateTimeSupported;
4
import com.ekexiu.portal.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.enums.DE;
9
10
/**
11
 * Created by TT on 2019/7/8.
12
 */
13
@Table(descp = "团队表")
14
@PrimaryKey("id")
15
public class Team implements CreateTimeSupported, ModifyTimeSupported {
16
    private String id;
17
    private String name;
18
    private String orgName;
19
    private String province;
20
    private String city;
21
    private String secretary;
22
    private String chief;
23
    private String subject;//学术领域
24
    private String industry;//行业领域
25
    private String descp;
26
    private String status;
27
    private String certify;
28
29
30
    private String createTime;
31
    private String modifyTime;
32
33
    @Column(DE.id_32)
34
    public String getId() {
35
        return id;
36
    }
37
38
    public void setId(String id) {
39
        this.id = id;
40
    }
41
42
    @Column(descp = "团队名称",value = DE.text_de)
43
    public String getName() {
44
        return name;
45
    }
46
47
    public void setName(String name) {
48
        this.name = name;
49
    }
50
51
    @Column(descp = "所属企业名称",value = DE.text_de)
52
    public String getOrgName() {
53
        return orgName;
54
    }
55
56
    public void setOrgName(String orgName) {
57
        this.orgName = orgName;
58
    }
59
60
    @Column(descp = "所在省份",value = DE.text_de)
61
    public String getProvince() {
62
        return province;
63
    }
64
65
    public void setProvince(String province) {
66
        this.province = province;
67
    }
68
69
    @Column(descp = "所在城市",value = DE.text_de)
70
    public String getCity() {
71
        return city;
72
    }
73
74
    public void setCity(String city) {
75
        this.city = city;
76
    }
77
78
    @Column(descp = "团队秘书",value = DE.refid_32)
79
    public String getSecretary() {
80
        return secretary;
81
    }
82
83
    public void setSecretary(String secretary) {
84
        this.secretary = secretary;
85
    }
86
87
    @Column(descp = "团队首席专家",value = DE.REFID_32)
88
    public String getChief() {
89
        return chief;
90
    }
91
92
    public void setChief(String chief) {
93
        this.chief = chief;
94
    }
95
96
    @Column(descp = "学术领域",value = DE.Text_de)
97
    public String getSubject() {
98
        return subject;
99
    }
100
101
    public void setSubject(String subject) {
102
        this.subject = subject;
103
    }
104
105
    @Column(descp = "行业领域",value = DE.Text_de)
106
    public String getIndustry() {
107
        return industry;
108
    }
109
110
    public void setIndustry(String industry) {
111
        this.industry = industry;
112
    }
113
114
    @Column(descp = "团队简介",value = DE.Text_de)
115
    public String getDescp() {
116
        return descp;
117
    }
118
119
    public void setDescp(String descp) {
120
        this.descp = descp;
121
    }
122
123
    @Column(descp = "团队状态  0:已删除 1待审核 2审核失败 3审核通过",value = DE.SingleChar)
124
    public String getStatus() {
125
        return status;
126
    }
127
128
    public void setStatus(String status) {
129
        this.status = status;
130
    }
131
132
    @Column(descp = "团队材料",value = DE.Text_de)
133
    public String getCertify() {
134
        return certify;
135
    }
136
137
    public void setCertify(String certify) {
138
        this.certify = certify;
139
    }
140
141
    @Override
142
    public String getCreateTime() {
143
        return createTime;
144
    }
145
146
    @Override
147
    public void setCreateTime(String createTime) {
148
        this.createTime = createTime;
149
    }
150
151
    @Override
152
    public String getModifyTime() {
153
        return modifyTime;
154
    }
155
156
    @Override
157
    public void setModifyTime(String modifyTime) {
158
        this.modifyTime = modifyTime;
159
    }
160
}

+ 147 - 0
src/main/java/com/ekexiu/portal/team/TeamDao.java

@ -0,0 +1,147 @@
1
package com.ekexiu.portal.team;
2
3
import org.jfw.apt.annotation.DefaultValue;
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.SetSentence;
10
import org.jfw.apt.orm.annotation.dao.method.Where;
11
import org.jfw.apt.orm.annotation.dao.method.operator.DeleteWith;
12
import org.jfw.apt.orm.annotation.dao.method.operator.Insert;
13
import org.jfw.apt.orm.annotation.dao.method.operator.PageQuery;
14
import org.jfw.apt.orm.annotation.dao.method.operator.PageSelect;
15
import org.jfw.apt.orm.annotation.dao.method.operator.QueryVal;
16
import org.jfw.apt.orm.annotation.dao.method.operator.SelectOne;
17
import org.jfw.apt.orm.annotation.dao.method.operator.Update;
18
import org.jfw.apt.orm.annotation.dao.method.operator.UpdateWith;
19
import org.jfw.apt.orm.annotation.dao.param.Like;
20
import org.jfw.apt.orm.annotation.dao.param.Set;
21
import org.jfw.apt.orm.annotation.dao.param.SqlColumn;
22
import org.jfw.apt.orm.core.defaultImpl.LongHandler;
23
import org.jfw.apt.orm.core.defaultImpl.StringHandler;
24
import org.jfw.util.PageQueryResult;
25
26
import java.sql.Connection;
27
import java.sql.SQLException;
28
29
/**
30
 * Created by TT on 2019/7/8.
31
 */
32
@DAO
33
public interface TeamDao {
34
35
    @Insert
36
    int insert(Connection con, Team team) throws SQLException;
37
38
    @Update
39
    int update(Connection con, Team team) throws SQLException;
40
41
    @UpdateWith
42
    @From(Team.class)
43
    @Where("STATUS <>'0'")
44
    @SetSentence("STATUS='0'")
45
    int delete(Connection con, String id) throws SQLException;
46
47
    @UpdateWith
48
    @From(Team.class)
49
    @Where("STATUS <> '0'")
50
    int updateStatus(Connection con, @Set String status, String id) throws SQLException;
51
52
    @UpdateWith
53
    @From(Team.class)
54
    int updateChief(Connection con, @Set String chief, String id) throws SQLException;
55
56
    @UpdateWith
57
    @From(Team.class)
58
    int updateSecretary(Connection con, @Set String secretary, String id) throws SQLException;
59
60
61
    @SelectOne
62
    @Nullable
63
    Team query(Connection con, String id) throws SQLException;
64
65
    @PageSelect
66
    @OrderBy("ORDER BY CREATE_TIME DESC")
67
    PageQueryResult<Team> pageQuery(Connection con, String status, @Nullable @SqlColumn(handlerClass = StringHandler.class, value = {"name like ?", "orgName like ?", "subject like ?", "industry like ?"}) String key, @Nullable @Like String subject, @Nullable @Like String industry, @Nullable String city, int pageSize, int pageNo) throws SQLException;
68
69
    @PageQuery
70
    @OrderBy("ORDER BY SECRETARY DESC NULLS LAST, CREATE_TIME DESC")
71
    PageQueryResult<Team> pageQuery(Connection con, String status, @SqlColumn(handlerClass = StringHandler.class, value = "id in (select id from team_pro where professor = ?)") String professor, int pageSize, int pageNo) throws SQLException;
72
73
    @Insert
74
    int insert(Connection con, TeamPro teamPro) throws SQLException;
75
76
    @PageSelect
77
    @OrderBy("order by id")
78
    PageQueryResult<TeamPro> queryPro(Connection con, String id, int pageSize, int pageNo) throws SQLException;
79
80
    @DeleteWith
81
    @From(TeamPro.class)
82
    int deletePro(Connection con, String id,String professor) throws SQLException;
83
84
    @Insert
85
    int insert(Connection con, TeamPatent teamPatent) throws SQLException;
86
87
    @UpdateWith
88
    @From(TeamPro.class)
89
    @Where("secretary ='1'")
90
    @SetSentence("secretary='0'")
91
    int update(Connection con, String id) throws SQLException;
92
93
    @UpdateWith
94
    @From(TeamPro.class)
95
    @Where("secretary = '0'")
96
    @SetSentence("secretary='1'")
97
    int update(Connection con, String id,String professor) throws SQLException;
98
99
    @UpdateWith
100
    @From(TeamPro.class)
101
    @Where("chief ='1'")
102
    @SetSentence("chief='0'")
103
    int updateCh(Connection con, String id) throws SQLException;
104
105
    @UpdateWith
106
    @From(TeamPro.class)
107
    @Where("chief = '0'")
108
    @SetSentence("chief='1'")
109
    int updateCh(Connection con, String id,String professor) throws SQLException;
110
111
    @PageSelect
112
    @OrderBy("order by patent")
113
    PageQueryResult<TeamPatent> queryPatent(Connection con, String id, int pageSize, int pageNo) throws SQLException;
114
115
    @DeleteWith
116
    @From(TeamPatent.class)
117
    int deletePatent(Connection con, String id,String patent) throws SQLException;
118
119
    @Insert
120
    int insert(Connection con, TeamResResult teamResResult) throws SQLException;
121
122
    @PageSelect
123
    @OrderBy("order by id")
124
    PageQueryResult<TeamResResult> queryResResult(Connection con, String id, int pageSize, int pageNo) throws SQLException;
125
126
    @DeleteWith
127
    @From(TeamResResult.class)
128
    int deleteResResult(Connection con, String id, String researchResult) throws SQLException;
129
130
    @Insert
131
    int insert(Connection con, TeamPaper teamPaper) throws SQLException;
132
133
    @PageSelect
134
    @OrderBy("order by id")
135
    PageQueryResult<TeamPaper> queryPaper(Connection con, String id, int pageSize, int pageNo) throws SQLException;
136
137
    @DeleteWith
138
    @From(TeamPaper.class)
139
    int deletePaper(Connection con, String id, String paper) throws SQLException;
140
141
    @DefaultValue("0")
142
    @QueryVal
143
    @Column(value = "COUNT(1)", handlerClass = LongHandler.class)
144
    @From(TeamPro.class)
145
    @Where("status='3'")
146
    long countPro(Connection con, String id) throws SQLException;
147
}

+ 32 - 0
src/main/java/com/ekexiu/portal/team/TeamKeyWord.java

@ -0,0 +1,32 @@
1
package com.ekexiu.portal.team;
2
3
import org.jfw.apt.orm.annotation.entry.Column;
4
import org.jfw.apt.orm.annotation.entry.Table;
5
import org.jfw.apt.orm.core.enums.DE;
6
7
/**
8
 * Created by TT on 2019/7/10.
9
 */
10
@Table
11
public class TeamKeyWord {
12
    private String id;
13
    private String kw;
14
15
    @Column(DE.id_32)
16
    public String getId() {
17
        return id;
18
    }
19
20
    public void setId(String id) {
21
        this.id = id;
22
    }
23
24
    @Column(DE.text_de)
25
    public String getKw() {
26
        return kw;
27
    }
28
29
    public void setKw(String kw) {
30
        this.kw = kw;
31
    }
32
}

+ 25 - 0
src/main/java/com/ekexiu/portal/team/TeamKeyWordDao.java

@ -0,0 +1,25 @@
1
package com.ekexiu.portal.team;
2
3
import org.jfw.apt.orm.annotation.dao.Batch;
4
import org.jfw.apt.orm.annotation.dao.DAO;
5
import org.jfw.apt.orm.annotation.dao.method.From;
6
import org.jfw.apt.orm.annotation.dao.method.operator.DeleteWith;
7
import org.jfw.apt.orm.annotation.dao.method.operator.Insert;
8
9
import java.sql.Connection;
10
import java.sql.SQLException;
11
12
/**
13
 * Created by TT on 2019/7/10.
14
 */
15
@DAO
16
public interface TeamKeyWordDao {
17
18
    @Insert
19
    @Batch
20
    int[] insert(Connection con, TeamKeyWord[] pkw)throws SQLException;
21
22
    @DeleteWith
23
    @From(TeamKeyWord.class)
24
    int delete(Connection con,String id)throws SQLException;
25
}

+ 32 - 0
src/main/java/com/ekexiu/portal/team/TeamPaper.java

@ -0,0 +1,32 @@
1
package com.ekexiu.portal.team;
2
3
import org.jfw.apt.orm.annotation.entry.Column;
4
import org.jfw.apt.orm.annotation.entry.Table;
5
import org.jfw.apt.orm.core.enums.DE;
6
7
/**
8
 * Created by TT on 2019/7/10.
9
 */
10
@Table(descp = "团队专利论文表")
11
public class TeamPaper {
12
    private String id;
13
    private String paper;
14
15
    @Column(descp = "团队ID", value = DE.id_32)
16
    public String getId() {
17
        return id;
18
    }
19
20
    public void setId(String id) {
21
        this.id = id;
22
    }
23
24
    @Column(descp = "论文ID", value = DE.id_32)
25
    public String getPaper() {
26
        return paper;
27
    }
28
29
    public void setPaper(String paper) {
30
        this.paper = paper;
31
    }
32
}

+ 32 - 0
src/main/java/com/ekexiu/portal/team/TeamPatent.java

@ -0,0 +1,32 @@
1
package com.ekexiu.portal.team;
2
3
import org.jfw.apt.orm.annotation.entry.Column;
4
import org.jfw.apt.orm.annotation.entry.Table;
5
import org.jfw.apt.orm.core.enums.DE;
6
7
/**
8
 * Created by TT on 2019/7/8.
9
 */
10
@Table(descp = "团队专利成果表")
11
public class TeamPatent {
12
    private String id;
13
    private String patent;
14
15
    @Column(descp = "团队ID",value = DE.id_32)
16
    public String getId() {
17
        return id;
18
    }
19
20
    public void setId(String id) {
21
        this.id = id;
22
    }
23
24
    @Column(descp = "专利ID",value = DE.id_32)
25
    public String getPatent() {
26
        return patent;
27
    }
28
29
    public void setPatent(String patent) {
30
        this.patent = patent;
31
    }
32
}

+ 52 - 0
src/main/java/com/ekexiu/portal/team/TeamPro.java

@ -0,0 +1,52 @@
1
package com.ekexiu.portal.team;
2
3
import org.jfw.apt.orm.annotation.entry.Column;
4
import org.jfw.apt.orm.annotation.entry.Table;
5
import org.jfw.apt.orm.core.enums.DE;
6
7
/**
8
 * Created by TT on 2019/7/8.
9
 */
10
@Table(descp = "团队专家")
11
public class TeamPro {
12
    private String id;
13
    private String professor;
14
    private Boolean secretary;
15
    private Boolean chief;
16
17
    @Column(descp = "团队ID",value = DE.id_32)
18
    public String getId() {
19
        return id;
20
    }
21
22
    public void setId(String id) {
23
        this.id = id;
24
    }
25
26
    @Column(descp = "专家ID",value = DE.id_32)
27
    public String getProfessor() {
28
        return professor;
29
    }
30
31
    public void setProfessor(String professor) {
32
        this.professor = professor;
33
    }
34
35
    @Column(descp = "是否是团队秘书",value = DE.Boolean_de)
36
    public Boolean getSecretary() {
37
        return secretary;
38
    }
39
40
    public void setSecretary(Boolean secretary) {
41
        this.secretary = secretary;
42
    }
43
44
    @Column(descp = "是否是首席专家",value = DE.Boolean_de)
45
    public Boolean getChief() {
46
        return chief;
47
    }
48
49
    public void setChief(Boolean chief) {
50
        this.chief = chief;
51
    }
52
}

+ 32 - 0
src/main/java/com/ekexiu/portal/team/TeamResResult.java

@ -0,0 +1,32 @@
1
package com.ekexiu.portal.team;
2
3
import org.jfw.apt.orm.annotation.entry.Column;
4
import org.jfw.apt.orm.annotation.entry.Table;
5
import org.jfw.apt.orm.core.enums.DE;
6
7
/**
8
 * Created by TT on 2019/7/8.
9
 */
10
@Table(descp = "团队非专利成果表")
11
public class TeamResResult {
12
    private String id;
13
    private String researchResult;
14
15
    @Column(descp = "团队ID",value = DE.id_32)
16
    public String getId() {
17
        return id;
18
    }
19
20
    public void setId(String id) {
21
        this.id = id;
22
    }
23
24
    @Column(descp = "成果ID",value = DE.id_32)
25
    public String getResearchResult() {
26
        return researchResult;
27
    }
28
29
    public void setResearchResult(String researchResult) {
30
        this.researchResult = researchResult;
31
    }
32
}

+ 423 - 0
src/main/java/com/ekexiu/portal/team/TeamService.java

@ -0,0 +1,423 @@
1
package com.ekexiu.portal.team;
2
3
import com.ekexiu.portal.service.KeyWordService;
4
import org.jfw.apt.annotation.Autowrie;
5
import org.jfw.apt.annotation.Nullable;
6
import org.jfw.apt.web.annotation.Path;
7
import org.jfw.apt.web.annotation.operate.Get;
8
import org.jfw.apt.web.annotation.operate.Post;
9
import org.jfw.apt.web.annotation.param.JdbcConn;
10
import org.jfw.apt.web.annotation.param.Upload;
11
import org.jfw.util.ListUtil;
12
import org.jfw.util.PageQueryResult;
13
import org.jfw.util.StringUtil;
14
import org.jfw.util.exception.JfwBaseException;
15
import org.jfw.util.jdbc.JdbcUtil;
16
import org.jfw.util.jdbc.PreparedStatementConfig;
17
import org.jfw.util.web.fileupload.Item;
18
import org.jfw.util.web.fileupload.UploadItemIterator;
19
20
import java.io.File;
21
import java.io.FileOutputStream;
22
import java.io.InputStream;
23
import java.io.OutputStream;
24
import java.sql.Connection;
25
import java.sql.PreparedStatement;
26
import java.sql.SQLException;
27
import java.util.LinkedList;
28
import java.util.List;
29
import java.util.concurrent.atomic.AtomicInteger;
30
31
/**
32
 * Created by TT on 2019/7/9.
33
 */
34
35
@Path("/team")
36
public class TeamService {
37
38
    private static final AtomicInteger FN_IDX = new AtomicInteger(1);
39
40
    private File imgPath;
41
42
    private int imgMaxWidth = 70;
43
44
    @Autowrie
45
    private TeamDao teamDao;
46
47
    @Autowrie
48
    private KeyWordService keyWordService;
49
50
    public TeamDao getTeamDao() {
51
        return teamDao;
52
    }
53
54
    public void setTeamDao(TeamDao teamDao) {
55
        this.teamDao = teamDao;
56
    }
57
58
    public KeyWordService getKeyWordService() {
59
        return keyWordService;
60
    }
61
62
    public void setKeyWordService(KeyWordService keyWordService) {
63
        this.keyWordService = keyWordService;
64
    }
65
66
    public static AtomicInteger getFnIdx() {
67
        return FN_IDX;
68
    }
69
70
    public File getImgPath() {
71
        return imgPath;
72
    }
73
74
    public void setImgPath(File imgPath) {
75
        this.imgPath = imgPath;
76
    }
77
78
    public int getImgMaxWidth() {
79
        return imgMaxWidth;
80
    }
81
82
    public void setImgMaxWidth(int imgMaxWidth) {
83
        this.imgMaxWidth = imgMaxWidth;
84
    }
85
86
    /**
87
     * 上传文件
88
     *
89
     * @param it
90
     * @return
91
     * @throws Exception
92
     */
93
    @Path("/upload")
94
    @Post
95
    public List<UploadFile> upload(@Upload UploadItemIterator it) throws Exception {
96
        List<UploadFile> ret = new LinkedList<>();
97
        try {
98
            while (it.hasNext()) {
99
                Item item = it.next();
100
                if (!item.isFormField()) {
101
                    String name = normalizeFileName(item.getName());
102
                    int index = name.lastIndexOf('.');
103
                    String ext = index >= 0 ? name.substring(index + 1) : "";
104
                    ext = ext.trim();
105
                    long fileLen = 0;
106
                    int len = 0;
107
                    UploadFile uf = this.buildTargetFile(ext);
108
                    uf.setName(name);
109
                    File file = uf.getFn();
110
                    ret.add(uf);
111
                    byte[] buf = new byte[8092];
112
                    OutputStream of = new FileOutputStream(file);
113
                    try {
114
                        InputStream in = item.getInputStream();
115
                        try {
116
                            while ((len = in.read(buf)) >= 0) {
117
                                if (len > 0) {
118
                                    of.write(buf, 0, len);
119
                                    fileLen += len;
120
                                }
121
                            }
122
                            uf.setSize(fileLen);
123
                        } finally {
124
                            in.close();
125
                        }
126
                    } finally {
127
                        of.close();
128
                    }
129
                }
130
            }
131
            return ret;
132
        } catch (Exception e) {
133
            this.remove(ret);
134
            throw e;
135
        } finally {
136
            if (it != null)
137
                it.clean();
138
        }
139
    }
140
141
142
143
    @Post
144
    @Path("/apply")
145
    public String apply(@JdbcConn(true) Connection con, Team team) throws SQLException {
146
        String id = StringUtil.buildUUID();
147
        team.setId(id);
148
        team.setStatus("1");
149
        String pro = team.getSecretary();
150
        TeamPro teamPro = new TeamPro();
151
        teamPro.setId(id);
152
        teamPro.setProfessor(pro);
153
        teamPro.setSecretary(true);
154
155
        teamDao.insert(con, team);
156
        teamDao.insert(con, teamPro);
157
        return id;
158
    }
159
160
    @Post
161
    @Path("/update")
162
    public void update(@JdbcConn(true)Connection con,Team team)throws SQLException {
163
        String[] kws = null;
164
        if (team.getSubject() != null) {
165
            kws = ListUtil.splitTrimExcludeEmpty(team.getSubject(), ',').toArray(new String[0]);
166
        }
167
        keyWordService.refreshProduct(con, team.getId(), kws);
168
        teamDao.update(con, team);
169
    }
170
171
    @Get
172
    @Path("/pq")
173
    public PageQueryResult<Team> pageQuery(@JdbcConn Connection con, String status, @Nullable String key,  @Nullable String subject, @Nullable String industry,@Nullable String city, int pageSize, int pageNo) throws SQLException {
174
        return teamDao.pageQuery(con, status, key == null ? null : "%" + key + "%", subject == null ? null : "%" + subject + "%", industry == null ? null : "%" + industry + "%", city == null ? null : "%" + city + "%", pageSize, pageNo);
175
    }
176
177
    @Get
178
    @Path("/myTeam")
179
    public PageQueryResult<Team> pageQuery(@JdbcConn Connection con, String status, String professor, int pageSize, int pageNo) throws SQLException {
180
        return teamDao.pageQuery(con, status, professor, pageSize, pageNo);
181
    }
182
183
184
    @Get
185
    @Path("/qo")
186
    public Team query(@JdbcConn Connection con, String id) throws SQLException {
187
        return teamDao.query(con, id);
188
    }
189
190
    @Post
191
    @Path("/delete")
192
    public void delete(@JdbcConn(true) Connection con, String id) throws SQLException {
193
        teamDao.delete(con, id);
194
        keyWordService.refreshTeam(con,id,null);
195
    }
196
197
    @Get
198
    @Path("/pro")
199
    public PageQueryResult<TeamPro> queryPro(@JdbcConn Connection con,String id,int pageSize,int pageNo)throws SQLException {
200
        return teamDao.queryPro(con, id, pageSize, pageNo);
201
    }
202
203
    @Get
204
    @Path("/patent")
205
    public PageQueryResult<TeamPatent> queryPatent(@JdbcConn Connection con,String id,int pageSize,int pageNo)throws SQLException {
206
        return teamDao.queryPatent(con, id, pageSize, pageNo);
207
    }
208
209
    @Get
210
    @Path("/paper")
211
    public PageQueryResult<TeamPaper> queryPaper(@JdbcConn Connection con,String id,int pageSize,int pageNo)throws SQLException {
212
        return teamDao.queryPaper(con, id, pageSize, pageNo);
213
    }
214
215
    @Get
216
    @Path("/resResult")
217
    public PageQueryResult<TeamResResult> queryResResult(@JdbcConn Connection con,String id,int pageSize,int pageNo)throws SQLException {
218
        return teamDao.queryResResult(con, id, pageSize, pageNo);
219
    }
220
221
    @Post
222
    @Path("/deletePro")
223
    public void deletePro(@JdbcConn(true) Connection con,String id,String professor)throws SQLException {
224
        teamDao.deletePro(con, id, professor);
225
        keyWordService.refreshTeam(con, id, null);
226
        Team team = teamDao.query(con, id);
227
        if (team.getChief().equals(professor)) {
228
            team.setChief(null);
229
        }
230
    }
231
232
    @Post
233
    @Path("/deletePatent")
234
    public void deletePatent(@JdbcConn(true) Connection con,String id,String patent)throws SQLException {
235
        teamDao.deletePatent(con, id, patent);
236
    }
237
238
    @Post
239
    @Path("/deletePaper")
240
    public void deletePaper(@JdbcConn(true) Connection con,String id,String paper)throws SQLException {
241
        teamDao.deletePaper(con, id, paper);
242
    }
243
244
    @Post
245
    @Path("/deleteResResult")
246
    public void deleteResResult(@JdbcConn(true) Connection con,String id,String researchResult)throws SQLException {
247
        teamDao.deleteResResult(con, id, researchResult);
248
    }
249
250
    @Post
251
    @Path("/insetPro")
252
    public void insertPro(@JdbcConn(true)Connection con,String id,String professor)throws SQLException {
253
        TeamPro teamPro = new TeamPro();
254
        teamPro.setId(id);
255
        teamPro.setProfessor(professor);
256
        teamDao.insert(con, teamPro);
257
    }
258
259
    @Post
260
    @Path("/insetPatent")
261
    public void insertPatent(@JdbcConn(true)Connection con,String id,String patent)throws SQLException {
262
        TeamPatent teamPatent = new TeamPatent();
263
        teamPatent.setId(id);
264
        teamPatent.setPatent(patent);
265
        teamDao.insert(con, teamPatent);
266
    }
267
268
    @Post
269
    @Path("/insetPatent")
270
    public void insertPaper(@JdbcConn(true)Connection con,String id,String paper)throws SQLException {
271
        TeamPaper teamPaper = new TeamPaper();
272
        teamPaper.setId(id);
273
        teamPaper.setPaper(paper);
274
        teamDao.insert(con, teamPaper);
275
    }
276
277
    @Post
278
    @Path("/insetResResult")
279
    public void insertResResult(@JdbcConn(true)Connection con,String id,String researchResult)throws SQLException {
280
        TeamResResult teamResResult = new TeamResResult();
281
        teamResResult.setId(id);
282
        teamResResult.setResearchResult(researchResult);
283
        teamDao.insert(con, teamResResult);
284
    }
285
286
    @Post
287
    @Path("/secretary")
288
    public void changeSecretary(@JdbcConn(true)Connection con,String id,String newPro)throws SQLException {
289
        teamDao.updateSecretary(con, newPro, id);
290
        teamDao.update(con, id);
291
        teamDao.update(con, id, newPro);
292
    }
293
294
    @Post
295
    @Path("/chief")
296
    public void changeChief(@JdbcConn(true)Connection con,String id,String newPro)throws SQLException {
297
        teamDao.updateChief(con, newPro, id);
298
        teamDao.updateCh(con, id);
299
        teamDao.updateCh(con, id, newPro);
300
    }
301
302
    @Get
303
    @Path("/count")
304
    public long count(@JdbcConn Connection con, final String id)throws SQLException {
305
        return JdbcUtil.queryLong(con, "select count(1) from team where id in (select id from team_pro where professor = ?) and status='3'", new PreparedStatementConfig() {
306
            @Override
307
            public void config(PreparedStatement preparedStatement) throws SQLException {
308
                preparedStatement.setString(1,id);
309
            }
310
        }, 0, 0);
311
    }
312
313
    @Get
314
    @Path("/pro/count")
315
    public long countPro(@JdbcConn Connection con,String id)throws SQLException {
316
        return teamDao.countPro(con, id);
317
    }
318
319
    @Post
320
    @Path("/quit")
321
    public void quit(@JdbcConn(true) Connection con,String id,String professor)throws SQLException,JfwBaseException{
322
        Team team = teamDao.query(con, id);
323
        if (professor == team.getSecretary()) {
324
            throw new JfwBaseException(801, "团队秘书不能退出团队");
325
        }
326
        teamDao.deletePro(con, id, professor);
327
        if (team.getChief().equals(professor)) {
328
            team.setChief(null);
329
        }
330
    }
331
332
333
334
    private void remove(List<UploadFile> list) {
335
        for (UploadFile file : list) {
336
            if (file.fn != null)
337
                file.fn.delete();
338
        }
339
    }
340
341
    private UploadFile buildTargetFile(String ext) {
342
        StringBuilder sb = new StringBuilder();
343
        sb.append(System.currentTimeMillis() / (1000 * 60 * 60 * 24));
344
        File path = new File(this.imgPath, sb.toString());
345
        if (!path.exists()) {
346
            synchronized (this) {
347
                if (!path.mkdirs())
348
                    throw new RuntimeException("mkdir error[" + path + "]");
349
                FN_IDX.set(1);
350
            }
351
        }
352
        File file;
353
        do {
354
            String fn = FN_IDX.toString();
355
            if (ext.isEmpty()) {
356
                file = new File(path, fn);
357
            } else {
358
                file = new File(path, fn + "." + ext);
359
            }
360
            FN_IDX.incrementAndGet();
361
        } while (file.exists());
362
        sb.append("/").append(file.getName());
363
        UploadFile uf = new UploadFile();
364
        uf.setFn(file);
365
        uf.setUri("/" + sb.toString());
366
        return uf;
367
    }
368
369
    private String normalizeFileName(String fn) {
370
        int index = fn.indexOf('\\');
371
        if (index >= 0) {
372
            fn = fn.substring(fn.lastIndexOf('\\') + 1);
373
        }
374
        index = fn.indexOf('/');
375
        if (index >= 0) {
376
            fn = fn.substring(fn.lastIndexOf('/') + 1);
377
        }
378
        if (fn.length() == 0)
379
            throw new RuntimeException("invalid filename in Multipart/data request");
380
        return fn;
381
    }
382
383
    public static class UploadFile {
384
        private String name;
385
        private String uri;
386
        private long size;
387
        private transient File fn;
388
389
        public File getFn() {
390
            return fn;
391
        }
392
393
        public void setFn(File fn) {
394
            this.fn = fn;
395
        }
396
397
        public String getName() {
398
            return name;
399
        }
400
401
        public void setName(String name) {
402
            this.name = name;
403
        }
404
405
        public String getUri() {
406
            return uri;
407
        }
408
409
        public void setUri(String uri) {
410
            this.uri = uri;
411
        }
412
413
        public long getSize() {
414
            return size;
415
        }
416
417
        public void setSize(long size) {
418
            this.size = size;
419
        }
420
    }
421
422
423
}

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

@ -2562,4 +2562,70 @@ CREATE TABLE RESOURCE_DAY_SUM(
2562 2562
	PLATFORM TEXT NOT NULL,
2563 2563
	SUM INTEGER NOT NULL
2564 2564
);
2565
ALTER TABLE RESOURCE_DAY_SUM ADD PRIMARY KEY (ID,PLATFORM);
2565
ALTER TABLE RESOURCE_DAY_SUM ADD PRIMARY KEY (ID,PLATFORM);
2566

2567
-------团队成果------------
2568
CREATE TABLE TEAM_RES_RESULT (
2569
	ID CHAR(32) NOT NULL,
2570
	RESEARCH_RESULT CHAR(32) NOT NULL);
2571
COMMENT ON TABLE TEAM_RES_RESULT IS '团队非专利成果表';
2572
COMMENT ON COLUMN TEAM_RES_RESULT.ID IS '团队ID';
2573
COMMENT ON COLUMN TEAM_RES_RESULT.RESEARCH_RESULT IS '成果ID';
2574

2575
CREATE TABLE TEAM_PATENT (
2576
	ID CHAR(32) NOT NULL,
2577
	PATENT CHAR(32) NOT NULL);
2578
COMMENT ON TABLE TEAM_PATENT IS '团队专利成果表';
2579
COMMENT ON COLUMN TEAM_PATENT.ID IS '团队ID';
2580
COMMENT ON COLUMN TEAM_PATENT.PATENT IS '专利ID';
2581

2582
CREATE TABLE TEAM_PAPER (
2583
	ID CHAR(32) NOT NULL,
2584
	PAPER CHAR(32) NOT NULL);
2585
COMMENT ON TABLE TEAM_PAPER IS '团队专利论文表';
2586
COMMENT ON COLUMN TEAM_PAPER.ID IS '团队ID';
2587
COMMENT ON COLUMN TEAM_PAPER.PAPER IS '论文ID';
2588

2589
CREATE TABLE TEAM_PRO (
2590
	ID CHAR(32) NOT NULL,
2591
	PROFESSOR CHAR(32) NOT NULL,
2592
	SECRETARY CHAR(1),
2593
	CHIEF CHAR(1));
2594
COMMENT ON TABLE TEAM_PRO IS '团队专家';
2595
COMMENT ON COLUMN TEAM_PRO.ID IS '团队ID';
2596
COMMENT ON COLUMN TEAM_PRO.PROFESSOR IS '专家ID';
2597
COMMENT ON COLUMN TEAM_PRO.SECRETARY IS '是否是团队秘书';
2598
COMMENT ON COLUMN TEAM_PRO.CHIEF IS '是否是首席专家';
2599

2600
CREATE TABLE TEAM_KEY_WORD (
2601
	ID CHAR(32) NOT NULL,
2602
	KW TEXT NOT NULL);
2603

2604
CREATE TABLE TEAM (
2605
	ID CHAR(32) NOT NULL,
2606
	NAME TEXT NOT NULL,
2607
	ORG_NAME TEXT NOT NULL,
2608
	PROVINCE TEXT NOT NULL,
2609
	CITY TEXT NOT NULL,
2610
	SECRETARY CHAR(32) NOT NULL,
2611
	CHIEF CHAR(32),
2612
	SUBJECT TEXT,
2613
	INDUSTRY TEXT,
2614
	DESCP TEXT,
2615
	STATUS CHAR(1),
2616
	CERTIFY TEXT,
2617
	CREATE_TIME CHAR(14) NOT NULL,
2618
	MODIFY_TIME CHAR(14) NOT NULL);
2619
ALTER TABLE TEAM ADD PRIMARY KEY (ID);
2620
COMMENT ON TABLE TEAM IS '团队表';
2621
COMMENT ON COLUMN TEAM.NAME IS '团队名称';
2622
COMMENT ON COLUMN TEAM.ORG_NAME IS '所属企业名称';
2623
COMMENT ON COLUMN TEAM.PROVINCE IS '所在省份';
2624
COMMENT ON COLUMN TEAM.CITY IS '所在城市';
2625
COMMENT ON COLUMN TEAM.SECRETARY IS '团队秘书';
2626
COMMENT ON COLUMN TEAM.CHIEF IS '团队首席专家';
2627
COMMENT ON COLUMN TEAM.SUBJECT IS '学术领域';
2628
COMMENT ON COLUMN TEAM.INDUSTRY IS '行业领域';
2629
COMMENT ON COLUMN TEAM.DESCP IS '团队简介';
2630
COMMENT ON COLUMN TEAM.STATUS IS '团队状态  0:已删除 1待审核 2审核失败 3审核通过';
2631
COMMENT ON COLUMN TEAM.CERTIFY IS '团队材料';

+ 1 - 0
src/main/resources/project-test-dev.properties

@ -281,6 +281,7 @@ com_ekexiu_portal_ware_WareService.imgPath::java.io.File=/kexiu/webdata1/data/wa
281 281
com_ekexiu_portal_platform_PlatformService.imgPath::java.io.File=/kexiu/webdata1/data/platform
282 282
com_ekexiu_portal_article_file_ArticleFileService.imgPath::java.io.File=/kexiu/webdata1/data/article/file
283 283
com_ekexiu_portal_product_ProductService.imgPath::java.io.File=/kexiu/webdata1/data/product
284
com.ekexiu.portal.team.TeamService.imgPath::java.io.File=/kexiu/webdata1/data/team
284 285
com_ekexiu_portal_platform_PlatformService.urlWithRestPasswordWithEmail=MAIL_REST_URL
285 286
com_ekexiu_portal_platform_PlatformService.stateCodeWithRestPasswordWithEmail=MAIL_REST_SC
286 287
com_ekexiu_portal_platform_PlatformService.templateWithRestPasswordWithEmail=<html style\="height\:auto;"><head><meta name\="viewport" content\="width\=device-width, initial-scale\=1" /><meta http-equiv\="Content-Type" content\="text/html;charset\=UTF-8"><style type\="text/css">html,body {font\: 14px/1.666 Tahoma, Arial;border\: 0;margin\: 0;padding\: 0;color\: \#000000;scrollbar-base-color\: \#dddddd;scrollbar-3dlight-color\: \#ffffff;scrollbar-highlight-color\: \#dddddd;scrollbar-shadow-color\: \#ffffff;scrollbar-darkshadow-color\: \#ffffff;scrollbar-track-color\: \#ffffff;scrollbar-arrow-color\: \#999999;}        div,form,input,textarea,span,img,iframe {margin\: 0;padding\: 0;border\: 0;outline\: 0;}input {cursor\: pointer;}blockquote { margin-left\: 30px;margin-right\: 0; padding\: 0; border\: 0;}blockquote blockquote { margin-left\: 0px;}pre { white-space\: pre-wrap;white-space\: -moz-pre-wrap;white-space\: -pre-wrap;white-space\: -o-pre-wrap;}@media only screen and (max-width\: 600px) {\tdiv[class\="img-responsive"]{\t\ttext-align\:center\!important;}}</style></head><body style\="height\:auto;padding\:0;margin\:0;border\:0;overflow\:hidden;background\:\#d9dfe2;"><div class\="img-responsive" style\="margin-top\:40px;padding\:20px;background\:\#ECF0F5;width\:100%;"><img src\="http\://www.ekexiu.com/images/logo4.png"></div><div style\="width\:100.0%;"><div class\="wrapper" style\="width\: auto; margin\: auto; background\: rgb(255, 255, 255);" _ow\="600px"><div style\="margin\:auto"><div class\="row" style\="text-align\:left;"></div><div class\="row"><div style\="position\:relative;padding\:15.0px 50.0px 10.0px 50.0px;"><p class\="start" style\="color\:\#555555;font-size\:14.0px;line-height\:24.0px;padding-top\:10.0px;text-justify\:inter-ideograph;text-align\:justify;">\u5C0A\u656C\u7684\u7528\u6237\uFF1A</p><p class\="start" style\="color\:\#555555;font-size\:14.0px;line-height\:24.0px;padding-top\:10.0px;text-justify\:inter-ideograph;text-align\:justify;">\u60A8\u597D\uFF01</p><p class\="start" style\="color\:\#555555;font-size\:14.0px;line-height\:24.0px;padding-top\:10.0px;text-justify\:inter-ideograph;text-align\:justify;">\u60A8\u6B63\u5728\u901A\u8FC7\u90AE\u7BB1\u9A8C\u8BC1\u91CD\u7F6E\u5BC6\u7801\uFF0C\u8BF7\u8BBF\u95EE\u4E0B\u9762\u7684\u7F51\u5740\u5B8C\u6210\u91CD\u7F6E\u5BC6\u7801\u3002</p><p><a style\="color\:\#ff9900" href\="MAIL_REST_URL\=MAIL_REST_SC" target\="_blank">MAIL_REST_URL\=MAIL_REST_SC</a></p><p style\="margin-top\:30.0px;margin-bottom\:0;font-size\:14.0px;line-height\:24.0px;color\:\#555555;border-top\:1.0px solid \#eeeded;padding-top\:15.0px;">\u7CFB\u7EDF\u53D1\u4FE1\uFF0C\u8BF7\u52FF\u56DE\u590D</p><p style\="margin-top\:0;margin-bottom\:0;font-size\:14.0px;line-height\:24.0px;color\:\#555555;">\u7535\u8BDD\: 010-62343359</p><p style\="margin-top\:0;margin-bottom\:0;font-size\:14.0px;line-height\:24.0px;color\:\#555555;">\u90AE\u7BB1\: service@ekexiu.com</p><p style\="margin-top\:0;margin-bottom\:30.0px;font-size\:14.0px;line-height\:24.0px;color\:\#555555;">\u5B98\u7F51\: <a style\="color\:\#ff9900" href\="http\://www.ekexiu.com/" target\="_blank">www.ekexiu.com</a></p></div></div></div><\!--footer\u5E95\u90E8--><div style\="background\:\#ECF0F5;width\:100.0%;color\:\#999999;padding\:10px 20px;font-size\:12.0px;"><p style\="padding-bottom\:0;margin-bottom\:0;">&copy; 2016 \u5317\u4EAC\u79D1\u8896\u79D1\u6280\u6709\u9650\u516C\u53F8 &nbsp; | &nbsp; \u4EACICP\u590716042588\u53F7-1 &nbsp; | &nbsp;<a class\="beianbox" style\="color\:\#399A9B;" target\="_black" rel\="nofollow" href\="http\://www.beian.gov.cn/portal/registerSystemInfo?recordcode\=11010802022306"><span class\="beian-icon"></span> \u4EAC\u516C\u7F51\u5B89\u590711010802022306\u53F7</a></p><p style\="padding-top\:0;margin-top\:0;">\u610F\u89C1\u5EFA\u8BAE\uFF1A<strong><a style\="color\:\#399A9B;" rel\="nofollow" href\="mailto\:service@ekexiu.com">service@ekexiu.com</a></strong>&nbsp;&nbsp;&nbsp; \u5BA2\u670D\u7535\u8BDD\uFF1A  010-62343359\uFF089\:00-17\:00\uFF09 </p></div><\!--footer\u5E95\u90E8--></div></div></body></html>

+ 1 - 0
src/main/resources/project-test.properties

@ -281,6 +281,7 @@ com_ekexiu_portal_ware_WareService.imgPath::java.io.File=/kexiu/webdata/data/war
281 281
com_ekexiu_portal_platform_PlatformService.imgPath::java.io.File=/kexiu/webdata/data/platform
282 282
com_ekexiu_portal_article_file_ArticleFileService.imgPath::java.io.File=/kexiu/webdata/data/article/file
283 283
com_ekexiu_portal_product_ProductService.imgPath::java.io.File=/kexiu/webdata/data/product
284
com.ekexiu.portal.team.TeamService.imgPath::java.io.File=/kexiu/webdata/data/team
284 285
com_ekexiu_portal_platform_PlatformService.urlWithRestPasswordWithEmail=MAIL_REST_URL
285 286
com_ekexiu_portal_platform_PlatformService.stateCodeWithRestPasswordWithEmail=MAIL_REST_SC
286 287
com_ekexiu_portal_platform_PlatformService.templateWithRestPasswordWithEmail=<html style\="height\:auto;"><head><meta name\="viewport" content\="width\=device-width, initial-scale\=1" /><meta http-equiv\="Content-Type" content\="text/html;charset\=UTF-8"><style type\="text/css">html,body {font\: 14px/1.666 Tahoma, Arial;border\: 0;margin\: 0;padding\: 0;color\: \#000000;scrollbar-base-color\: \#dddddd;scrollbar-3dlight-color\: \#ffffff;scrollbar-highlight-color\: \#dddddd;scrollbar-shadow-color\: \#ffffff;scrollbar-darkshadow-color\: \#ffffff;scrollbar-track-color\: \#ffffff;scrollbar-arrow-color\: \#999999;}        div,form,input,textarea,span,img,iframe {margin\: 0;padding\: 0;border\: 0;outline\: 0;}input {cursor\: pointer;}blockquote { margin-left\: 30px;margin-right\: 0; padding\: 0; border\: 0;}blockquote blockquote { margin-left\: 0px;}pre { white-space\: pre-wrap;white-space\: -moz-pre-wrap;white-space\: -pre-wrap;white-space\: -o-pre-wrap;}@media only screen and (max-width\: 600px) {\tdiv[class\="img-responsive"]{\t\ttext-align\:center\!important;}}</style></head><body style\="height\:auto;padding\:0;margin\:0;border\:0;overflow\:hidden;background\:\#d9dfe2;"><div class\="img-responsive" style\="margin-top\:40px;padding\:20px;background\:\#ECF0F5;width\:100%;"><img src\="http\://www.ekexiu.com/images/logo4.png"></div><div style\="width\:100.0%;"><div class\="wrapper" style\="width\: auto; margin\: auto; background\: rgb(255, 255, 255);" _ow\="600px"><div style\="margin\:auto"><div class\="row" style\="text-align\:left;"></div><div class\="row"><div style\="position\:relative;padding\:15.0px 50.0px 10.0px 50.0px;"><p class\="start" style\="color\:\#555555;font-size\:14.0px;line-height\:24.0px;padding-top\:10.0px;text-justify\:inter-ideograph;text-align\:justify;">\u5C0A\u656C\u7684\u7528\u6237\uFF1A</p><p class\="start" style\="color\:\#555555;font-size\:14.0px;line-height\:24.0px;padding-top\:10.0px;text-justify\:inter-ideograph;text-align\:justify;">\u60A8\u597D\uFF01</p><p class\="start" style\="color\:\#555555;font-size\:14.0px;line-height\:24.0px;padding-top\:10.0px;text-justify\:inter-ideograph;text-align\:justify;">\u60A8\u6B63\u5728\u901A\u8FC7\u90AE\u7BB1\u9A8C\u8BC1\u91CD\u7F6E\u5BC6\u7801\uFF0C\u8BF7\u8BBF\u95EE\u4E0B\u9762\u7684\u7F51\u5740\u5B8C\u6210\u91CD\u7F6E\u5BC6\u7801\u3002</p><p><a style\="color\:\#ff9900" href\="MAIL_REST_URL\=MAIL_REST_SC" target\="_blank">MAIL_REST_URL\=MAIL_REST_SC</a></p><p style\="margin-top\:30.0px;margin-bottom\:0;font-size\:14.0px;line-height\:24.0px;color\:\#555555;border-top\:1.0px solid \#eeeded;padding-top\:15.0px;">\u7CFB\u7EDF\u53D1\u4FE1\uFF0C\u8BF7\u52FF\u56DE\u590D</p><p style\="margin-top\:0;margin-bottom\:0;font-size\:14.0px;line-height\:24.0px;color\:\#555555;">\u7535\u8BDD\: 010-62343359</p><p style\="margin-top\:0;margin-bottom\:0;font-size\:14.0px;line-height\:24.0px;color\:\#555555;">\u90AE\u7BB1\: service@ekexiu.com</p><p style\="margin-top\:0;margin-bottom\:30.0px;font-size\:14.0px;line-height\:24.0px;color\:\#555555;">\u5B98\u7F51\: <a style\="color\:\#ff9900" href\="http\://www.ekexiu.com/" target\="_blank">www.ekexiu.com</a></p></div></div></div><\!--footer\u5E95\u90E8--><div style\="background\:\#ECF0F5;width\:100.0%;color\:\#999999;padding\:10px 20px;font-size\:12.0px;"><p style\="padding-bottom\:0;margin-bottom\:0;">&copy; 2016 \u5317\u4EAC\u79D1\u8896\u79D1\u6280\u6709\u9650\u516C\u53F8 &nbsp; | &nbsp; \u4EACICP\u590716042588\u53F7-1 &nbsp; | &nbsp;<a class\="beianbox" style\="color\:\#399A9B;" target\="_black" rel\="nofollow" href\="http\://www.beian.gov.cn/portal/registerSystemInfo?recordcode\=11010802022306"><span class\="beian-icon"></span> \u4EAC\u516C\u7F51\u5B89\u590711010802022306\u53F7</a></p><p style\="padding-top\:0;margin-top\:0;">\u610F\u89C1\u5EFA\u8BAE\uFF1A<strong><a style\="color\:\#399A9B;" rel\="nofollow" href\="mailto\:service@ekexiu.com">service@ekexiu.com</a></strong>&nbsp;&nbsp;&nbsp; \u5BA2\u670D\u7535\u8BDD\uFF1A  010-62343359\uFF089\:00-17\:00\uFF09 </p></div><\!--footer\u5E95\u90E8--></div></div></body></html>

+ 1 - 0
src/main/resources/project.properties

@ -287,6 +287,7 @@ com_ekexiu_portal_ware_WareService.imgPath::java.io.File=/kexiu/webdata/data/war
287 287
com_ekexiu_portal_platform_PlatformService.imgPath::java.io.File=/kexiu/webdata/data/platform
288 288
com_ekexiu_portal_article_file_ArticleFileService.imgPath::java.io.File=/kexiu/webdata/data/article/file
289 289
com_ekexiu_portal_product_ProductService.imgPath::java.io.File=/kexiu/webdata/data/product
290
com.ekexiu.portal.team.TeamService.imgPath::java.io.File=/kexiu/webdata/data/team
290 291
com_ekexiu_portal_platform_PlatformService.urlWithRestPasswordWithEmail=MAIL_REST_URL
291 292
com_ekexiu_portal_platform_PlatformService.stateCodeWithRestPasswordWithEmail=MAIL_REST_SC
292 293
com_ekexiu_portal_platform_PlatformService.templateWithRestPasswordWithEmail=<html style\="height\:auto;"><head><meta name\="viewport" content\="width\=device-width, initial-scale\=1" /><meta http-equiv\="Content-Type" content\="text/html;charset\=UTF-8"><style type\="text/css">html,body {font\: 14px/1.666 Tahoma, Arial;border\: 0;margin\: 0;padding\: 0;color\: \#000000;scrollbar-base-color\: \#dddddd;scrollbar-3dlight-color\: \#ffffff;scrollbar-highlight-color\: \#dddddd;scrollbar-shadow-color\: \#ffffff;scrollbar-darkshadow-color\: \#ffffff;scrollbar-track-color\: \#ffffff;scrollbar-arrow-color\: \#999999;}        div,form,input,textarea,span,img,iframe {margin\: 0;padding\: 0;border\: 0;outline\: 0;}input {cursor\: pointer;}blockquote { margin-left\: 30px;margin-right\: 0; padding\: 0; border\: 0;}blockquote blockquote { margin-left\: 0px;}pre { white-space\: pre-wrap;white-space\: -moz-pre-wrap;white-space\: -pre-wrap;white-space\: -o-pre-wrap;}@media only screen and (max-width\: 600px) {\tdiv[class\="img-responsive"]{\t\ttext-align\:center\!important;}}</style></head><body style\="height\:auto;padding\:0;margin\:0;border\:0;overflow\:hidden;background\:\#d9dfe2;"><div class\="img-responsive" style\="margin-top\:40px;padding\:20px;background\:\#ECF0F5;width\:100%;"><img src\="http\://www.ekexiu.com/images/logo4.png"></div><div style\="width\:100.0%;"><div class\="wrapper" style\="width\: auto; margin\: auto; background\: rgb(255, 255, 255);" _ow\="600px"><div style\="margin\:auto"><div class\="row" style\="text-align\:left;"></div><div class\="row"><div style\="position\:relative;padding\:15.0px 50.0px 10.0px 50.0px;"><p class\="start" style\="color\:\#555555;font-size\:14.0px;line-height\:24.0px;padding-top\:10.0px;text-justify\:inter-ideograph;text-align\:justify;">\u5C0A\u656C\u7684\u7528\u6237\uFF1A</p><p class\="start" style\="color\:\#555555;font-size\:14.0px;line-height\:24.0px;padding-top\:10.0px;text-justify\:inter-ideograph;text-align\:justify;">\u60A8\u597D\uFF01</p><p class\="start" style\="color\:\#555555;font-size\:14.0px;line-height\:24.0px;padding-top\:10.0px;text-justify\:inter-ideograph;text-align\:justify;">\u60A8\u6B63\u5728\u901A\u8FC7\u90AE\u7BB1\u9A8C\u8BC1\u91CD\u7F6E\u5BC6\u7801\uFF0C\u8BF7\u8BBF\u95EE\u4E0B\u9762\u7684\u7F51\u5740\u5B8C\u6210\u91CD\u7F6E\u5BC6\u7801\u3002</p><p><a style\="color\:\#ff9900" href\="MAIL_REST_URL\=MAIL_REST_SC" target\="_blank">MAIL_REST_URL\=MAIL_REST_SC</a></p><p style\="margin-top\:30.0px;margin-bottom\:0;font-size\:14.0px;line-height\:24.0px;color\:\#555555;border-top\:1.0px solid \#eeeded;padding-top\:15.0px;">\u7CFB\u7EDF\u53D1\u4FE1\uFF0C\u8BF7\u52FF\u56DE\u590D</p><p style\="margin-top\:0;margin-bottom\:0;font-size\:14.0px;line-height\:24.0px;color\:\#555555;">\u7535\u8BDD\: 010-62343359</p><p style\="margin-top\:0;margin-bottom\:0;font-size\:14.0px;line-height\:24.0px;color\:\#555555;">\u90AE\u7BB1\: service@ekexiu.com</p><p style\="margin-top\:0;margin-bottom\:30.0px;font-size\:14.0px;line-height\:24.0px;color\:\#555555;">\u5B98\u7F51\: <a style\="color\:\#ff9900" href\="http\://www.ekexiu.com/" target\="_blank">www.ekexiu.com</a></p></div></div></div><\!--footer\u5E95\u90E8--><div style\="background\:\#ECF0F5;width\:100.0%;color\:\#999999;padding\:10px 20px;font-size\:12.0px;"><p style\="padding-bottom\:0;margin-bottom\:0;">&copy; 2016 \u5317\u4EAC\u79D1\u8896\u79D1\u6280\u6709\u9650\u516C\u53F8 &nbsp; | &nbsp; \u4EACICP\u590716042588\u53F7-1 &nbsp; | &nbsp;<a class\="beianbox" style\="color\:\#399A9B;" target\="_black" rel\="nofollow" href\="http\://www.beian.gov.cn/portal/registerSystemInfo?recordcode\=11010802022306"><span class\="beian-icon"></span> \u4EAC\u516C\u7F51\u5B89\u590711010802022306\u53F7</a></p><p style\="padding-top\:0;margin-top\:0;">\u610F\u89C1\u5EFA\u8BAE\uFF1A<strong><a style\="color\:\#399A9B;" rel\="nofollow" href\="mailto\:service@ekexiu.com">service@ekexiu.com</a></strong>&nbsp;&nbsp;&nbsp; \u5BA2\u670D\u7535\u8BDD\uFF1A  010-62343359\uFF089\:00-17\:00\uFF09 </p></div><\!--footer\u5E95\u90E8--></div></div></body></html>