| | |
| | | public void insertFill(MetaObject metaObject) { |
| | | // 获取当前登录用户 |
| | | Long userId = SecurityUtils.getUserId(); |
| | | fillValue("createBy", userId, metaObject); |
| | | fillValue("createBy", userId.toString(), metaObject); |
| | | fillValue("createTime", LocalDateTime.now(), metaObject); |
| | | } |
| | | |
| | |
| | | public void updateFill(MetaObject metaObject) { |
| | | // 获取当前登录用户 |
| | | Long userId = SecurityUtils.getUserId(); |
| | | fillValue("updateBy", userId, metaObject); |
| | | fillValue("updateBy", userId.toString(), metaObject); |
| | | fillValue("updateTime", LocalDateTime.now(), metaObject); |
| | | } |
| | | |