package com.landtool.lanbase.modules.res.entity.UserDefined;
|
|
import java.sql.Timestamp;
|
|
public class MainInfoJoinActionRecord {
|
|
private Integer resourceid;
|
|
private String title;
|
|
private String abbreviation;
|
|
private String resourceclass;
|
|
private Integer pubunitid;
|
|
private java.sql.Timestamp pubdate;
|
|
private Long userid;
|
|
private java.sql.Timestamp actiontime;
|
|
private String actiontype;
|
|
private String pubdateBegin;
|
|
private String pubdatefinish;
|
|
private String actiontimebegin;
|
|
private String actiontimefinish;
|
|
private String existpermission;//超级管理员字段
|
|
private Integer actionid;
|
|
private String sort;
|
|
private String dir;
|
|
private Integer appid;
|
|
private String ip;
|
|
public String getPubdatefinish() {
|
return pubdatefinish;
|
}
|
|
public void setPubdatefinish(String pubdatefinish) {
|
this.pubdatefinish = pubdatefinish;
|
}
|
|
public String getPubdateBegin() {
|
return pubdateBegin;
|
}
|
|
public void setPubdateBegin(String pubdateBegin) {
|
this.pubdateBegin = pubdateBegin;
|
}
|
|
public Integer getResourceid() {
|
return resourceid;
|
}
|
|
public void setResourceid(Integer resourceid) {
|
this.resourceid = resourceid;
|
}
|
|
public String getTitle() {
|
return title;
|
}
|
|
public void setTitle(String title) {
|
this.title = title;
|
}
|
|
public String getAbbreviation() {
|
return abbreviation;
|
}
|
|
public void setAbbreviation(String abbreviation) {
|
this.abbreviation = abbreviation;
|
}
|
|
public String getResourceclass() {
|
return resourceclass;
|
}
|
|
public void setResourceclass(String resourceclass) {
|
this.resourceclass = resourceclass;
|
}
|
|
public Integer getPubunitid() {
|
return pubunitid;
|
}
|
|
public void setPubunitid(Integer pubunitid) {
|
this.pubunitid = pubunitid;
|
}
|
|
public Timestamp getPubdate() {
|
return pubdate;
|
}
|
|
public void setPubdate(Timestamp pubdate) {
|
this.pubdate = pubdate;
|
}
|
|
public Long getUserid() {
|
return userid;
|
}
|
|
public void setUserid(Long userid) {
|
this.userid = userid;
|
}
|
|
public Timestamp getActiontime() {
|
return actiontime;
|
}
|
|
public void setActiontime(Timestamp actiontime) {
|
this.actiontime = actiontime;
|
}
|
|
public String getActiontype() {
|
return actiontype;
|
}
|
|
public void setActiontype(String actiontype) {
|
this.actiontype = actiontype;
|
}
|
|
public String getActiontimebegin() {
|
return actiontimebegin;
|
}
|
|
public void setActiontimebegin(String actiontimebegin) {
|
this.actiontimebegin = actiontimebegin;
|
}
|
|
public String getActiontimefinish() {
|
return actiontimefinish;
|
}
|
|
public void setActiontimefinish(String actiontimefinish) {
|
this.actiontimefinish = actiontimefinish;
|
}
|
|
public String getExistpermission() {
|
return existpermission;
|
}
|
|
public void setExistpermission(String existpermission) {
|
this.existpermission = existpermission;
|
}
|
|
public Integer getActionid() {
|
return actionid;
|
}
|
|
public void setActionid(Integer actionid) {
|
this.actionid = actionid;
|
}
|
|
public String getSort() {
|
return sort;
|
}
|
|
public void setSort(String sort) {
|
this.sort = sort;
|
}
|
|
public String getDir() {
|
return dir;
|
}
|
|
public void setDir(String dir) {
|
this.dir = dir;
|
}
|
|
public Integer getAppid() {
|
return appid;
|
}
|
|
public void setAppid(Integer appid) {
|
this.appid = appid;
|
}
|
|
public String getIp() {
|
return ip;
|
}
|
|
public void setIp(String ip) {
|
this.ip = ip;
|
}
|
|
@Override
|
public String toString() {
|
return "MainInfoJoinActionRecord{" +
|
"resourceid=" + resourceid +
|
", title=" + title +
|
", abbreviation=" + abbreviation +
|
", resourceclass=" + resourceclass +
|
", pubunitid=" + pubunitid +
|
", pubdate=" + pubdate +
|
", userid=" + userid +
|
", actiontime=" + actiontime +
|
", actiontype=" + actiontype +
|
", actiontimebegin=" + actiontimebegin +
|
", actiontimefinish=" + actiontimefinish +
|
", existpermission=" + existpermission +
|
", actionid=" + actionid +
|
", sort=" + sort +
|
", dir=" + dir +
|
", appid=" + appid +
|
", ip=" + ip +
|
'}';
|
}
|
}
|