wjc
2023-06-28 14de918a79943e4961b09fa01ed320c6cad41f2e
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
32
33
34
35
36
37
package com.hdl.sdk.link.zigbee.bean;
 
import java.io.Serializable;
 
/**
 * Created by jlchen on 12/17/21.
 */
public class PanelVibrationBean implements Serializable {
 
    private Boolean isEnable;//震动使能
    private int strength;//震动强度(十进制)
    private int time;//震动时间(十进制)
 
    public Boolean getIsEnable() {
        return isEnable;
    }
 
    public void setIsEnable(Boolean enable) {
        isEnable = enable;
    }
 
    public int getStrength() {
        return strength;
    }
 
    public void setStrength(int strength) {
        this.strength = strength;
    }
 
    public int getTime() {
        return time;
    }
 
    public void setTime(int time) {
        this.time = time;
    }
}