1
2
3
4
5
6
7
8
9
10
11
12
13
| package com.zy.third.service;
|
| import com.zy.third.entity.ExdMaterial;
| import com.baomidou.mybatisplus.service.IService;
|
| /**
| * @author zc857
| * @description 针对表【Exd_Material】的数据库操作Service
| * @createDate 2025-09-23 08:36:03
| */
| public interface ExdMaterialService extends IService<ExdMaterial> {
|
| }
|
|