From 05c19cf80f6cb810929fb229a388262799434f29 Mon Sep 17 00:00:00 2001
From: xiaoyong931011 <15274802129@163.com>
Date: Thu, 04 Mar 2021 15:42:54 +0800
Subject: [PATCH] 20210304 跟单一次只能跟一个交易员
---
src/main/java/com/xcong/excoin/modules/home/vo/MemberQuickBuySaleDetailVo.java | 5 +++++
1 files changed, 5 insertions(+), 0 deletions(-)
diff --git a/src/main/java/com/xcong/excoin/modules/home/vo/MemberQuickBuySaleDetailVo.java b/src/main/java/com/xcong/excoin/modules/home/vo/MemberQuickBuySaleDetailVo.java
index 176f278..db8e91f 100644
--- a/src/main/java/com/xcong/excoin/modules/home/vo/MemberQuickBuySaleDetailVo.java
+++ b/src/main/java/com/xcong/excoin/modules/home/vo/MemberQuickBuySaleDetailVo.java
@@ -1,8 +1,10 @@
package com.xcong.excoin.modules.home.vo;
import java.math.BigDecimal;
+import java.util.Date;
import java.util.List;
+import com.fasterxml.jackson.annotation.JsonFormat;
import com.xcong.excoin.modules.platform.entity.PlatformPaymentMethodEntity;
import io.swagger.annotations.ApiModel;
@@ -34,6 +36,9 @@
private String orderType;
@ApiModelProperty(value = "剩余时间")
private Long timeLeft;
+ @ApiModelProperty(value = "下单时间")
+ @JsonFormat(pattern = "MM-dd HH:mm:ss", timezone = "GMT+8")
+ private Date createTime;
@ApiModelProperty(value = "平台收款方式")
private List<PlatformPaymentMethodEntity> platforPaymentMethodList;
}
--
Gitblit v1.9.1