You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
|
|
package com.zc.business.domain;
|
|
|
|
|
|
|
|
import io.swagger.annotations.ApiModel;
|
|
|
|
import io.swagger.annotations.ApiModelProperty;
|
|
|
|
|
|
|
|
import java.util.List;
|
|
|
|
import java.util.Map;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* 情报板发布对象
|
|
|
|
*
|
|
|
|
* @author ruoyi
|
|
|
|
* @date 2024-01-05
|
|
|
|
*/
|
|
|
|
@ApiModel("情报板发布对象")
|
|
|
|
public class DcBoardPublish
|
|
|
|
{
|
|
|
|
|
|
|
|
@ApiModelProperty(value = "设备id", required = true)
|
|
|
|
private String deviceId;
|
|
|
|
|
|
|
|
@ApiModelProperty(value = "设备id列表")
|
|
|
|
private List<String> deviceIdList;
|
|
|
|
|
|
|
|
@ApiModelProperty(value = "内容列表", required = true)
|
|
|
|
private List<Map<String,Object>> content;
|
|
|
|
|
|
|
|
public String getDeviceId() {
|
|
|
|
return deviceId;
|
|
|
|
}
|
|
|
|
|
|
|
|
public void setDeviceId(String deviceId) {
|
|
|
|
this.deviceId = deviceId;
|
|
|
|
}
|
|
|
|
|
|
|
|
public List<String> getDeviceIdList() {
|
|
|
|
return deviceIdList;
|
|
|
|
}
|
|
|
|
|
|
|
|
public void setDeviceIdList(List<String> deviceIdList) {
|
|
|
|
this.deviceIdList = deviceIdList;
|
|
|
|
}
|
|
|
|
|
|
|
|
public List<Map<String, Object>> getContent() {
|
|
|
|
return content;
|
|
|
|
}
|
|
|
|
|
|
|
|
public void setContent(List<Map<String, Object>> content) {
|
|
|
|
this.content = content;
|
|
|
|
}
|
|
|
|
}
|