|
@@ -1,9 +1,11 @@
|
|
|
package com.ruoyi.business.service.impl;
|
|
|
|
|
|
import com.baomidou.mybatisplus.core.conditions.query.LambdaQueryWrapper;
|
|
|
+import com.ruoyi.business.domain.ZwywXmsbBaxx;
|
|
|
import com.ruoyi.business.domain.ZwywXmsbCommon;
|
|
|
import com.ruoyi.business.domain.ZwywXmsbXmbdpz;
|
|
|
import com.ruoyi.business.domain.ZwywXmsbXmlx;
|
|
|
+import com.ruoyi.business.mapper.ZwywXmsbBaxxMapper;
|
|
|
import com.ruoyi.business.mapper.ZwywXmsbCommonMapper;
|
|
|
import com.ruoyi.business.mapper.ZwywXmsbXmbdpzMapper;
|
|
|
import com.ruoyi.business.mapper.ZwywXmsbXmlxMapper;
|
|
@@ -22,12 +24,12 @@ import java.util.List;
|
|
|
|
|
|
/**
|
|
|
* 项目申报信息Service业务层处理
|
|
|
- *
|
|
|
+ *
|
|
|
* @author sun
|
|
|
* @date 2022-10-25
|
|
|
*/
|
|
|
@Service
|
|
|
-public class ZwywXmsbCommonServiceImpl implements IZwywXmsbCommonService
|
|
|
+public class ZwywXmsbCommonServiceImpl implements IZwywXmsbCommonService
|
|
|
{
|
|
|
@Autowired
|
|
|
private ZwywXmsbCommonMapper zwywXmsbCommonMapper;
|
|
@@ -41,9 +43,12 @@ public class ZwywXmsbCommonServiceImpl implements IZwywXmsbCommonService
|
|
|
@Autowired
|
|
|
private ZwywXmsbXmbdpzMapper zwywXmsbXmbdpzMapper;
|
|
|
|
|
|
+ @Autowired
|
|
|
+ private ZwywXmsbBaxxMapper zwywXmsbBaxxMapper;
|
|
|
+
|
|
|
/**
|
|
|
* 查询项目申报信息
|
|
|
- *
|
|
|
+ *
|
|
|
* @param id 项目申报信息主键
|
|
|
* @return 项目申报信息
|
|
|
*/
|
|
@@ -58,6 +63,9 @@ public class ZwywXmsbCommonServiceImpl implements IZwywXmsbCommonService
|
|
|
}
|
|
|
res.setSzdqName(sysDeptJlMapper.getXzqhNames(res.getSzdq()));
|
|
|
res.setSzdq(sysDeptJlMapper.getXzqhCodes(res.getSzdq()));
|
|
|
+ //查询项目申报信息关联备案信息list
|
|
|
+ List<ZwywXmsbBaxx> list = zwywXmsbBaxxMapper.getZwywXmsbBaxxListById(id);
|
|
|
+ res.setZwywXmsbBaxxList(list);
|
|
|
}
|
|
|
return res;
|
|
|
}
|
|
@@ -70,7 +78,7 @@ public class ZwywXmsbCommonServiceImpl implements IZwywXmsbCommonService
|
|
|
|
|
|
/**
|
|
|
* 查询项目申报信息列表
|
|
|
- *
|
|
|
+ *
|
|
|
* @param zwywXmsbCommon 项目申报信息
|
|
|
* @return 项目申报信息
|
|
|
*/
|
|
@@ -102,7 +110,7 @@ public class ZwywXmsbCommonServiceImpl implements IZwywXmsbCommonService
|
|
|
|
|
|
/**
|
|
|
* 新增项目申报信息
|
|
|
- *
|
|
|
+ *
|
|
|
* @param zwywXmsbCommon 项目申报信息
|
|
|
* @return 结果
|
|
|
*/
|
|
@@ -115,7 +123,7 @@ public class ZwywXmsbCommonServiceImpl implements IZwywXmsbCommonService
|
|
|
|
|
|
/**
|
|
|
* 修改项目申报信息
|
|
|
- *
|
|
|
+ *
|
|
|
* @param zwywXmsbCommon 项目申报信息
|
|
|
* @return 结果
|
|
|
*/
|
|
@@ -127,7 +135,7 @@ public class ZwywXmsbCommonServiceImpl implements IZwywXmsbCommonService
|
|
|
|
|
|
/**
|
|
|
* 批量删除项目申报信息
|
|
|
- *
|
|
|
+ *
|
|
|
* @param ids 需要删除的项目申报信息主键
|
|
|
* @return 结果
|
|
|
*/
|