1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
| package com.yuanchu.mom.mapper;
|
| import com.baomidou.mybatisplus.core.mapper.BaseMapper;
| import com.yuanchu.mom.pojo.SuppliersDirectoryContents;
|
| /**
| * <p>
| * 服务和供应品采购目录 Mapper 接口
| * </p>
| *
| * @author 芯导软件(江苏)有限公司
| * @since 2024-12-17 06:14:51
| */
| public interface SuppliersDirectoryContentsMapper extends BaseMapper<SuppliersDirectoryContents> {
|
| }
|
|