good-luck-cargo/app/src/main/java/com/oneclouds/cargo/event/ChangeTabEvent.java
2022-09-05 17:13:28 +08:00

25 lines
369 B
Java

package com.oneclouds.cargo.event;
/**
* @author hlh
* @version 1.0.0
* @date 2021/9/14 15:37
* @description:
*/
public class ChangeTabEvent {
private int type;
public ChangeTabEvent(int type) {
this.type = type;
}
public int getType() {
return type;
}
public void setType(int type) {
this.type = type;
}
}