¶Ô±ÈÐÂÎļþ |
| | |
| | | package org.jeecg.modules.dnc.service; |
| | | |
| | | import com.baomidou.mybatisplus.extension.service.IService; |
| | | import org.jeecg.modules.dnc.entity.ProductMix; |
| | | |
| | | import java.util.List; |
| | | |
| | | public interface IProductMixService extends IService<ProductMix> { |
| | | |
| | | //è·åå°è£
产åç»ææ |
| | | List<ProductMix> getTree(); |
| | | |
| | | /** |
| | | * æ¥è¯¢å¯¹åºidçææç¶çº§(æéåé
使ç¨) |
| | | * @param id |
| | | * @return |
| | | */ |
| | | List<ProductMix> getParentList(String id); |
| | | |
| | | /** |
| | | * æ¥è¯¢å¯¹åºidçææåèç¹(æéåé
使ç¨) |
| | | * @param id |
| | | * @return |
| | | */ |
| | | List<ProductMix> getChildrenList(String id); |
| | | |
| | | } |