liding
18 小时以前 c7ce2c2342f427bbad0263ab9e35585f6b98ee93
src/main/java/com/ruoyi/common/config/MybatisHandler.java
@@ -12,7 +12,7 @@
    @Override
    public void insertFill(MetaObject metaObject) {
        Integer userId = null;
        Integer tenantId = null;
        Long tenantId = null;
        try {
            userId = SecurityUtils.getUserId().intValue();
            tenantId = SecurityUtils.getLoginUser().getTenantId();
@@ -23,7 +23,7 @@
        this.strictInsertFill(metaObject, "updateTime",  LocalDateTime.class, LocalDateTime.now());
        this.strictInsertFill(metaObject, "createUser", Integer.class, userId);
        this.strictInsertFill(metaObject, "updateUser", Integer.class, userId);
        this.strictInsertFill(metaObject, "tenantId", Integer.class, tenantId);
        this.strictInsertFill(metaObject, "tenantId", Long.class, tenantId);
    }
    @Override