实名认证弹窗

This commit is contained in:
“wanyongkang”
2023-08-02 15:57:57 +08:00
parent b562aba2b1
commit 4d79487c38
6 changed files with 28 additions and 29 deletions

View File

@@ -82,6 +82,11 @@ namespace Hncore.Pass.Vpn.Service
{
return await this.Query(true).FirstOrDefaultAsync(m => m.Account == accout);
}
public async Task<ProductAccountEntity> GetAccountNotRefundInfo(string accout)
{
return await this.Query(true).FirstOrDefaultAsync(m => m.Account == accout && m.DeleteTag == 0);
}
public async Task<ProductAccountEntity> GetAccountInfo(int packageId,string accout)
{