自动化立体仓库 - WMS系统
1
zhang
2025-10-22 5de76c8f2409c0d1a759c4ee33967f2fbd8295c8
src/main/java/com/zy/third/mapper/ExdOutstockSourceMapper.java
@@ -2,7 +2,6 @@
import com.zy.third.entity.ExdOutstockSource;
import com.baomidou.mybatisplus.mapper.BaseMapper;
import com.zy.third.entity.ExdUser;
import org.apache.ibatis.annotations.Param;
import java.util.List;
@@ -10,12 +9,13 @@
/**
* @author zc857
* @description 针对表【Exd_Outstock_Source】的数据库操作Mapper
* @createDate 2025-09-23 08:36:03
* @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("fbillno") String fbillno);
    List<ExdOutstockSource> listAll(@Param("orderNo") String orderNo);
}