添加蘑菇产品新接口

This commit is contained in:
“wanyongkang”
2024-09-28 10:04:26 +08:00
parent 0b559d5adb
commit c74967b113
2 changed files with 406 additions and 0 deletions

View File

@@ -85,6 +85,8 @@ namespace Hncore.Pass.Vpn.Service
agent = new AgentClient20Service(m_HttpClientFactory) { ClientName = product.GroupNO };
if (product.GroupNO == "g21")
agent = new AgentClient21Service(m_HttpClientFactory) { ClientName = product.GroupNO };
if (product.GroupNO == "g22")
agent = new AgentClient22Service(m_HttpClientFactory) { ClientName = product.GroupNO };
agent.Product = product;
return agent;
}