doum
8 天以前 074bcb8394fab66ce531c219e1e7de7c142ff2d5
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
package com.doumee.core.conditoner.model.request;
 
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;
import lombok.EqualsAndHashCode;
 
@Data
@EqualsAndHashCode(callSuper = true)
public class DevControlRequest extends ConditionerSessionRequest {
 
    @ApiModelProperty("水机 sj、多联机 dlj")
    private String pid;
 
    @ApiModelProperty("网关 MAC")
    private String wg_mac;
 
    @ApiModelProperty("设备地址")
    private String wg_qid;
 
    @ApiModelProperty("set_one 单条控制")
    private String ctr_type;
 
    @ApiModelProperty("pwr/mode/fan/temp/many_ctr/find_dn/find_power 等")
    private String set_type;
 
    @ApiModelProperty("设置值,可为数字或 JSON 对象")
    private Object set_val;
}