|
|
@@ -1,7 +1,6 @@
|
|
|
package com.uas.service.donate.model;
|
|
|
|
|
|
import javax.persistence.*;
|
|
|
-import java.util.Date;
|
|
|
import java.text.SimpleDateFormat;
|
|
|
import java.util.Date;
|
|
|
|
|
|
@@ -64,12 +63,18 @@ public class ProjectRecode {
|
|
|
private String orgName;
|
|
|
|
|
|
/**
|
|
|
- * 支付状态(1:待支付,2:已支付)
|
|
|
+ * 支付状态(1:待支付,2:已支付,3:异常情况)
|
|
|
* @return
|
|
|
*/
|
|
|
@Column(name = "pr_status")
|
|
|
private short status;
|
|
|
|
|
|
+ /**
|
|
|
+ * 支付异常情况时信息
|
|
|
+ */
|
|
|
+ @Column(name = "pr_exception_msg")
|
|
|
+ private String exceptionMsg;
|
|
|
+
|
|
|
public Long getId() {
|
|
|
return id;
|
|
|
}
|
|
|
@@ -142,4 +147,12 @@ public class ProjectRecode {
|
|
|
public void setStatus(short status) {
|
|
|
this.status = status;
|
|
|
}
|
|
|
+
|
|
|
+ public String getExceptionMsg() {
|
|
|
+ return exceptionMsg;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setExceptionMsg(String exceptionMsg) {
|
|
|
+ this.exceptionMsg = exceptionMsg;
|
|
|
+ }
|
|
|
}
|