| 123456789101112131415161718192021222324252627282930 |
- 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> deviceList;
- public BisInspMeetInvitationParam() {
- }
- public String getCallNumber() {
- return callNumber;
- }
- public void setCallNumber(String callNumber) {
- this.callNumber = callNumber;
- }
- public List<DeviceList> getDeviceList() {
- return deviceList;
- }
- public void setDeviceList(List<DeviceList> deviceList) {
- this.deviceList = deviceList;
- }
- }
|