src/main/java/com/aliyun/openservices/log/common/AuditJobConfiguration.java [38:53]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
        return getDetail().equals(that.getDetail());
    }

    @Override
    public int hashCode() {
        int result = getDetail() != null ? getDetail().hashCode() : 0;
        return result;
    }

    @Override
    public String toString() {
        return this.detail;
    }

    public JSONObject toJsonObject() {
        return JSONObject.parseObject(this.detail);
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



src/main/java/com/aliyun/openservices/log/common/GeneralJobConfiguration.java [40:55]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
        return getDetail().equals(that.getDetail());
    }

    @Override
    public int hashCode() {
        int result = getDetail() != null ? getDetail().hashCode() : 0;
        return result;
    }

    @Override
    public String toString() {
        return this.detail;
    }

    public JSONObject toJsonObject() {
        return JSONObject.parseObject(this.detail);
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



