|
|
@@ -154,6 +154,8 @@ public class AmbInvestServiceImpl extends BaseMybatisDao<AmbInvestMapper> implem
|
|
|
return 1;
|
|
|
}
|
|
|
|
|
|
+
|
|
|
+
|
|
|
private void addAmbInvestLog(InputAmbInvest in, AmbInvest ambInvest) {
|
|
|
AmbInvestLog log = new AmbInvestLog();
|
|
|
log.setAmbInvestId(ambInvest.getId());
|
|
|
@@ -162,4 +164,10 @@ public class AmbInvestServiceImpl extends BaseMybatisDao<AmbInvestMapper> implem
|
|
|
log.setStatus(in.getStatus());
|
|
|
ambInvestLogMapper.insertSelective(log);
|
|
|
}
|
|
|
+
|
|
|
+ @Override
|
|
|
+ public List<AmbSystem> getInvestAmbList(Long id) {
|
|
|
+ AmbSystem ambSystem = ambSystemMapper.selectByPrimaryKey(id);
|
|
|
+ return ambSystemMapper.selectBySuperId(ambSystem);
|
|
|
+ }
|
|
|
}
|