Browse Source

提交

master
gwbvipvip 8 months ago
parent
commit
1d73f2b042
2 changed files with 2 additions and 2 deletions
  1. +1
    -1
      .vs/VSWorkspaceState.json
  2. +1
    -1
      BPA.KitChen.StoreManagement.Application/Service/ShopManage/StoreDesktopNumber/StoreDesktopNumber.cs

+ 1
- 1
.vs/VSWorkspaceState.json View File

@@ -2,6 +2,6 @@
"ExpandedNodes": [
""
],
"SelectedNode": "\\D:\\Work\\BPA.KitChen.StoreManagement",
"SelectedNode": "\\BPA.KitChen.StoreManagement.sln",
"PreviewInSolutionExplorer": false
}

+ 1
- 1
BPA.KitChen.StoreManagement.Application/Service/ShopManage/StoreDesktopNumber/StoreDesktopNumber.cs View File

@@ -175,7 +175,7 @@ namespace BPA.KitChen.StoreManagement.Application.Service.ShopManage.StoreDeskto
.First();
if (storeDesktopNumbes == null) return false;
storeDesktopNumbes.DesktopNumber = inputDto.DesktopNumber;
storeDesktopNumbes.Code = inputDto.Code;
storeDesktopNumbes.Code =String.IsNullOrEmpty(inputDto.Code)?"": inputDto.Code;
return await db.Updateable(storeDesktopNumbes).ExecuteCommandAsync() > 0;
}
catch (Exception ex)


Loading…
Cancel
Save