You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

27 lines
590 B
Java

5 years ago
package com.jingcheng.cms.util;
6 years ago
import com.alibaba.fastjson.JSONObject;
import com.alibaba.fastjson.annotation.JSONType;
import lombok.AllArgsConstructor;
import lombok.Data;
import lombok.NoArgsConstructor;
/**
* @author yaoyao.zhu
*/
@Data
@AllArgsConstructor
@NoArgsConstructor
@JSONType
public class AjaxRequest {
private String requestId;
private String method;
private String caller;
private JSONObject data = new JSONObject();
private String userKey;
private String paramSign;
private String callTime = String.valueOf(System.currentTimeMillis());
}