From 585f294e52b4106a73cf97557bd2e55108444a61 Mon Sep 17 00:00:00 2001 From: clunt Date: Fri, 20 May 2022 10:36:09 +0800 Subject: [PATCH] =?UTF-8?q?=E6=96=B0=E5=A2=9E=E9=93=B6=E8=A1=8C=E5=8D=A1+a?= =?UTF-8?q?dapy=E6=B3=A8=E5=86=8C=E5=85=B3=E7=B3=BB?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../customer/domain/customerBankDeptRela.java | 25 +++++++++++++++++++ 1 file changed, 25 insertions(+) create mode 100644 ghy-custom/src/main/java/com/ghy/customer/domain/customerBankDeptRela.java diff --git a/ghy-custom/src/main/java/com/ghy/customer/domain/customerBankDeptRela.java b/ghy-custom/src/main/java/com/ghy/customer/domain/customerBankDeptRela.java new file mode 100644 index 00000000..e08a29ed --- /dev/null +++ b/ghy-custom/src/main/java/com/ghy/customer/domain/customerBankDeptRela.java @@ -0,0 +1,25 @@ +package com.ghy.customer.domain; + +import com.ghy.common.annotation.Excel; +import com.ghy.common.core.domain.BaseEntity; +import lombok.Data; + +/** + * + */ +@Data +public class customerBankDeptRela extends BaseEntity { + + @Excel(name = "主键id", cellType = Excel.ColumnType.NUMERIC) + private Long id; + + @Excel(name = "消费者银行卡id", cellType = Excel.ColumnType.NUMERIC) + private Long customerBankId; + + @Excel(name = "分公司id", cellType = Excel.ColumnType.NUMERIC) + private Long deptId; + + @Excel(name = "adapay会员账号", cellType = Excel.ColumnType.STRING) + private String adapayMemberId; + +}