123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122 |
- package com.sinosoft.lz.system.configer.vo;
- public class GisConfigure{
- private String arcGisMapName = "";
- private String arcGisRoadBufferDisstance = "";
- private String arcGisBypassrouteName = "";
- private String themeServerHost = "";
- private String themeServerName = "";
- private String layerNames = "";
- private String bufferRd = "";
- private String themeHostUserName = "";
- private String themeHostUserPassWord = "";
- private String timeInterval = "";
- private String themePicturePath = "";
- private String markPicturePath = "";
- private String themeyingjibaogaoPath = "";
- public String getMarkPicturePath() {
- return this.markPicturePath;
- }
- public void setMarkPicturePath(String markPicturePath) {
- this.markPicturePath = markPicturePath;
- }
- public String getThemePicturePath() {
- return this.themePicturePath;
- }
- public void setThemePicturePath(String themePicturePath) {
- this.themePicturePath = themePicturePath;
- }
- public String getTimeInterval() {
- return timeInterval;
- }
- public void setTimeInterval(String timeInterval) {
- this.timeInterval = timeInterval;
- }
- public String getThemeHostUserName() {
- return themeHostUserName;
- }
- public void setThemeHostUserName(String themeHostUserName) {
- this.themeHostUserName = themeHostUserName;
- }
- public String getThemeHostUserPassWord() {
- return themeHostUserPassWord;
- }
- public void setThemeHostUserPassWord(String themeHostUserPassWord) {
- this.themeHostUserPassWord = themeHostUserPassWord;
- }
- public String getArcGisMapName() {
- return arcGisMapName;
- }
- public void setArcGisMapName(String arcGisMapName) {
- this.arcGisMapName = arcGisMapName;
- }
- public String getThemeServerHost() {
- return themeServerHost;
- }
- public void setThemeServerHost(String themeServerHost) {
- this.themeServerHost = themeServerHost;
- }
- public String getThemeServerName() {
- return themeServerName;
- }
- public void setThemeServerName(String themeServerName) {
- this.themeServerName = themeServerName;
- }
- public String getLayerNames() {
- return layerNames;
- }
- public void setLayerNames(String layerNames) {
- this.layerNames = layerNames;
- }
- public String getBufferRd() {
- return bufferRd;
- }
- public void setBufferRd(String bufferRd) {
- this.bufferRd = bufferRd;
- }
- public String getThemeyingjibaogaoPath() {
- return themeyingjibaogaoPath;
- }
- public void setThemeyingjibaogaoPath(String themeyingjibaogaoPath) {
- this.themeyingjibaogaoPath = themeyingjibaogaoPath;
- }
- public String getArcGisRoadBufferDisstance() {
- return arcGisRoadBufferDisstance;
- }
- public void setArcGisRoadBufferDisstance(String arcGisRoadBufferDisstance) {
- this.arcGisRoadBufferDisstance = arcGisRoadBufferDisstance;
- }
- public String getArcGisBypassrouteName() {
- return arcGisBypassrouteName;
- }
- public void setArcGisBypassrouteName(String arcGisBypassrouteName) {
- this.arcGisBypassrouteName = arcGisBypassrouteName;
- }
- }
|