1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
| package com.ycl.service;
|
| import com.baomidou.mybatisplus.extension.service.IService;
| import com.ycl.entity.NewsDepartmentInformation;
|
| /**
| * 机构(部门)中间表(NewsDepartmentInformation)表服务接口
| *
| * @author makejava
| * @since 2022-11-17 11:38:27
| */
| public interface NewsDepartmentInformationService extends IService<NewsDepartmentInformation> {
|
| }
|
|
|