#
Junjie
2025-07-15 63fc53379b059d4076a228c8b5b149ead84f20eb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
package com.zy.core.model.param;
 
import lombok.Data;
 
@Data
public class AddFakeDeviceParam {
 
    private Integer deviceNo;
 
    private String ip;
 
    private Integer port;
 
    private String threadImpl;
 
    private String deviceType;
 
}