package com.landtool.lanbase.modules.res.entity;
|
|
import java.io.Serializable;
|
|
public class Res_Template implements Serializable{
|
|
/**
|
* 出图模板
|
*/
|
private static final long serialVersionUID = 1L;
|
//主键
|
private Integer rtid;
|
//模板名称
|
private String rtname;
|
//业务类型(海域、海岛)
|
private String businesstype;
|
//出图最小比例
|
private Integer scalemin;
|
//出图最大比例
|
private Integer scalemax;
|
//纸张大小
|
private String paperstyle;
|
//纸张排版(横版、纵版)
|
private String paperdirection;
|
//模板内容
|
private String chartcontent;
|
//地图大小
|
private Integer mapsize;
|
//模板类型
|
private String templatetype;
|
//模板url
|
private String templateurl;
|
//地图高度
|
private Integer mapwidth;
|
//地图宽度
|
private Integer mapheight;
|
|
public Integer getRtid() {
|
return rtid;
|
}
|
public void setRtid(Integer rtid) {
|
this.rtid = rtid;
|
}
|
public String getRtname() {
|
return rtname;
|
}
|
public void setRtname(String rtname) {
|
this.rtname = rtname;
|
}
|
public String getBusinesstype() {
|
return businesstype;
|
}
|
public void setBusinesstype(String businesstype) {
|
this.businesstype = businesstype;
|
}
|
public Integer getScalemin() {
|
return scalemin;
|
}
|
public void setScalemin(Integer scalemin) {
|
this.scalemin = scalemin;
|
}
|
public Integer getScalemax() {
|
return scalemax;
|
}
|
public void setScalemax(Integer scalemax) {
|
this.scalemax = scalemax;
|
}
|
public String getPaperstyle() {
|
return paperstyle;
|
}
|
public void setPaperstyle(String paperstyle) {
|
this.paperstyle = paperstyle;
|
}
|
public String getPaperdirection() {
|
return paperdirection;
|
}
|
public void setPaperdirection(String paperdirection) {
|
this.paperdirection = paperdirection;
|
}
|
public String getChartcontent() {
|
return chartcontent;
|
}
|
public void setChartcontent(String chartcontent) {
|
this.chartcontent = chartcontent;
|
}
|
public Integer getMapsize() {
|
return mapsize;
|
}
|
public void setMapsize(Integer mapsize) {
|
this.mapsize = mapsize;
|
}
|
public String getTemplatetype() {
|
return templatetype;
|
}
|
public void setTemplatetype(String templatetype) {
|
this.templatetype = templatetype;
|
}
|
public String getTemplateurl() {
|
return templateurl;
|
}
|
public void setTemplateurl(String templateurl) {
|
this.templateurl = templateurl;
|
}
|
public Integer getMapwidth() {
|
return mapwidth;
|
}
|
public void setMapwidth(Integer mapwidth) {
|
this.mapwidth = mapwidth;
|
}
|
public Integer getMapheight() {
|
return mapheight;
|
}
|
public void setMapheight(Integer mapheight) {
|
this.mapheight = mapheight;
|
}
|
|
|
}
|