|
@@ -27,7 +27,7 @@ import java.util.Set;
|
|
|
@Service
|
|
@Service
|
|
|
public class AppResumptionDataNfcServiceImpl extends ServiceImpl<AppResumptionDataNfcMapper, AppResumptionDataNfc> implements AppResumptionDataNfcService {
|
|
public class AppResumptionDataNfcServiceImpl extends ServiceImpl<AppResumptionDataNfcMapper, AppResumptionDataNfc> implements AppResumptionDataNfcService {
|
|
|
@Override
|
|
@Override
|
|
|
- public List<Map<String, Object>> findnfcDataList(String taskid, Long areaid,Long orgId) {
|
|
|
|
|
|
|
+ public List<Map<String, Object>> findnfcDataList(Long taskid, Long areaid,Long orgId) {
|
|
|
Map<String,Object> parmar = new HashMap<>();
|
|
Map<String,Object> parmar = new HashMap<>();
|
|
|
parmar.put("taskid",taskid);
|
|
parmar.put("taskid",taskid);
|
|
|
parmar.put("areaid",areaid);
|
|
parmar.put("areaid",areaid);
|
|
@@ -36,7 +36,7 @@ public class AppResumptionDataNfcServiceImpl extends ServiceImpl<AppResumptionDa
|
|
|
}
|
|
}
|
|
|
|
|
|
|
|
@Override
|
|
@Override
|
|
|
- public List<Map<String, Object>> findnfcDataListByPointid(Long pointid, String taskid, Long orgId) {
|
|
|
|
|
|
|
+ public List<Map<String, Object>> findnfcDataListByPointid(Long pointid, Long taskid, Long orgId) {
|
|
|
Map<String,Object> parmar = new HashMap<>();
|
|
Map<String,Object> parmar = new HashMap<>();
|
|
|
parmar.put("pointid",pointid);
|
|
parmar.put("pointid",pointid);
|
|
|
parmar.put("taskid",taskid);
|
|
parmar.put("taskid",taskid);
|
|
@@ -45,7 +45,7 @@ public class AppResumptionDataNfcServiceImpl extends ServiceImpl<AppResumptionDa
|
|
|
}
|
|
}
|
|
|
|
|
|
|
|
@Override
|
|
@Override
|
|
|
- public List<Map<String, Object>> findnfcDataListNew(String taskid, Long orgId) {
|
|
|
|
|
|
|
+ public List<Map<String, Object>> findnfcDataListNew(Long taskid, Long orgId) {
|
|
|
Map<String,Object> parmar = new HashMap<>();
|
|
Map<String,Object> parmar = new HashMap<>();
|
|
|
parmar.put("taskid",taskid);
|
|
parmar.put("taskid",taskid);
|
|
|
parmar.put("orgId",orgId);
|
|
parmar.put("orgId",orgId);
|
|
@@ -53,7 +53,7 @@ public class AppResumptionDataNfcServiceImpl extends ServiceImpl<AppResumptionDa
|
|
|
}
|
|
}
|
|
|
|
|
|
|
|
@Override
|
|
@Override
|
|
|
- public List<Map<String, Object>> findnfcDataListByPointidNew(String taskid, Long orgId) {
|
|
|
|
|
|
|
+ public List<Map<String, Object>> findnfcDataListByPointidNew(Long taskid, Long orgId) {
|
|
|
Map<String,Object> parmar = new HashMap<>();
|
|
Map<String,Object> parmar = new HashMap<>();
|
|
|
parmar.put("taskid",taskid);
|
|
parmar.put("taskid",taskid);
|
|
|
parmar.put("orgId",orgId);
|
|
parmar.put("orgId",orgId);
|
|
@@ -61,7 +61,7 @@ public class AppResumptionDataNfcServiceImpl extends ServiceImpl<AppResumptionDa
|
|
|
}
|
|
}
|
|
|
|
|
|
|
|
@Override
|
|
@Override
|
|
|
- public List<ResumptionNfcInfoVo> findPointNfcData(String taskid, Long orgId) {
|
|
|
|
|
|
|
+ public List<ResumptionNfcInfoVo> findPointNfcData(Long taskid, Long orgId) {
|
|
|
Map<String,Object> parmar = new HashMap<>();
|
|
Map<String,Object> parmar = new HashMap<>();
|
|
|
parmar.put("taskid",taskid);
|
|
parmar.put("taskid",taskid);
|
|
|
parmar.put("orgId",orgId);
|
|
parmar.put("orgId",orgId);
|