package com.landtool.lanbase.modules.res.entity;
|
|
import java.sql.Timestamp;
|
|
public class Res_TempPrint {
|
private Integer objectid; //主键
|
private Integer userid; //用户ID
|
private Integer rtid; //模板ID
|
private String title; //出图标题
|
private String chartcontent; //制图信息
|
private String mapcontent; //地图内容
|
private java.sql.Timestamp auditdate; //审核时间
|
private Integer audituserid; //审核人
|
private String auditopinion; //审核意见
|
private Integer auditstatus; //审核结果(0:不通过 1:通过)
|
private Integer isshowlegend; //显示图例(0:不显示 1:显示)
|
private String chartstyle; //出图格式
|
private String chartscale; //出图比例
|
private String chartextent; //出图范围
|
private Integer isscalelocked;//是否锁定比例尺(0:不锁定 1:锁定)
|
|
private java.sql.Timestamp chartdate;
|
public Integer getObjectid() {
|
return objectid;
|
}
|
|
public void setObjectid(Integer objectid) {
|
this.objectid = objectid;
|
}
|
|
public Integer getUserid() {
|
return userid;
|
}
|
|
public void setUserid(Integer userid) {
|
this.userid = userid;
|
}
|
|
public Integer getRtid() {
|
return rtid;
|
}
|
|
public void setRtid(Integer rtid) {
|
this.rtid = rtid;
|
}
|
|
public String getTitle() {
|
return title;
|
}
|
|
public void setTitle(String title) {
|
this.title = title;
|
}
|
|
public String getChartcontent() {
|
return chartcontent;
|
}
|
|
public void setChartcontent(String chartcontent) {
|
this.chartcontent = chartcontent;
|
}
|
|
public String getMapcontent() {
|
return mapcontent;
|
}
|
|
public void setMapcontent(String mapcontent) {
|
this.mapcontent = mapcontent;
|
}
|
|
public Timestamp getAuditdate() {
|
return auditdate;
|
}
|
|
public void setAuditdate(Timestamp auditdate) {
|
this.auditdate = auditdate;
|
}
|
|
public Integer getAudituserid() {
|
return audituserid;
|
}
|
|
public void setAudituserid(Integer audituserid) {
|
this.audituserid = audituserid;
|
}
|
|
public String getAuditopinion() {
|
return auditopinion;
|
}
|
|
public void setAuditopinion(String auditopinion) {
|
this.auditopinion = auditopinion;
|
}
|
|
public Integer getAuditstatus() {
|
return auditstatus;
|
}
|
|
public void setAuditstatus(Integer auditstatus) {
|
this.auditstatus = auditstatus;
|
}
|
|
public Integer getIsshowlegend() {
|
return isshowlegend;
|
}
|
|
public void setIsshowlegend(Integer isshowlegend) {
|
this.isshowlegend = isshowlegend;
|
}
|
|
public String getChartstyle() {
|
return chartstyle;
|
}
|
|
public void setChartstyle(String chartstyle) {
|
this.chartstyle = chartstyle;
|
}
|
|
public String getChartscale() {
|
return chartscale;
|
}
|
|
public void setChartscale(String chartscale) {
|
this.chartscale = chartscale;
|
}
|
|
public Timestamp getChartdate() {
|
return chartdate;
|
}
|
|
public void setChartdate(Timestamp chartdate) {
|
this.chartdate = chartdate;
|
}
|
|
public String getChartextent() {
|
return chartextent;
|
}
|
|
public void setChartextent(String chartextent) {
|
this.chartextent = chartextent;
|
}
|
|
public Integer getIsscalelocked() {
|
return isscalelocked;
|
}
|
|
public void setIsscalelocked(Integer isscalelocked) {
|
this.isscalelocked = isscalelocked;
|
}
|
}
|