25 lines
369 B
Java
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;
|
|
}
|
|
}
|