| | |
| | | package com.zt.life.modules.mainPart.basicInfo.dao; |
| | | |
| | | import com.zt.common.dao.BaseDao; |
| | | import com.zt.life.modules.mainPart.basicInfo.dto.ProductDto; |
| | | import com.zt.life.modules.mainPart.basicInfo.model.ProductImg; |
| | | import com.zt.life.modules.mainPart.basicInfo.model.XhProductModel; |
| | | import org.apache.ibatis.annotations.Mapper; |
| | |
| | | |
| | | List<XhProductModel> getByShipId(Long shipId); |
| | | |
| | | List<XhProductModel> getProductTree(Long shipId); |
| | | |
| | | void deleteByShipId(Long shipId); |
| | | |
| | | List<XhProductModel> getProductPath(Long shipId); |
| | | |
| | | void deleteByPid(Long id); |
| | | |
| | | Long[] getByPid(Long id); |
| | | |
| | | List<ProductDto> getProductByShip(Long shipId); |
| | | } |