44323
2024-01-26 0774ea976b6aa86a8a7de334fa24fbd7524295d5
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
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;
}