This commit is contained in:
Lemon
2026-03-11 16:13:14 +08:00
parent 09f6633686
commit a7953a9fdb

View File

@@ -196,6 +196,11 @@ public class SimCardService {
return list;
}
/**
* 批量续费Sim卡
*
* @param dto
*/
public void batchRenewSimCard(SimRenewDTO dto) {
List<String> iccIds = dto.getIccIds();
// 先分组 key: 卡商名 value:流量卡卡号
@@ -208,6 +213,9 @@ public class SimCardService {
XunZhongSimRenewal(xunZhongCards, dto.getCycleNumber());
WuLianSimRenew(wuLianCards, dto.getCycleNumber());
// 将续费完成后的数据插入数据库
}
/**