代码拉取完成,页面将自动刷新
同步操作将从 Rainy/DocSys 强制同步,此操作会覆盖自 Fork 仓库以来所做的任何修改,且无法恢复!!!
确定后同步将在后台操作,完成时将刷新页面,请耐心等待。
package com.DocSystem.common;
import com.DocSystem.entity.Doc;
import com.DocSystem.entity.Repos;
import com.DocSystem.entity.User;
public class DocChange {
private DocChangeType type = DocChangeType.UNDEFINED;
private Repos repos = null;
private Doc doc = null;
private Doc dbDoc = null;
private Doc localEntry = null;
private Doc remoteEntry = null;
//For commitAction
private String commitMsg = null;
private String commitUser = null;
private User user = null;
public void setType(DocChangeType type) {
this.type = type;
}
public DocChangeType getType()
{
return type;
}
public void setRepos(Repos repos) {
this.repos = repos;
}
public Repos getRepos()
{
return repos;
}
public void setDoc(Doc doc) {
this.doc = doc;
}
public Doc getDoc()
{
return doc;
}
public void setDbDoc(Doc dbDoc) {
this.dbDoc = dbDoc;
}
public Doc getDbDoc()
{
return dbDoc;
}
public void setLocalEntry(Doc localEntry) {
this.localEntry = localEntry;
}
public Doc getLocalEntry()
{
return localEntry;
}
public void setRemoteEntry(Doc remoteEntry) {
this.remoteEntry = remoteEntry;
}
public Doc getRemoteEntry()
{
return remoteEntry;
}
//For commitAction
public void setCommitMsg(String commitMsg) {
this.commitMsg = commitMsg;
}
public String getCommitMsg()
{
return commitMsg;
}
public void setUser(User user) {
this.user = user;
}
public User getUser()
{
return user;
}
public void setCommitUser(String commitUser) {
this.commitUser = commitUser;
}
public String getCommitUser()
{
return commitUser;
}
}
此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。
如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。