huang
2025-11-18 1566e4c7604d85737ea67fe6757e71b8185fa48e
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
package com.mes.device.request;
 
import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;
 
import javax.validation.constraints.NotEmpty;
import java.io.Serializable;
import java.util.List;
 
/**
 * 设备 PLC 批量操作请求
 *
 * @author mes
 * @since 2025-11-17
 */
@Data
@ApiModel(value = "DevicePlcBatchRequest", description = "设备 PLC 批量操作请求")
public class DevicePlcBatchRequest implements Serializable {
 
    @NotEmpty(message = "设备ID列表不能为空")
    @ApiModelProperty(value = "设备ID列表", required = true)
    private List<Long> deviceIds;
}