|
@@ -23,6 +23,7 @@ import com.diagbot.util.StringUtil;
|
|
|
import com.diagbot.vo.data.ADeleteFlagVO;
|
|
|
import com.diagbot.vo.data.FJStrAdmissionNoteVo;
|
|
|
import com.diagbot.vo.data.HisViewVo;
|
|
|
+import org.bouncycastle.asn1.BERApplicationSpecific;
|
|
|
import org.springframework.beans.BeanUtils;
|
|
|
import org.springframework.beans.factory.annotation.Autowired;
|
|
|
import org.springframework.stereotype.Component;
|
|
@@ -69,7 +70,8 @@ public class AStrFirstRecordFacade extends StrFirstRecordServiceImpl {
|
|
|
}
|
|
|
}
|
|
|
StrFirstRecord strFirstRecord =new StrFirstRecord();
|
|
|
- strFirstRecord = (StrFirstRecord) MapUtil.mapToObject(map, StrFirstRecord.class);
|
|
|
+ AStrFirstRecordVO aStrFirstRecordVO = (AStrFirstRecordVO) MapUtil.mapToObject(map, AStrFirstRecordVO.class);
|
|
|
+ BeanUtils.copyProperties(aStrFirstRecordVO,strFirstRecord);
|
|
|
BeanUtils.copyProperties(hisViewVos.get(0),strFirstRecord);
|
|
|
strFirstRecord.setWholeData(JSON.toJSONString(wholeData));
|
|
|
|