| | |
| | | package com.ycl.service.impl;
|
| | |
|
| | | import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl;
|
| | | import com.ycl.dao.NewsInformationDao;
|
| | | import com.ycl.mapper.NewsInformationDao;
|
| | | import com.ycl.entity.NewsInformation;
|
| | | import com.ycl.service.NewsInformationService;
|
| | | import org.springframework.stereotype.Service;
|
| | |
| | | * 资讯表(NewsInformation)表服务实现类
|
| | | *
|
| | | * @author makejava
|
| | | * @since 2022-11-17 11:12:41
|
| | | * @since 2022-11-17 11:38:27
|
| | | */
|
| | | @Service("newsInformationService")
|
| | | public class NewsInformationServiceImpl extends ServiceImpl<NewsInformationDao, NewsInformation> implements NewsInformationService {
|