海外读书

This commit is contained in:
wuchunlei
2024-11-26 15:13:38 +08:00
parent 3fc7a80580
commit a0c42ecea0
37 changed files with 1234 additions and 9 deletions

View File

@@ -0,0 +1,13 @@
package com.peanut.modules.bookAbroad.service.impl;
import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl;
import com.peanut.modules.bookAbroad.service.BookAbroadCommentLikeService;
import com.peanut.modules.common.dao.BookAbroadCommentLikeDao;
import com.peanut.modules.common.entity.BookAbroadCommentLike;
import lombok.extern.slf4j.Slf4j;
import org.springframework.stereotype.Service;
@Slf4j
@Service("bookAbroadCommentLikeService")
public class BookAbroadCommentLikeServiceImpl extends ServiceImpl<BookAbroadCommentLikeDao, BookAbroadCommentLike> implements BookAbroadCommentLikeService {
}

View File

@@ -0,0 +1,13 @@
package com.peanut.modules.bookAbroad.service.impl;
import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl;
import com.peanut.modules.common.dao.BookAbroadCommentDao;
import com.peanut.modules.common.entity.BookAbroadComment;
import com.peanut.modules.bookAbroad.service.BookAbroadCommentService;
import lombok.extern.slf4j.Slf4j;
import org.springframework.stereotype.Service;
@Slf4j
@Service("bookAbroadComment")
public class BookAbroadCommentServiceImpl extends ServiceImpl<BookAbroadCommentDao, BookAbroadComment> implements BookAbroadCommentService {
}

View File

@@ -0,0 +1,13 @@
package com.peanut.modules.bookAbroad.service.impl;
import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl;
import com.peanut.modules.common.dao.BookAbroadLableDao;
import com.peanut.modules.common.entity.BookAbroadLable;
import com.peanut.modules.bookAbroad.service.BookAbroadLableService;
import lombok.extern.slf4j.Slf4j;
import org.springframework.stereotype.Service;
@Slf4j
@Service("bookAbroadLableService")
public class BookAbroadLableServiceImpl extends ServiceImpl<BookAbroadLableDao, BookAbroadLable> implements BookAbroadLableService {
}

View File

@@ -0,0 +1,13 @@
package com.peanut.modules.bookAbroad.service.impl;
import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl;
import com.peanut.modules.bookAbroad.service.BookAbroadToLableService;
import com.peanut.modules.common.dao.BookAbroadToLableDao;
import com.peanut.modules.common.entity.BookAbroadToLable;
import lombok.extern.slf4j.Slf4j;
import org.springframework.stereotype.Service;
@Slf4j
@Service("bookAbroadToLableService")
public class BookAbroadToLableServiceImpl extends ServiceImpl<BookAbroadToLableDao, BookAbroadToLable> implements BookAbroadToLableService {
}