| | |
| | | { |
| | | 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; |
| | | } |
| | |
| | | |
| | | 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; } // 站台编码 |
| | |
| | | |
| | | 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.人工模式 |
| | | } |
| | |
| | | public class OutStockModel |
| | | { |
| | | public string endLocCode { get; set; } |
| | | public string reqId { get; set; } |
| | | public string reqTime { get; set; } |
| | | } |
| | | } |
| | | } |