大屏开发

This commit is contained in:
wanghao
2025-07-06 14:08:36 +08:00
parent 3bd73a6eb8
commit c342a77af1
30 changed files with 1221 additions and 200 deletions
@@ -1,42 +0,0 @@
package com.renkang.emergency.entity.vo;
import com.renkang.emergency.entity.EmergencyHealthRoom;
import com.renkang.emergency.entity.Resource;
import lombok.Data;
@Data
public class LargeScreenMap {
private String id;
private String name;
private String orgName;
private String type;
private String loveNum;
private String longitude;
private String latitude;
public LargeScreenMap() {}
public LargeScreenMap(Resource resource) {
this.id = resource.getId();
this.name = resource.getName();
this.orgName = "";
this.type = resource.getType();
this.latitude = String.valueOf(resource.getLatitude());
this.longitude = String.valueOf(resource.getLongitude());
}
public LargeScreenMap(EmergencyHealthRoom room) {
this.id = room.getId();
this.name = room.getName();
this.orgName = room.getOrgName();
this.type = "2";
this.latitude = room.getLatitude();
this.longitude = room.getLongitude();
}
}