XMTT 5 years ago
parent
commit
220e3bc90a

+ 32 - 0
src/main/java/com/ekexiu/portal/resResult/ResResultKeyWord.java

@ -0,0 +1,32 @@
1
package com.ekexiu.portal.resResult;
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/07/10.
9
 */
10
@Table
11
public class ResResultKeyWord {
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
}

+ 24 - 0
src/main/java/com/ekexiu/portal/resResult/ResResultKeyWordDao.java

@ -0,0 +1,24 @@
1
package com.ekexiu.portal.resResult;
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/07/10.
14
 */
15
@DAO
16
public interface ResResultKeyWordDao {
17
    @Insert
18
    @Batch
19
    int[] insert(Connection con, ResResultKeyWord[] rrkws) throws SQLException;
20
21
    @DeleteWith
22
    @From(ResResultKeyWord.class)
23
    int delete(Connection con, String id) throws SQLException;
24
}

+ 234 - 7
src/main/java/com/ekexiu/portal/resResult/ResearchResult.java

@ -1,12 +1,239 @@
1 1
package com.ekexiu.portal.resResult;
2 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
3 10
/**
4 11
 * Created by TT on 2019/7/8.
5 12
 */
6
//@Table(descp = "非专利成果表")
7
//@PrimaryKey("id")
8
//public class ResearchResult {
9
//
10
//
11
//
12
//}
13
@Table(descp = "成果")
14
@PrimaryKey("id")
15
public class ResearchResult implements CreateTimeSupported, ModifyTimeSupported {
16
    private String id;
17
    private String name;
18
    private String level;
19
    private String orgId;
20
    private String department;
21
    private String subject;
22
    private String industry;
23
    private String descp;
24
    private String applyDescp;
25
    private String prospect;
26
    private String indicator;
27
    private String advantage;
28
    private String benefit;
29
    private String cooperation;
30
    private String pic;
31
    private String createTime;
32
    private String modifyTime;
33
    private String status;
34
35
    private String creator;
36
    private boolean platform;
37
    private boolean console;
38
    private boolean professor;
39
40
    @Column(DE.id_32)
41
    public String getId() {
42
        return id;
43
    }
44
45
    public void setId(String id) {
46
        this.id = id;
47
    }
48
49
    @Column(descp = "成果名称",value = DE.text_de)
50
    public String getName() {
51
        return name;
52
    }
53
54
    public void setName(String name) {
55
        this.name = name;
56
    }
57
58
    @Column(descp = "技术水平",value =DE.Text_de)
59
    public String getLevel() {
60
        return level;
61
    }
62
63
    public void setLevel(String level) {
64
        this.level = level;
65
    }
66
67
    @Column(descp = "所属机构",value =DE.REFID_32)
68
    public String getOrgId() {
69
        return orgId;
70
    }
71
72
    public void setOrgId(String orgId) {
73
        this.orgId = orgId;
74
    }
75
76
    @Column(descp = "所属部门",value =DE.Text_de)
77
    public String getDepartment() {
78
        return department;
79
    }
80
81
    public void setDepartment(String department) {
82
        this.department = department;
83
    }
84
85
    @Column(descp = "学术领域",value =DE.Text_de)
86
    public String getSubject() {
87
        return subject;
88
    }
89
90
    public void setSubject(String subject) {
91
        this.subject = subject;
92
    }
93
94
    @Column(descp = "应用领域",value =DE.Text_de)
95
    public String getIndustry() {
96
        return industry;
97
    }
98
99
    public void setIndustry(String industry) {
100
        this.industry = industry;
101
    }
102
103
    @Column(descp = "成果简介",value =DE.Text_de)
104
    public String getDescp() {
105
        return descp;
106
    }
107
108
    public void setDescp(String descp) {
109
        this.descp = descp;
110
    }
111
112
    @Column(descp = "应用介绍",value =DE.Text_de)
113
    public String getApplyDescp() {
114
        return applyDescp;
115
    }
116
117
    public void setApplyDescp(String applyDescp) {
118
        this.applyDescp = applyDescp;
119
    }
120
121
    @Column(descp = "产业化前景",value =DE.Text_de)
122
    public String getProspect() {
123
        return prospect;
124
    }
125
126
    public void setProspect(String prospect) {
127
        this.prospect = prospect;
128
    }
129
130
    @Column(descp = "技术指标",value =DE.Text_de)
131
    public String getIndicator() {
132
        return indicator;
133
    }
134
135
    public void setIndicator(String indicator) {
136
        this.indicator = indicator;
137
    }
138
139
    @Column(descp = "技术优势",value =DE.Text_de)
140
    public String getAdvantage() {
141
        return advantage;
142
    }
143
144
    public void setAdvantage(String advantage) {
145
        this.advantage = advantage;
146
    }
147
148
    @Column(descp = "经济和社会化效益",value =DE.Text_de)
149
    public String getBenefit() {
150
        return benefit;
151
    }
152
153
    public void setBenefit(String benefit) {
154
        this.benefit = benefit;
155
    }
156
157
    @Column(descp = "合作备注",value =DE.Text_de)
158
    public String getCooperation() {
159
        return cooperation;
160
    }
161
162
    public void setCooperation(String cooperation) {
163
        this.cooperation = cooperation;
164
    }
165
166
    @Column(descp = "图片",value =DE.Text_de)
167
    public String getPic() {
168
        return pic;
169
    }
170
171
    public void setPic(String pic) {
172
        this.pic = pic;
173
    }
174
175
    @Override
176
    public String getCreateTime() {
177
        return createTime;
178
    }
179
180
    @Override
181
    public void setCreateTime(String createTime) {
182
        this.createTime = createTime;
183
    }
184
185
    @Override
186
    public String getModifyTime() {
187
        return modifyTime;
188
    }
189
190
    @Override
191
    public void setModifyTime(String modifyTime) {
192
        this.modifyTime = modifyTime;
193
    }
194
195
    @Column(descp = "创建人ID", value = DE.id_32)
196
    public String getCreator() {
197
        return creator;
198
    }
199
200
    public void setCreator(String creator) {
201
        this.creator = creator;
202
    }
203
204
    @Column(descp = "状态 0:删除,1:发布的 ,2:草稿", value = DE.singleChar)
205
    public String getStatus() {
206
        return status;
207
    }
208
209
    public void setStatus(String status) {
210
        this.status = status;
211
    }
212
213
    @Column(descp = "是否是平台用户", value = DE.boolean_de)
214
    public boolean isPlatform() {
215
        return platform;
216
    }
217
218
    public void setPlatform(boolean platform) {
219
        this.platform = platform;
220
    }
221
222
    @Column(descp = "是否是后台用户", value = DE.boolean_de)
223
    public boolean isConsole() {
224
        return console;
225
    }
226
227
    public void setConsole(boolean console) {
228
        this.console = console;
229
    }
230
231
    @Column(descp = "是否是专家用户", value = DE.boolean_de)
232
    public boolean isProfessor() {
233
        return professor;
234
    }
235
236
    public void setProfessor(boolean professor) {
237
        this.professor = professor;
238
    }
239
}

