package org.jeecg.modules.eam.service.impl; import com.baomidou.mybatisplus.core.conditions.query.LambdaQueryWrapper; import org.jeecg.modules.eam.entity.EamTechnicalStatusEvaluationOrderDetail; import org.jeecg.modules.eam.mapper.EamTechnicalStatusEvaluationOrderDetailMapper; import org.jeecg.modules.eam.service.IEamTechnicalStatusEvaluationOrderDetailService; import org.springframework.stereotype.Service; import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl; import java.util.List; /** * @Description: 技术状态鉴定工单明细 * @Author: jeecg-boot * @Date: 2025-07-09 * @Version: V1.0 */ @Service public class EamTechnicalStatusEvaluationOrderDetailServiceImpl extends ServiceImpl implements IEamTechnicalStatusEvaluationOrderDetailService { /** * 获取规范明细数据 * @param standardId * @param checkCategory */ @Override public List queryList(String standardId, String checkCategory){ LambdaQueryWrapper queryWrapper = new LambdaQueryWrapper<>(); queryWrapper.eq(EamTechnicalStatusEvaluationOrderDetail::getOrderId, standardId); queryWrapper.eq(EamTechnicalStatusEvaluationOrderDetail::getCheckCategory, checkCategory); queryWrapper.orderByAsc(EamTechnicalStatusEvaluationOrderDetail::getCheckCategory); queryWrapper.orderByAsc(EamTechnicalStatusEvaluationOrderDetail::getItemCode); return this.getBaseMapper().selectList(queryWrapper); } }