Browse Source

删除咨询相关字段,增加申请时间字段。

zzy.zhiyuan.foxmail 8 years ago
parent
commit
885019e172

+ 0 - 4
src/main/java/com/ekexiu/portal/dao/OperationDao.java

@ -24,10 +24,6 @@ public abstract class OperationDao {
24 24
	@Update
25 25
	public abstract int update(Connection con, Operation operation) throws SQLException;
26 26
	
27
	@UpdateWith
28
	@From(Operation.class)
29
	public abstract int updateConsultContent(Connection con, String operationId, String consultContent) throws SQLException;
30
	
31 27
	@UpdateWith
32 28
	@From(Operation.class)
33 29
	public abstract int updateDetailDemand(Connection con, String operationId, String detailDemand) throws SQLException;

+ 18 - 33
src/main/java/com/ekexiu/portal/po/Operation.java

@ -15,15 +15,6 @@ public class Operation {
15 15
	private String operationId;//业务ID
16 16
	private int operationStatus;//业务状态
17 17
	private String demandId;//需求方ID,即当前登录用户ID
18
	private String demandType;//需求类型
19
	/**
20
	 * 咨询主题
21
	 */
22
	private String consultTitle;
23
	/**
24
	 * 咨询内容
25
	 */
26
	private String consultContent;
27 18
	/**
28 19
	 * 具体需求
29 20
	 */
@ -39,6 +30,24 @@ public class Operation {
39 30
	private BigDecimal dealPrice;
40 31
	private String dealTime;//成交时间
41 32
	private String payMethod;//支付方式
33
	private String replyNotes; //回复备注
34
	private String createTime;//创建时间
35
	
36
	@Column(DE.string_de)
37
	public String getReplyNotes() {
38
		return replyNotes;
39
	}
40
	public void setReplyNotes(String replyNotes) {
41
		this.replyNotes = replyNotes;
42
	}
43
	
44
	@Column(handlerClass = FixLenStringHandler.class, dbType = "CHAR(14)", fixSqlValueWithInsert = "TO_CHAR(NOW(),'YYYYMMDDHH24MISS')", insertable = true, nullable = false, queryable = true, renewable = false)
45
	public String getCreateTime() {
46
		return createTime;
47
	}
48
	public void setCreateTime(String createTime) {
49
		this.createTime = createTime;
50
	}
42 51
	
43 52
	@Column(DE.id_32)
44 53
	public String getOperationId() {
@ -64,30 +73,6 @@ public class Operation {
64 73
		this.demandId = demandId;
65 74
	}
66 75
	
67
	@Column(DE.string_de)
68
	public String getDemandType() {
69
		return demandType;
70
	}
71
	public void setDemandType(String demandType) {
72
		this.demandType = demandType;
73
	}
74
	
75
	@Column(DE.string_de)
76
	public String getConsultTitle() {
77
		return consultTitle;
78
	}
79
	public void setConsultTitle(String consultTitle) {
80
		this.consultTitle = consultTitle;
81
	}
82
	
83
	@Column(handlerClass=StringHandler.class,dbType="TEXT",insertable=false,nullable=false,renewable=false,queryable=true)
84
	public String getConsultContent() {
85
		return consultContent;
86
	}
87
	public void setConsultContent(String consultContent) {
88
		this.consultContent = consultContent;
89
	}
90
	
91 76
	@Column(handlerClass=StringHandler.class,dbType="TEXT",insertable=false,nullable=false,renewable=false,queryable=true)
92 77
	public String getDetailDemand() {
93 78
		return detailDemand;

+ 0 - 6
src/main/java/com/ekexiu/portal/service/OperationService.java

@ -73,12 +73,6 @@ public class OperationService {
73 73
		return this.operationDao.queryRes(con, resourceId);
74 74
	}
75 75
	
76
	@Post
77
	@Path("/consultContent")
78
	public void updateConsultContent(@JdbcConn(true) Connection con, String operationId, String consultContent) throws SQLException{
79
		this.operationDao.updateConsultContent(con, operationId, consultContent);
80
	}
81
	
82 76
	@Post
83 77
	@Path("/detailDemand")
84 78
	public void updateDetailDemand(@JdbcConn(true) Connection con, String operationId, String detailDemand) throws SQLException{