|
@@ -13,6 +13,7 @@ import com.zd.laboratory.domain.vo.LabClassifiedVo;
|
|
|
import com.zd.laboratory.domain.vo.LabClasstypeVo;
|
|
import com.zd.laboratory.domain.vo.LabClasstypeVo;
|
|
|
import com.zd.laboratory.domain.vo.LabSubjectVO;
|
|
import com.zd.laboratory.domain.vo.LabSubjectVO;
|
|
|
import com.zd.laboratory.domain.vo.XxpClassifyDetailVO;
|
|
import com.zd.laboratory.domain.vo.XxpClassifyDetailVO;
|
|
|
|
|
+import com.zd.laboratory.interfaces.SysProperties;
|
|
|
import com.zd.laboratory.mapper.LabHazardSubjectRelationMapper;
|
|
import com.zd.laboratory.mapper.LabHazardSubjectRelationMapper;
|
|
|
import com.zd.laboratory.mapper.LabQpSubjectRelationMapper;
|
|
import com.zd.laboratory.mapper.LabQpSubjectRelationMapper;
|
|
|
import com.zd.laboratory.mapper.LabSubjectMapper;
|
|
import com.zd.laboratory.mapper.LabSubjectMapper;
|
|
@@ -550,6 +551,9 @@ public class LabSubjectServiceImpl implements ILabSubjectService {
|
|
|
@Override
|
|
@Override
|
|
|
public Map<String,Object> selectLabSubjectInfoId(Long id) {
|
|
public Map<String,Object> selectLabSubjectInfoId(Long id) {
|
|
|
Map<String,Object> labMap=labSubjectMapper.selectXxpLabSubjectById(id);
|
|
Map<String,Object> labMap=labSubjectMapper.selectXxpLabSubjectById(id);
|
|
|
|
|
+ LabSubject labSubject=new LabSubject();
|
|
|
|
|
+ labSubject.setQrCodeUrl(labMap.get("id") + "-" + Optional.ofNullable(labMap.get("room")).orElse(""));
|
|
|
|
|
+ labMap.put("qrCode",labSubject.getQrCodeUrl());
|
|
|
//进入检查
|
|
//进入检查
|
|
|
//设置
|
|
//设置
|
|
|
String checkIn=String.valueOf(labMap.get("check_in"));
|
|
String checkIn=String.valueOf(labMap.get("check_in"));
|