|
|
@@ -8,7 +8,7 @@ import io.swagger.annotations.ApiModelProperty;
|
|
|
*/
|
|
|
public class PlayBatchVo {
|
|
|
@ApiModelProperty(required = true, notes = "设备编号")
|
|
|
- private String[] sn;
|
|
|
+ private String[] sns;
|
|
|
@ApiModelProperty(required = true, notes = "方便对接时传递任务类型")
|
|
|
private String type;
|
|
|
@ApiModelProperty(required = true, notes = "任务名称")
|
|
|
@@ -16,12 +16,12 @@ public class PlayBatchVo {
|
|
|
@ApiModelProperty(required = true, notes = "播放参数")
|
|
|
private ParamVo params;
|
|
|
|
|
|
- public String[] getSn() {
|
|
|
- return sn;
|
|
|
+ public String[] getSns() {
|
|
|
+ return sns;
|
|
|
}
|
|
|
|
|
|
- public void setSn(String[] sn) {
|
|
|
- this.sn = sn;
|
|
|
+ public void setSns(String[] sns) {
|
|
|
+ this.sns = sns;
|
|
|
}
|
|
|
|
|
|
public String getType() {
|