新疆大屏

This commit is contained in:
wanghao
2025-12-03 15:53:18 +08:00
parent a4a0265a82
commit 595d702e9e
12 changed files with 108 additions and 60 deletions
@@ -47,12 +47,12 @@ public class TblBaseHospitalVo {
this.address = resource.getAddress();
}
public TblBaseHospitalVo(XjAed xjAed){
this.id = xjAed.getId();
this.name = xjAed.getName();
this.lat = xjAed.getLatitude();
this.lon = xjAed.getLongitude();
public TblBaseHospitalVo(AedEquipmentManger aed){
this.id = String.valueOf(aed.getId());
this.name = aed.getName();
this.lat = aed.getLatitude();
this.lon = aed.getLongitude();
this.type = "4";
this.address = xjAed.getAddress();
this.address = aed.getInstallAddress();
}
}