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

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

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

import java.io.Serializable;

public class CodeBlame implements Serializable {
    private static final long serialVersionUID = 1L;
    /**
     * 作者
     */
    private String author;

    /**
     * 提交ID
     */
    private String commitId;

    /**
     * 提交时间: 2023-10-12 11:54:21
     */
    private String commitTime;

    /**
     * 所在行数
     */
    private Integer line;

    public String getAuthor() {
        return author;
    }

    public void setAuthor(String author) {
        this.author = author;
    }

    public String getCommitId() {
        return commitId;
    }

    public void setCommitId(String commitId) {
        this.commitId = commitId;
    }

    public String getCommitTime() {
        return commitTime;
    }

    public void setCommitTime(String commitTime) {
        this.commitTime = commitTime;
    }

    public Integer getLine() {
        return line;
    }

    public void setLine(Integer line) {
        this.line = line;
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy