1 Star 0 Fork 1.4K

javaalpha/DocSys

forked from Rainy/DocSys 
加入 Gitee
与超过 1400万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
ChangedItem.java 1.90 KB
一键复制 编辑 原始数据 按行查看 历史
Rainy 提交于 2019-09-05 16:38 +08:00 . Merge from DocSys_bld_2.01
package com.DocSystem.entity;
public class ChangedItem
{
private Integer changeType;
private Integer entryType;
private String path;
private String name;
private String entryPath;
private String srcPath;
private String srcName;
private String srcEntryPath;
private String commitId;
public String getPath() {
return path;
}
public void setPath(String path) {
this.path = path == null ? null : path.trim();
}
public String getName() {
return name;
}
public void setName(String name) {
this.name = name == null ? null : name.trim();
}
public String getEntryPath() {
return entryPath;
}
public void setEntryPath(String entryPath) {
this.entryPath = entryPath == null ? null : entryPath.trim();
}
public String getSrcPath() {
return srcPath;
}
public void setSrcPath(String srcPath) {
this.srcPath = srcPath == null ? null : srcPath.trim();
}
public String getSrcName() {
return srcName;
}
public void setSrcName(String srcName) {
this.srcName = srcName == null ? null : srcName.trim();
}
public String getSrcEntryPath() {
return srcEntryPath;
}
public void setSrcEntryPath(String srcEntryPath) {
this.srcEntryPath = srcEntryPath == null ? null : srcEntryPath.trim();
}
public Integer getEntryType() {
return entryType;
}
public void setEntryType(Integer entryType) {
this.entryType = entryType;
}
public Integer getChangeType() {
return changeType;
}
public void setChangeType(Integer changeType) {
this.changeType = changeType;
}
public String getCommitId() {
return commitId;
}
public void setCommitId(String commitId) {
this.commitId = commitId;
}
}
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
Java
1
https://gitee.com/javaalpha/DocSys.git
git@gitee.com:javaalpha/DocSys.git
javaalpha
DocSys
DocSys
master

搜索帮助