新增银行卡+adapy注册关系
This commit is contained in:
parent
eaf042352e
commit
585f294e52
|
|
@ -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;
|
||||
|
||||
}
|
||||
Loading…
Reference in New Issue