| | |
| | | package com.by4cloud.platformx.business.service; |
| | | |
| | | import cn.hutool.core.lang.tree.Tree; |
| | | import com.baomidou.mybatisplus.extension.service.IService; |
| | | import com.by4cloud.platformx.business.dto.ProductQueryDTO; |
| | | import com.by4cloud.platformx.business.entity.Product; |
| | | import com.by4cloud.platformx.business.vo.ProductSelectVo; |
| | | import com.by4cloud.platformx.business.vo.ProductTreeVo; |
| | | import com.by4cloud.platformx.common.core.util.R; |
| | | import com.by4cloud.platformx.common.data.mybatis.IIService; |
| | | |
| | |
| | | |
| | | public interface ProductService extends IIService<Product> { |
| | | |
| | | List<Tree<Long>> treeList(Long parentId, String productName); |
| | | List<Tree<Long>> treeList(); |
| | | |
| | | List<Product> getProductList(Product product); |
| | | List<ProductSelectVo> getProductList(Product product); |
| | | |
| | | R getProductListByParentId(ProductQueryDTO queryDTO); |
| | | } |