| | |
| | | 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; |
| | | |
| | |
| | | * @param code |
| | | * @return |
| | | */ |
| | | List<HzProductFlow> selectAllProductFlowByCode(String code); |
| | | List<HzProductFlow> selectAllProductFlowByCode(String code, Long companyId); |
| | | |
| | | /** |
| | | * 根据当前用户分页查询流向 |
| | |
| | | * @param productId |
| | | * @return |
| | | */ |
| | | List<HzProductFlow> getAllProductFlowByProductId(Long productId); |
| | | List<HzProductFlow> getAllProductFlowByProductId(Long productId,Long companyId); |
| | | } |