Commit ac05b9c3 by Java-聂换换

bean

parent 1c96ec28
package com.ejweb.modules.front.report.bean;
import com.ejweb.core.base.BaseBean;
/**
* Created by lenovo on 2017/9/9.
*/
public class ReportAttachmentBean extends BaseBean {
private String id;
private String reportId;
private String attachmentName;
private String attachmentPath;
private String attachmentSize;
private String attachmentType;
public String getId() {
return id;
}
public void setId(String id) {
this.id = id;
}
public String getReportId() {
return reportId;
}
public void setReportId(String reportId) {
this.reportId = reportId;
}
public String getAttachmentName() {
return attachmentName;
}
public void setAttachmentName(String attachmentName) {
this.attachmentName = attachmentName;
}
public String getAttachmentPath() {
return attachmentPath;
}
public void setAttachmentPath(String attachmentPath) {
this.attachmentPath = attachmentPath;
}
public String getAttachmentSize() {
return attachmentSize;
}
public void setAttachmentSize(String attachmentSize) {
this.attachmentSize = attachmentSize;
}
public String getAttachmentType() {
return attachmentType;
}
public void setAttachmentType(String attachmentType) {
this.attachmentType = attachmentType;
}
}
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment