From c40be027ef8068b9a77bb24c94291dee25f563d8 Mon Sep 17 00:00:00 2001 From: huanghongfa <huanghongfa123456> Date: 星期四, 19 八月 2021 09:28:38 +0800 Subject: [PATCH] Merge remote-tracking branch 'origin/test' into test --- springcloud_k8s_panzhihuazhihuishequ/common/src/main/java/com/panzhihua/common/model/vos/community/ComActUserWalletTradeExcelVO.java | 51 +++++++++++++++++++++++++++++++++++++++++++++++++++ 1 files changed, 51 insertions(+), 0 deletions(-) diff --git a/springcloud_k8s_panzhihuazhihuishequ/common/src/main/java/com/panzhihua/common/model/vos/community/ComActUserWalletTradeExcelVO.java b/springcloud_k8s_panzhihuazhihuishequ/common/src/main/java/com/panzhihua/common/model/vos/community/ComActUserWalletTradeExcelVO.java new file mode 100644 index 0000000..535a8b0 --- /dev/null +++ b/springcloud_k8s_panzhihuazhihuishequ/common/src/main/java/com/panzhihua/common/model/vos/community/ComActUserWalletTradeExcelVO.java @@ -0,0 +1,51 @@ +package com.panzhihua.common.model.vos.community; + +import com.alibaba.excel.annotation.ExcelProperty; +import com.fasterxml.jackson.annotation.JsonFormat; +import com.panzhihua.common.model.helper.encrypt.EncryptDecryptClass; +import com.panzhihua.common.model.helper.encrypt.EncryptDecryptField; +import lombok.Data; + +import java.io.Serializable; +import java.math.BigDecimal; +import java.util.Date; + +/** + * @description: 批量导出钱包交易记录 + * @author: Null + * @date: 2021/3/11 17:11 + */ +@Data +public class ComActUserWalletTradeExcelVO implements Serializable { + /** + * 金额 + */ + @ExcelProperty(value = "金额" ,index = 0) + private BigDecimal amount; + /** + * 姓名 + */ + @ExcelProperty(value = "姓名" ,index = 1) + private String userName; + + /** + * 用户手机号 + */ + @ExcelProperty(value = "账号" ,index = 2) + private String phone; + + /** + * 时间 + */ + @ExcelProperty(value = "时间" ,index = 3) + @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss", timezone = "GMT+8") + private Date createAt; + + /** + * 操作人 + */ + @ExcelProperty(value = "操作人" ,index = 4) + private String createBy; + +} + -- Gitblit v1.7.1