| | |
| | | |
| | | import com.baomidou.mybatisplus.annotation.*; |
| | | import com.fasterxml.jackson.annotation.JsonFormat; |
| | | import io.swagger.annotations.ApiModelProperty; |
| | | import lombok.Data; |
| | | import com.ruoyi.framework.aspectj.lang.annotation.Excel; |
| | | |
| | |
| | | */ |
| | | @Excel(name = "客户名称") |
| | | private String customerName; |
| | | /** 客户分类:零售客户,进销商客户 */ |
| | | |
| | | @Excel(name = "客户分类") |
| | | private String customerType; |
| | | |
| | | /** |
| | | * 纳税人识别号 |
| | |
| | | |
| | | @TableField(exist = false) |
| | | private Long[] ids; |
| | | |
| | | @TableField(exist = false) |
| | | private String addressPhone; |
| | | |
| | | @ApiModelProperty(value = "银行基本户") |
| | | @Excel(name = "银行基本户") |
| | | private String basicBankAccount; |
| | | |
| | | @ApiModelProperty(value = "银行账号") |
| | | @Excel(name = "银行账号") |
| | | private String bankAccount; |
| | | |
| | | @ApiModelProperty(value = "开户行号") |
| | | @Excel(name = "开户行号") |
| | | private String bankCode; |
| | | } |