/** * 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/27. */ public class BusinessLog { String service_name; String request_id; String log_ip; String dt_begin; String dt_end; String more_condition; public String getService_name() { return service_name; } public void setService_name(String service_name) { this.service_name = service_name; } public String getRequest_id() { return request_id; } public void setRequest_id(String request_id) { this.request_id = request_id; } public String getLog_ip() { return log_ip; } public void setLog_ip(String log_ip) { this.log_ip = log_ip; } public String getDt_begin() { return dt_begin; } public void setDt_begin(String dt_begin) { this.dt_begin = dt_begin; } public String getDt_end() { return dt_end; } public void setDt_end(String dt_end) { this.dt_end = dt_end; } public String getMore_condition() { return more_condition; } public void setMore_condition(String more_condition) { this.more_condition = more_condition; } }