自动化立体仓库 - 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
23
24
25
26
27
28
29
30
31
32
33
34
35
36
package com.zy.asrs.mapper;
 
import com.zy.asrs.entity.POInStock;
import com.baomidou.mybatisplus.mapper.BaseMapper;
import com.zy.kingdee.entity.PoOrder;
import com.zy.kingdee.entity.SubContract;
import org.apache.ibatis.annotations.Mapper;
import org.apache.ibatis.annotations.Param;
import org.springframework.stereotype.Repository;
 
@Mapper
@Repository
public interface POInStockMapper extends BaseMapper<POInStock> {
    String getMaxCode(String fbillno);
 
    int getMaxId();
 
 
 
    int deleteBySameId(@Param("sameId") String sameId);
 
    int deleteDetailBySameId(@Param("sameId") String sameId);
 
    int deleteZjBySameId(@Param("sameId") String sameId);
 
    int deleteZjDetailBySameId(@Param("sameId") String sameId);
 
 
 
    int updateZjMain(POInStock m);
 
 
    int updatePoQty(PoOrder poOrder);
 
    int updateWwQty(SubContract poOrder3);
}