35 lines
829 B
Java
35 lines
829 B
Java
|
|
package com.nis.domain.configuration;
|
||
|
|
|
||
|
|
import java.util.Date;
|
||
|
|
|
||
|
|
import com.nis.domain.BaseEntity;
|
||
|
|
import com.nis.util.excel.ExcelField;
|
||
|
|
|
||
|
|
public class HelpInfo extends BaseEntity<HelpInfo>{
|
||
|
|
|
||
|
|
private static final long serialVersionUID = 2451757008384840494L;
|
||
|
|
private String fileName;
|
||
|
|
private String fileComment;
|
||
|
|
private String backFileComment;
|
||
|
|
public String getFileName() {
|
||
|
|
return fileName;
|
||
|
|
}
|
||
|
|
public void setFileName(String fileName) {
|
||
|
|
this.fileName = fileName;
|
||
|
|
}
|
||
|
|
public String getFileComment() {
|
||
|
|
return fileComment;
|
||
|
|
}
|
||
|
|
public void setFileComment(String fileComment) {
|
||
|
|
this.fileComment = fileComment;
|
||
|
|
}
|
||
|
|
public String getBackFileComment() {
|
||
|
|
return backFileComment;
|
||
|
|
}
|
||
|
|
public void setBackFileComment(String backFileComment) {
|
||
|
|
this.backFileComment = backFileComment;
|
||
|
|
}
|
||
|
|
|
||
|
|
|
||
|
|
}
|