新增银行卡+adapy注册关系

This commit is contained in:
clunt 2022-05-20 10:36:09 +08:00
parent eaf042352e
commit 585f294e52
1 changed files with 25 additions and 0 deletions

View File

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