中扬CRM客户关系管理系统
LSH
2023-11-09 a33070f3623761e8c14e818294d0f30e388a57ae
src/main/java/com/zy/crm/manager/entity/Plan.java
@@ -252,7 +252,58 @@
    @ApiModelProperty(value= "节点负责人")
    private Long director;
    public Plan() {}
    /**
     * 集成项目货架核价状态
     */
    @ApiModelProperty(value = "状态 3: 完成核价 2: 开始核价 1: 等待核价  0: 初始  ")
    private Integer status2;
    /**
     * 节点负责人
     */
    @ApiModelProperty(value = "副planId")
    @TableField("assistant_plan_id")
    private Long assistantPlanId;
    /**
     * 节点负责人
     */
    @ApiModelProperty(value = "主planId")
    @TableField("host_plan_id")
    private Long hostPlanId;
    /**
     * 节点负责人
     */
    @ApiModelProperty(value = "主planId")
    @TableField("assistant_host_sign")
    private Integer assistantHostSign;
    public Plan() {
    }
    public Plan(Plan plan) {
        this.hostId = plan.getHostId();
        this.deptId = plan.getDeptId();
        this.planType = plan.getPlanType();
        this.userId = plan.getUserId();
        this.orderId = plan.getOrderId();
        this.cstmrId = plan.getCstmrId();
        this.name = plan.getName();
        this.planNeed = plan.getPlanNeed();
        this.beItem = plan.getBeItem();
        this.form = plan.getForm();
        this.finishTime = plan.getFinishTime();
        this.change = plan.getChange();
        this.changeTime = plan.getChangeTime();
        this.changeReason = plan.getChangeReason();
        this.planBonus = plan.getPlanBonus();
        this.planLeaderBonus = plan.getPlanLeaderBonus();
        this.files = plan.getFiles();
        this.comment = plan.getComment();
        this.memo = plan.getMemo();
        this.userXmlSelPhone = plan.getUserXmlSelPhone();
    }
    public String getHostId$(){
        HostService service = SpringUtils.getBean(HostService.class);
@@ -352,7 +403,9 @@
    }
    public String getBeItem$(){
        if (null == this.beItem){ return null; }
        if (null == this.beItem) {
            return null;
        }
        switch (this.beItem){
            case 1:
                return "是";
@@ -371,7 +424,9 @@
    }
    public String getChange$(){
        if (null == this.change){ return null; }
        if (null == this.change) {
            return null;
        }
        switch (this.change){
            case 1:
                return "是";
@@ -383,7 +438,9 @@
    }
    public String getSettle$(){
        if (null == this.settle){ return null; }
        if (null == this.settle) {
            return null;
        }
        switch (this.settle){
//            case 1:
//                return "等待组长审核";
@@ -421,7 +478,9 @@
    }
    public String getStatus$(){
        if (null == this.status){ return null; }
        if (null == this.status) {
            return null;
        }
        switch (this.status){
            case 2:
                return "开始核价";