| | |
| | | import io.swagger.annotations.ApiModelProperty; |
| | | import lombok.Data; |
| | | import com.ruoyi.framework.aspectj.lang.annotation.Excel; |
| | | import org.checkerframework.checker.units.qual.A; |
| | | |
| | | /** |
| | | * 客户档案对象 customer |
| | |
| | | @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; |
| | | } |