叶松
2023-11-16 e54c4eb160c09711dc262c50ef5a0b3d0c4709f5
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
package com.thhy.materials.modules.biz.suMaterialWarehouse.mapper;
 
import com.thhy.materials.modules.biz.suMaterialWarehouse.entity.SuMaterialWarehouseEntity;
import org.apache.ibatis.annotations.Mapper;
 
import java.util.List;
import java.util.Map;
 
/**
 * @Author QiuYuHao
 * @CreateDate 2023-11-15 9:22:05
 * 苏州料仓mapper
 */
@Mapper
public interface SuMaterialWarehouseMapper {
 
    void insertAndUpdate(SuMaterialWarehouseEntity suMaterialWarehouseEntity);
 
    void delete(String id);
 
    List<SuMaterialWarehouseEntity> selectPageList(Map map);
 
    SuMaterialWarehouseEntity selectInfo(Integer id);
 
    /**
     * 通过屏幕号查询最新一条
     * @param tableNum
     * @return
     */
    SuMaterialWarehouseEntity selectNewOneByTableNum(Integer tableNum);
 
}