| | |
| | | import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl; |
| | | import org.springframework.stereotype.Service; |
| | | |
| | | import java.util.List; |
| | | |
| | | /** |
| | | * <p> |
| | | * 生产成本核算对比明细表 服务实现类 |
| | |
| | | @Service |
| | | public class ProductionSettlementDetailsServiceImpl extends ServiceImpl<ProductionSettlementDetailsMapper, ProductionSettlementDetails> implements IProductionSettlementDetailsService { |
| | | |
| | | @Override |
| | | public List<ProductionSettlementDetails> selectByBatchId(Long batchId) { |
| | | return this.lambdaQuery() |
| | | .eq(ProductionSettlementDetails::getBatchId, batchId) |
| | | .list(); |
| | | } |
| | | } |