riku
2025-10-27 0f58aa8ea118c3bd0b28396febc58fdbd94eef75
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;
    }
}