|
|
|
@ -15,11 +15,4 @@ import org.springframework.stereotype.Repository;
|
|
|
|
|
**/
|
|
|
|
|
@Repository
|
|
|
|
|
public interface WmsMoveSnRepository extends BaseRepository<WmsMoveSn, Long> {
|
|
|
|
|
|
|
|
|
|
@Query("select count(id) from WmsMoveSn where destLocateNo = :destLocateNo and itemStatus in (:createStatus,:dealStatus)" +
|
|
|
|
|
" and organizeCode = :organizeCode and isValid = :isValid and isDeleted = :isDeleted")
|
|
|
|
|
int getCountByLocateNoAndStatus(@Param("destLocateNo")String destLocateNo,@Param("createStatus")String createStatus,
|
|
|
|
|
@Param("dealStatus")String dealStatus,@Param("organizeCode")String organizeCode,
|
|
|
|
|
@Param("isValid")int isValid, @Param("isDeleted")int isDeleted);
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|