+ 68 - 0
src/main/java/com/ekexiu/portal/resResult/ResearchResultDao.java

@ -0,0 +1,68 @@
1
package com.ekexiu.portal.resResult;
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.Exclude;
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.SetSentence;
11
import org.jfw.apt.orm.annotation.dao.method.Where;
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.QueryVal;
15
import org.jfw.apt.orm.annotation.dao.method.operator.SelectOne;
16
import org.jfw.apt.orm.annotation.dao.method.operator.Update;
17
import org.jfw.apt.orm.annotation.dao.method.operator.UpdateWith;
18
import org.jfw.apt.orm.annotation.dao.param.GroupSqlColumn;
19
import org.jfw.apt.orm.annotation.dao.param.In;
20
import org.jfw.apt.orm.annotation.dao.param.SqlColumn;
21
import org.jfw.apt.orm.core.defaultImpl.LongHandler;
22
import org.jfw.apt.orm.core.defaultImpl.StringHandler;
23
import org.jfw.util.PageQueryResult;
24
25
import java.sql.Connection;
26
import java.sql.SQLException;
27
28
/**
29
 * Created by TT on 2019/07/10.
30
 */
31
@DAO
32
public interface ResearchResultDao {
33
    @Insert
34
    int insert(Connection con, ResearchResult researchResult) throws SQLException;
35
36
    @Update
37
    @Exclude("modifyTime")
38
    int update(Connection con, ResearchResult researchResult) throws SQLException;
39
40
    @Nullable
41
    @SelectOne
42
    ResearchResult query(Connection con, String id) throws SQLException;
43
44
    @UpdateWith
45
    @From(ResearchResult.class)
46
    @Where("STATUS ='1'")
47
    @SetSentence("STATUS ='0'")
48
    int updateStatus(Connection con, String id) throws SQLException;
49
50
    @PageQuery
51
    @OrderBy("ORDER BY CREATE_TIME DESC")
52
    PageQueryResult<ResearchResult> pageQuery(Connection con, @Nullable @In String[] status, @Nullable @GroupSqlColumn(handlerClass = StringHandler.class, value = {"name like ?", "ID IN (SELECT ID FROM RESEARCHER WHERE NAME LIKE ?)", "SUBJECT LIKE ?", "INDUSTRY LIKE ?"}, isAnd = false) String key, int pageSize, int pageNo) throws SQLException;
53
54
    @PageQuery
55
    @OrderBy("ORDER BY CREATE_TIME DESC")
56
    PageQueryResult<ResearchResult> pageQueryByResearcher(Connection con, @Nullable @In String[] status, @SqlColumn(handlerClass = StringHandler.class, value = "ID IN (SELECT ID FROM RESEARCHER WHERE PROFESSOR_ID = ?)") String id, int pageSize, int pageNo) throws SQLException;
57
58
    @PageQuery
59
    @OrderBy("ORDER BY STATUS DESC, CREATE_TIME DESC")
60
    PageQueryResult<ResearchResult> pageQueryByCreator(Connection con, @Nullable @In String[] status, String creator, int pageSize, int pageNo) throws SQLException;
61
62
    @DefaultValue("0")
63
    @QueryVal
64
    @Column(value = "COUNT(1)", handlerClass = LongHandler.class)
65
    @From(ResearchResult.class)
66
    @Where("status='1'")
67
    long countPublish(Connection con, @SqlColumn(handlerClass = StringHandler.class,value = "ID IN (SELECT ID FROM RESEARCHER WHERE PROFESSOR_ID = ?)") String professor) throws SQLException;
68
}

