package com.bdyjy.entity; import java.io.Serializable; public class attArryData implements Serializable { private Integer id; //����ID private String fileName; //�ļ����� private String fileType; //�ļ����� private String fileSize; //�ļ���С private String creationTime; //�ϴ�ʱ�� private String creationPerson; //������ private String filePath; //�ļ�·�� private int businessType; //�������� private String foreignId; //���ID ����������¶������ʱ������ID public void setId(Integer id){ this.id=id; } public Integer getId(){ return this.id; } public void setFileName(String fileName){ this.fileName=fileName; } public String getFileName(){ return this.fileName; } public void setFileType(String fileType){ this.fileType=fileType; } public String getFileType(){ return this.fileType; } public void setFileSize(String fileSize){ this.fileSize=fileSize; } public String getFileSize(){ return this.fileSize; } public void setCreationTime(String creationTime){ this.creationTime=creationTime; } public String getCreationTime(){ return this.creationTime; } public void setCreationPerson(String creationPerson){ this.creationPerson=creationPerson; } public String getCreationPerson(){ return this.creationPerson; } public void setFilePath(String filePath){ this.filePath=filePath; } public String getFilePath(){ return this.filePath; } public void setBusinessType(int businessType){ this.businessType=businessType; } public int getBusinessType(){ return this.businessType; } public void setForeignId(String foreignId){ this.foreignId=foreignId; } public String getForeignId(){ return this.foreignId; } /** * @return the serialversionuid */ public static long getSerialversionuid() { return serialVersionUID; } private static final long serialVersionUID = 0000000000000001022L; }