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
| package com.fzzy.igds.data;
|
| import lombok.Data;
|
| /**
| * @Description
| * @Author CZT
| * @Date 2025/11/28 14:45
| */
| @Data
| public class DeviceIotParam {
|
| private String id;
|
| private String companyId;
|
| private String deptId;
|
| private String serId;
|
| private String depotId;
|
| private String type;
|
| }
|
|