admin
2021-06-05 ddff7888bf7e754d12fb5fc85a58f3012f456490
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
package com.tejia.lijin.app.entity.eventbus;
 
public class HomeTabChangeEvent {
    private Integer tab;
    private Integer subTab;
 
    public HomeTabChangeEvent(Integer tab, Integer subTab) {
        this.tab = tab;
        this.subTab = subTab;
    }
 
 
 
    public Integer getTab() {
        return tab;
    }
 
    public void setTab(Integer tab) {
        this.tab = tab;
    }
 
    public Integer getSubTab() {
        return subTab;
    }
 
    public void setSubTab(Integer subTab) {
        this.subTab = subTab;
    }
 
 
}