|
@@ -5,6 +5,7 @@ import com.ruoyi.common.datascope.annotation.DataScopeMutiDept;
|
|
|
import com.ruoyi.system.api.RemoteConfigService;
|
|
|
import com.sooka.sponest.data.base.service.impl.BaseServiceImpl;
|
|
|
import com.sooka.sponest.data.housingconstruction.domain.*;
|
|
|
+import com.sooka.sponest.data.housingconstruction.mapper.CenterdataTHousingconstructionCarMapper;
|
|
|
import com.sooka.sponest.data.housingconstruction.mapper.CenterdataTHousingconstructionEnterpriseMapper;
|
|
|
import com.sooka.sponest.data.housingconstruction.mapper.CenterdataTHousingconstructionRealnameuserMapper;
|
|
|
import com.sooka.sponest.data.housingconstruction.mapper.CenterdataTHousingconstructionViewMapper;
|
|
@@ -33,6 +34,9 @@ public class CenterdataTHousingconstructionViewServiceImpl extends BaseServiceIm
|
|
|
@Autowired
|
|
|
private CenterdataTHousingconstructionEnterpriseMapper centerdataTHousingconstructionEnterpriseMapper;
|
|
|
|
|
|
+ @Autowired
|
|
|
+ private CenterdataTHousingconstructionCarMapper centerdataTHousingconstructionCarMapper;
|
|
|
+
|
|
|
/*
|
|
|
* 液化气罐总数
|
|
|
*
|
|
@@ -245,7 +249,12 @@ public class CenterdataTHousingconstructionViewServiceImpl extends BaseServiceIm
|
|
|
break;
|
|
|
case "3":
|
|
|
//车辆
|
|
|
- // mapList = centerdataTHousingconstructionViewMapper.getResourcePoint(storagetank);
|
|
|
+ CenterdataTHousingconstructionCar car = new CenterdataTHousingconstructionCar();
|
|
|
+ setSookaDataBase(car);
|
|
|
+ car.setEnterpriseId(storagetank.getEnterpriseId());
|
|
|
+ car.setCarNumber(storagetank.getName());
|
|
|
+ mapList = centerdataTHousingconstructionCarMapper.getCarList(car);
|
|
|
+ break;
|
|
|
case "4":
|
|
|
//厂站
|
|
|
CenterdataTHousingconstructionEnterprise enterprise = new CenterdataTHousingconstructionEnterprise();
|