+ 396 - 0
src/main/java/com/ekexiu/portal/resResult/ResearchResultService.java

@ -0,0 +1,396 @@
1
package com.ekexiu.portal.resResult;
2
3
import com.ekexiu.portal.dao.ProfessorDao;
4
import com.ekexiu.portal.service.KeyWordService;
5
import org.jfw.apt.annotation.Autowrie;
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.operate.Post;
10
import org.jfw.apt.web.annotation.param.FieldParam;
11
import org.jfw.apt.web.annotation.param.JdbcConn;
12
import org.jfw.apt.web.annotation.param.RequestParam;
13
import org.jfw.apt.web.annotation.param.Upload;
14
import org.jfw.util.ListUtil;
15
import org.jfw.util.PageQueryResult;
16
import org.jfw.util.StringUtil;
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.IOException;
23
import java.io.InputStream;
24
import java.io.OutputStream;
25
import java.sql.Connection;
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/07/10.
33
 */
34
@Path("/resResult")
35
public class ResearchResultService {
36
37
    private static final AtomicInteger FN_IDX = new AtomicInteger(1);
38
39
    private File imgPath;
40
41
    private int imgMaxWidth = 70;
42
43
    @Autowrie
44
    private ResearcherDao researcherDao;
45
    @Autowrie
46
    private ResearchResultDao researchResultDao;
47
    @Autowrie
48
    private ResResultKeyWordDao resResultKeyWordDao;
49
    @Autowrie
50
    private ProfessorDao professorDao;
51
    @Autowrie
52
    private KeyWordService keyWordService;
53
54
    public ResearcherDao getResearcherDao() {
55
        return researcherDao;
56
    }
57
58
    public void setResearcherDao(ResearcherDao researcherDao) {
59
        this.researcherDao = researcherDao;
60
    }
61
62
    public ResearchResultDao getResearchResultDao() {
63
        return researchResultDao;
64
    }
65
66
    public void setResearchResultDao(ResearchResultDao researchResultDao) {
67
        this.researchResultDao = researchResultDao;
68
    }
69
70
    public ResResultKeyWordDao getResResultKeyWordDao() {
71
        return resResultKeyWordDao;
72
    }
73
74
    public void setResResultKeyWordDao(ResResultKeyWordDao resResultKeyWordDao) {
75
        this.resResultKeyWordDao = resResultKeyWordDao;
76
    }
77
78
    public ProfessorDao getProfessorDao() {
79
        return professorDao;
80
    }
81
82
    public void setProfessorDao(ProfessorDao professorDao) {
83
        this.professorDao = professorDao;
84
    }
85
86
    public KeyWordService getKeyWordService() {
87
        return keyWordService;
88
    }
89
90
    public void setKeyWordService(KeyWordService keyWordService) {
91
        this.keyWordService = keyWordService;
92
    }
93
94
    public static AtomicInteger getFnIdx() {
95
        return FN_IDX;
96
    }
97
98
    public File getImgPath() {
99
        return imgPath;
100
    }
101
102
    public void setImgPath(File imgPath) {
103
        this.imgPath = imgPath;
104
    }
105
106
    public int getImgMaxWidth() {
107
        return imgMaxWidth;
108
    }
109
110
    public void setImgMaxWidth(int imgMaxWidth) {
111
        this.imgMaxWidth = imgMaxWidth;
112
    }
113
114
    public String insert(Connection con, ResearchResult researchResult, String[] researchers) throws SQLException {
115
        String id = StringUtil.buildUUID();
116
        researchResult.setId(id);
117
        refreshSearchers(con, id, researchers);
118
        if (researchResult.getStatus().equals("1")) {
119
            String subject = researchResult.getSubject();
120
            if (subject == null) {
121
                subject = "";
122
            }
123
            String industry = researchResult.getIndustry();
124
            if (industry == null)
125
                industry = "";
126
            String[] kws = null;
127
            kws = ListUtil.splitTrimExcludeEmpty(subject + "," + industry, ',').toArray(new String[0]);
128
            this.keyWordService.refreshResearchResult(con, id, kws);
129
        }
130
        this.researchResultDao.insert(con, researchResult);
131
        return id;
132
    }
133
134
135
    public boolean update(Connection con, ResearchResult researchResult, String[] researchers) throws SQLException {
136
        String id = researchResult.getId();
137
        if (researchResultDao.update(con, researchResult)>0) {
138
            refreshSearchers(con, id, researchers);
139
            if (researchResult.getStatus().equals("1")) {
140
                String subject = researchResult.getSubject();
141
                if (subject == null) {
142
                    subject = "";
143
                }
144
                String industry = researchResult.getIndustry();
145
                if (industry == null)
146
                    industry = "";
147
                String[] kws = null;
148
                kws = ListUtil.splitTrimExcludeEmpty(subject + "," + industry, ',').toArray(new String[0]);
149
                this.keyWordService.refreshResearchResult(con, id, kws);
150
            }else {
151
                this.keyWordService.refreshResearchResult(con, id, null);
152
            }
153
            return true;
154
        }
155
        return false;
156
157
    }
158
159
    @Post
160
    @Path("/draft")
161
    public String draft(@JdbcConn(true) Connection con, @RequestParam(fields={@FieldParam(value = "platform",valueClass = Boolean.class),@FieldParam(value = "console",valueClass = Boolean.class),@FieldParam(value="professor",valueClass = Boolean.class)}) ResearchResult researchResult, @Nullable String[] researchers) throws SQLException, IOException {
162
        researchResult.setStatus("2");
163
        return insert(con, researchResult, researchers);
164
    }
165
166
    @Post
167
    @Path("/publish")
168
    public String publish(@JdbcConn(true) Connection con,
169
                          @RequestParam(fields={@FieldParam(value = "platform",valueClass = Boolean.class),@FieldParam(value = "console",valueClass = Boolean.class),@FieldParam(value="professor",valueClass = Boolean.class)}) ResearchResult researchResult, @Nullable String[] researchers) throws SQLException, IOException {
170
        researchResult.setStatus("1");
171
        return insert(con, researchResult, researchers);
172
    }
173
174
    @Post
175
    @Path("/draft/update")
176
    public boolean updateDraft(@JdbcConn(true) Connection con,
177
                               @RequestParam(fields={@FieldParam(value = "platform",valueClass = Boolean.class),@FieldParam(value = "console",valueClass = Boolean.class),@FieldParam(value="professor",valueClass = Boolean.class)}) ResearchResult researchResult, @Nullable String[] researchers) throws SQLException, IOException {
178
        researchResult.setStatus("2");
179
        return update(con, researchResult,researchers);
180
    }
181
182
    @Post
183
    @Path("/publish/update")
184
    public boolean updatePublish(@JdbcConn(true) Connection con,
185
                                 @RequestParam(fields={@FieldParam(value = "platform",valueClass = Boolean.class),@FieldParam(value = "console",valueClass = Boolean.class),@FieldParam(value="professor",valueClass = Boolean.class)}) ResearchResult researchResult, @Nullable String[] researchers) throws SQLException, IOException {
186
        researchResult.setStatus("1");
187
        return update(con, researchResult, researchers);
188
    }
189
190
    @Get
191
    @Path("/researcher")
192
    public List<Researcher> queryResearchers(@JdbcConn Connection con, String id) throws SQLException {
193
        return this.researcherDao.query(con, id);
194
    }
195
196
    @Get
197
    @Path("/qo")
198
    public ResearchResult query(@JdbcConn Connection con, String id) throws SQLException {
199
        return this.researchResultDao.query(con, id);
200
    }
201
202
    @Post
203
    @Path("/delete")
204
    public void delete(@JdbcConn(true) Connection con, String id) throws SQLException {
205
        this.researchResultDao.updateStatus(con, id);
206
        this.keyWordService.refreshResearchResult(con, id, null);
207
    }
208
209
    @Get
210
    @Path("/pq")
211
    public PageQueryResult<ResearchResult> pageQuery(@JdbcConn Connection con, @Nullable String[] status, @Nullable String key, int pageSize, int pageNo) throws SQLException {
212
        return researchResultDao.pageQuery(con, status, key == null ? null : "%" + key + "%", pageSize, pageNo);
213
    }
214
215
    @Get
216
    @Path("/pq/researcher")
217
    public PageQueryResult<ResearchResult> pqByResearcher(@JdbcConn Connection con,@Nullable String[] status, String id,int pageSize,int pageNo)throws SQLException {
218
        return researchResultDao.pageQueryByResearcher(con, status, id, pageSize, pageNo);
219
    }
220
221
    @Get
222
    @Path("/pq/creator")
223
    public PageQueryResult<ResearchResult> pqByCreator(@JdbcConn Connection con,@Nullable String[] status, String id,int pageSize,int pageNo)throws SQLException {
224
        return researchResultDao.pageQueryByCreator(con, status, id, pageSize, pageNo);
225
    }
226
227
    @Get
228
    @Path("/count/researcher")
229
    public long count(@JdbcConn Connection con,String id)throws SQLException {
230
        return researchResultDao.countPublish(con, id);
231
    }
232
233
234
235
    /**
236
     * 上传文件
237
     *
238
     * @param it
239
     * @return
240
     * @throws Exception
241
     */
242
    @Path("/upload")
243
    @Post
244
    public List<UploadFile> upload(@Upload UploadItemIterator it) throws Exception {
245
        List<UploadFile> ret = new LinkedList<>();
246
        try {
247
            while (it.hasNext()) {
248
                Item item = it.next();
249
                if (!item.isFormField()) {
250
                    String name = normalizeFileName(item.getName());
251
                    int index = name.lastIndexOf('.');
252
                    String ext = index >= 0 ? name.substring(index + 1) : "";
253
                    ext = ext.trim();
254
                    long fileLen = 0;
255
                    int len = 0;
256
                    UploadFile uf = this.buildTargetFile(ext);
257
                    uf.setName(name);
258
                    File file = uf.getFn();
259
                    ret.add(uf);
260
                    byte[] buf = new byte[8092];
261
                    OutputStream of = new FileOutputStream(file);
262
                    try {
263
                        InputStream in = item.getInputStream();
264
                        try {
265
                            while ((len = in.read(buf)) >= 0) {
266
                                if (len > 0) {
267
                                    of.write(buf, 0, len);
268
                                    fileLen += len;
269
                                }
270
                            }
271
                            uf.setSize(fileLen);
272
                        } finally {
273
                            in.close();
274
                        }
275
                    } finally {
276
                        of.close();
277
                    }
278
                }
279
            }
280
            return ret;
281
        } catch (Exception e) {
282
            this.remove(ret);
283
            throw e;
284
        } finally {
285
            if (it != null)
286
                it.clean();
287
        }
288
    }
289
290
    private void remove(List<UploadFile> list) {
291
        for (UploadFile file : list) {
292
            if (file.fn != null)
293
                file.fn.delete();
294
        }
295
    }
296
297
    private UploadFile buildTargetFile(String ext) {
298
        StringBuilder sb = new StringBuilder();
299
        sb.append(System.currentTimeMillis() / (1000 * 60 * 60 * 24));
300
        File path = new File(this.imgPath, sb.toString());
301
        if (!path.exists()) {
302
            synchronized (this) {
303
                if (!path.mkdirs())
304
                    throw new RuntimeException("mkdir error[" + path + "]");
305
                FN_IDX.set(1);
306
            }
307
        }
308
        File file;
309
        do {
310
            String fn = FN_IDX.toString();
311
            if (ext.isEmpty()) {
312
                file = new File(path, fn);
313
            } else {
314
                file = new File(path, fn + "." + ext);
315
            }
316
            FN_IDX.incrementAndGet();
317
        } while (file.exists());
318
        sb.append("/").append(file.getName());
319
        UploadFile uf = new UploadFile();
320
        uf.setFn(file);
321
        uf.setUri("/" + sb.toString());
322
        return uf;
323
    }
324
325
    private String normalizeFileName(String fn) {
326
        int index = fn.indexOf('\\');
327
        if (index >= 0) {
328
            fn = fn.substring(fn.lastIndexOf('\\') + 1);
329
        }
330
        index = fn.indexOf('/');
331
        if (index >= 0) {
332
            fn = fn.substring(fn.lastIndexOf('/') + 1);
333
        }
334
        if (fn.length() == 0)
335
            throw new RuntimeException("invalid filename in Multipart/data request");
336
        return fn;
337
    }
338
339
    public static class UploadFile {
340
        private String name;
341
        private String uri;
342
        private long size;
343
        private transient File fn;
344
345
        public File getFn() {
346
            return fn;
347
        }
348
349
        public void setFn(File fn) {
350
            this.fn = fn;
351
        }
352
353
        public String getName() {
354
            return name;
355
        }
356
357
        public void setName(String name) {
358
            this.name = name;
359
        }
360
361
        public String getUri() {
362
            return uri;
363
        }
364
365
        public void setUri(String uri) {
366
            this.uri = uri;
367
        }
368
369
        public long getSize() {
370
            return size;
371
        }
372
373
        public void setSize(long size) {
374
            this.size = size;
375
        }
376
    }
377
378
379
    public void refreshSearchers(Connection con, String id, String[] researchers) throws SQLException {
380
        this.researcherDao.delete(con, id);
381
        if (researchers != null && researchers.length > 0) {
382
            Researcher[] res = new Researcher[researchers.length];
383
            for (int i = 0; i < researchers.length; ++i) {
384
                Researcher re = new Researcher();
385
386
                re.setId(id);
387
                re.setProfessorId(researchers[i].substring(0, 32));
388
                re.setName(researchers[i].substring(33));
389
                res[i] = re;
390
            }
391
            this.researcherDao.insert(con, res);
392
        }
393
    }
394
395
396
}

