diff --git a/BPA.KitChen.GroupMealOrder.Application/BaseDto/IXnInputBase.cs b/BPA.KitChen.GroupMealOrder.Application/BaseDto/IXnInputBase.cs index 1a0c725..9a9f4de 100644 --- a/BPA.KitChen.GroupMealOrder.Application/BaseDto/IXnInputBase.cs +++ b/BPA.KitChen.GroupMealOrder.Application/BaseDto/IXnInputBase.cs @@ -68,8 +68,7 @@ namespace BPA.KitChen.GroupMealOrder.Application.BaseDto /// public class PageInputBase { - public string bomId { get; set; } - public string chnologyId { get; set; } + /// /// 当前页码 /// diff --git a/BPA.KitChen.GroupMealOrder.Application/Service/AExternalPlatform/Service/WeighOrder/WeighOrderServices.cs b/BPA.KitChen.GroupMealOrder.Application/Service/AExternalPlatform/Service/WeighOrder/WeighOrderServices.cs index 388f303..f18cabf 100644 --- a/BPA.KitChen.GroupMealOrder.Application/Service/AExternalPlatform/Service/WeighOrder/WeighOrderServices.cs +++ b/BPA.KitChen.GroupMealOrder.Application/Service/AExternalPlatform/Service/WeighOrder/WeighOrderServices.cs @@ -1,5 +1,6 @@  +using BPA.KitChen.GroupMealOrder.Application.BaseDto; using BPA.KitChen.GroupMealOrder.Application.Service.WeighOrder.Dtos; using BPA.KitChen.GroupMealOrder.Application.Service.WeighOrder.Service; using BPA.KitChen.GroupMealOrder.Core; @@ -73,5 +74,15 @@ namespace BPA.KitChen.GroupMealOrder.Application.Service.AExternalPlatform.Servi return await _weighOrderService.UpdateWeighOrderStates(inputDto); } + + /// + /// 更具openid获取称重订单 + /// + /// + [HttpPost("/api/WeighOrder/GetWeighOrderByOpenId")] + public async Task GetWeighOrderByOpenId(GetWeighOrderByOpenIdInputDto inputDto) + { + return await _weighOrderService.GetWeighOrderByOpenId(inputDto); + } } } diff --git a/BPA.KitChen.GroupMealOrder/Properties/launchSettings.json b/BPA.KitChen.GroupMealOrder/Properties/launchSettings.json index 00421c1..b924d70 100644 --- a/BPA.KitChen.GroupMealOrder/Properties/launchSettings.json +++ b/BPA.KitChen.GroupMealOrder/Properties/launchSettings.json @@ -8,7 +8,7 @@ "ASPNETCORE_ENVIRONMENT": "Development" }, "dotnetRunMessages": true, - "applicationUrl": "http://192.168.1.50:5003" + "applicationUrl": "http://localhost:5003" }, "IIS Express": { "commandName": "IISExpress",