1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
| package com.java110.core.context;
|
| import org.springframework.http.ResponseEntity;
|
| /**
| * 数据上下文对象
| */
| public interface ICmdDataFlowContext extends IDataFlowContextPlus{
| /**
| * 获取字符串请求报文 以防 请求报文不是json
| *
| * @return
| */
| String getReqData();
|
| ResponseEntity getResponseEntity();
|
| void setResponseEntity(ResponseEntity responseEntity);
|
| String getServiceCode();
| }
|
|