feat:合道订单分页查询响应参数Date类型改为String
parent
23d3210f84
commit
32780151a9
|
|
@ -9,7 +9,6 @@ import lombok.experimental.Accessors;
|
||||||
|
|
||||||
import java.io.Serializable;
|
import java.io.Serializable;
|
||||||
import java.math.BigDecimal;
|
import java.math.BigDecimal;
|
||||||
import java.util.Date;
|
|
||||||
import java.util.List;
|
import java.util.List;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
|
@ -73,7 +72,7 @@ public class GyOrderInfoQueryPageResponse extends GyBaseResponse implements Page
|
||||||
* 下单时间
|
* 下单时间
|
||||||
*/
|
*/
|
||||||
@SerializedName("order_time")
|
@SerializedName("order_time")
|
||||||
private Date orderTime;
|
private String orderTime;
|
||||||
/**
|
/**
|
||||||
* 订单金额
|
* 订单金额
|
||||||
*/
|
*/
|
||||||
|
|
@ -143,7 +142,7 @@ public class GyOrderInfoQueryPageResponse extends GyBaseResponse implements Page
|
||||||
* 借据到期日期
|
* 借据到期日期
|
||||||
*/
|
*/
|
||||||
@SerializedName("loan_deal_end_date")
|
@SerializedName("loan_deal_end_date")
|
||||||
private Date loanDealEndDate;
|
private String loanDealEndDate;
|
||||||
/**
|
/**
|
||||||
* 订单融资状态:0-未融资;1-已融资
|
* 订单融资状态:0-未融资;1-已融资
|
||||||
*/
|
*/
|
||||||
|
|
@ -158,7 +157,7 @@ public class GyOrderInfoQueryPageResponse extends GyBaseResponse implements Page
|
||||||
* 订单撤销(作废)时间
|
* 订单撤销(作废)时间
|
||||||
*/
|
*/
|
||||||
@SerializedName("cancel_time")
|
@SerializedName("cancel_time")
|
||||||
private Date cancelTime;
|
private String cancelTime;
|
||||||
/**
|
/**
|
||||||
* 清算流水号
|
* 清算流水号
|
||||||
*/
|
*/
|
||||||
|
|
@ -173,7 +172,7 @@ public class GyOrderInfoQueryPageResponse extends GyBaseResponse implements Page
|
||||||
* 清算时间
|
* 清算时间
|
||||||
*/
|
*/
|
||||||
@SerializedName("settle_time")
|
@SerializedName("settle_time")
|
||||||
private Date settleTime;
|
private String settleTime;
|
||||||
/**
|
/**
|
||||||
* 摘要
|
* 摘要
|
||||||
*/
|
*/
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue