xyz.erupt.tpl.engine.EngineConst Maven / Gradle / Ivy
The newest version!
package xyz.erupt.tpl.engine;
/**
* @author YuePeng
* date 2021/1/29 17:26
*/
public class EngineConst {
public static final String INJECT_REQUEST = "request"; //request请求对象
public static final String INJECT_RESPONSE = "response"; //response对象
public static final String INJECT_BASE = "base";
public static final String INJECT_ROWS = "rows"; //多行数据值
public static final String INJECT_ROW = "row"; //单行数据值
}