📄 itemdto.java~1~
字号:
package com.hope.itissue.index_info.bean;
public class ItemDTO {
private String ID;
private String ParentID;
private String DnetName;
private String DnetContent;
private String DnetDate;
private String DnetImage;
private String IsUse;
private String sourceFileName;
private String writeFileName;
public void setSourceFileName(String sourceFileName) {
this.sourceFileName = sourceFileName;
}
public void setWriteFileName(String writeFileName) {
this.writeFileName = writeFileName;
}
public String getSourceFileName() {
return sourceFileName;
}
public String getWriteFileName() {
return writeFileName;
}
public void setIsUse(String IsUse) {
this.IsUse = IsUse;
}
public String getIsUse() {
return IsUse;
}
public void setDnetImage(String DnetImage) {
this.DnetImage = DnetImage;
}
public String getDnetImage() {
return DnetImage;
}
public void setDnetDate(String DnetDate) {
this.DnetDate = DnetDate;
}
public String getDnetDate() {
return DnetDate;
}
public void setDnetContent(String DnetContent) {
this.DnetContent = DnetContent;
}
public String getDnetContent() {
return DnetContent;
}
public void setDnetName(String DnetName) {
this.DnetName = DnetName;
}
public String getDnetName() {
return DnetName;
}
public void setParentID(String ParentID) {
this.ParentID = ParentID;
}
public String getParentID() {
return ParentID;
}
public void setID(String ID) {
this.ID = ID;
}
public String getID() {
return ID;
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -