huminmin
2026-04-29 c6e5c48338ce6ca3f0b52f4d9a5daccec76fffb4
src/main/java/com/ruoyi/basic/pojo/Customer.java
@@ -10,6 +10,7 @@
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;
import com.ruoyi.framework.aspectj.lang.annotation.Excel;
import org.checkerframework.checker.units.qual.A;
/**
 * 客户档案对象 customer
@@ -116,4 +117,21 @@
    @ApiModelProperty(value = "开户行号")
    @Excel(name = "开户行号")
    private String bankCode;
    @ApiModelProperty(value = "创建用户")
    @TableField(fill = FieldFill.INSERT)
    private Integer createUser;
    @TableField(fill = FieldFill.INSERT)
    private Long deptId;
    @ApiModelProperty(value = "使用用户")
    private Long usageUser;
    @ApiModelProperty(value = "使用状态")
    private Long usageStatus;
    @ApiModelProperty(value = "类型 0 私海客户 1 公海客户")
    private Integer type;
    @ApiModelProperty(value = "是否被分配:0-未分配,1-已分配")
    private Integer isAssigned;
}