zhanghonglin
2026-04-06 cfb3f2c7e9cde8cc2eb2a19263d0802c0c5410a3
ÏîÄ¿´úÂë/WCS/WIDESEAWCS_Server/WIDESEAWCS_SystemServices/Dt_FillingOrderService.cs
@@ -11,6 +11,7 @@
using WIDESEAWCS_Core;
using WIDESEAWCS_Core.BaseRepository;
using WIDESEAWCS_Core.BaseServices;
using WIDESEAWCS_Core.LogHelper;
namespace WIDESEA_BasicService
{
@@ -23,7 +24,7 @@
        public IRepository<Dt_FillingOrder> Repository => BaseDal;
        //添加罐装订单
        //添加罐装二维码
        public WebResponseContent InsertFilling(FillingOrder fillingOrder)
        {
            WebResponseContent content = new WebResponseContent();
@@ -50,6 +51,7 @@
            Filling.Standby2 = fillingOrder.Standby2;
            BaseDal.AddData(Filling);
            LogLock.OutLogAOP("接口日志", new string[] { "接收条码值:", fillingOrder.BarCode });
            return content;
        }
    }