添加社保卡退卡接口

This commit is contained in:
余文财 2025-05-21 20:22:45 +08:00
parent 58d381f3b1
commit 0285a285ff
1 changed files with 12 additions and 0 deletions

View File

@ -18,6 +18,7 @@ public class CardReaderController {
/** /**
* 连接设备并读取身份证信息 * 连接设备并读取身份证信息
*
* @return * @return
*/ */
@PostMapping("IDCardReader") @PostMapping("IDCardReader")
@ -34,6 +35,7 @@ public class CardReaderController {
/** /**
* 连接设备并读取社保卡信息 * 连接设备并读取社保卡信息
*
* @return * @return
*/ */
@PostMapping("SocialSecurityCardReader") @PostMapping("SocialSecurityCardReader")
@ -47,4 +49,14 @@ public class CardReaderController {
} }
} }
/**
* 社保卡退卡(因为壁挂没有社保卡退卡所以直接返回结果)
*
* @return
*/
@PostMapping("cardRefund")
public Result<?> cardRefund() {
return Result.ok("退卡成功!");
}
} }