jiapeng преди 6 години
родител
ревизия
f4b5f25b17

+ 44 - 0
src/main/java/com/ekexiu/portal/platform/PlatformDao.java

@ -229,4 +229,48 @@ public interface PlatformDao {
229 229
	@Exclude({"descp"})
230 230
	PageQueryResult<ButtedOrgInfo> queryButtedOrgInfo(Connection con,
231 231
																  @SqlColumn(handlerClass = StringHandler.class, value = { "B.PID=?" }) String pid,@Nullable @SqlColumn(handlerClass = StringHandler.class, value = { "O.NAME LIKE ?" }) String name, int pageSize, int pageNo) throws SQLException;
232

233

234

235

236

237

238

239

240

241

242

243

244

245

246
	@Insert
247
	int insert(Connection con,PlatformDemand pd)throws SQLException;
248
	
249
	@Update
250
	int update(Connection con,PlatformDemand pd)throws SQLException;
251
	
252
	@UpdateWith
253
	@From(PlatformDemand.class)
254
	int delay(Connection con,String pid,String id,@Set String invalidDay)throws SQLException;
255
	
256
	@DeleteWith
257
	@From(PlatformDemand.class)
258
	int deleteDemand(Connection con,String pid,String id)throws SQLException;
259
	
260
	
261
	
262
	@Insert
263
	int insert(Connection con,PlatformDemandProfessor pdf)throws SQLException;
264
	
265
	@Nullable
266
	@SelectOne
267
	PlatformDemandProfessor queryPdf(Connection con,String pid,String id,String uid)throws SQLException;
268

269
	
270
	@SelectList
271
	List<PlatformDemandProfessor> queryPdfList(Connection con,String pid,@GtEq @Alias("assTime" ) String btime,@LtEq @Alias("assTime") String etime) throws SQLException;
272
	
273
	
274
	
275

232 276
}

+ 95 - 0
src/main/java/com/ekexiu/portal/platform/PlatformDemand.java

@ -0,0 +1,95 @@
1
package com.ekexiu.portal.platform;
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
@PrimaryKey({"pid","id"})
9
@Table
10
public class PlatformDemand {
11
	private String pid;
12
	private String id;
13
	private String title;
14
	private String descp;
15
	private String pulishTime;
16
	private String linkOrg;
17
	private String city;
18
	private String invalidDay;	
19
	private String cost;
20
	private String duration;
21
	
22
	@Column(DE.text_de)
23
	public String getPid() {
24
		return pid;
25
	}
26
	public void setPid(String pid) {
27
		this.pid = pid;
28
	}
29
	@Column(DE.text_de)
30
	public String getId() {
31
		return id;
32
	}
33
	public void setId(String id) {
34
		this.id = id;
35
	}
36
	@Column(DE.text_de)
37
	public String getTitle() {
38
		return title;
39
	}
40
	public void setTitle(String title) {
41
		this.title = title;
42
	}
43
	@Column(DE.text_de)
44
	public String getDescp() {
45
		return descp;
46
	}
47
	public void setDescp(String descp) {
48
		this.descp = descp;
49
	}
50
	@Column(value=DE.text_de,renewable=false)
51
	public String getPulishTime() {
52
		return pulishTime;
53
	}
54
	public void setPulishTime(String pulishTime) {
55
		this.pulishTime = pulishTime;
56
	}
57
	@Column(DE.text_de)
58
	public String getLinkOrg() {
59
		return linkOrg;
60
	}
61
	public void setLinkOrg(String linkOrg) {
62
		this.linkOrg = linkOrg;
63
	}
64
	@Column(DE.text_de)
65
	public String getCity() {
66
		return city;
67
	}
68
	public void setCity(String city) {
69
		this.city = city;
70
	}
71
	@Column(DE.text_de)
72
	public String getInvalidDay() {
73
		return invalidDay;
74
	}
75
	public void setInvalidDay(String invalidDay) {
76
		this.invalidDay = invalidDay;
77
	}
78
	@Column(DE.Text_de)
79
	public String getCost() {
80
		return cost;
81
	}
82
	public void setCost(String cost) {
83
		this.cost = cost;
84
	}
85
	@Column(DE.Text_de)
86
	public String getDuration() {
87
		return duration;
88
	}
89
	public void setDuration(String duration) {
90
		this.duration = duration;
91
	}
92
	
93
	
94
	
95
}

+ 54 - 0
src/main/java/com/ekexiu/portal/platform/PlatformDemandProfessor.java

@ -0,0 +1,54 @@
1
package com.ekexiu.portal.platform;
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
@PrimaryKey({"pid","id","uid"})
9
@Table
10
public class PlatformDemandProfessor {
11
	private String pid;
12
	private String id;
13
	private String uid;
14
	private String assTime;
15
	private String descp;
16
	
17
	@Column(DE.text_de)
18
	public String getPid() {
19
		return pid;
20
	}
21
	public void setPid(String pid) {
22
		this.pid = pid;
23
	}
24
	@Column(DE.text_de)
25
	public String getId() {
26
		return id;
27
	}
28
	public void setId(String id) {
29
		this.id = id;
30
	}
31
	@Column(DE.text_de)
32
	public String getUid() {
33
		return uid;
34
	}
35
	public void setUid(String uid) {
36
		this.uid = uid;
37
	}
38
	@Column(DE.text_de)
39
	public String getAssTime() {
40
		return assTime;
41
	}
42
	public void setAssTime(String assTime) {
43
		this.assTime = assTime;
44
	}
45
	@Column(DE.text_de)
46
	public String getDescp() {
47
		return descp;
48
	}
49
	public void setDescp(String descp) {
50
		this.descp = descp;
51
	}
52
	
53
	
54
}

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

@ -489,6 +489,8 @@ public class PlatformService {
489 489
		}
490 490
		return ret;
491 491
	}
492
	
493
	
492 494

493 495
	@Post
494 496
	@Path("/upload")

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

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

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

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

13

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

17
	
18
	@Autowrie
19
	private PlatformDao platformDao;
20

21
	public PlatformDao getPlatformDao() {
22
		return platformDao;
23
	}
24

25
	public void setPlatformDao(PlatformDao platformDao) {
26
		this.platformDao = platformDao;
27
	}
28
	
29
	
30
	@Post
31
	@Path("/insert")
32
	public void insert(@JdbcConn(true) Connection con,PlatformDemand pd)throws SQLException{
33
		platformDao.insert(con, pd);
34
	} 
35
	@Post
36
	@Path("/update")
37
	public void update(@JdbcConn(true) Connection con,PlatformDemand pd)throws SQLException{
38
		platformDao.update(con, pd);
39
	} 
40
	@Post
41
	@Path("/delay")
42
	public void delay(@JdbcConn(true) Connection con,String id,String pid,String day)throws SQLException{
43
		platformDao.delay(con,pid,id,day);
44
	}
45
	@Post
46
	@Path("/delete")
47
	public void delete(@JdbcConn(true) Connection con,String id,String pid)throws SQLException{
48
		platformDao.deleteDemand(con,pid,id);
49
	}
50
	
51
	@Get
52
	@Path("/list")
53
	public List<PlatformDemandProfessor> queryPlatform(@JdbcConn Connection con,String pid,String btime,String etime)throws SQLException{
54
		return platformDao.queryPdfList(con, pid, btime, etime);
55
	}
56
}