From e17ab857b9eeced9371c2a3ebd77bb5204529d0c Mon Sep 17 00:00:00 2001 From: Hanserwei <2628273921@qq.com> Date: Wed, 15 Oct 2025 19:33:21 +0800 Subject: [PATCH] =?UTF-8?q?refactor(note):=E4=BC=98=E5=8C=96NoteLikeDOServ?= =?UTF-8?q?iceImpl=E7=9A=84=E5=AF=BC=E5=85=A5=E9=A1=BA=E5=BA=8F-=20?= =?UTF-8?q?=E8=B0=83=E6=95=B4=E4=BA=86=E7=B1=BB=E5=AF=BC=E5=85=A5=E9=A1=BA?= =?UTF-8?q?=E5=BA=8F=EF=BC=8C=E5=B0=86Spring=E6=B3=A8=E8=A7=A3=E4=B8=8EMyB?= =?UTF-8?q?atis=E7=9B=B8=E5=85=B3=E4=BE=9D=E8=B5=96=E5=88=86=E5=BC=80=20-?= =?UTF-8?q?=20=E7=A7=BB=E9=99=A4=E4=BA=86=E6=9C=AA=E4=BD=BF=E7=94=A8?= =?UTF-8?q?=E7=9A=84List=E5=AF=BC=E5=85=A5=20-=E9=87=8D=E6=96=B0=E7=BB=84?= =?UTF-8?q?=E7=BB=87=E4=BA=86=E5=8C=85=E5=AF=BC=E5=85=A5=E9=A1=BA=E5=BA=8F?= =?UTF-8?q?=E4=BB=A5=E6=8F=90=E9=AB=98=E5=8F=AF=E8=AF=BB=E6=80=A7=20-?= =?UTF-8?q?=E4=BF=9D=E6=8C=81=E4=BA=86@Service=E6=B3=A8=E8=A7=A3=E7=9A=84?= =?UTF-8?q?=E4=BD=8D=E7=BD=AE=E4=B8=8D=E5=8F=98-=20=E7=A1=AE=E4=BF=9D?= =?UTF-8?q?=E6=89=80=E6=9C=89=E5=BF=85=E9=9C=80=E7=9A=84=E4=BE=9D=E8=B5=96?= =?UTF-8?q?=E4=BB=8D=E7=84=B6=E6=AD=A3=E7=A1=AE=E5=AF=BC=E5=85=A5?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../note/biz/service/impl/NoteLikeDOServiceImpl.java | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/han-note-note/han-note-note-biz/src/main/java/com/hanserwei/hannote/note/biz/service/impl/NoteLikeDOServiceImpl.java b/han-note-note/han-note-note-biz/src/main/java/com/hanserwei/hannote/note/biz/service/impl/NoteLikeDOServiceImpl.java index f50c53d..bc81d2e 100644 --- a/han-note-note/han-note-note-biz/src/main/java/com/hanserwei/hannote/note/biz/service/impl/NoteLikeDOServiceImpl.java +++ b/han-note-note/han-note-note-biz/src/main/java/com/hanserwei/hannote/note/biz/service/impl/NoteLikeDOServiceImpl.java @@ -1,12 +1,10 @@ package com.hanserwei.hannote.note.biz.service.impl; -import org.springframework.stereotype.Service; -import org.springframework.beans.factory.annotation.Autowired; -import java.util.List; import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl; -import com.hanserwei.hannote.note.biz.domain.mapper.NoteLikeDOMapper; import com.hanserwei.hannote.note.biz.domain.dataobject.NoteLikeDO; +import com.hanserwei.hannote.note.biz.domain.mapper.NoteLikeDOMapper; import com.hanserwei.hannote.note.biz.service.NoteLikeDOService; +import org.springframework.stereotype.Service; @Service public class NoteLikeDOServiceImpl extends ServiceImpl implements NoteLikeDOService{