|
@@ -165,6 +165,29 @@ public class AccountingDataServiceImpl implements IAccountingDataService {
|
|
return AjaxResult.success(accountingDataVoList.get(0));
|
|
return AjaxResult.success(accountingDataVoList.get(0));
|
|
}
|
|
}
|
|
|
|
|
|
|
|
+ /***
|
|
|
|
+ * 对外万事通开放接口
|
|
|
|
+ * 根据身份证号去查询核酸检测列表
|
|
|
|
+ */
|
|
|
|
+ @Override
|
|
|
|
+ public AjaxResult wanShiTongList(AccountingDataVo accountingData) {
|
|
|
|
+ String zjhm = accountingData.getZjhm();
|
|
|
|
+ if (StringUtils.isEmpty(zjhm)){
|
|
|
|
+ return AjaxResult.error("身份证号码未提交");
|
|
|
|
+ }
|
|
|
|
+ List<AccountingDataVo> accountingDataVos = accountingDataMapper.selectWanShiTongList(accountingData);
|
|
|
|
+ return AjaxResult.success(accountingDataVos);
|
|
|
|
+ }
|
|
|
|
+ /***
|
|
|
|
+ * 对外万事通开放接口
|
|
|
|
+ * 根据身份证号去查询核酸检测详情
|
|
|
|
+ */
|
|
|
|
+ @Override
|
|
|
|
+ public AjaxResult wanShiTongInfo(AccountingDataVo accountingData) {
|
|
|
|
+ AccountingDataVo accountingDataVo = accountingDataMapper.selectWanShiTongInfo(accountingData);
|
|
|
|
+ return AjaxResult.success(accountingDataVo);
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
|
|
/**
|
|
/**
|
|
* 核酸数据导出(户籍)
|
|
* 核酸数据导出(户籍)
|