From 0b417bdc320a980cef619d9a88ce3cb0511b498b Mon Sep 17 00:00:00 2001
From: schangxiang@126.com <schangxiang@126.com>
Date: 周五, 22 11月 2024 05:23:38 +0800
Subject: [PATCH] 程序唯一性校验
---
CC/iWareCC_ASRS/Connected Services/StationService/Reference.cs | 30 ++++++++++++++++++++++++++++++
1 files changed, 30 insertions(+), 0 deletions(-)
diff --git a/CC/iWareCC_ASRS/Connected Services/StationService/Reference.cs b/CC/iWareCC_ASRS/Connected Services/StationService/Reference.cs
index e493826..647c159 100644
--- a/CC/iWareCC_ASRS/Connected Services/StationService/Reference.cs
+++ b/CC/iWareCC_ASRS/Connected Services/StationService/Reference.cs
@@ -472,6 +472,9 @@
private short W_HeightField;
[System.Runtime.Serialization.OptionalFieldAttribute()]
+ private bool W_InboundFinishConfirmField;
+
+ [System.Runtime.Serialization.OptionalFieldAttribute()]
private bool W_IsRotateField;
[System.Runtime.Serialization.OptionalFieldAttribute()]
@@ -598,6 +601,19 @@
if ((this.W_HeightField.Equals(value) != true)) {
this.W_HeightField = value;
this.RaisePropertyChanged("W_Height");
+ }
+ }
+ }
+
+ [System.Runtime.Serialization.DataMemberAttribute()]
+ public bool W_InboundFinishConfirm {
+ get {
+ return this.W_InboundFinishConfirmField;
+ }
+ set {
+ if ((this.W_InboundFinishConfirmField.Equals(value) != true)) {
+ this.W_InboundFinishConfirmField = value;
+ this.RaisePropertyChanged("W_InboundFinishConfirm");
}
}
}
@@ -1419,6 +1435,12 @@
[System.ServiceModel.OperationContractAttribute(Action="http://tempuri.org/IStationService/WriteQiTaoInfo", ReplyAction="http://tempuri.org/IStationService/WriteQiTaoInfoResponse")]
System.Threading.Tasks.Task<iWareCC.StationService.SdaResEntity> WriteQiTaoInfoAsync(int deviceId, string stationCode, bool value);
+ [System.ServiceModel.OperationContractAttribute(Action="http://tempuri.org/IStationService/InboundFinishConfirm", ReplyAction="http://tempuri.org/IStationService/InboundFinishConfirmResponse")]
+ iWareCC.StationService.SdaResEntity InboundFinishConfirm(int deviceId, string stationCode);
+
+ [System.ServiceModel.OperationContractAttribute(Action="http://tempuri.org/IStationService/InboundFinishConfirm", ReplyAction="http://tempuri.org/IStationService/InboundFinishConfirmResponse")]
+ System.Threading.Tasks.Task<iWareCC.StationService.SdaResEntity> InboundFinishConfirmAsync(int deviceId, string stationCode);
+
[System.ServiceModel.OperationContractAttribute(Action="http://tempuri.org/IStationService/WriteInStoreTaskInfo", ReplyAction="http://tempuri.org/IStationService/WriteInStoreTaskInfoResponse")]
iWareCC.StationService.SdaResEntity WriteInStoreTaskInfo(int deviceId, string stationCode, string toPlaceNo, short length, short width, short height);
@@ -1551,6 +1573,14 @@
return base.Channel.WriteQiTaoInfoAsync(deviceId, stationCode, value);
}
+ public iWareCC.StationService.SdaResEntity InboundFinishConfirm(int deviceId, string stationCode) {
+ return base.Channel.InboundFinishConfirm(deviceId, stationCode);
+ }
+
+ public System.Threading.Tasks.Task<iWareCC.StationService.SdaResEntity> InboundFinishConfirmAsync(int deviceId, string stationCode) {
+ return base.Channel.InboundFinishConfirmAsync(deviceId, stationCode);
+ }
+
public iWareCC.StationService.SdaResEntity WriteInStoreTaskInfo(int deviceId, string stationCode, string toPlaceNo, short length, short width, short height) {
return base.Channel.WriteInStoreTaskInfo(deviceId, stationCode, toPlaceNo, length, width, height);
}
--
Gitblit v1.9.3