package com.ruoyi.shop.domain.pojo.shop;
|
|
import com.baomidou.mybatisplus.annotation.IdType;
|
import com.baomidou.mybatisplus.annotation.TableField;
|
import com.baomidou.mybatisplus.annotation.TableId;
|
import com.baomidou.mybatisplus.annotation.TableName;
|
import lombok.Data;
|
|
/**
|
* @author zhibing.pu
|
* @Date 2023/10/17 15:58
|
*/
|
@Data
|
@TableName("t_bank_branch_code")
|
public class BankBranchCode {
|
/**
|
* 主键
|
*/
|
@TableId(value = "id", type = IdType.AUTO)
|
private Integer id;
|
/**
|
* 联行号
|
*/
|
@TableField("correspondent_number")
|
private String correspondentNumber;
|
/**
|
* 联行号名称
|
*/
|
@TableField("correspondent_number_name")
|
private String correspondentNumberName;
|
/**
|
* 银行号
|
*/
|
@TableField("bank_number")
|
private String bankNumber;
|
/**
|
* 银行名称
|
*/
|
@TableField("bank_name")
|
private String bankName;
|
}
|