|
@@ -7,13 +7,9 @@ import com.baomidou.mybatisplus.core.conditions.query.QueryWrapper;
|
|
|
import com.baomidou.mybatisplus.core.metadata.IPage;
|
|
|
import com.baomidou.mybatisplus.extension.plugins.pagination.Page;
|
|
|
import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl;
|
|
|
-import com.ozs.base.domain.BaseAgency;
|
|
|
-import com.ozs.base.domain.BaseExpert;
|
|
|
-import com.ozs.base.domain.BaseSupplier;
|
|
|
-import com.ozs.base.domain.BaseUnitInformation;
|
|
|
-import com.ozs.base.service.BaseAgencyService;
|
|
|
-import com.ozs.base.service.BaseExpertService;
|
|
|
-import com.ozs.base.service.BaseSupplierService;
|
|
|
+import com.ozs.base.domain.*;
|
|
|
+import com.ozs.base.domain.vo.BaseExpertVo;
|
|
|
+import com.ozs.base.service.*;
|
|
|
import com.ozs.common.enums.*;
|
|
|
import com.ozs.common.utils.DateUtils;
|
|
|
import com.ozs.common.utils.RandomUtil;
|
|
@@ -98,6 +94,12 @@ public class PmDemandServiceImpl extends ServiceImpl<PmDemandMapper, PmDemand> i
|
|
|
@Autowired
|
|
|
private PmProjectConstructionService pmProjectConstructionService;
|
|
|
|
|
|
+ @Autowired
|
|
|
+ private BaseNoticeTypeService baseNoticeTypeService;
|
|
|
+
|
|
|
+ @Autowired
|
|
|
+ private BaseNoticeService baseNoticeService;
|
|
|
+
|
|
|
|
|
|
/**
|
|
|
* 查询采购需求
|
|
@@ -1576,7 +1578,7 @@ public class PmDemandServiceImpl extends ServiceImpl<PmDemandMapper, PmDemand> i
|
|
|
*/
|
|
|
@Override
|
|
|
public List<PmDemand> selectByDemandIdList(List<Integer> demandIdList) {
|
|
|
- return pmDemandMapper.selectByDemandIdList(demandIdList);
|
|
|
+ return this.baseMapper.selectByDemandIdList(demandIdList);
|
|
|
}
|
|
|
|
|
|
/**
|
|
@@ -1586,6 +1588,6 @@ public class PmDemandServiceImpl extends ServiceImpl<PmDemandMapper, PmDemand> i
|
|
|
*/
|
|
|
@Override
|
|
|
public List<PmDemand> selectExtractionExpert(BaseExpertVo baseExpertVo) {
|
|
|
- return pmDemandMapper.selectExtractionExpert(baseExpertVo);
|
|
|
+ return this.baseMapper.selectExtractionExpert(baseExpertVo);
|
|
|
}
|
|
|
}
|