| | |
| | | import com.ruoyi.basic.dto.ProductDto; |
| | | import com.ruoyi.basic.dto.ProductModelDto; |
| | | import com.ruoyi.basic.pojo.ProductModel; |
| | | import com.ruoyi.framework.web.domain.AjaxResult; |
| | | import org.springframework.web.multipart.MultipartFile; |
| | | |
| | | import java.util.List; |
| | | |
| | |
| | | |
| | | List<ProductModel> selectModelList(ProductDto productDto); |
| | | |
| | | List<ProductModel> selectModelListByProductIds(List<Long> ids); |
| | | |
| | | /** |
| | | * 根据id查询产品规格分页查询 |
| | | * @param page |
| | |
| | | * @return |
| | | */ |
| | | IPage<ProductModel> modelListPage(Page page , ProductDto productDto); |
| | | |
| | | AjaxResult importProductModel(MultipartFile file, Integer productId); |
| | | } |