+ 44 - 0
src/main/java/com/ekexiu/portal/resResult/Researcher.java

@ -0,0 +1,44 @@
1
package com.ekexiu.portal.resResult;
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.enums.DE;
7
8
/**
9
 * Created by TT on 2019/07/10.
10
 */
11
@Table
12
@PrimaryKey({"id", "name"})
13
public class Researcher {
14
    private String id;
15
    private String professorId;
16
    private String name;
17
18
    @Column(DE.id_32)
19
    public String getId() {
20
        return id;
21
    }
22
23
    public void setId(String id) {
24
        this.id = id;
25
    }
26
27
    @Column(DE.id_32)
28
    public String getProfessorId() {
29
        return professorId;
30
    }
31
32
    public void setProfessorId(String professorId) {
33
        this.professorId = professorId;
34
    }
35
36
    @Column(DE.text_de)
37
    public String getName() {
38
        return name;
39
    }
40
41
    public void setName(String name) {
42
        this.name = name;
43
    }
44
}

+ 36 - 0
src/main/java/com/ekexiu/portal/resResult/ResearcherDao.java

@ -0,0 +1,36 @@
1
package com.ekexiu.portal.resResult;
2
3
import org.jfw.apt.annotation.Nullable;
4
import org.jfw.apt.orm.annotation.dao.Batch;
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.DeleteWith;
8
import org.jfw.apt.orm.annotation.dao.method.operator.Insert;
9
import org.jfw.apt.orm.annotation.dao.method.operator.SelectList;
10
11
import java.sql.Connection;
12
import java.sql.SQLException;
13
import java.util.List;
14
15
/**
16
 * Created by TT on 2019/07/10.
17
 */
