1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
| package com.yuanchu.mom.service;
|
| import com.yuanchu.mom.pojo.InsOrderFile;
| import com.baomidou.mybatisplus.extension.service.IService;
|
| /**
| * <p>
| * 检验单下的附件列表 服务类
| * </p>
| *
| * @author 江苏鵷雏网络科技有限公司
| * @since 2024-06-06 10:08:21
| */
| public interface InsOrderFileService extends IService<InsOrderFile> {
| int delfile(Integer id);
| }
|
|