| | |
| | | import com.ruoyi.basic.pojo.CustomerFollowUp; |
| | | import com.ruoyi.basic.pojo.CustomerPrivatePool; |
| | | import com.ruoyi.framework.aspectj.lang.annotation.Excel; |
| | | import io.swagger.annotations.ApiModelProperty; |
| | | import io.swagger.v3.oas.annotations.media.Schema; |
| | | import lombok.Data; |
| | | import org.springframework.format.annotation.DateTimeFormat; |
| | | |
| | |
| | | private String customerName; |
| | | /** 客户分类:零售客户,进销商客户 */ |
| | | |
| | | @ApiModelProperty(value = "客户要id") |
| | | @Schema(description = "客户要id") |
| | | private Long customerId; |
| | | |
| | | /** |
| | |
| | | @TableField(fill = FieldFill.INSERT) |
| | | private Long tenantId; |
| | | |
| | | @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; |
| | | |
| | | |
| | | @ApiModelProperty(value = "跟进记录") |
| | | @Schema(description = "跟进记录") |
| | | private List<CustomerFollowUpDto> followUpList; |
| | | |
| | | @ApiModelProperty(value = "绑定人ids") |
| | | @Schema(description = "绑定人ids") |
| | | private List< Long> boundIds; |
| | | |
| | | @Excel(isExport = false) |