当前位置:   article > 正文

Mybatis-plus自动填充添加人、添加时间、更新人、更新时间_mybatisplus自动填充时间和操作人

mybatisplus自动填充时间和操作人
@Slf4j
public class CreateAndUpdateMetaObjectHandler implements MetaObjectHandler {

    @Override
    public void insertFill(MetaObject metaObject) {
        try {
            if (ObjectUtil.isNotNull(metaObject) && metaObject.getOriginalObject() instanceof BaseEntity) {
                BaseEntity baseEntity = (BaseEntity) metaObject.getOriginalObject();
                Date current = ObjectUtil.isNotNull(baseEntity.getCreateTime())
                    ? baseEntity.getCreateTime() : new Date();
                baseEntity.setCreateTime(current);
                baseEntity.setUpdateTime(current);
                Long creatorId = ObjectUtil.isNotNull(baseEntity.getCreatorId())
                    ? baseEntity.getCreatorId() : StpUtil.getLoginIdAsLong();
                // 当前已登录 且 创建人为空 则填充
                baseEntity.setCreatorId(creatorId);
                // 当前已登录 且 更新人为空 则填充
                baseEntity.setUpdaterId(creatorId);
            }
        } catch (Exception e) {
            throw new RuntimeException("自动注入异常 => " + e.getMessage());
        }
    }

    @Override
    public void updateFill(MetaObject metaObject) {
        try {
            if (ObjectUtil.isNotNull(metaObject) && metaObject.getOriginalObject() instanceof BaseEntity) {
                BaseEntity baseEntity = (BaseEntity) metaObject.getOriginalObject();
                Date current = new Date();
                // 更新时间填充(不管为不为空)
                baseEntity.setUpdateTime(current);
                Long creatorId = StpUtil.getLoginIdAsLong();
                // 当前已登录 更新人填充(不管为不为空)
                if (ObjectUtil.isNotNull(creatorId)) {
                    baseEntity.setUpdaterId(creatorId);
                }
            }
        } catch (Exception e) {
            throw new RuntimeException("自动注入异常 => " + e.getMessage());
        }

    }
}
  • 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
  • 27
  • 28
  • 29
  • 30
  • 31
  • 32
  • 33
  • 34
  • 35
  • 36
  • 37
  • 38
  • 39
  • 40
  • 41
  • 42
  • 43
  • 44
声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/黑客灵魂/article/detail/1012923
推荐阅读
相关标签
  

闽ICP备14008679号