| | |
| | | |
| | | import com.baomidou.mybatisplus.annotation.*; |
| | | import com.fasterxml.jackson.annotation.JsonFormat; |
| | | import io.swagger.annotations.ApiModelProperty; |
| | | import io.swagger.v3.oas.annotations.media.Schema; |
| | | import lombok.Data; |
| | | import com.ruoyi.framework.aspectj.lang.annotation.Excel; |
| | | import org.checkerframework.checker.units.qual.A; |
| | | |
| | | /** |
| | | * 客户档案对象 customer |
| | |
| | | @TableField(exist = false) |
| | | private String addressPhone; |
| | | |
| | | @ApiModelProperty(value = "银行基本户") |
| | | @Schema(description = "银行基本户") |
| | | @Excel(name = "银行基本户") |
| | | private String basicBankAccount; |
| | | |
| | | @ApiModelProperty(value = "银行账号") |
| | | @Schema(description = "银行账号") |
| | | @Excel(name = "银行账号") |
| | | private String bankAccount; |
| | | |
| | | @ApiModelProperty(value = "开户行号") |
| | | @Schema(description = "开户行号") |
| | | @Excel(name = "开户行号") |
| | | private String bankCode; |
| | | @ApiModelProperty(value = "创建用户") |
| | | @Schema(description = "创建用户") |
| | | @TableField(fill = FieldFill.INSERT) |
| | | private Integer createUser; |
| | | |
| | | @TableField(fill = FieldFill.INSERT) |
| | | private Long deptId; |
| | | |
| | | @Schema(description = "使用用户") |
| | | private Long usageUser; |
| | | @Schema(description = "使用状态") |
| | | private Long usageStatus; |
| | | |
| | | } |