package org.jeecg.modules.spare.service; import com.baomidou.mybatisplus.core.metadata.IPage; import com.baomidou.mybatisplus.extension.service.IService; import org.jeecg.modules.spare.entity.SparePartCancellingStocksDetail; import org.jeecg.modules.spare.entity.SparePartOutboundDetail; import org.jeecg.modules.spare.entity.SparePartReceiveDeatil; import java.util.List; import java.util.Map; /** * @Description: 备件退库详情 * @Author: jeecg-boot * @Date: 2023-07-04 * @Version: V1.0 */ public interface ISparePartCancellingStocksDetailService extends IService { /** * 通过主表id查询子表数据 * * @param sparePartCancellingId */ List> getSparePartCancellingStocksDeatilList(String sparePartCancellingId); /*备件选择列表*/ IPage> getSparePartList(Integer pageNo, Integer pageSize, Map params); IPage> getSparePartCanxellingStoksDetailsById(Integer pageNo, Integer pageSize, Map params); boolean sparePartGround(SparePartCancellingStocksDetail sparePartCancellingStocksDetail); /** * 通过主表id查询子表数据 * * @param mainId 主表id * @return List */ public List selectByMainId(String mainId); }