76 lines
1.9 KiB
Java
76 lines
1.9 KiB
Java
package com.jasamedika.medifirst2000.converter;
|
|
|
|
import java.util.ArrayList;
|
|
import java.util.List;
|
|
import java.util.Map;
|
|
|
|
import org.springframework.stereotype.Component;
|
|
|
|
import com.google.gson.Gson;
|
|
import com.jasamedika.medifirst2000.converter.base.BaseVoConverter;
|
|
import com.jasamedika.medifirst2000.dao.custom.base.impl.FindConverterDao;
|
|
import com.jasamedika.medifirst2000.entities.PapDiagnosis;
|
|
import com.jasamedika.medifirst2000.vo.PapDiagnosisVO;
|
|
|
|
/**
|
|
* Converter class PapDiagnosis
|
|
*
|
|
* @author Askur
|
|
*/
|
|
@Component
|
|
public class PapDiagnosisConverter extends FindConverterDao implements
|
|
BaseVoConverter<PapDiagnosisVO, PapDiagnosis> {
|
|
|
|
public PapDiagnosis transferVOToModel(PapDiagnosisVO vo, PapDiagnosis model) {
|
|
if (null == model)
|
|
model = new PapDiagnosis();
|
|
|
|
try {
|
|
String[] fieldsToInclude = null;
|
|
Map<String, Object> serialized = vo.serialize(fieldsToInclude,vo.getClass().getName());
|
|
Gson gson = new Gson();
|
|
String json = gson.toJson(serialized);
|
|
model = gson.fromJson(json, PapDiagnosis.class);
|
|
} catch (Exception e) {
|
|
e.printStackTrace();
|
|
}
|
|
|
|
return model;
|
|
|
|
}
|
|
|
|
public List<PapDiagnosisVO> transferListOfModelToListOfVO(List<PapDiagnosis> models,
|
|
List<PapDiagnosisVO> vos) {
|
|
if (null == vos)
|
|
vos = new ArrayList<PapDiagnosisVO>();
|
|
|
|
if (null == models)
|
|
return vos;
|
|
|
|
for (PapDiagnosis model : models) {
|
|
PapDiagnosisVO vo = new PapDiagnosisVO();
|
|
transferModelToVO(model, vo);
|
|
vos.add(vo);
|
|
}
|
|
|
|
return vos;
|
|
}
|
|
|
|
public PapDiagnosisVO transferModelToVO(PapDiagnosis model, PapDiagnosisVO vo) {
|
|
if (null == vo)
|
|
vo = new PapDiagnosisVO();
|
|
|
|
try {
|
|
String[] fieldsToInclude = null;
|
|
Map<String, Object> serialized = model.serialize(fieldsToInclude,model.getClass().getSimpleName());
|
|
Gson gson = new Gson();
|
|
String json = gson.toJson(serialized);
|
|
vo = gson.fromJson(json, PapDiagnosisVO.class);
|
|
} catch (Exception e) {
|
|
e.printStackTrace();
|
|
}
|
|
return vo;
|
|
}
|
|
|
|
}
|