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; + +}