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
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
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;
    }
}