Commit c174cc24 authored by dmy's avatar dmy

中医药小程序代码提交

parent 2a91cf1d
......@@ -116,6 +116,7 @@ public class AreaServiceImpl implements AreaService {
FloorResVo load = floorDao.loadInfo(floor);
FloorExtendVo floorExtendVo = new FloorExtendVo();
floorExtendVo.setFloorId(req.getFloorId());
floorExtendVo.setLanguageType(req.getLanguageType() == null ? CommonConstant.LANGUAGE_TYPE_CHINESE : req.getLanguageType());
load.setFloorExtendVo(floorExtendDao.load(floorExtendVo, FloorExtendVo.class));
ImageReqVo imageReqVo = new ImageReqVo();
......@@ -187,8 +188,10 @@ public class AreaServiceImpl implements AreaService {
areaVo.setAreaId(req.getAreaId());
areaVo.setLanguageType(req.getLanguageType() == null ? CommonConstant.LANGUAGE_TYPE_CHINESE : req.getLanguageType());
FloorAreaResVo load = floorAreaDao.loadInfo(areaVo);
FloorAreaExtendVo areaExtendVo = new FloorAreaExtendVo();
areaExtendVo.setAreaId(req.getAreaId());
areaExtendVo.setLanguageType(req.getLanguageType() == null ? CommonConstant.LANGUAGE_TYPE_CHINESE : req.getLanguageType());
load.setAreaExtendVo(floorAreaExtendDao.load(areaExtendVo, FloorAreaExtendVo.class));
ImageReqVo imageReq = new ImageReqVo();
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment