All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.duoec.doc.doclet.pojo.BookCreateResult Maven / Gradle / Ivy

The newest version!
package com.duoec.doc.doclet.pojo;

import java.io.Serializable;

/**
 * @author xuwenzhen
 */
public class BookCreateResult implements Serializable {
    private static final long serialVersionUID = 1L;
    /**
     * 创建后的文档ID,如果创建成功,则会有值,否则为null
     */
    private Long id;

    /**
     * 错误信息
     */
    private String error;

    public Long getId() {
        return id;
    }

    public void setId(Long id) {
        this.id = id;
    }

    public String getError() {
        return error;
    }

    public void setError(String error) {
        this.error = error;
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy