1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
| package cn.flightfeather.thirdappmodule.bean.vo;
|
| /**
| * Created by note_ff_1602 on 2018/3/7.
| */
|
| public class AllBoolean {
| boolean isAll;
|
| public boolean isAll() {
| return isAll;
| }
|
| public void setAll(boolean all) {
| isAll = all;
| }
| }
|
|