【Java开源代码栏目提醒】:网学会员,鉴于大家对Java开源代码十分关注,论文会员在此为大家搜集整理了“Attachment.java”一文,供大家参考学习!
package com.example.gw.attachment;
// Generated by MyEclipse - Hibernate Tools
//import com.example.gw.senddocform.SendDocForm;
/**
* Attachment generated by MyEclipse - Hibernate Tools
*/
public class Attachment extends AbstractAttachment implements java.io.Serializable {
// Constructors
/** default constructor */
public Attachment() {
}
/** full constructor */
public Attachment(Integer itemId,String title, String path, String site, String fileName, Integer fileSize, String mimeType, String tableName, String orderby, String status){
super(itemId, title, path, site, fileName, fileSize, mimeType, tableName, orderby, status);
}
public String getFilePath(){
return getPath()+getSite()+"/"+getFileName();
}
}