|
|
@ -2,6 +2,7 @@ package com.example.demo.domain.vo.coin; |
|
|
|
|
|
|
|
import com.alibaba.excel.annotation.ExcelIgnore; |
|
|
|
import com.alibaba.excel.annotation.ExcelProperty; |
|
|
|
import com.example.demo.Export.RefundConverter; |
|
|
|
import com.fasterxml.jackson.annotation.JsonFormat; |
|
|
|
import jakarta.validation.constraints.PositiveOrZero; |
|
|
|
import lombok.AllArgsConstructor; |
|
|
@ -56,7 +57,7 @@ public class ConsumeUser implements Serializable { |
|
|
|
private Integer adminId; //提交人Id |
|
|
|
@ExcelProperty("提交人") |
|
|
|
private String adminName; //提交人姓名 |
|
|
|
@ExcelProperty("是否退款 0-否 1-是") |
|
|
|
@ExcelProperty(value = "是否退款", converter = RefundConverter.class) |
|
|
|
private Integer isRefund; //是否退款 |
|
|
|
@ExcelProperty("消耗时间") |
|
|
|
@JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss", timezone = "Asia/Shanghai") |
|
|
|