XMTT преди 6 години
родител
ревизия
94a753334b

+ 11 - 6
src/main/java/com/ekexiu/portal/platform/PlatformDao.java

@ -12,6 +12,7 @@ import org.jfw.apt.orm.annotation.dao.method.operator.DeleteWith;
12 12
import org.jfw.apt.orm.annotation.dao.method.operator.Insert;
13 13
import org.jfw.apt.orm.annotation.dao.method.operator.LimitQuery;
14 14
import org.jfw.apt.orm.annotation.dao.method.operator.PageQuery;
15
import org.jfw.apt.orm.annotation.dao.method.operator.PageSelect;
15 16
import org.jfw.apt.orm.annotation.dao.method.operator.SelectList;
16 17
import org.jfw.apt.orm.annotation.dao.method.operator.SelectOne;
17 18
import org.jfw.apt.orm.annotation.dao.method.operator.Update;
@ -256,9 +257,15 @@ public interface PlatformDao {
256 257
	@DeleteWith
257 258
	@From(PlatformDemand.class)
258 259
	int deleteDemand(Connection con,String pid,String id)throws SQLException;
259
	
260
	
261
	
260

261
	@PageSelect
262
	@OrderBy("ORDER BY PUBLISH_TIME DESC")
263
	PageQueryResult<PlatformDemand> pageQuery(Connection con,@Nullable @GroupSqlColumn(handlerClass = StringHandler.class, value = {"TITLE LIKE ?","LINK_ORG LIKE ?","DESCP LIKE ?"},isAnd = false) String key, int pageSize, int pageNo) throws SQLException;
264

265
	@SelectOne
266
	@Nullable
267
	PlatformDemand query(Connection con, String id,String pid) throws SQLException;
268

262 269
	@Insert
263 270
	int insert(Connection con,PlatformDemandProfessor pdf)throws SQLException;
264 271
	
@ -269,8 +276,6 @@ public interface PlatformDao {
269 276
	
270 277
	@SelectList
271 278
	List<PlatformDemandProfessor> queryPdfList(Connection con,String pid,@GtEq @Alias("assTime" ) String btime,@LtEq @Alias("assTime") String etime) throws SQLException;
272
	
273
	
274
	
279

275 280

276 281
}

+ 14 - 16
src/main/java/com/ekexiu/portal/platform/PlatformDemand.java

@ -6,7 +6,7 @@ import org.jfw.apt.orm.annotation.entry.Table;
6 6
import org.jfw.apt.orm.core.enums.DE;
7 7

8 8
@PrimaryKey({"pid","id"})
9
@Table
9
@Table(descp = "平台需求表")
10 10
public class PlatformDemand {
11 11
	private String pid;
12 12
	private String id;
@ -15,81 +15,79 @@ public class PlatformDemand {
15 15
	private String pulishTime;
16 16
	private String linkOrg;
17 17
	private String city;
18
	private String invalidDay;	
18
	private String invalidDay;
19 19
	private String cost;
20 20
	private String duration;
21
	
22
	@Column(DE.text_de)
21

22
	@Column(descp="平台ID",value=DE.text_de)
23 23
	public String getPid() {
24 24
		return pid;
25 25
	}
26 26
	public void setPid(String pid) {
27 27
		this.pid = pid;
28 28
	}
29
	@Column(DE.text_de)
29
	@Column(descp="平台需求ID",value=DE.text_de)
30 30
	public String getId() {
31 31
		return id;
32 32
	}
33 33
	public void setId(String id) {
34 34
		this.id = id;
35 35
	}
36
	@Column(DE.text_de)
36
	@Column(descp="平台需求ID",value=DE.text_de)
37 37
	public String getTitle() {
38 38
		return title;
39 39
	}
40 40
	public void setTitle(String title) {
41 41
		this.title = title;
42 42
	}
43
	@Column(DE.text_de)
43
	@Column(descp="需求描述",value=DE.text_de)
44 44
	public String getDescp() {
45 45
		return descp;
46 46
	}
47 47
	public void setDescp(String descp) {
48 48
		this.descp = descp;
49 49
	}
50
	@Column(value=DE.text_de,renewable=false)
50
	@Column(descp="平台需求ID",value=DE.text_de,renewable=false)
51 51
	public String getPulishTime() {
52 52
		return pulishTime;
53 53
	}
54 54
	public void setPulishTime(String pulishTime) {
55 55
		this.pulishTime = pulishTime;
56 56
	}
57
	@Column(DE.text_de)
57
	@Column(descp="需求方",value=DE.text_de)
58 58
	public String getLinkOrg() {
59 59
		return linkOrg;
60 60
	}
61 61
	public void setLinkOrg(String linkOrg) {
62 62
		this.linkOrg = linkOrg;
63 63
	}
64
	@Column(DE.text_de)
64
	@Column(descp="所在城市",value=DE.text_de)
65 65
	public String getCity() {
66 66
		return city;
67 67
	}
68 68
	public void setCity(String city) {
69 69
		this.city = city;
70 70
	}
71
	@Column(DE.text_de)
71
	@Column(descp="有效截至日期",value=DE.text_de)
72 72
	public String getInvalidDay() {
73 73
		return invalidDay;
74 74
	}
75 75
	public void setInvalidDay(String invalidDay) {
76 76
		this.invalidDay = invalidDay;
77 77
	}
78
	@Column(DE.Text_de)
78
	@Column(descp="费用预算",value=DE.Text_de)
79 79
	public String getCost() {
80 80
		return cost;
81 81
	}
82 82
	public void setCost(String cost) {
83 83
		this.cost = cost;
84 84
	}
85
	@Column(DE.Text_de)
85
	@Column(descp="合作周期",value=DE.Text_de)
86 86
	public String getDuration() {
87 87
		return duration;
88 88
	}
89 89
	public void setDuration(String duration) {
90 90
		this.duration = duration;
91 91
	}
92
	
93
	
94
	
92

95 93
}

+ 6 - 8
src/main/java/com/ekexiu/portal/platform/PlatformDemandProfessor.java

@ -6,7 +6,7 @@ import org.jfw.apt.orm.annotation.entry.Table;
6 6
import org.jfw.apt.orm.core.enums.DE;
7 7

8 8
@PrimaryKey({"pid","id","uid"})
9
@Table
9
@Table(descp = "平台需求回复专家表")
10 10
public class PlatformDemandProfessor {
11 11
	private String pid;
12 12
	private String id;
@ -14,41 +14,39 @@ public class PlatformDemandProfessor {
14 14
	private String assTime;
15 15
	private String descp;
16 16
	
17
	@Column(DE.text_de)
17
	@Column(descp="平台ID",value=DE.text_de)
18 18
	public String getPid() {
19 19
		return pid;
20 20
	}
21 21
	public void setPid(String pid) {
22 22
		this.pid = pid;
23 23
	}
24
	@Column(DE.text_de)
24
	@Column(descp="平台需求",value=DE.text_de)
25 25
	public String getId() {
26 26
		return id;
27 27
	}
28 28
	public void setId(String id) {
29 29
		this.id = id;
30 30
	}
31
	@Column(DE.text_de)
31
	@Column(descp="专家ID",value=DE.text_de)
32 32
	public String getUid() {
33 33
		return uid;
34 34
	}
35 35
	public void setUid(String uid) {
36 36
		this.uid = uid;
37 37
	}
38
	@Column(DE.text_de)
38
	@Column(descp="留言时间",value=DE.text_de)
39 39
	public String getAssTime() {
40 40
		return assTime;
41 41
	}
42 42
	public void setAssTime(String assTime) {
43 43
		this.assTime = assTime;
44 44
	}
45
	@Column(DE.text_de)
45
	@Column(descp="留言内容",value=DE.text_de)
46 46
	public String getDescp() {
47 47
		return descp;
48 48
	}
49 49
	public void setDescp(String descp) {
50 50
		this.descp = descp;
51 51
	}
52
	
53
	
54 52
}

+ 20 - 0
src/main/java/com/ekexiu/portal/platform/PlatformService.java

@ -541,6 +541,26 @@ public class PlatformService {
541 541
		}
542 542
	}
543 543

544

545
	@Path("/demand/pq")
546
	@Get
547
	public PageQueryResult<PlatformDemand> pageQuery(@JdbcConn Connection con,@Nullable String key,int pageSize,int pageNo)throws SQLException {
548
		return platformDao.pageQuery(con, key == null ? null : "%" + key + "%", pageSize, pageNo);
549
	}
550

551
	@Path("/demand/qo")
552
	@Get
553
	public PlatformDemand queryDemand(@JdbcConn Connection con,String id,String pid)throws SQLException {
554
		return platformDao.query(con, id,pid);
555
	}
556

557
	@Path("/demand/pro")
558
	@Get
559
	public PlatformDemandProfessor queryPro(@JdbcConn Connection con, String pid, String id, String uid) throws SQLException {
560
		return platformDao.queryPdf(con, pid, id, uid);
561
	}
562

563

544 564
	private void remove(List<UploadFile> list) {
545 565
		for (UploadFile file : list) {
546 566
			if (file.fn != null)

+ 4 - 4
src/main/java/com/ekexiu/portal/platform/PlatformSyncService.java

@ -1,15 +1,15 @@
1 1
package com.ekexiu.portal.platform;
2 2

3
import java.sql.Connection;
4
import java.sql.SQLException;
5
import java.util.List;
6

7 3
import org.jfw.apt.annotation.Autowrie;
8 4
import org.jfw.apt.web.annotation.Path;
9 5
import org.jfw.apt.web.annotation.operate.Get;
10 6
import org.jfw.apt.web.annotation.operate.Post;
11 7
import org.jfw.apt.web.annotation.param.JdbcConn;
12 8

9
import java.sql.Connection;
10
import java.sql.SQLException;
11
import java.util.List;
12

13 13

14 14
@Path("/platform/sync")
15 15
public class PlatformSyncService {