2
13693261870
2022-09-16 653761a31dfeb50dd3d007e892d69c90bf0cdafc
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
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;
    }
    
    
}