1234567891011121314151617181920212223242526272829303132333435363738394041424344454647 |
- package cn.com.qmth.examcloud.web.cache;
- import cn.com.qmth.examcloud.api.commons.enums.BasicDataType;
- import cn.com.qmth.examcloud.api.commons.exchange.BaseRequest;
- /**
- * 刷新缓存请求
- *
- * @author WANGWEI
- * @date 2019年5月9日
- * @Copyright (c) 2018-? http://qmth.com.cn All Rights Reserved.
- */
- public class RefreshCacheReq extends BaseRequest {
- private static final long serialVersionUID = -6516842403328041136L;
- private String className;
- private String[] keys;
- private BasicDataType[] typeArray;
- public String getClassName() {
- return className;
- }
- public void setClassName(String className) {
- this.className = className;
- }
- public String[] getKeys() {
- return keys;
- }
- public void setKeys(String[] keys) {
- this.keys = keys;
- }
- public BasicDataType[] getTypeArray() {
- return typeArray;
- }
- public void setTypeArray(BasicDataType[] typeArray) {
- this.typeArray = typeArray;
- }
- }
|