| | |
| | | private Long groupId; |
| | | |
| | | @ApiModelProperty(value = "设备ID", example = "1") |
| | | private Long deviceId; |
| | | private Long id; |
| | | |
| | | @ApiModelProperty(value = "设备ID列表") |
| | | private List<Long> deviceIds; |
| | |
| | | this.groupId = groupId; |
| | | } |
| | | |
| | | public DeviceGroupRequest(Long groupId, Long deviceId) { |
| | | public DeviceGroupRequest(Long groupId, Long id) { |
| | | this.groupId = groupId; |
| | | this.deviceId = deviceId; |
| | | this.id = id; |
| | | } |
| | | |
| | | public DeviceGroupRequest(Long groupId, Long deviceId, String deviceRole) { |
| | | public DeviceGroupRequest(Long groupId, Long id, String deviceRole) { |
| | | this.groupId = groupId; |
| | | this.deviceId = deviceId; |
| | | this.id = id; |
| | | this.deviceRole = deviceRole; |
| | | } |
| | | |