| | |
| | | package com.by4cloud.platformx.business.mapper; |
| | | |
| | | import com.by4cloud.platformx.business.dto.ProductQueryDTO; |
| | | import com.by4cloud.platformx.business.vo.ProductSelectVo; |
| | | import com.by4cloud.platformx.common.data.datascope.DataScope; |
| | | import com.by4cloud.platformx.common.data.datascope.PlatformxBaseMapper; |
| | | import com.by4cloud.platformx.business.entity.Product; |
| | |
| | | public interface ProductMapper extends PlatformxBaseMapper<Product> { |
| | | |
| | | |
| | | List<Product> getProductListByScope(@Param("product") Product product, DataScope comp_id); |
| | | List<ProductSelectVo> getProductListByScope(@Param("product") Product product, DataScope comp_id); |
| | | |
| | | List<ProductSelectVo> getProductListByParentId(@Param("queryDTO") ProductQueryDTO queryDTO,@Param("erpCodes") List<String> erpCodes, DataScope comp_id); |
| | | } |