package org.jeecg.modules.spare.service.impl; import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl; import org.jeecg.modules.spare.entity.SparePartRequirementDeatil; import org.jeecg.modules.spare.mapper.SparePartRequirementDeatilMapper; import org.jeecg.modules.spare.service.ISparePartRequirementDeatilService; import org.springframework.beans.factory.annotation.Autowired; import org.springframework.stereotype.Service; import java.util.List; /** * @Description: 备件需求明细表 * @Author: jeecg-boot * @Date: 2023-06-21 * @Version: V1.0 */ @Service public class SparePartRequirementDeatilServiceImpl extends ServiceImpl implements ISparePartRequirementDeatilService { @Autowired private SparePartRequirementDeatilMapper sparePartRequirementDeatilMapper; @Override public List getSparesScrapRequirementDetailList(String sparePartScrapRequirementId) { return super.getBaseMapper().getSparesScrapRequirementDetailList(sparePartScrapRequirementId); } @Override public List selectByMainId(String mainId) { return sparePartRequirementDeatilMapper.selectByMainId(mainId); } }