86 lines
1.9 KiB
Java
86 lines
1.9 KiB
Java
package luckyweb.seagull.spring.entity;
|
|
|
|
import javax.persistence.Entity;
|
|
|
|
@Entity(name="operationLog")
|
|
public class OperationLog implements java.io.Serializable{
|
|
/**
|
|
*
|
|
*/
|
|
private static final long serialVersionUID = 1L;
|
|
private int id = 0;
|
|
private String tablename;
|
|
private int tableid;
|
|
private int projectid;
|
|
private String operation_time;
|
|
private String operationer;
|
|
private String operation_description;
|
|
private String starttime;
|
|
private String endtime;
|
|
private SectorProjects sectorProjects;
|
|
|
|
public SectorProjects getSectorProjects() {
|
|
return sectorProjects;
|
|
}
|
|
public void setSectorProjects(SectorProjects sectorProjects) {
|
|
this.sectorProjects = sectorProjects;
|
|
}
|
|
public String getStarttime() {
|
|
return starttime;
|
|
}
|
|
public void setStarttime(String starttime) {
|
|
this.starttime = starttime;
|
|
}
|
|
public String getEndtime() {
|
|
return endtime;
|
|
}
|
|
public void setEndtime(String endtime) {
|
|
this.endtime = endtime;
|
|
}
|
|
|
|
public int getProjectid() {
|
|
return projectid;
|
|
}
|
|
public void setProjectid(int projectid) {
|
|
this.projectid = projectid;
|
|
}
|
|
|
|
public int getId() {
|
|
return id;
|
|
}
|
|
public void setId(int id) {
|
|
this.id = id;
|
|
}
|
|
public String getTablename() {
|
|
return tablename;
|
|
}
|
|
public void setTablename(String tablename) {
|
|
this.tablename = tablename;
|
|
}
|
|
public int getTableid() {
|
|
return tableid;
|
|
}
|
|
public void setTableid(int tableid) {
|
|
this.tableid = tableid;
|
|
}
|
|
public String getOperation_time() {
|
|
return operation_time;
|
|
}
|
|
public void setOperation_time(String operation_time) {
|
|
this.operation_time = operation_time;
|
|
}
|
|
public String getOperationer() {
|
|
return operationer;
|
|
}
|
|
public void setOperationer(String operationer) {
|
|
this.operationer = operationer;
|
|
}
|
|
public String getOperation_description() {
|
|
return operation_description;
|
|
}
|
|
public void setOperation_description(String operation_description) {
|
|
this.operation_description = operation_description;
|
|
}
|
|
|
|
}
|