|
@@ -101,7 +101,6 @@ public class Oplog implements BeanConvert {
|
|
|
* 设置服务名称
|
|
|
*
|
|
|
* @param service 服务
|
|
|
- * @return
|
|
|
*/
|
|
|
public Oplog service(String service) {
|
|
|
this.service = service;
|
|
@@ -112,7 +111,6 @@ public class Oplog implements BeanConvert {
|
|
|
* 设置操作模块
|
|
|
*
|
|
|
* @param module 操作模块
|
|
|
- * @return
|
|
|
*/
|
|
|
public Oplog module(String module) {
|
|
|
this.module = module;
|
|
@@ -123,7 +121,6 @@ public class Oplog implements BeanConvert {
|
|
|
* 设置操作业务
|
|
|
*
|
|
|
* @param business 操作业务
|
|
|
- * @return
|
|
|
*/
|
|
|
public Oplog business(String business) {
|
|
|
this.business = business;
|
|
@@ -134,7 +131,6 @@ public class Oplog implements BeanConvert {
|
|
|
* 设置内容详情
|
|
|
*
|
|
|
* @param content 内容详情
|
|
|
- * @return
|
|
|
*/
|
|
|
public Oplog content(String content) {
|
|
|
this.content = content;
|
|
@@ -145,7 +141,6 @@ public class Oplog implements BeanConvert {
|
|
|
* 设置审计信息
|
|
|
*
|
|
|
* @param userSession 登录用户信息
|
|
|
- * @return
|
|
|
*/
|
|
|
public Oplog audit(UserSession userSession) {
|
|
|
if (null != userSession) {
|
|
@@ -159,7 +154,6 @@ public class Oplog implements BeanConvert {
|
|
|
* 设置业务状态 true 成功 false 失败
|
|
|
*
|
|
|
* @param success 业务状态
|
|
|
- * @return
|
|
|
*/
|
|
|
public Oplog status(boolean success) {
|
|
|
this.type = (success ? 0 : 1);
|
|
@@ -177,7 +171,6 @@ public class Oplog implements BeanConvert {
|
|
|
* 设置异常信息
|
|
|
*
|
|
|
* @param exception 异常详情
|
|
|
- * @return
|
|
|
*/
|
|
|
public Oplog exception(String exception) {
|
|
|
this.content = exception;
|
|
@@ -191,7 +184,6 @@ public class Oplog implements BeanConvert {
|
|
|
* @param signature {@link Signature}
|
|
|
* @param request {@link HttpServletRequest}
|
|
|
* @param args 请求参数
|
|
|
- * @return
|
|
|
*/
|
|
|
public Oplog around(Signature signature, HttpServletRequest request, Object[] args) {
|
|
|
if (null == this.createId) {
|