| | |
| | | import java.time.LocalDateTime; |
| | | |
| | | import com.ruoyi.framework.aspectj.lang.annotation.Excel; |
| | | import io.swagger.annotations.ApiModel; |
| | | import io.swagger.annotations.ApiModelProperty; |
| | | import io.swagger.v3.oas.annotations.media.Schema; |
| | | import lombok.Data; |
| | | import lombok.Getter; |
| | | import lombok.Setter; |
| | |
| | | */ |
| | | @Data |
| | | @TableName("customer_private_pool") |
| | | @ApiModel(value = "CustomerPrivatePool对象", description = "") |
| | | @Schema(name = "CustomerPrivatePool对象", description = "") |
| | | public class CustomerPrivatePool implements Serializable { |
| | | |
| | | private static final long serialVersionUID = 1L; |
| | | |
| | | @ApiModelProperty("主键id") |
| | | @Schema(description = "主键id") |
| | | @TableId(value = "id", type = IdType.AUTO) |
| | | private Long id; |
| | | |
| | | @ApiModelProperty("客户id") |
| | | @Schema(description = "客户id") |
| | | private Long customerId; |
| | | |
| | | @ApiModelProperty("绑定人id") |
| | | @Schema(description = "绑定人id") |
| | | private Long boundId; |
| | | |
| | | @ApiModelProperty("创建人") |
| | | @Schema(description = "创建人") |
| | | @TableField(fill = FieldFill.INSERT) |
| | | private Integer createUser; |
| | | |
| | | @ApiModelProperty("更新人") |
| | | @Schema(description = "更新人") |
| | | @TableField(fill = FieldFill.INSERT_UPDATE) |
| | | private Integer updateUser; |
| | | |
| | | @ApiModelProperty("创建时间") |
| | | @Schema(description = "创建时间") |
| | | @TableField(fill = FieldFill.INSERT) |
| | | private LocalDateTime createTime; |
| | | |
| | | @ApiModelProperty("更新时间") |
| | | @Schema(description = "更新时间") |
| | | @TableField(fill = FieldFill.INSERT_UPDATE) |
| | | private LocalDateTime updateTime; |
| | | |
| | | @ApiModelProperty("类型区分公海客户和私海客户 默认是私海客户0 公海1") |
| | | @Schema(description = "类型区分公海客户和私海客户 默认是私海客户0 公海1") |
| | | private Long type; |
| | | |
| | | @ApiModelProperty("部门id") |
| | | @Schema(description = "部门id") |
| | | @TableField(fill = FieldFill.INSERT) |
| | | private Long deptId; |
| | | |
| | | @ApiModelProperty("删除标识 默认0 1已经删除") |
| | | @Schema(description = "删除标识 默认0 1已经删除") |
| | | private Integer DeleteFlag; |
| | | } |