package com.terra.system.entity.sys;
|
|
import java.io.Serializable;
|
import java.sql.Timestamp;
|
|
/**
|
* 报告模板
|
* @author WWW
|
*/
|
public class ReportEntity implements Serializable {
|
private static final long serialVersionUID = -976039118587988992L;
|
|
private int id;
|
|
private String name;
|
|
private String type;
|
|
private String code;
|
|
private String fname;
|
|
private String guid;
|
|
private int createUser;
|
|
private Timestamp createTime;
|
|
private int updateUser;
|
|
private Timestamp updateTime;
|
|
private String bak;
|
|
private String createName;
|
|
private String updateName;
|
|
public ReportEntity() {
|
}
|
|
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 getType() {
|
return type;
|
}
|
|
public void setType(String type) {
|
this.type = type;
|
}
|
|
public String getCode() {
|
return code;
|
}
|
|
public void setCode(String code) {
|
this.code = code;
|
}
|
|
public String getFname() {
|
return fname;
|
}
|
|
public void setFname(String fname) {
|
this.fname = fname;
|
}
|
|
public String getGuid() {
|
return guid;
|
}
|
|
public void setGuid(String guid) {
|
this.guid = guid;
|
}
|
|
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;
|
}
|
|
public String getBak() {
|
return bak;
|
}
|
|
public void setBak(String bak) {
|
this.bak = bak;
|
}
|
|
public String getCreateName() {
|
return createName;
|
}
|
|
public void setCreateName(String createName) {
|
this.createName = createName;
|
}
|
|
public String getUpdateName() {
|
return updateName;
|
}
|
|
public void setUpdateName(String updateName) {
|
this.updateName = updateName;
|
}
|
}
|