Ver Código Fonte

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

zzy.zhiyuan.foxmail 8 anos atrás
pai
commit
885019e172

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

24
	@Update
24
	@Update
25
	public abstract int update(Connection con, Operation operation) throws SQLException;
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
	@UpdateWith
27
	@UpdateWith
32
	@From(Operation.class)
28
	@From(Operation.class)
33
	public abstract int updateDetailDemand(Connection con, String operationId, String detailDemand) throws SQLException;
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
	private String operationId;//业务ID
15
	private String operationId;//业务ID
16
	private int operationStatus;//业务状态
16
	private int operationStatus;//业务状态
17
	private String demandId;//需求方ID,即当前登录用户ID
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
	private BigDecimal dealPrice;
30
	private BigDecimal dealPrice;
40
	private String dealTime;//成交时间
31
	private String dealTime;//成交时间
41
	private String payMethod;//支付方式
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
	@Column(DE.id_32)
52
	@Column(DE.id_32)
44
	public String getOperationId() {
53
	public String getOperationId() {
64
		this.demandId = demandId;
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
	@Column(handlerClass=StringHandler.class,dbType="TEXT",insertable=false,nullable=false,renewable=false,queryable=true)
76
	@Column(handlerClass=StringHandler.class,dbType="TEXT",insertable=false,nullable=false,renewable=false,queryable=true)
92
	public String getDetailDemand() {
77
	public String getDetailDemand() {
93
		return detailDemand;
78
		return detailDemand;

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

73
		return this.operationDao.queryRes(con, resourceId);
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
	@Post
76
	@Post
83
	@Path("/detailDemand")
77
	@Path("/detailDemand")
84
	public void updateDetailDemand(@JdbcConn(true) Connection con, String operationId, String detailDemand) throws SQLException{
78
	public void updateDetailDemand(@JdbcConn(true) Connection con, String operationId, String detailDemand) throws SQLException{