2021与蓝度共同重构项目,服务端
liuhaonan
2022-02-09 66e0f592475cebf0511be54f71217be5ba4245c8
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
package com.sandu.ximon.admin.utils.request;
 
/**
 * @program: machine-fast
 * @description: 设置led开关body
 * @author: YSS
 * @create: 2019-05-30 17:30
 **/
public class setScreenOpen {
 
    public final String type = "callCardService";
 
    public final String fn = "setScreenOpen";
 
    public Boolean arg1 = true;
 
    public setScreenOpen (Boolean bool){
        this.arg1 = bool;
    }
}