自动化立体仓库 - WMS系统
#
zjj
2025-09-17 4474cf3c30e6ad06711d2021be15ff82c36bd75a
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
package com.zy.asrs.mapper;
 
import com.zy.asrs.entity.BomChild;
import com.zy.asrs.entity.ICBOM;
import com.baomidou.mybatisplus.mapper.BaseMapper;
import com.zy.asrs.entity.ICMO;
import org.apache.ibatis.annotations.Mapper;
import org.apache.ibatis.annotations.Param;
import org.springframework.stereotype.Repository;
 
import java.util.List;
 
@Mapper
@Repository
public interface ICBOMMapper extends BaseMapper<ICBOM> {
 
    List<BomChild> getListByChild(@Param("main") BomChild m);
 
    List<ICBOM> getList(@Param("main") ICBOM m);
 
    int updateMaxNum(ICMO m);
}