添加社保卡退卡接口
This commit is contained in:
parent
58d381f3b1
commit
0285a285ff
|
@ -18,6 +18,7 @@ public class CardReaderController {
|
|||
|
||||
/**
|
||||
* 连接设备并读取身份证信息
|
||||
*
|
||||
* @return
|
||||
*/
|
||||
@PostMapping("IDCardReader")
|
||||
|
@ -34,6 +35,7 @@ public class CardReaderController {
|
|||
|
||||
/**
|
||||
* 连接设备并读取社保卡信息
|
||||
*
|
||||
* @return
|
||||
*/
|
||||
@PostMapping("SocialSecurityCardReader")
|
||||
|
@ -47,4 +49,14 @@ public class CardReaderController {
|
|||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* 社保卡退卡(因为壁挂没有社保卡退卡,所以直接返回结果)
|
||||
*
|
||||
* @return
|
||||
*/
|
||||
@PostMapping("cardRefund")
|
||||
public Result<?> cardRefund() {
|
||||
return Result.ok("退卡成功!");
|
||||
}
|
||||
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue