package com.ycl.service.impl;
|
|
import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl;
|
import com.ycl.mapper.NewsDepartmentInformationDao;
|
import com.ycl.entity.NewsDepartmentInformation;
|
import com.ycl.service.NewsDepartmentInformationService;
|
import org.springframework.stereotype.Service;
|
|
/**
|
* 机构(部门)中间表(NewsDepartmentInformation)表服务实现类
|
*
|
* @author makejava
|
* @since 2022-11-17 11:38:27
|
*/
|
@Service("newsDepartmentInformationService")
|
public class NewsDepartmentInformationServiceImpl extends ServiceImpl<NewsDepartmentInformationDao, NewsDepartmentInformation> implements NewsDepartmentInformationService {
|
|
}
|
|