12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152 |
- package com.yihu.hos.models;
- /**
- * @created Airhead 2016/8/4.
- */
- public class ServiceEvent {
- private String event;
- private String serviceName;
- private String packageName;
- private String className;
- private String path;
- public String getEvent() {
- return event;
- }
- public void setEvent(String event) {
- this.event = event;
- }
- public String getServiceName() {
- return serviceName;
- }
- public void setServiceName(String serviceName) {
- this.serviceName = serviceName;
- }
- public String getPackageName() {
- return packageName;
- }
- public void setPackageName(String packageName) {
- this.packageName = packageName;
- }
- public String getClassName() {
- return className;
- }
- public void setClassName(String className) {
- this.className = className;
- }
- public String getPath() {
- return path;
- }
- public void setPath(String path) {
- this.path = path;
- }
- }
|