18
@DAO
19
public interface ResearcherDao {
20
21
    @Insert
22
    int insert(Connection con, Researcher researcher)throws SQLException;
23
24
    @Insert
25
    @Batch
26
    int[] insert(Connection con, Researcher[] researchers) throws SQLException;
27
28
    @DeleteWith
29
    @From(Researcher.class)
30
    int delete(Connection con, String id)throws SQLException;
31
32
    @SelectList
33
    @Nullable
34
    List<Researcher> query(Connection con, String id) throws SQLException;
35
36
}

+ 18 - 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.resResult.ResResultKeyWord;
18
import com.ekexiu.portal.resResult.ResResultKeyWordDao;
17 19
import com.ekexiu.portal.team.TeamKeyWord;
18 20
import com.ekexiu.portal.team.TeamKeyWordDao;
19 21
import com.ekexiu.portal.ware.WreKeyWord;
@ -46,7 +48,8 @@ public class KeyWordService {
46 48
	private ProductKeyWordDao productKeyWordDao;
47 49
	@Autowrie
48 50
	private TeamKeyWordDao teamKeyWordDao;
49
	
51
	@Autowrie
52
	private ResResultKeyWordDao resResultKeyWordDao;
50 53

51 54
	public WreKeyWordDao getWreKeyWordDao() {
52 55
		return wreKeyWordDao;
@ -252,6 +255,20 @@ public class KeyWordService {
252 255
		}
253 256
	}
254 257

258
	public void refreshResearchResult(Connection con,String id,String[] kws)throws SQLException {
259
		resResultKeyWordDao.delete(con, id);
260
		if (kws != null && kws.length > 0) {
261
			ResResultKeyWord[] resResultKeyWords = new ResResultKeyWord[kws.length];
262
			for (int i = 0;i<kws.length;++i) {
263
				ResResultKeyWord resResultKeyWord = new ResResultKeyWord();
264
				resResultKeyWord.setId(id);
265
				resResultKeyWord.setKw(kws[i]);
266
				resResultKeyWords[i] = resResultKeyWord;
267
			}
268
			resResultKeyWordDao.insert(con, resResultKeyWords);
269
		}
270
	}
271

255 272
	public static String[] splitKeyWord(String kws) {
256 273
		if (kws == null || kws.trim().length() == 0)
257 274
			return null;

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

@ -164,7 +164,7 @@ public class TeamService {
164 164
        if (team.getSubject() != null) {
165 165
            kws = ListUtil.splitTrimExcludeEmpty(team.getSubject(), ',').toArray(new String[0]);
166 166
        }
167
        keyWordService.refreshProduct(con, team.getId(), kws);
167
        keyWordService.refreshTeam(con, team.getId(), kws);
168 168
        teamDao.update(con, team);
169 169
    }
170 170

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

@ -282,6 +282,7 @@ com_ekexiu_portal_platform_PlatformService.imgPath::java.io.File=/kexiu/webdata1
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 284
com_ekexiu_portal_team_TeamService.imgPath::java.io.File=/kexiu/webdata1/data/team
285
com_ekexiu_portal_resResult_ResearchResultService.imgPath::java.io.File=/kexiu/webdata1/data/team
285 286
com_ekexiu_portal_platform_PlatformService.urlWithRestPasswordWithEmail=MAIL_REST_URL
286 287
com_ekexiu_portal_platform_PlatformService.stateCodeWithRestPasswordWithEmail=MAIL_REST_SC
287 288
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

@ -282,6 +282,7 @@ com_ekexiu_portal_platform_PlatformService.imgPath::java.io.File=/kexiu/webdata/
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 284
com_ekexiu_portal_team_TeamService.imgPath::java.io.File=/kexiu/webdata/data/team
285
com_ekexiu_portal_resResult_ResearchResultService.imgPath::java.io.File=/kexiu/webdata/data/team
285 286
com_ekexiu_portal_platform_PlatformService.urlWithRestPasswordWithEmail=MAIL_REST_URL
286 287
com_ekexiu_portal_platform_PlatformService.stateCodeWithRestPasswordWithEmail=MAIL_REST_SC
287 288
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

@ -288,6 +288,7 @@ com_ekexiu_portal_platform_PlatformService.imgPath::java.io.File=/kexiu/webdata/
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 290
com_ekexiu_portal_team_TeamService.imgPath::java.io.File=/kexiu/webdata/data/team
291
com_ekexiu_portal_resResult_ResearchResultService.imgPath::java.io.File=/kexiu/webdata/data/researchResult
291 292
com_ekexiu_portal_platform_PlatformService.urlWithRestPasswordWithEmail=MAIL_REST_URL
292 293
com_ekexiu_portal_platform_PlatformService.stateCodeWithRestPasswordWithEmail=MAIL_REST_SC
293 294
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>