Administrator
20 hours ago 45391bbd1117ddac9dd91d8b2223381176713c37
src/main/java/cc/mrbird/febs/ai/service/impl/AiProductQuestionLabelServiceImpl.java
@@ -50,7 +50,6 @@
        AiProductQuestionLabel entity = new AiProductQuestionLabel();
        entity.setId(UUID.getSimpleUUIDString());
        entity.setName(dto.getName());
        entity.setCode(dto.getCode());
        if (StrUtil.isNotEmpty(dto.getCompanyId())){
            entity.setCompanyId(dto.getCompanyId());
        }
@@ -66,7 +65,6 @@
        if(ObjectUtil.isNotNull( entity)){
            this.update(null,
                    Wrappers.lambdaUpdate(AiProductQuestionLabel.class)
                            .set(AiProductQuestionLabel::getCode, dto.getCode())
                            .set(AiProductQuestionLabel::getName, dto.getName())
                            .set(AiProductQuestionLabel::getUpdatedTime, new Date())
                            .eq(AiProductQuestionLabel::getId, id));