aafa8db379b252f76399e1816432b33f0036653a.svn-base 703 B

123456789101112131415161718192021222324252627282930
  1. package cn.com.goldenwater.dcproj.param;
  2. import cn.com.goldenwater.core.param.PageParam;
  3. import java.io.Serializable;
  4. import java.util.List;
  5. public class BisInspMeetInvitationParam extends PageParam implements Serializable {
  6. private String callNumber;
  7. private List<DeviceList> deviceList;
  8. public BisInspMeetInvitationParam() {
  9. }
  10. public String getCallNumber() {
  11. return callNumber;
  12. }
  13. public void setCallNumber(String callNumber) {
  14. this.callNumber = callNumber;
  15. }
  16. public List<DeviceList> getDeviceList() {
  17. return deviceList;
  18. }
  19. public void setDeviceList(List<DeviceList> deviceList) {
  20. this.deviceList = deviceList;
  21. }
  22. }