杨前锦
2025-06-05 01cc5773457f68274ef1b2d9d9daca8983761828
HH.WCS.Mobox3/HH.WCS.Mobox3.FJJT/api/WmsController.cs
@@ -199,11 +199,7 @@
        {
            LogHelper.Info("switchStationAttribute 入参:" + JsonConvert.SerializeObject(model), "WMS");
            ResponseResult result = new ResponseResult();
            var bo = ApiHelper.switchStationAttribute(model);
            if (!bo)
            {
                result.code = 201;
            }
            result = ApiHelper.switchStationAttribute(model);
            LogHelper.Info("switchStationAttribute 出参:" + JsonConvert.SerializeObject(result), "WMS");
            return result;
        }
@@ -230,6 +226,8 @@
        public class LocStateFeedBackModel 
        {
            public string reqId { get; set; }
            public string reqTime { get; set; }
            public string loc_code { get; set; } // 站台编码
            public string type { get; set; } // 请求类型 1 允许取货 2 允许放货
            public string req_no { get; set; } // 站台编码
@@ -237,6 +235,8 @@
        public class SwitchStationAttributeModel
        {
            public string reqId { get; set; }
            public string reqTime { get; set; }
            public string locCode { get; set; } // 站台编码
            public string signalType { get; set; } // 1.agv上料模式 2.人工模式
        }
@@ -250,6 +250,8 @@
        public class OutStockModel
        {
            public string endLocCode { get; set; }
            public string reqId { get; set; }
            public string reqTime { get; set; }
        }
    }
}