| | |
| | | package com.ruoyi.basic.entity; |
| | | |
| | | import com.baomidou.mybatisplus.annotation.*; |
| | | 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 com.ruoyi.common.annotation.Excel; |
| | | import com.ruoyi.common.core.domain.MyBaseEntity; |
| | | import lombok.Data; |
| | | import com.ruoyi.common.core.domain.BaseEntity; |
| | | |
| | | /** |
| | | * 实体类 |
| | |
| | | /** |
| | | * 客户名称,不能为空 |
| | | */ |
| | | @Excel(name = "客户名称") |
| | | @TableField(value = "customer_name") |
| | | private String customerName; |
| | | /** |
| | | * 纳税人识别号,中国大陆为统一社会信用代码,不能为空 |
| | | */ |
| | | @Excel(name = "纳税人识别号") |
| | | @TableField(value = "taxpayer_id") |
| | | private String taxpayerId; |
| | | /** |
| | |
| | | /** |
| | | * 经营详细地址,默认空字符串 |
| | | */ |
| | | @Excel(name = "经营详细地址") |
| | | @TableField(value = "business_address") |
| | | private String businessAddress; |
| | | /** |
| | | * 银行账户号码,默认空字符串 |
| | | */ |
| | | @Excel(name = "银行账户") |
| | | @TableField(value = "bank_account") |
| | | private String bankAccount; |
| | | /** |
| | | * 开户银行名称,默认空字符串 |
| | | */ |
| | | @Excel(name = "开户行") |
| | | @TableField(value = "bank_name") |
| | | private String bankName; |
| | | /** |
| | | * 客户联系人姓名,默认空字符串 |
| | | */ |
| | | @Excel(name = "联系人") |
| | | @TableField(value = "contact_person") |
| | | private String contactPerson; |
| | | /** |
| | | * 联系人电话号码,默认空字符串 |
| | | */ |
| | | @Excel(name = "联系人电话") |
| | | @TableField(value = "contact_phone") |
| | | private String contactPhone; |
| | | /** |
| | |
| | | /** |
| | | * 联系详细地址,默认空字符串 |
| | | */ |
| | | @Excel(name = "联系详细地址") |
| | | @TableField(value = "contact_address") |
| | | private String contactAddress; |
| | | /** |
| | | * 创建该记录的用户ID,默认0 |
| | | */ |
| | | @TableField(value = "create_user") |
| | | private Long createUser; |
| | | /** |
| | | * 最后修改该记录的用户ID,默认0 |
| | | */ |
| | | @TableField(value = "update_user") |
| | | private Long updateUser; |
| | | } |