RefreshCacheReq.java 924 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647
  1. package cn.com.qmth.examcloud.web.cache;
  2. import cn.com.qmth.examcloud.api.commons.enums.BasicDataType;
  3. import cn.com.qmth.examcloud.api.commons.exchange.BaseRequest;
  4. /**
  5. * 刷新缓存请求
  6. *
  7. * @author WANGWEI
  8. * @date 2019年5月9日
  9. * @Copyright (c) 2018-? http://qmth.com.cn All Rights Reserved.
  10. */
  11. public class RefreshCacheReq extends BaseRequest {
  12. private static final long serialVersionUID = -6516842403328041136L;
  13. private String className;
  14. private String[] keys;
  15. private BasicDataType[] typeArray;
  16. public String getClassName() {
  17. return className;
  18. }
  19. public void setClassName(String className) {
  20. this.className = className;
  21. }
  22. public String[] getKeys() {
  23. return keys;
  24. }
  25. public void setKeys(String[] keys) {
  26. this.keys = keys;
  27. }
  28. public BasicDataType[] getTypeArray() {
  29. return typeArray;
  30. }
  31. public void setTypeArray(BasicDataType[] typeArray) {
  32. this.typeArray = typeArray;
  33. }
  34. }