Commit 7366a689 authored by Spencer Chang's avatar Spencer Chang

[fix] 优化返回信息

parent 4a8f7734
package com.hand.hls.dp.core;
import com.hand.hap.core.IRequest;
import com.hand.hls.dp.service.SysDpExecuteHistoryService;
/**
* @author <a href="mailto:zhangnet14@gmail.com">Spencer Chang</a>
* @date 2020/8/13 09:50
* @since 1.0
*/
public class SubExecSqlContext {
private SysDpExecuteHistoryService service;
private IRequest requestContext;
private String sql;
private String ip;
private String execType;
private Integer seq;
public SysDpExecuteHistoryService getService() {
return service;
}
public void setService(SysDpExecuteHistoryService service) {
this.service = service;
}
public IRequest getRequestContext() {
return requestContext;
}
public void setRequestContext(IRequest requestContext) {
this.requestContext = requestContext;
}
public String getSql() {
return sql;
}
public void setSql(String sql) {
this.sql = sql;
}
public String getIp() {
return ip;
}
public void setIp(String ip) {
this.ip = ip;
}
public String getExecType() {
return execType;
}
public void setExecType(String execType) {
this.execType = execType;
}
public Integer getSeq() {
return seq;
}
public void setSeq(Integer seq) {
this.seq = seq;
}
}
\ No newline at end of file
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment