package com.ruoyi.basic.pojo;
|
|
import com.baomidou.mybatisplus.annotation.FieldFill;
|
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 java.io.Serializable;
|
import java.time.LocalDateTime;
|
|
import com.ruoyi.framework.aspectj.lang.annotation.Excel;
|
import io.swagger.v3.oas.annotations.media.Schema;
|
import lombok.Data;
|
import lombok.Getter;
|
import lombok.Setter;
|
|
/**
|
* <p>
|
*
|
* </p>
|
*
|
* @author 芯导软件(江苏)有限公司
|
* @since 2026-04-16 04:43:00
|
*/
|
@Data
|
@TableName("customer_private_pool")
|
@Schema(name = "CustomerPrivatePool对象", description = "")
|
public class CustomerPrivatePool implements Serializable {
|
|
private static final long serialVersionUID = 1L;
|
|
@Schema(description = "主键id")
|
@TableId(value = "id", type = IdType.AUTO)
|
private Long id;
|
|
@Schema(description = "客户id")
|
private Long customerId;
|
|
@Schema(description = "绑定人id")
|
private Long boundId;
|
|
@Schema(description = "创建人")
|
@TableField(fill = FieldFill.INSERT)
|
private Integer createUser;
|
|
@Schema(description = "更新人")
|
@TableField(fill = FieldFill.INSERT_UPDATE)
|
private Integer updateUser;
|
|
@Schema(description = "创建时间")
|
@TableField(fill = FieldFill.INSERT)
|
private LocalDateTime createTime;
|
|
@Schema(description = "更新时间")
|
@TableField(fill = FieldFill.INSERT_UPDATE)
|
private LocalDateTime updateTime;
|
|
@Schema(description = "类型区分公海客户和私海客户 默认是私海客户0 公海1")
|
private Long type;
|
|
@Schema(description = "部门id")
|
@TableField(fill = FieldFill.INSERT)
|
private Long deptId;
|
|
@Schema(description = "删除标识 默认0 1已经删除")
|
private Integer DeleteFlag;
|
}
|