package cn.com.goldenwater.dcproj.param; import cn.com.goldenwater.core.param.PageParam; import java.io.Serializable; import java.util.List; public class BisInspMeetInvitationParam extends PageParam implements Serializable { private String callNumber; private List deviceList; public BisInspMeetInvitationParam() { } public String getCallNumber() { return callNumber; } public void setCallNumber(String callNumber) { this.callNumber = callNumber; } public List getDeviceList() { return deviceList; } public void setDeviceList(List deviceList) { this.deviceList = deviceList; } }