1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
| package com.zbooksoft.gdmis.service;
|
| import com.baomidou.mybatisplus.extension.service.IService;
| import com.zbooksoft.gdmis.data.entity.CatCheck;
| import com.zbooksoft.gdmis.data.entity.PackingManage;
|
|
| /**
| * @Description
| * @Author zhai
| * @Date 2024/7/31
| **/
| public interface PackingManageService extends IService<PackingManage> {
| void removeByItemId(Long itemId);
| }
|
|