操作日志新增返回参数

This commit is contained in:
RuoYi
2019-09-20 19:07:22 +08:00
parent 64f0e9d282
commit 16270ae869
5 changed files with 40 additions and 12 deletions

View File

@ -67,6 +67,10 @@ public class SysOperLog extends BaseEntity
@Excel(name = "请求参数")
private String operParam;
/** 返回参数 */
@Excel(name = "返回参数")
private String jsonResult;
/** 操作状态0正常 1异常 */
@Excel(name = "状态", readConverterExp = "0=正常,1=异常")
private Integer status;
@ -209,6 +213,16 @@ public class SysOperLog extends BaseEntity
this.operParam = operParam;
}
public String getJsonResult()
{
return jsonResult;
}
public void setJsonResult(String jsonResult)
{
this.jsonResult = jsonResult;
}
public Integer getStatus()
{
return status;