#
Junjie
10 小时以前 c0df58a6fb50ee32e7336b5901000549700ebc82
src/main/java/com/zy/asrs/entity/WrkMast.java
@@ -175,6 +175,13 @@
    private String systemMsg;
    /**
     * 下发失败次数
     */
    @ApiModelProperty(value= "下发失败次数")
    @TableField(value = "send_fail_count")
    private Integer sendFailCount;
    /**
     * 批次号
     */
    @ApiModelProperty(value= "批次号")
@@ -194,6 +201,9 @@
        if (entity != null) {
            return entity.getWrkDesc();
        }
        try {
            return com.zy.core.enums.WrkStsType.query(this.wrkSts).desc;
        } catch (Exception ignore) {}
        return null;
    }
@@ -275,6 +285,10 @@
    }
    public void setErrorMemo(String errorMemo) {
        if (errorMemo == null) {
            this.errorMemo = null;
            return;
        }
        if (errorMemo.length() > 255) {
            errorMemo = errorMemo.substring(0, 150);
        }