|
|
@@ -1,6 +1,7 @@
|
|
|
package com.uas.platform.b2c.fa.factoring.model;
|
|
|
|
|
|
import javax.persistence.*;
|
|
|
+import java.util.Date;
|
|
|
|
|
|
/**
|
|
|
* 贷款申请
|
|
|
@@ -24,6 +25,12 @@ public class LoanApply {
|
|
|
@Column(name = "la_id")
|
|
|
private Long id;
|
|
|
|
|
|
+ /**
|
|
|
+ * 申请时间
|
|
|
+ */
|
|
|
+ @Column(name = "la_date")
|
|
|
+ private Date date = new Date();
|
|
|
+
|
|
|
/**
|
|
|
* 用户称呼
|
|
|
*/
|
|
|
@@ -144,6 +151,14 @@ public class LoanApply {
|
|
|
this.enName = enName;
|
|
|
}
|
|
|
|
|
|
+ public Date getDate() {
|
|
|
+ return date;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setDate(Date date) {
|
|
|
+ this.date = date;
|
|
|
+ }
|
|
|
+
|
|
|
public String contact() {
|
|
|
StringBuffer s = new StringBuffer();
|
|
|
if (this.tel != null) {
|