记得上下班打卡 | git大法好,push需谨慎

Commit 7d46b19f authored by jiangxiulong's avatar jiangxiulong

下单时间

parent c8fe6c84
...@@ -24,6 +24,8 @@ public class GoblinNftOrderListExcelDto implements Serializable, Cloneable { ...@@ -24,6 +24,8 @@ public class GoblinNftOrderListExcelDto implements Serializable, Cloneable {
private String priceActual; private String priceActual;
@Excel(name = "订单状态") @Excel(name = "订单状态")
private String status; private String status;
@Excel(name = "下大美时间")
private String createdAt;
@Excel(name = "支付时间") @Excel(name = "支付时间")
private String payTime; private String payTime;
@Excel(name = "藏品名称") @Excel(name = "藏品名称")
...@@ -64,6 +66,7 @@ public class GoblinNftOrderListExcelDto implements Serializable, Cloneable { ...@@ -64,6 +66,7 @@ public class GoblinNftOrderListExcelDto implements Serializable, Cloneable {
this.setPayType(DictUtils.getDictLabel("zhengzai_pay_type", String.valueOf(source.getPayType()))); this.setPayType(DictUtils.getDictLabel("zhengzai_pay_type", String.valueOf(source.getPayType())));
this.setPriceActual(source.getPriceActual()); this.setPriceActual(source.getPriceActual());
this.setStatus(DictUtils.getDictLabel("zhengzai_goblin_nft_order_status", String.valueOf(source.getStatus()))); this.setStatus(DictUtils.getDictLabel("zhengzai_goblin_nft_order_status", String.valueOf(source.getStatus())));
this.setCreatedAt(source.getCreatedAt());
this.setPayTime(source.getPayTime()); this.setPayTime(source.getPayTime());
this.setName(source.getName()); this.setName(source.getName());
this.setTradingAt(source.getTradingAt()); this.setTradingAt(source.getTradingAt());
......
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