|
@@ -30,6 +30,7 @@ import cn.hnthyy.thmz.entity.thmz.PayInfo;
|
|
|
import cn.hnthyy.thmz.entity.thmz.TcRefundFeeVo;
|
|
|
import cn.hnthyy.thmz.entity.thmz.User;
|
|
|
import cn.hnthyy.thmz.entity.thmz.WhiteList;
|
|
|
+import cn.hnthyy.thmz.entity.thmz.Windows;
|
|
|
import cn.hnthyy.thmz.enums.ConfirmFlagEnum;
|
|
|
import cn.hnthyy.thmz.enums.GenderEnum;
|
|
|
import cn.hnthyy.thmz.enums.PayMarkEnum;
|
|
@@ -53,6 +54,7 @@ import cn.hnthyy.thmz.service.thmz.HybirdTestService;
|
|
|
import cn.hnthyy.thmz.service.thmz.TsmzService;
|
|
|
import cn.hnthyy.thmz.service.thmz.UserService;
|
|
|
import cn.hnthyy.thmz.service.thmz.WhiteListService;
|
|
|
+import cn.hnthyy.thmz.service.thmz.WindowsService;
|
|
|
import cn.hnthyy.thmz.vo.MzDepositFileVo;
|
|
|
import cn.hnthyy.thmz.vo.MzPrescriptionVo;
|
|
|
import cn.hnthyy.thmz.vo.MzReceiptSerialVo;
|
|
@@ -148,6 +150,8 @@ public class MedicalViewApiController {
|
|
|
private MzOrderDetailService mzOrderDetailService;
|
|
|
@Resource
|
|
|
private DictDataService dictDataService;
|
|
|
+ @Resource
|
|
|
+ private WindowsService windowsService;
|
|
|
|
|
|
//海慈身份证类型
|
|
|
private static final String ID_CARD_TYPE = "11";
|
|
@@ -3414,4 +3418,10 @@ public class MedicalViewApiController {
|
|
|
return resultMap;
|
|
|
}
|
|
|
}
|
|
|
+ @GetMapping("queryWindowsByIp")
|
|
|
+ public R queryWindowsByIp(String ip){
|
|
|
+ Windows windows = windowsService.queryLastWindowsIpAddress(ip);
|
|
|
+ return R.ok().put("data", windows);
|
|
|
+ }
|
|
|
+
|
|
|
}
|