危化品全生命周期管理后端
“djh”
2025-04-21 437f8e2b89a18363a1073fdbb3ab99bcd840a757
hazmat-system/src/main/java/com/gkhy/hazmat/system/service/HzProductFlowService.java
@@ -3,6 +3,7 @@
import com.baomidou.mybatisplus.extension.service.IService;
import com.gkhy.hazmat.common.api.CommonPage;
import com.gkhy.hazmat.system.domain.HzProductFlow;
import org.springframework.web.bind.annotation.RequestParam;
import java.util.List;
@@ -58,7 +59,7 @@
     * @param code
     * @return
     */
    List<HzProductFlow> selectAllProductFlowByCode(String code);
    List<HzProductFlow> selectAllProductFlowByCode(String code, Long companyId);
    /**
     * 根据当前用户分页查询流向
@@ -71,5 +72,5 @@
     * @param productId
     * @return
     */
    List<HzProductFlow> getAllProductFlowByProductId(Long productId);
    List<HzProductFlow> getAllProductFlowByProductId(Long productId,Long companyId);
}