This commit is contained in:
“wanyongkang”
2021-05-30 09:15:57 +08:00
parent 9c8d3700ce
commit 25e4bfcc84

View File

@@ -75,7 +75,7 @@ namespace Hncore.Pass.Vpn.Service
public async Task<List<ProductAccountEntity>> GetAccounts(string accouts,int userId=0)
{
var alist = accouts.Split(",");
return await this.Query(m =>(userId==0||m.UserId== userId)&& alist.Contains(m.Account)).ToListAsync();
return await this.Query(m =>(userId==0||m.UserId== userId)&& alist.Contains(m.Account)&&m.DeleteTag==0).ToListAsync();
}
public async Task<ProductAccountEntity> GetAccountInfo(string accout)