|
|
@@ -0,0 +1,154 @@
|
|
|
+package com.ydtech.modules.admin.model.dto;
|
|
|
+
|
|
|
+import com.alibaba.excel.annotation.ExcelProperty;
|
|
|
+import com.alibaba.excel.annotation.write.style.ColumnWidth;
|
|
|
+import com.fasterxml.jackson.annotation.JsonFormat;
|
|
|
+import lombok.Data;
|
|
|
+
|
|
|
+import java.math.BigDecimal;
|
|
|
+import java.util.Date;
|
|
|
+/**
|
|
|
+ * @version
|
|
|
+ * @author: hxl
|
|
|
+ * @Date: 2024/7/9 11:41
|
|
|
+ * @Description: 已提现导出列表
|
|
|
+ */
|
|
|
+@Data
|
|
|
+@ColumnWidth(18)
|
|
|
+public class SysAmountAuditingEntityDto {
|
|
|
+
|
|
|
+ @ExcelProperty(value="序号",index = 0)
|
|
|
+ private int numbers;
|
|
|
+ /**
|
|
|
+ * id
|
|
|
+ */
|
|
|
+ @ExcelProperty(value="提现单号",index = 1)
|
|
|
+ private String id;
|
|
|
+ /**
|
|
|
+ * 用户id
|
|
|
+ */
|
|
|
+ @ExcelProperty(value="业务员工号",index = 2)
|
|
|
+ private String userId;
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 用户名称
|
|
|
+ */
|
|
|
+ @ExcelProperty(value="业务员姓名",index = 3)
|
|
|
+ private String userName;
|
|
|
+
|
|
|
+ /***
|
|
|
+ * 维护人名称
|
|
|
+ */
|
|
|
+ @ExcelProperty(value="维护人工号",index = 4)
|
|
|
+ private String leaderId;
|
|
|
+
|
|
|
+ /***
|
|
|
+ * 维护人
|
|
|
+ */
|
|
|
+ @ExcelProperty(value="维护人",index = 5)
|
|
|
+ private String leaderName;
|
|
|
+
|
|
|
+ /***
|
|
|
+ * 账户名称
|
|
|
+ */
|
|
|
+ @ExcelProperty(value="内部账户名称",index = 6)
|
|
|
+ private String accountName;
|
|
|
+
|
|
|
+ /***
|
|
|
+ * 银行卡号
|
|
|
+ */
|
|
|
+ @ExcelProperty(value="内部银行卡号",index = 7)
|
|
|
+ private String bankCardNum;
|
|
|
+
|
|
|
+ /***
|
|
|
+ * 开户行名称
|
|
|
+ */
|
|
|
+ @ExcelProperty(value="内部开户行",index = 8)
|
|
|
+ private String bankName;
|
|
|
+
|
|
|
+ /***
|
|
|
+ * 开户行号
|
|
|
+ */
|
|
|
+ @ExcelProperty(value="内部开户行号",index = 9)
|
|
|
+ private String bankNum;
|
|
|
+
|
|
|
+ @ExcelProperty(value="电话",index = 10)
|
|
|
+ private String mobile;
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 提现金额
|
|
|
+ */
|
|
|
+ @ExcelProperty(value="提现金额",index = 11)
|
|
|
+ private BigDecimal amount;
|
|
|
+
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 剩余金额
|
|
|
+ */
|
|
|
+ @ColumnWidth(25)
|
|
|
+ @ExcelProperty(value="业务员账户余额",index = 12)
|
|
|
+ private BigDecimal surplusAmount;
|
|
|
+
|
|
|
+ /***
|
|
|
+ * 银行卡真实姓名
|
|
|
+ */
|
|
|
+ @ExcelProperty(value="真实姓名",index = 13)
|
|
|
+ private String realUserName;
|
|
|
+
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 开户行
|
|
|
+ */
|
|
|
+ @ExcelProperty(value="开户行",index = 14)
|
|
|
+ private String bankAccount;
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 开户行地址
|
|
|
+ */
|
|
|
+ @ExcelProperty(value="银行",index = 15)
|
|
|
+ private String bankAddress;
|
|
|
+ /**
|
|
|
+ * 银行卡号
|
|
|
+ */
|
|
|
+ @ExcelProperty(value="账号",index = 16)
|
|
|
+ private String bankNumber;
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 凭证号
|
|
|
+ */
|
|
|
+ @ExcelProperty(value="凭证号",index = 17)
|
|
|
+ private String voucherId;
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 创建时间
|
|
|
+ */
|
|
|
+ @ExcelProperty(value="提现时间",index = 18)
|
|
|
+ @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss", timezone = "GMT+8")
|
|
|
+ private Date createTime;
|
|
|
+
|
|
|
+
|
|
|
+ public SysAmountAuditingEntityDto() {
|
|
|
+ }
|
|
|
+
|
|
|
+ public SysAmountAuditingEntityDto(int numbers, String id, String userId, String userName, String leaderId, String leaderName, String accountName, String bankCardNum, String bankName, String bankNum, String mobile, BigDecimal amount, BigDecimal surplusAmount, String realUserName, String bankAccount, String bankAddress, String bankNumber, String voucherId, Date createTime) {
|
|
|
+ this.numbers = numbers;
|
|
|
+ this.id = id;
|
|
|
+ this.userId = userId;
|
|
|
+ this.userName = userName;
|
|
|
+ this.leaderId = leaderId;
|
|
|
+ this.leaderName = leaderName;
|
|
|
+ this.accountName = accountName;
|
|
|
+ this.bankCardNum = bankCardNum;
|
|
|
+ this.bankName = bankName;
|
|
|
+ this.bankNum = bankNum;
|
|
|
+ this.mobile = mobile;
|
|
|
+ this.amount = amount;
|
|
|
+ this.surplusAmount = surplusAmount;
|
|
|
+ this.realUserName = realUserName;
|
|
|
+ this.bankAccount = bankAccount;
|
|
|
+ this.bankAddress = bankAddress;
|
|
|
+ this.bankNumber = bankNumber;
|
|
|
+ this.voucherId = voucherId;
|
|
|
+ this.createTime = createTime;
|
|
|
+ }
|
|
|
+}
|