1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
| package com.ld.igds.protocol.fzzy.resp;
|
| import lombok.Data;
|
| @Data
| public class Response1003 {
|
| private String deviceId;
|
| private String houseId;
|
| private String type;
|
| private String name;
|
| private String pos;//位置:正面;背面
|
| private boolean fan;//字符串:“true”-有风机;“false”:无风机风窗与风口设备才有该字段
|
| private String fanId;//风窗/风口包含的风机ID
| }
|
|