| | |
| | | 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 com.baomidou.mybatisplus.extension.service.impl.ServiceImpl; |
| | | |
| | | import java.util.List; |
| | | /** |
| | | * @Description: 技术状态鉴定工单明细 |
| | | * @Author: jeecg-boot |
| | |
| | | @Service |
| | | public class EamTechnicalStatusEvaluationOrderDetailServiceImpl extends ServiceImpl<EamTechnicalStatusEvaluationOrderDetailMapper, EamTechnicalStatusEvaluationOrderDetail> implements IEamTechnicalStatusEvaluationOrderDetailService { |
| | | |
| | | |
| | | /** |
| | | * 获取规范明细数据 |
| | | * @param standardId |
| | | * @param checkCategory |
| | | */ |
| | | @Override |
| | | public List<EamTechnicalStatusEvaluationOrderDetail> queryList(String standardId, String checkCategory){ |
| | | LambdaQueryWrapper<EamTechnicalStatusEvaluationOrderDetail> 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); |
| | | } |
| | | } |