puzhibing
2023-08-01 98bc380ae322eaac2ee7e21d0c565e30eacce2b5
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
package com.stylefeng.guns.modular.system.util;
 
import com.stylefeng.guns.core.base.controller.BaseController;
import com.stylefeng.guns.core.shiro.ShiroKit;
 
import java.util.Date;
 
/**
 * 添加操作日志工具包
 */
public class AddAdminLogUtil extends BaseController {
 
    /**
     * 添加
     * @param content  操作内容
     */
//    public static AppAdminLog addAdminLog(String content){
//        AppAdminLog log = new AppAdminLog();
//        log.setAddTime(new Date());
//        log.setContent(content);
//        log.setSysUserId(ShiroKit.getUser().getId());
//        return log;
//    }
 
 
}