commit for pull

This commit is contained in:
caixiang
2023-02-23 14:28:05 +08:00
parent 1ebe39b60a
commit 16f3cd5d30
15 changed files with 258 additions and 111 deletions

View File

@@ -22,5 +22,7 @@ public interface CamlineMapper {
String getOrderNameBySubId(@Param("subId") String subId);
Integer getTodayBoxNum();
}

View File

@@ -24,4 +24,6 @@ public interface WoPackagingBoxMapper extends BaseDao<WoPackagingBox> {
List<WoPackagingBoxDTO> list();
int updateIsArrivedByBoxNo(@Param("isArrived") Integer isArrived, @Param("boxNo") String boxNo);
}

View File

@@ -1,4 +1,5 @@
package com.cnbm.packing.mapper;
import org.apache.ibatis.annotations.Param;
import com.cnbm.common.dao.BaseDao;
import com.cnbm.packing.entity.WoPackagingBoxSubstrate;
@@ -12,5 +13,7 @@ import org.apache.ibatis.annotations.Mapper;
*/
@Mapper
public interface WoPackagingBoxSubstrateMapper extends BaseDao<WoPackagingBoxSubstrate> {
WoPackagingBoxSubstrate getOneByWoSubstrateId(@Param("woSubstrateId") String woSubstrateId);
int updatePackagingBoxIdByWoSubstrateId(@Param("packagingBoxId") String packagingBoxId, @Param("woSubstrateId") String woSubstrateId);
}