|
@@ -67,6 +67,7 @@ namespace MySystem
|
|
|
if(edit != null)
|
|
|
{
|
|
|
edit.Status = 1;
|
|
|
+ edit.BackContent = res;
|
|
|
}
|
|
|
}
|
|
|
else
|
|
@@ -74,7 +75,8 @@ namespace MySystem
|
|
|
PushPosRecord edit = db.PushPosRecord.FirstOrDefault(m => m.Id == sub.Id);
|
|
|
if(edit != null)
|
|
|
{
|
|
|
- edit.Status = -1;
|
|
|
+ edit.Status = 2;
|
|
|
+ edit.BackContent = res;
|
|
|
}
|
|
|
}
|
|
|
}
|
|
@@ -83,7 +85,8 @@ namespace MySystem
|
|
|
PushPosRecord edit = db.PushPosRecord.FirstOrDefault(m => m.Id == sub.Id);
|
|
|
if(edit != null)
|
|
|
{
|
|
|
- edit.Status = -2;
|
|
|
+ edit.Status = 3;
|
|
|
+ edit.BackContent = res;
|
|
|
}
|
|
|
}
|
|
|
}
|