自动化立体仓库 - WMS系统
1
zhang
2025-10-22 ecd7f883fde2f3081009dd30207633597f874ba3
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
package com.zy.third.mapper;
 
import com.zy.third.entity.ExdOutstockSource;
import com.baomidou.mybatisplus.mapper.BaseMapper;
import org.apache.ibatis.annotations.Param;
 
import java.util.List;
 
/**
* @author zc857
* @description 针对表【Exd_Outstock_Source】的数据库操作Mapper
* @createDate 2025-09-24 08:20:14
* @Entity com.zy.third.entity.ExdOutstockSource
*/
public interface ExdOutstockSourceMapper extends BaseMapper<ExdOutstockSource> {
 
 
    List<String> listOrderNo();
 
    List<ExdOutstockSource> listAll(@Param("orderNo") String orderNo);
}