Quellcode durchsuchen

优化

shengtang
747575620@qq.com vor 1 Jahr
Ursprung
Commit
d2b109bea0
1 geänderte Dateien mit 1 neuen und 1 gelöschten Zeilen
  1. +1
    -1
      backend/BPA.MES.Base.Application/Services/RecipesService/Services/RecipesInfoService.cs

+ 1
- 1
backend/BPA.MES.Base.Application/Services/RecipesService/Services/RecipesInfoService.cs Datei anzeigen

@@ -120,7 +120,7 @@
[HttpPost]
public async Task<bool> ChangeGroup(RecipesGroupInput input)
{
var isExit =await await _dbContext.Queryable<RecipesGroupEntity>().FirstAsync(x=>x.RecipesId==input.RecipesId);
var isExit =await _dbContext.Queryable<RecipesGroupEntity>().FirstAsync(x=>x.RecipesId==input.RecipesId);
var entity = input.Adapt<RecipesGroupEntity>();
if (isExit==null)
{


Laden…
Abbrechen
Speichern