新火炬后端单体项目初始化代码
cuilei
8 天以前 f135716c0df75eeb080eb4c3a606987176da5e92
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
package org.jeecg.modules.tms.service;
 
import org.jeecg.modules.tms.entity.TmsToolInbound;
import com.baomidou.mybatisplus.extension.service.IService;
import org.jeecg.modules.tms.vo.TmsToolInboundRequest;
 
import java.io.Serializable;
import java.lang.reflect.InvocationTargetException;
import java.util.Collection;
 
/**
 * @Description: 工装入库
 * @Author: jeecg-boot
 * @Date:   2025-07-28
 * @Version: V1.0
 */
public interface ITmsToolInboundService extends IService<TmsToolInbound> {
 
    /**
     * 删除一对多
     *
     * @param id
     */
    public void delMain (String id);
    
    /**
     * 批量删除一对多
     *
     * @param idList
     */
    public void delBatchMain (Collection<? extends Serializable> idList);
 
 
    void add(TmsToolInboundRequest tmsToolInboundRequest) throws InvocationTargetException, IllegalAccessException;
 
    void update(TmsToolInboundRequest tmsToolInboundRequest) throws InvocationTargetException, IllegalAccessException;
}