Commit 96ecabc1 authored by huangjiamin's avatar huangjiamin

购买后将海外的IP添加KCP端口号

parent cac1e0c9
...@@ -709,9 +709,13 @@ public class IpResourceServiceImpl implements IpResourceService { ...@@ -709,9 +709,13 @@ public class IpResourceServiceImpl implements IpResourceService {
} }
// 2. 如果 ip 资源的 status 为 6(未分配) 或者 ( ip资源为专线 且 purchasedTime(购买IP的时间) 在 14 分钟内) // 2. 如果 ip 资源的 status 为 6(未分配) 或者 ( ip资源为专线 且 purchasedTime(购买IP的时间) 在 14 分钟内)
/*if (x.getStatus() == 6 || (x.isSpecialLine() && x.getPurchasedTime() > (Instant.now().minusSeconds(14 * 60).toEpochMilli()))) { if (x.getStatus() == 6) {
x.setStatus(3); x.setStatus(3);
}*/ }
if(x.isSpecialLine() && x.getStatus() == 0 && x.getPurchasedTime() > (Instant.now().minusSeconds(14 * 60).toEpochMilli())) {
x.setSpecialLine(false);
}
// 3. 如果 ip 资源的 status 为 3(正在分配) // 3. 如果 ip 资源的 status 为 3(正在分配)
if (x.getStatus() == 3) { if (x.getStatus() == 3) {
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment