|
@@ -23,7 +23,6 @@ import com.persagy.dmp.basic.model.QueryCriteria;
|
|
|
import com.persagy.dmp.common.constant.ResponseCode;
|
|
|
import com.persagy.dmp.common.constant.ValidEnum;
|
|
|
import com.persagy.dmp.common.helper.SpringHelper;
|
|
|
-import com.persagy.dmp.common.lang.PsDateTime;
|
|
|
import com.persagy.dmp.common.model.response.CommonResult;
|
|
|
import com.persagy.dmp.define.entity.RelationDefine;
|
|
|
import org.springframework.beans.factory.annotation.Autowired;
|
|
@@ -232,44 +231,6 @@ public class SyncAppImpl implements ISyncApp {
|
|
|
}
|
|
|
|
|
|
@Override
|
|
|
- public Map<String, Object> downloadFloorData(String projectId, String floorId, String uploadFlag, String lastDownloadTime) {
|
|
|
- List<AdmObject> floorData = admObjMapper.selectList(buildQueryWrapperForFloor(new QueryWrapper<AdmObject>(), projectId, floorId, true, uploadFlag, lastDownloadTime));
|
|
|
- List<AdmRelation> floorRel = relationMapper.selectList(buildQueryWrapperForFloor(new QueryWrapper<AdmRelation>(), projectId, floorId, true, uploadFlag, lastDownloadTime));
|
|
|
-
|
|
|
- //任务相关数据查询
|
|
|
- List<AdmJobSpace> jobSpace = jobSpaceMapper.selectList(buildQueryWrapperForFloor(new QueryWrapper<AdmJobSpace>(), projectId, floorId, false, uploadFlag, lastDownloadTime));
|
|
|
- List<AdmProblemArch> problemArch = problemArchMapper.selectList(buildQueryWrapperForFloor(new QueryWrapper<AdmProblemArch>(), projectId, floorId, false, uploadFlag, lastDownloadTime));
|
|
|
- List<AdmProblemEquip> problemEquip = problemEquipMapper.selectList(buildQueryWrapperForFloor(new QueryWrapper<AdmProblemEquip>(), projectId, floorId, false, uploadFlag, lastDownloadTime));
|
|
|
- List<AdmFile> file = fileMapper.selectList(buildQueryWrapperForFloor(new QueryWrapper<AdmFile>(), projectId, floorId, false, uploadFlag, lastDownloadTime));
|
|
|
- List<AdmQrCode> qrCode = qrCodeMapper.selectList(buildQueryWrapperForFloor(new QueryWrapper<AdmQrCode>(), projectId, floorId, false, uploadFlag, lastDownloadTime));
|
|
|
-
|
|
|
- HashMap<String, Object> data = new HashMap<>();
|
|
|
- data.put("floorId", floorId);
|
|
|
-
|
|
|
- data.put("objects", serializeJsonProp(floorData));
|
|
|
- data.put("relations", floorRel);
|
|
|
-
|
|
|
- data.put("jobSpace", serializeJsonProp(jobSpace));
|
|
|
- data.put("problemArch", serializeJsonProp(problemArch));
|
|
|
- data.put("problemEquip", problemEquip);
|
|
|
- data.put("file", file);
|
|
|
- data.put("qrCode", serializeJsonProp(qrCode));
|
|
|
- data.put("timestamp", DateUtil.format(new Date(), DatePattern.PURE_DATETIME_PATTERN));
|
|
|
-
|
|
|
- return data;
|
|
|
- }
|
|
|
-
|
|
|
- private <T> QueryWrapper<T> buildQueryWrapperForFloor(QueryWrapper<T> wrapper, String projectId, String floorId, boolean floorIdNull, String uploadFlag, String lastDownloadTime){
|
|
|
- wrapper.eq("project_id", projectId);
|
|
|
- if(!floorIdNull)
|
|
|
- wrapper.eq("floor_id", floorId);
|
|
|
- else
|
|
|
- wrapper.and(w -> w.eq("floor_id", floorId).or().isNull("floor_id"));
|
|
|
- applyUploadFlag(wrapper, uploadFlag,lastDownloadTime);
|
|
|
- return wrapper;
|
|
|
- }
|
|
|
-
|
|
|
- @Override
|
|
|
public SyncData downloadBuildingData(String projectId, String buildingId, String uploadFlag, String lastDownloadTime) {
|
|
|
List<AdmObject> bdData = admObjMapper.selectList(buildDownloadQueryWrapper(new QueryWrapper<AdmObject>(), projectId, buildingId, uploadFlag, lastDownloadTime));
|
|
|
List<AdmRelation> bdRel = relationMapper.selectList(buildDownloadQueryWrapper(new QueryWrapper<AdmRelation>(), projectId, buildingId, uploadFlag, lastDownloadTime));
|
|
@@ -306,9 +267,10 @@ public class SyncAppImpl implements ISyncApp {
|
|
|
}
|
|
|
|
|
|
private void applyUploadFlag(QueryWrapper<?> wrapper, String uploadFlag, String lastDownloadTime){
|
|
|
- if(StrUtil.isNotBlank(uploadFlag))
|
|
|
- wrapper.and(w -> w.isNull("upload_flag").or().ne("upload_flag", uploadFlag));
|
|
|
- if (StrUtil.isNotBlank(lastDownloadTime)) {
|
|
|
+ if (StrUtil.isNotBlank(lastDownloadTime)) { //非初始化下载
|
|
|
+ if (StrUtil.isNotBlank(uploadFlag))
|
|
|
+ wrapper.and(w -> w.isNull("upload_flag").or().ne("upload_flag", uploadFlag));
|
|
|
+
|
|
|
wrapper.and(
|
|
|
w -> w.isNotNull("modified_time").gt("modified_time", lastDownloadTime)
|
|
|
.or()
|
|
@@ -321,151 +283,56 @@ public class SyncAppImpl implements ISyncApp {
|
|
|
@Transactional(rollbackFor = Exception.class)
|
|
|
public UploadRtn uploadData(SyncData uploadData, String projectId, String uploadFlag) {
|
|
|
UploadRtn rtn = new UploadRtn();
|
|
|
- PsDateTime timestamp = new PsDateTime(System.currentTimeMillis());
|
|
|
+ String timestamp = DateUtil.format(new Date(), DatePattern.PURE_DATETIME_PATTERN);
|
|
|
|
|
|
if (CollUtil.isNotEmpty(uploadData.getObjects())) {
|
|
|
List<AdmObject> dbObjs = admObjMapper.selectList(new QueryWrapper<AdmObject>().eq("building_id", uploadData.getBuildingId()).eq("valid", ValidEnum.TRUE.getType()));
|
|
|
- List<AdmObject> expired = uploadBdtpData(deserializeJsonProp(uploadData.getObjects()), dbObjs, uploadFlag, timestamp, admObjMapper, "object");
|
|
|
+ List<AdmObject> expired = uploadAdmData(deserializeJsonProp(uploadData.getObjects()), dbObjs, uploadFlag, timestamp, admObjMapper, "object");
|
|
|
rtn.setExpiredObjectIds(buildExpiredIds(expired));
|
|
|
}
|
|
|
if (CollUtil.isNotEmpty(uploadData.getRelations())) {
|
|
|
List<AdmRelation> dbObjs = relationMapper.selectList(new QueryWrapper<AdmRelation>().eq("building_id", uploadData.getBuildingId()).eq("valid", ValidEnum.TRUE.getType()));
|
|
|
- List<AdmRelation> expired = uploadBdtpData(uploadData.getRelations(), dbObjs, uploadFlag, timestamp, relationMapper, "relation");
|
|
|
+ List<AdmRelation> expired = uploadAdmData(uploadData.getRelations(), dbObjs, uploadFlag, timestamp, relationMapper, "relation");
|
|
|
rtn.setExpiredRelationIds(buildExpiredIds(expired));
|
|
|
}
|
|
|
|
|
|
- String timestampStr = timestamp.toString();
|
|
|
if (CollUtil.isNotEmpty(uploadData.getPipes())) {
|
|
|
List<AdmPipe> dbObjs = pipeMapper.selectList(new QueryWrapper<AdmPipe>().eq("building_id", uploadData.getBuildingId()).eq("valid", ValidEnum.TRUE.getType()));
|
|
|
- List<AdmPipe> expired = uploadAdmData(deserializeJsonProp(uploadData.getPipes()), dbObjs, uploadFlag, timestampStr, pipeMapper, "pipe");
|
|
|
+ List<AdmPipe> expired = uploadAdmData(deserializeJsonProp(uploadData.getPipes()), dbObjs, uploadFlag, timestamp, pipeMapper, "pipe");
|
|
|
rtn.setExpiredPipeIds(buildExpiredIds(expired));
|
|
|
}
|
|
|
|
|
|
if (CollUtil.isNotEmpty(uploadData.getJobSpace())) {
|
|
|
List<AdmJobSpace> dbObjs = jobSpaceMapper.selectList(new QueryWrapper<AdmJobSpace>().eq("building_id", uploadData.getBuildingId()).eq("valid", ValidEnum.TRUE.getType()));
|
|
|
- List<AdmJobSpace> expired = uploadAdmData(deserializeJsonProp(uploadData.getJobSpace()), dbObjs, uploadFlag, timestampStr, jobSpaceMapper, null);
|
|
|
+ List<AdmJobSpace> expired = uploadAdmData(deserializeJsonProp(uploadData.getJobSpace()), dbObjs, uploadFlag, timestamp, jobSpaceMapper, null);
|
|
|
rtn.setExpiredJobSpaceIds(buildExpiredIds(expired));
|
|
|
}
|
|
|
if (CollUtil.isNotEmpty(uploadData.getProblemArch())) {
|
|
|
List<AdmProblemArch> dbObjs = problemArchMapper.selectList(new QueryWrapper<AdmProblemArch>().eq("building_id", uploadData.getBuildingId()).eq("valid", ValidEnum.TRUE.getType()));
|
|
|
- List<AdmProblemArch> expired = uploadAdmData(deserializeJsonProp(uploadData.getProblemArch()), dbObjs, uploadFlag, timestampStr, problemArchMapper, null);
|
|
|
+ List<AdmProblemArch> expired = uploadAdmData(deserializeJsonProp(uploadData.getProblemArch()), dbObjs, uploadFlag, timestamp, problemArchMapper, null);
|
|
|
rtn.setExpiredProblemArchIds(buildExpiredIds(expired));
|
|
|
}
|
|
|
if (CollUtil.isNotEmpty(uploadData.getProblemEquip())) {
|
|
|
List<AdmProblemEquip> dbObjs = problemEquipMapper.selectList(new QueryWrapper<AdmProblemEquip>().eq("building_id", uploadData.getBuildingId()).eq("valid", ValidEnum.TRUE.getType()));
|
|
|
- List<AdmProblemEquip> expired = uploadAdmData(uploadData.getProblemEquip(), dbObjs, uploadFlag, timestampStr, problemEquipMapper, null);
|
|
|
+ List<AdmProblemEquip> expired = uploadAdmData(uploadData.getProblemEquip(), dbObjs, uploadFlag, timestamp, problemEquipMapper, null);
|
|
|
rtn.setExpiredProblemEquipIds(buildExpiredIds(expired));
|
|
|
}
|
|
|
if (CollUtil.isNotEmpty(uploadData.getFile())) {
|
|
|
List<AdmFile> dbObjs = fileMapper.selectList(new QueryWrapper<AdmFile>().eq("building_id", uploadData.getBuildingId()).eq("valid", ValidEnum.TRUE.getType()));
|
|
|
- List<AdmFile> expired = uploadAdmData(uploadData.getFile(), dbObjs, uploadFlag, timestampStr, fileMapper, null);
|
|
|
+ List<AdmFile> expired = uploadAdmData(uploadData.getFile(), dbObjs, uploadFlag, timestamp, fileMapper, null);
|
|
|
rtn.setExpiredFileIds(buildExpiredIds(expired));
|
|
|
}
|
|
|
if (CollUtil.isNotEmpty(uploadData.getQrCode())) {
|
|
|
List<AdmQrCode> dbObjs = qrCodeMapper.selectList(new QueryWrapper<AdmQrCode>().eq("building_id", uploadData.getBuildingId()).eq("valid", ValidEnum.TRUE.getType()));
|
|
|
- List<AdmQrCode> expired = uploadAdmData(deserializeJsonProp(uploadData.getQrCode()), dbObjs, uploadFlag, timestampStr, qrCodeMapper, null);
|
|
|
+ List<AdmQrCode> expired = uploadAdmData(deserializeJsonProp(uploadData.getQrCode()), dbObjs, uploadFlag, timestamp, qrCodeMapper, null);
|
|
|
rtn.setExpiredQrCodeIds(buildExpiredIds(expired));
|
|
|
}
|
|
|
|
|
|
- rtn.setTimestamp(timestampStr);
|
|
|
- rtn.setTimestampMillis(timestamp.getMillis());
|
|
|
+ rtn.setTimestamp(timestamp);
|
|
|
rtn.setBuildingId(uploadData.getBuildingId());
|
|
|
return rtn;
|
|
|
}
|
|
|
|
|
|
- private <T extends IAdmBdtpEntity> List<T> uploadBdtpData(List<T> objs, List<T> dbObjs, String uploadFlag, PsDateTime timestamp, BaseMapper<T> mapper, String objectType){
|
|
|
- List<T> expired = new ArrayList<>();
|
|
|
- HashMap<String, T> map = new HashMap<>(dbObjs.size());
|
|
|
- for(T dbObj : dbObjs) {
|
|
|
- map.put(dbObj.getId(), dbObj);
|
|
|
- }
|
|
|
-
|
|
|
- List<T> msgAdd = new ArrayList<>();
|
|
|
- List<T> msgModify = new ArrayList<>();
|
|
|
- List<T> msgRemove = new ArrayList<>();
|
|
|
-
|
|
|
- String timestampStr = timestamp.toString();
|
|
|
-
|
|
|
- for (T obj : objs) {
|
|
|
- logService.saveUploadLog(new AdmUploadLog(uploadFlag, getLogEntityType(obj), timestampStr, obj));
|
|
|
-
|
|
|
- T dbObj = map.get(obj.getId());
|
|
|
- if (dbObj == null) {
|
|
|
- if(obj.getValid().intValue() == ValidEnum.FALSE.getType())
|
|
|
- continue;
|
|
|
-
|
|
|
- obj.setCreationTime(timestamp);
|
|
|
- obj.setModifiedTime(timestamp); //新增时设置modifiedTime,方便后续处理
|
|
|
- obj.setCreator(AdmConst.CREATOR_APP);
|
|
|
- setBdtpUploadProp(obj, null, uploadFlag);
|
|
|
-
|
|
|
- mapper.insert(obj);
|
|
|
-
|
|
|
- msgAdd.add(obj);
|
|
|
- } else {
|
|
|
- long dbTs;
|
|
|
- long ts;
|
|
|
- if(dbObj.getModifiedTime() != null){
|
|
|
- dbTs = dbObj.getModifiedTime().getMillis();
|
|
|
- ts = obj.getModifiedTime().getMillis();
|
|
|
- } else {
|
|
|
- dbTs = dbObj.getCreationTime().getMillis();
|
|
|
- ts = obj.getCreationTime().getMillis();
|
|
|
- }
|
|
|
-// if (ts != dbTs) {
|
|
|
-// //TODO 时间戳不一致,离线数据无效,暂时跳过处理
|
|
|
-// expired.add(obj);
|
|
|
-// } else {
|
|
|
- obj.setModifiedTime(timestamp);
|
|
|
- obj.setModifier(AdmConst.CREATOR_APP);
|
|
|
-
|
|
|
- //合并对象信息点
|
|
|
- if(dbObj instanceof AdmObject) {
|
|
|
- AdmObject vo = (AdmObject) obj;
|
|
|
- AdmObject dbo = (AdmObject)dbObj;
|
|
|
- if(dbo.getInfos() != null) {
|
|
|
- ObjectNode infos = objectMapper.createObjectNode();
|
|
|
- infos.setAll(dbo.getInfos());
|
|
|
- if(vo.getInfos() != null)
|
|
|
- infos.setAll(vo.getInfos());
|
|
|
- vo.setInfos(infos);
|
|
|
- }
|
|
|
- }
|
|
|
-
|
|
|
- setBdtpUploadProp(obj, dbObj, uploadFlag);
|
|
|
-
|
|
|
- mapper.updateById(obj);
|
|
|
-
|
|
|
- if(obj.getValid().intValue() == ValidEnum.FALSE.getType())
|
|
|
- msgRemove.add(obj);
|
|
|
- else
|
|
|
- msgModify.add(obj);
|
|
|
- }
|
|
|
-// }
|
|
|
- }
|
|
|
-
|
|
|
- sendD2mMessage(objectType, msgAdd, msgModify, msgRemove);
|
|
|
-
|
|
|
- return expired;
|
|
|
- }
|
|
|
-
|
|
|
- private String getLogEntityType(Object o){
|
|
|
- if(o instanceof AdmObject)
|
|
|
- return ((AdmObject) o).getObjType();
|
|
|
- return o.getClass().getSimpleName();
|
|
|
- }
|
|
|
-
|
|
|
- private void setBdtpUploadProp(IAdmBdtpEntity obj, IAdmBdtpEntity dbObj, String uploadFlag){
|
|
|
- obj.setUploadFlag(uploadFlag);
|
|
|
- obj.setD2mState(ValidEnum.FALSE.getType());
|
|
|
- obj.setDeliveryState(ValidEnum.FALSE.getType());
|
|
|
-
|
|
|
- if(dbObj != null) {
|
|
|
- obj.setClientId(dbObj.getClientId());
|
|
|
- obj.setClientDevice(dbObj.getClientDevice());
|
|
|
- }
|
|
|
- }
|
|
|
-
|
|
|
private <T extends BaseAdmDataEntity> List<T> uploadAdmData(List<T> objs, List<T> dbObjs, String uploadFlag, String timestamp, BaseMapper<T> mapper, String d2mType){
|
|
|
List<T> expired = new ArrayList<>();
|
|
|
HashMap<String, T> dbMap = new HashMap<>(dbObjs.size());
|
|
@@ -477,14 +344,10 @@ public class SyncAppImpl implements ISyncApp {
|
|
|
List<T> msgModify = new ArrayList<>();
|
|
|
List<T> msgRemove = new ArrayList<>();
|
|
|
for (T obj : objs) {
|
|
|
- logService.saveUploadLog(new AdmUploadLog(uploadFlag, getLogEntityType(obj), timestamp, obj));
|
|
|
+ if(obj == null)
|
|
|
+ continue;
|
|
|
|
|
|
- if(d2mType != null) {
|
|
|
- if(obj instanceof AdmPipe) {
|
|
|
- ((AdmPipe) obj).setD2mState(ValidEnum.FALSE.getType());
|
|
|
- ((AdmPipe) obj).setDeliveryState(ValidEnum.FALSE.getType());
|
|
|
- }
|
|
|
- }
|
|
|
+ logService.saveUploadLog(new AdmUploadLog(uploadFlag, timestamp, obj));
|
|
|
|
|
|
T dbObj = dbMap.get(obj.getId());
|
|
|
if (dbObj == null) {
|
|
@@ -492,25 +355,27 @@ public class SyncAppImpl implements ISyncApp {
|
|
|
continue;
|
|
|
|
|
|
obj.setCreationTime(timestamp);
|
|
|
- obj.setModifiedTime(timestamp); //新增时设置modifiedTime,方便后续处理
|
|
|
obj.setCreator(AdmConst.CREATOR_APP);
|
|
|
obj.setUploadFlag(uploadFlag);
|
|
|
|
|
|
+ if(d2mType != null)
|
|
|
+ setDeliveryDataProps((BaseDeliveryEntity) obj, null);
|
|
|
+
|
|
|
mapper.insert(obj);
|
|
|
|
|
|
if(d2mType != null)
|
|
|
msgAdd.add(obj);
|
|
|
} else {
|
|
|
- String dbTs;
|
|
|
- String ts;
|
|
|
- if(dbObj.getModifiedTime() != null){
|
|
|
- dbTs = dbObj.getModifiedTime();
|
|
|
- ts = obj.getModifiedTime();
|
|
|
- } else {
|
|
|
- dbTs = dbObj.getCreationTime();
|
|
|
- ts = obj.getCreationTime();
|
|
|
- }
|
|
|
-// if (!ts.equals(dbTs)) {
|
|
|
+// String dbTs;
|
|
|
+// String ts;
|
|
|
+// if(dbObj.getModifiedTime() != null){
|
|
|
+// dbTs = dbObj.getModifiedTime();
|
|
|
+// ts = obj.getModifiedTime();
|
|
|
+// } else {
|
|
|
+// dbTs = dbObj.getCreationTime();
|
|
|
+// ts = obj.getCreationTime();
|
|
|
+// }
|
|
|
+// if (!dbTs.equals(ts)) {
|
|
|
// //TODO 时间戳不一致,离线数据无效,暂时跳过处理
|
|
|
// expired.add(obj);
|
|
|
// } else {
|
|
@@ -518,18 +383,14 @@ public class SyncAppImpl implements ISyncApp {
|
|
|
obj.setModifier(AdmConst.CREATOR_APP);
|
|
|
obj.setUploadFlag(uploadFlag);
|
|
|
|
|
|
- //合并对象信息点
|
|
|
- if(dbObj instanceof AdmPipe) {
|
|
|
- AdmPipe vo = (AdmPipe) obj;
|
|
|
- AdmPipe dbo = (AdmPipe) dbObj;
|
|
|
- if(dbo.getInfos() != null) {
|
|
|
- ObjectNode infos = objectMapper.createObjectNode();
|
|
|
- infos.setAll(dbo.getInfos());
|
|
|
- if(vo.getInfos() != null)
|
|
|
- infos.setAll(vo.getInfos());
|
|
|
- vo.setInfos(infos);
|
|
|
- }
|
|
|
- }
|
|
|
+ if(d2mType != null)
|
|
|
+ setDeliveryDataProps((BaseDeliveryEntity) obj, null);
|
|
|
+
|
|
|
+ //合并信息点
|
|
|
+ if(dbObj instanceof AdmObject && obj instanceof AdmObject)
|
|
|
+ ((AdmObject) obj).setInfos(mergeInfos(((AdmObject) obj).getInfos(), ((AdmObject) dbObj).getInfos()));
|
|
|
+ else if(dbObj instanceof AdmPipe && obj instanceof AdmPipe)
|
|
|
+ ((AdmPipe) obj).setInfos(mergeInfos(((AdmPipe) obj).getInfos(), ((AdmPipe) dbObj).getInfos()));
|
|
|
|
|
|
mapper.updateById(obj);
|
|
|
|
|
@@ -539,8 +400,8 @@ public class SyncAppImpl implements ISyncApp {
|
|
|
else
|
|
|
msgModify.add(obj);
|
|
|
}
|
|
|
- }
|
|
|
-// }
|
|
|
+// }
|
|
|
+ }
|
|
|
}
|
|
|
|
|
|
if(d2mType != null)
|
|
@@ -549,6 +410,24 @@ public class SyncAppImpl implements ISyncApp {
|
|
|
return expired;
|
|
|
}
|
|
|
|
|
|
+ private void setDeliveryDataProps(BaseDeliveryEntity obj, BaseDeliveryEntity dbObj){
|
|
|
+ obj.setD2mState(ValidEnum.FALSE.getType());
|
|
|
+ obj.setDeliveryState(ValidEnum.FALSE.getType());
|
|
|
+
|
|
|
+ if(dbObj != null) {
|
|
|
+ obj.setClientId(dbObj.getClientId());
|
|
|
+ obj.setClientDevice(dbObj.getClientDevice());
|
|
|
+ }
|
|
|
+ }
|
|
|
+
|
|
|
+ private ObjectNode mergeInfos(ObjectNode infos, ObjectNode dbInfos){
|
|
|
+ if(dbInfos != null) {
|
|
|
+ if(infos != null)
|
|
|
+ dbInfos.setAll(infos);
|
|
|
+ }
|
|
|
+ return dbInfos;
|
|
|
+ }
|
|
|
+
|
|
|
private void sendD2mMessage(String objectType, List<?> msgAdd, List<?> msgModify, List<?> msgRemove){
|
|
|
D2mMessage message = new D2mMessage();
|
|
|
message.setItemType(objectType);
|
|
@@ -560,10 +439,10 @@ public class SyncAppImpl implements ISyncApp {
|
|
|
syncModel.sendMessageToModel(message);
|
|
|
}
|
|
|
|
|
|
- private List<String> buildExpiredIds(List<? extends IAdmEntity> expired){
|
|
|
+ private List<String> buildExpiredIds(List<? extends BaseAdmDataEntity> expired){
|
|
|
if(expired.size() > 0) {
|
|
|
List<String> ids = new ArrayList<>();
|
|
|
- for(IAdmEntity entity : expired) {
|
|
|
+ for(BaseAdmDataEntity entity : expired) {
|
|
|
ids.add(entity.getId());
|
|
|
}
|
|
|
return ids;
|
|
@@ -571,15 +450,15 @@ public class SyncAppImpl implements ISyncApp {
|
|
|
return null;
|
|
|
}
|
|
|
|
|
|
- private <T extends IAdmEntity> List<T> serializeJsonProp(List<T> list){
|
|
|
- for(IAdmEntity entity : list) {
|
|
|
+ private <T extends BaseAdmEntity> List<T> serializeJsonProp(List<T> list){
|
|
|
+ for(BaseAdmEntity entity : list) {
|
|
|
entity.serializeJsonProp();
|
|
|
}
|
|
|
return list;
|
|
|
}
|
|
|
|
|
|
- private <T extends IAdmEntity> List<T> deserializeJsonProp(List<T> list){
|
|
|
- for(IAdmEntity entity : list) {
|
|
|
+ private <T extends BaseAdmEntity> List<T> deserializeJsonProp(List<T> list){
|
|
|
+ for(BaseAdmEntity entity : list) {
|
|
|
entity.deserializeJsonProp();
|
|
|
}
|
|
|
return list;
|