Commit cf0b0a97 by sikang

bug Fix 申请时间去掉T 和 Z

parent 13c7d6b2
...@@ -123,6 +123,7 @@ public class LatestLoanAppBean implements Parcelable { ...@@ -123,6 +123,7 @@ public class LatestLoanAppBean implements Parcelable {
public void setCouponId(long couponId) { public void setCouponId(long couponId) {
this.couponId = couponId; this.couponId = couponId;
} }
public long getProductId() { public long getProductId() {
return productId; return productId;
} }
...@@ -332,7 +333,7 @@ public class LatestLoanAppBean implements Parcelable { ...@@ -332,7 +333,7 @@ public class LatestLoanAppBean implements Parcelable {
} }
public String getCreateTime() { public String getCreateTime() {
return this.createTime; return this.createTime.replace("T", " ").replace("Z", "");
} }
public void setCreateTime(String createTime) { public void setCreateTime(String createTime) {
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment