package com.lf.server.entity.sys;
|
|
import java.io.Serializable;
|
import java.sql.Timestamp;
|
|
/**
|
* 附件
|
* @author WWW
|
*/
|
public class AttachEntity implements Serializable {
|
private static final long serialVersionUID = -106535972611296912L;
|
|
private int id;
|
|
private String name;
|
|
private String tab;
|
|
private String tabGuid;
|
|
private String guid;
|
|
private String path;
|
|
private double sizes;
|
|
private int createUser;
|
|
private Timestamp createTime;
|
|
private int updateUser;
|
|
private Timestamp updateTime;
|
|
public AttachEntity() {
|
}
|
|
public int getId() {
|
return id;
|
}
|
|
public void setId(int id) {
|
this.id = id;
|
}
|
|
public String getName() {
|
return name;
|
}
|
|
public void setName(String name) {
|
this.name = name;
|
}
|
|
public String getTab() {
|
return tab;
|
}
|
|
public void setTab(String tab) {
|
this.tab = tab;
|
}
|
|
public String getTabGuid() {
|
return tabGuid;
|
}
|
|
public void setTabGuid(String tabGuid) {
|
this.tabGuid = tabGuid;
|
}
|
|
public String getGuid() {
|
return guid;
|
}
|
|
public void setGuid(String guid) {
|
this.guid = guid;
|
}
|
|
public String getPath() {
|
return path;
|
}
|
|
public void setPath(String path) {
|
this.path = path;
|
}
|
|
public double getSizes() {
|
return sizes;
|
}
|
|
public void setSizes(double sizes) {
|
this.sizes = sizes;
|
}
|
|
public int getCreateUser() {
|
return createUser;
|
}
|
|
public void setCreateUser(int createUser) {
|
this.createUser = createUser;
|
}
|
|
public Timestamp getCreateTime() {
|
return createTime;
|
}
|
|
public void setCreateTime(Timestamp createTime) {
|
this.createTime = createTime;
|
}
|
|
public int getUpdateUser() {
|
return updateUser;
|
}
|
|
public void setUpdateUser(int updateUser) {
|
this.updateUser = updateUser;
|
}
|
|
public Timestamp getUpdateTime() {
|
return updateTime;
|
}
|
|
public void setUpdateTime(Timestamp updateTime) {
|
this.updateTime = updateTime;
|
}
|
}
|