/** * Tencent is pleased to support the open source community by making MSEC available. * * Copyright (C) 2016 THL A29 Limited, a Tencent company. All rights reserved. * * Licensed under the GNU General Public License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. You may * obtain a copy of the License at * * https://opensource.org/licenses/GPL-2.0 * * Unless required by applicable law or agreed to in writing, software distributed under the * License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, * either express or implied. See the License for the specific language governing permissions * and limitations under the License. */ package beans.request; /** * Created by Administrator on 2016/2/23. */ public class MonitorRequest { String service_name; String server_ip; String attribute; Integer page; Integer attr_num_per_page; String date; String chart_to_download; int duration; public String getChart_to_download() { return chart_to_download; } public void setChart_to_download(String chart_to_download) { this.chart_to_download = chart_to_download; } public String getDate() { return date; } public void setDate(String date) { this.date = date; } public String getService_name() { return service_name; } public void setService_name(String service_name) { this.service_name = service_name; } public String getServer_ip() { return server_ip; } public void setServer_ip(String server_ip) { this.server_ip = server_ip; } public String getAttribute() { return attribute; } public void setAttribute(String attribute) { this.attribute = attribute; } public Integer getPage() { return page; } public void setPage(Integer page) { this.page = page; } public Integer getAttr_num_per_page() { return attr_num_per_page; } public void setAttr_num_per_page(Integer attr_num_per_page) { this.attr_num_per_page = attr_num_per_page; } public int getDuration() { return duration; } public void setDuration(int duration) { this.duration = duration; } }