package com.genersoft.iot.vmp.vmanager.platform.bean; import java.util.List; public class UpdateChannelParam { private String platformId; private List channelReduces; public String getPlatformId() { return platformId; } public void setPlatformId(String platformId) { this.platformId = platformId; } public List getChannelReduces() { return channelReduces; } public void setChannelReduces(List channelReduces) { this.channelReduces = channelReduces; } }