shikeying
2022-09-26 fd03e31f173ad9c52b15a30a9127e2b6a468538d
recommend-model-pojo/src/main/java/com/iplatform/model/po/Rc_video_t2.java
@@ -37,6 +37,10 @@
    @JsonIgnore
    protected boolean isset_score = false;
    private String batch_id = null;
    @JsonIgnore
    protected boolean isset_batch_id = false;
    /**
     * 默认构造函数
     */
@@ -114,6 +118,17 @@
        return this.score == null;
    }
    public String getBatch_id(){return this.batch_id;}
    public void setBatch_id(String batch_id){
        this.batch_id = batch_id;
        this.isset_batch_id = true;
    }
    @JsonIgnore
    public boolean isEmptyBatch_id(){return this.batch_id == null || this.batch_id.length() == 0;}
    /**
     * 重写 toString() 方法
     */
@@ -124,6 +139,7 @@
                .append("src_video_id=").append(this.src_video_id)
                .append("sim_video_id=").append(this.sim_video_id)
                .append("score=").append(this.score)
                .append("batch_id=").append(this.batch_id)
                .toString();
    }
@@ -150,6 +166,9 @@
        if (this.isset_score) {
            rc_video_t2.setScore(this.getScore());
        }
        if(this.isset_batch_id){
            rc_video_t2.setBatch_id(this.getBatch_id());
        }
        return rc_video_t2;
    }
}