血脉初建

This commit is contained in:
wangjinlei
2023-11-02 11:08:06 +08:00
parent eff309f8cb
commit 82f8201468
8 changed files with 121 additions and 0 deletions

View File

@@ -0,0 +1,7 @@
package com.peanut.modules.book.service;
import com.baomidou.mybatisplus.extension.service.IService;
import com.peanut.modules.book.entity.PointCategoryEntity;
public interface PointCategoryService extends IService<PointCategoryEntity> {
}

View File

@@ -0,0 +1,7 @@
package com.peanut.modules.book.service;
import com.baomidou.mybatisplus.extension.service.IService;
import com.peanut.modules.book.entity.PointEntity;
public interface PointService extends IService<PointEntity> {
}

View File

@@ -0,0 +1,11 @@
package com.peanut.modules.book.service.impl;
import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl;
import com.peanut.modules.book.dao.PointCategoryDao;
import com.peanut.modules.book.entity.PointCategoryEntity;
import com.peanut.modules.book.service.PointCategoryService;
import org.springframework.stereotype.Service;
@Service("pointCategoryService")
public class PointCategoryServiceImpl extends ServiceImpl<PointCategoryDao, PointCategoryEntity> implements PointCategoryService {
}

View File

@@ -0,0 +1,11 @@
package com.peanut.modules.book.service.impl;
import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl;
import com.peanut.modules.book.dao.PointDao;
import com.peanut.modules.book.entity.PointEntity;
import com.peanut.modules.book.service.PointService;
import org.springframework.stereotype.Service;
@Service("pointService")
public class PointServiceImpl extends ServiceImpl<PointDao, PointEntity> implements PointService {
}