zss
2023-08-11 24a1aa1d7470998522aa28b4abc728fff5bcbaf7
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
38
39
40
41
42
43
44
package com.yuanchu.mom.service;
 
import com.baomidou.mybatisplus.core.metadata.IPage;
import com.baomidou.mybatisplus.extension.plugins.pagination.Page;
import com.baomidou.mybatisplus.extension.service.IService;
import com.yuanchu.mom.pojo.ImportRepertory;
import com.yuanchu.mom.pojo.dto.ImportRepertoryDto;
 
import java.util.List;
import java.util.Map;
 
/**
 * 成品入库表(ImportRepertory)表服务接口
 *
 * @author zss
 * @since 2023-08-10 10:27:01
 */
public interface ImportRepertoryService extends IService<ImportRepertory> {
 
    //新增成品入库
    void addImpRep(String name, ImportRepertoryDto importRepertoryDto);
 
    /**
     * 查询入库列表
     * @param page
     * @param orderCode
     * @param name
     * @param time
     * @return
     */
    IPage<Map<String, Object>> selectAllImpRep(Page<Object> page, String orderCode, String name, String time);
 
    /**
     * 根据id删除
     * @param id
     */
    void delImpRep(Integer id);
 
    /**
     * 批量删除
     * @param ids
     */
    void delAllImpRep(List<Integer> ids);
}