wuxw7
2019-03-20 81b89aecf17ec0bd5cac9caeb1963489e505b53b
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
package com.java110.core.context;
 
import org.springframework.http.ResponseEntity;
 
/**
 * 页面数据封装对象
 *
 * add by wuxw 2019-03-19
 */
public interface IPageData {
 
    public String getUserId();
 
    public String getTransactionId();
 
    public String getComponentCode();
 
    public String getComponentMethod();
 
    public String getToken();
 
    public void setToken(String token);
 
    public String getReqData();
 
    public String getResponseTime();
 
 
    public ResponseEntity getResponseEntity();
 
 
    public void setResponseEntity(ResponseEntity responseEntity);
 
    public IPageData builder(String userId,String token,String reqData,String componentCode,String componentMethod,String url) throws IllegalArgumentException;
 
}