Java Code Examples for com.ruoyi.system.domain.SysOperLog#setTitle()

The following examples show how to use com.ruoyi.system.domain.SysOperLog#setTitle() . You can vote up the ones you like or vote down the ones you don't like, and go to the original project or source file by following the links above each example. You may check out the related API usage on the sidebar.
Example 1
Source File: LogAspect.java    From supplierShop with MIT License 6 votes vote down vote up
/**
 * 获取注解中对方法的描述信息 用于Controller层注解
 * 
 * @param log 日志
 * @param operLog 操作日志
 * @throws Exception
 */
public void getControllerMethodDescription(Log log, SysOperLog operLog) throws Exception
{
    // 设置action动作
    operLog.setBusinessType(log.businessType().ordinal());
    // 设置标题
    operLog.setTitle(log.title());
    // 设置操作人类别
    operLog.setOperatorType(log.operatorType().ordinal());
    // 是否需要保存request,参数和值
    if (log.isSaveRequestData())
    {
        // 获取参数的信息,传入到数据库中。
        setRequestValue(operLog);
    }
}
 
Example 2
Source File: LogAspect.java    From ruoyiplus with MIT License 6 votes vote down vote up
/**
 * 获取注解中对方法的描述信息 用于Controller层注解
 * 
 * @param log 日志
 * @param operLog 操作日志
 * @throws Exception
 */
public void getControllerMethodDescription(Log log, SysOperLog operLog) throws Exception
{
    // 设置action动作
    operLog.setBusinessType(log.businessType().ordinal());
    // 设置标题
    operLog.setTitle(log.title());
    // 设置操作人类别
    operLog.setOperatorType(log.operatorType().ordinal());
    // 是否需要保存request,参数和值
    if (log.isSaveRequestData())
    {
        // 获取参数的信息,传入到数据库中。
        setRequestValue(operLog);
    }
}
 
Example 3
Source File: LogAspect.java    From RuoYi with Apache License 2.0 5 votes vote down vote up
/**
 * 获取注解中对方法的描述信息 用于Controller层注解
 *
 * @param operLog 切点
 */
private void getControllerMethodDescription(Log log, SysOperLog operLog) throws Exception {
    // 设置action动作
    operLog.setBusinessType(log.businessType().ordinal());
    // 设置标题
    operLog.setTitle(log.title());
    // 设置操作人类别
    operLog.setOperatorType(log.operatorType().ordinal());
    // 是否需要保存request,参数和值
    if (log.isSaveRequestData()) {
        // 获取参数的信息,传入到数据库中。
        setRequestValue(operLog);
    }
}