From de11618a6c41d627acd733a6b5d818d87d291c1e Mon Sep 17 00:00:00 2001 From: schangxiang@126.com <schangxiang@126.com> Date: 周六, 14 12月 2024 13:34:13 +0800 Subject: [PATCH] 222 --- CC/iWareCC_ASRS/Connected Services/StationService/Reference.cs | 58 ++++++++++++++++++++++++++++++++++++++++++++++++++++------ 1 files changed, 52 insertions(+), 6 deletions(-) diff --git a/CC/iWareCC_ASRS/Connected Services/StationService/Reference.cs b/CC/iWareCC_ASRS/Connected Services/StationService/Reference.cs index 534b497..eda9d72 100644 --- a/CC/iWareCC_ASRS/Connected Services/StationService/Reference.cs +++ b/CC/iWareCC_ASRS/Connected Services/StationService/Reference.cs @@ -976,6 +976,9 @@ private bool R_OutboundFinishField; [System.Runtime.Serialization.OptionalFieldAttribute()] + private bool R_OutboundModeField; + + [System.Runtime.Serialization.OptionalFieldAttribute()] private string R_OutboundNumberField; [System.Runtime.Serialization.OptionalFieldAttribute()] @@ -1169,6 +1172,19 @@ if ((this.R_OutboundFinishField.Equals(value) != true)) { this.R_OutboundFinishField = value; this.RaisePropertyChanged("R_OutboundFinish"); + } + } + } + + [System.Runtime.Serialization.DataMemberAttribute()] + public bool R_OutboundMode { + get { + return this.R_OutboundModeField; + } + set { + if ((this.R_OutboundModeField.Equals(value) != true)) { + this.R_OutboundModeField = value; + this.RaisePropertyChanged("R_OutboundMode"); } } } @@ -1434,6 +1450,9 @@ [System.Runtime.Serialization.OptionalFieldAttribute()] private short W_ModeField; + + [System.Runtime.Serialization.OptionalFieldAttribute()] + private bool W_NgFlagField; [System.Runtime.Serialization.OptionalFieldAttribute()] private bool W_OutboundFinishConfirmField; @@ -1703,6 +1722,19 @@ if ((this.W_ModeField.Equals(value) != true)) { this.W_ModeField = value; this.RaisePropertyChanged("W_Mode"); + } + } + } + + [System.Runtime.Serialization.DataMemberAttribute()] + public bool W_NgFlag { + get { + return this.W_NgFlagField; + } + set { + if ((this.W_NgFlagField.Equals(value) != true)) { + this.W_NgFlagField = value; + this.RaisePropertyChanged("W_NgFlag"); } } } @@ -2115,10 +2147,10 @@ System.Threading.Tasks.Task<iWareCC.StationService.SdaResEntity> SetPalletizingTaskFinishAckAsync(int deviceId, bool value, string stationCode); [System.ServiceModel.OperationContractAttribute(Action="http://tempuri.org/IStationService/WriteSurroundTaskInfo", ReplyAction="http://tempuri.org/IStationService/WriteSurroundTaskInfoResponse")] - iWareCC.StationService.SdaResEntity WriteSurroundTaskInfo(int deviceId, string stationCode, short taskID, short length, short width, short cartonhigh, short cartonwidth, short placex, short placey); + iWareCC.StationService.SdaResEntity WriteSurroundTaskInfo(int deviceId, string stationCode, short taskID, short length, short width, short cartonhigh, short cartonwidth, short placex, short placey, bool isNgFlag); [System.ServiceModel.OperationContractAttribute(Action="http://tempuri.org/IStationService/WriteSurroundTaskInfo", ReplyAction="http://tempuri.org/IStationService/WriteSurroundTaskInfoResponse")] - System.Threading.Tasks.Task<iWareCC.StationService.SdaResEntity> WriteSurroundTaskInfoAsync(int deviceId, string stationCode, short taskID, short length, short width, short cartonhigh, short cartonwidth, short placex, short placey); + System.Threading.Tasks.Task<iWareCC.StationService.SdaResEntity> WriteSurroundTaskInfoAsync(int deviceId, string stationCode, short taskID, short length, short width, short cartonhigh, short cartonwidth, short placex, short placey, bool isNgFlag); [System.ServiceModel.OperationContractAttribute(Action="http://tempuri.org/IStationService/SetSurroundTaskFinishAck", ReplyAction="http://tempuri.org/IStationService/SetSurroundTaskFinishAckResponse")] iWareCC.StationService.SdaResEntity SetSurroundTaskFinishAck(int deviceId, bool value, string stationCode); @@ -2155,6 +2187,12 @@ [System.ServiceModel.OperationContractAttribute(Action="http://tempuri.org/IStationService/WriteStation_AllowIn", ReplyAction="http://tempuri.org/IStationService/WriteStation_AllowInResponse")] System.Threading.Tasks.Task<iWareCC.StationService.SdaResEntity> WriteStation_AllowInAsync(int deviceId, bool value, string stationCode); + + [System.ServiceModel.OperationContractAttribute(Action="http://tempuri.org/IStationService/WriteStation_NgFlag", ReplyAction="http://tempuri.org/IStationService/WriteStation_NgFlagResponse")] + iWareCC.StationService.SdaResEntity WriteStation_NgFlag(int deviceId, bool value, string stationCode); + + [System.ServiceModel.OperationContractAttribute(Action="http://tempuri.org/IStationService/WriteStation_NgFlag", ReplyAction="http://tempuri.org/IStationService/WriteStation_NgFlagResponse")] + System.Threading.Tasks.Task<iWareCC.StationService.SdaResEntity> WriteStation_NgFlagAsync(int deviceId, bool value, string stationCode); [System.ServiceModel.OperationContractAttribute(Action="http://tempuri.org/IStationService/WriteStation_PersonAllow", ReplyAction="http://tempuri.org/IStationService/WriteStation_PersonAllowResponse")] iWareCC.StationService.SdaResEntity WriteStation_PersonAllow(int deviceId, bool value, string stationCode); @@ -2342,12 +2380,12 @@ return base.Channel.SetPalletizingTaskFinishAckAsync(deviceId, value, stationCode); } - public iWareCC.StationService.SdaResEntity WriteSurroundTaskInfo(int deviceId, string stationCode, short taskID, short length, short width, short cartonhigh, short cartonwidth, short placex, short placey) { - return base.Channel.WriteSurroundTaskInfo(deviceId, stationCode, taskID, length, width, cartonhigh, cartonwidth, placex, placey); + public iWareCC.StationService.SdaResEntity WriteSurroundTaskInfo(int deviceId, string stationCode, short taskID, short length, short width, short cartonhigh, short cartonwidth, short placex, short placey, bool isNgFlag) { + return base.Channel.WriteSurroundTaskInfo(deviceId, stationCode, taskID, length, width, cartonhigh, cartonwidth, placex, placey, isNgFlag); } - public System.Threading.Tasks.Task<iWareCC.StationService.SdaResEntity> WriteSurroundTaskInfoAsync(int deviceId, string stationCode, short taskID, short length, short width, short cartonhigh, short cartonwidth, short placex, short placey) { - return base.Channel.WriteSurroundTaskInfoAsync(deviceId, stationCode, taskID, length, width, cartonhigh, cartonwidth, placex, placey); + public System.Threading.Tasks.Task<iWareCC.StationService.SdaResEntity> WriteSurroundTaskInfoAsync(int deviceId, string stationCode, short taskID, short length, short width, short cartonhigh, short cartonwidth, short placex, short placey, bool isNgFlag) { + return base.Channel.WriteSurroundTaskInfoAsync(deviceId, stationCode, taskID, length, width, cartonhigh, cartonwidth, placex, placey, isNgFlag); } public iWareCC.StationService.SdaResEntity SetSurroundTaskFinishAck(int deviceId, bool value, string stationCode) { @@ -2398,6 +2436,14 @@ return base.Channel.WriteStation_AllowInAsync(deviceId, value, stationCode); } + public iWareCC.StationService.SdaResEntity WriteStation_NgFlag(int deviceId, bool value, string stationCode) { + return base.Channel.WriteStation_NgFlag(deviceId, value, stationCode); + } + + public System.Threading.Tasks.Task<iWareCC.StationService.SdaResEntity> WriteStation_NgFlagAsync(int deviceId, bool value, string stationCode) { + return base.Channel.WriteStation_NgFlagAsync(deviceId, value, stationCode); + } + public iWareCC.StationService.SdaResEntity WriteStation_PersonAllow(int deviceId, bool value, string stationCode) { return base.Channel.WriteStation_PersonAllow(deviceId, value, stationCode); } -- Gitblit v1.9.3