yangys
2024-04-04 ed4a5236bab800094be4a8378f5098eebe3de6ac
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
package com.qianwen.smartman.modules.tpm.service.impl;
 
import com.baomidou.mybatisplus.core.metadata.IPage;
import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl;
import java.util.List;
import com.qianwen.smartman.modules.tpm.entity.MaintainPlanItem;
import com.qianwen.smartman.modules.tpm.mapper.MaintainPlanItemMapper;
import com.qianwen.smartman.modules.tpm.service.IMaintainPlanItemService;
import com.qianwen.smartman.modules.tpm.vo.MaintainPlanItemVO;
import org.springframework.stereotype.Service;
 
@Service
/* loaded from: blade-api.jar:BOOT-INF/classes/org/springblade/modules/tpm/service/impl/MaintainPlanItemServiceImpl.class */
public class MaintainPlanItemServiceImpl extends ServiceImpl<MaintainPlanItemMapper, MaintainPlanItem> implements IMaintainPlanItemService {
    @Override // org.springblade.modules.tpm.service.IMaintainPlanItemService
    public List<MaintainPlanItemVO> getMaintainPlanItemListByPlanId(Long planId, String tenantId) {
        return this.baseMapper.getMaintainPlanItemListByPlanId(planId, tenantId);
    }
 
    @Override // org.springblade.modules.tpm.service.IMaintainPlanItemService
    public List<MaintainPlanItemVO> queryMaintainPlanItemListPage(Long planId, String tenantId, IPage<MaintainPlanItemVO> page) {
        return this.baseMapper.queryMaintainPlanItemListPage(planId, tenantId, page);
    }
}