2026-06-24 f4bd1f3c89d906131495a0aca5aaf82966378510
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
29
30
package cn.iocoder.yudao.module.iot.controller.admin.device.vo.modbus;
 
import cn.iocoder.yudao.framework.common.pojo.PageParam;
import io.swagger.v3.oas.annotations.media.Schema;
import lombok.Data;
import lombok.EqualsAndHashCode;
import lombok.ToString;
 
@Schema(description = "管理后台 - IoT 设备 Modbus 点位配置分页 Request VO")
@Data
@EqualsAndHashCode(callSuper = true)
@ToString(callSuper = true)
public class IotDeviceModbusPointPageReqVO extends PageParam {
 
    @Schema(description = "设备编号", example = "1024")
    private Long deviceId;
 
    @Schema(description = "属性标识符", example = "temperature")
    private String identifier;
 
    @Schema(description = "属性名称", example = "温度")
    private String name;
 
    @Schema(description = "Modbus 功能码", example = "3")
    private Integer functionCode;
 
    @Schema(description = "状态", example = "0")
    private Integer status;
 
}