| | |
| | | import org.jeecg.modules.tms.mapper.ToolLedgerDetailMapper; |
| | | import org.jeecg.modules.tms.service.IToolLedgerDetailService; |
| | | import org.springframework.stereotype.Service; |
| | | |
| | | import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl; |
| | | |
| | | import java.util.Map; |
| | | |
| | | /** |
| | |
| | | if (statuses != null && statuses.length > 0) { |
| | | queryWrapper.eq("t.status", statuses[0]); |
| | | } |
| | | String[] excludeIds = parameterMap.get("excludeIds"); |
| | | if (excludeIds != null && excludeIds.length > 0) { |
| | | String[] idArray = excludeIds[0].split(","); |
| | | queryWrapper.notIn("t.id", idArray); |
| | | } |
| | | return this.baseMapper.queryPageList(page, queryWrapper); |
| | | } |
| | | } |