ghy-all/ghy-custom/src/main/java/com/ghy/customer/domain/customerBankDeptRela.java

26 lines
626 B
Java

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