com.obatis.config.request.RequestInfo Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of obatis-web Show documentation
Show all versions of obatis-web Show documentation
obatis-web, apply web project
package com.obatis.config.request;
public class RequestInfo {
private String requestIp;
private String requestSystem;
private String requestBrowser;
private String deviceType;
public String getRequestIp() {
return requestIp;
}
public void setRequestIp(String requestIp) {
this.requestIp = requestIp;
}
public String getRequestSystem() {
return requestSystem;
}
public void setRequestSystem(String requestSystem) {
this.requestSystem = requestSystem;
}
public String getRequestBrowser() {
return requestBrowser;
}
public void setRequestBrowser(String requestBrowser) {
this.requestBrowser = requestBrowser;
}
public String getDeviceType() {
return deviceType;
}
public void setDeviceType(String deviceType) {
this.deviceType = deviceType;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy