516 lines
20 KiB
C#
516 lines
20 KiB
C#
//------------------------------------------------------------------------------
|
||
// <auto-generated>
|
||
// 此代码由工具生成。
|
||
// 运行时版本:4.0.30319.42000
|
||
//
|
||
// 对此文件的更改可能会导致不正确的行为,并且如果
|
||
// 重新生成代码,这些更改将会丢失。
|
||
// </auto-generated>
|
||
//------------------------------------------------------------------------------
|
||
|
||
namespace ExternalDataSync.ESB_collt {
|
||
|
||
|
||
[System.CodeDom.Compiler.GeneratedCodeAttribute("System.ServiceModel", "4.0.0.0")]
|
||
[System.ServiceModel.ServiceContractAttribute(Namespace="http://zk.ws.epichust.com/", ConfigurationName="ESB_collt.ColltReInterface")]
|
||
public interface ColltReInterface {
|
||
|
||
// CODEGEN: 参数“return”需要其他方案信息,使用参数模式无法捕获这些信息。特定特性为“System.Xml.Serialization.XmlElementAttribute”。
|
||
[System.ServiceModel.OperationContractAttribute(Action="", ReplyAction="*")]
|
||
[System.ServiceModel.XmlSerializerFormatAttribute(SupportFaults=true)]
|
||
[return: System.ServiceModel.MessageParameterAttribute(Name="return")]
|
||
ExternalDataSync.ESB_collt.colltResponse collt(ExternalDataSync.ESB_collt.collt request);
|
||
|
||
[System.ServiceModel.OperationContractAttribute(Action="", ReplyAction="*")]
|
||
System.Threading.Tasks.Task<ExternalDataSync.ESB_collt.colltResponse> colltAsync(ExternalDataSync.ESB_collt.collt request);
|
||
}
|
||
|
||
/// <remarks/>
|
||
[System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.4161.0")]
|
||
[System.SerializableAttribute()]
|
||
[System.Diagnostics.DebuggerStepThroughAttribute()]
|
||
[System.ComponentModel.DesignerCategoryAttribute("code")]
|
||
[System.Xml.Serialization.XmlTypeAttribute(Namespace="http://zk.ws.epichust.com/")]
|
||
public partial class interfaceRequestHeader : object, System.ComponentModel.INotifyPropertyChanged {
|
||
|
||
private string interfaceIDField;
|
||
|
||
private string messageIDField;
|
||
|
||
private string receiverField;
|
||
|
||
private string senderField;
|
||
|
||
private string transIDField;
|
||
|
||
/// <remarks/>
|
||
[System.Xml.Serialization.XmlElementAttribute(Form=System.Xml.Schema.XmlSchemaForm.Unqualified, Order=0)]
|
||
public string interfaceID {
|
||
get {
|
||
return this.interfaceIDField;
|
||
}
|
||
set {
|
||
this.interfaceIDField = value;
|
||
this.RaisePropertyChanged("interfaceID");
|
||
}
|
||
}
|
||
|
||
/// <remarks/>
|
||
[System.Xml.Serialization.XmlElementAttribute(Form=System.Xml.Schema.XmlSchemaForm.Unqualified, Order=1)]
|
||
public string messageID {
|
||
get {
|
||
return this.messageIDField;
|
||
}
|
||
set {
|
||
this.messageIDField = value;
|
||
this.RaisePropertyChanged("messageID");
|
||
}
|
||
}
|
||
|
||
/// <remarks/>
|
||
[System.Xml.Serialization.XmlElementAttribute(Form=System.Xml.Schema.XmlSchemaForm.Unqualified, Order=2)]
|
||
public string receiver {
|
||
get {
|
||
return this.receiverField;
|
||
}
|
||
set {
|
||
this.receiverField = value;
|
||
this.RaisePropertyChanged("receiver");
|
||
}
|
||
}
|
||
|
||
/// <remarks/>
|
||
[System.Xml.Serialization.XmlElementAttribute(Form=System.Xml.Schema.XmlSchemaForm.Unqualified, Order=3)]
|
||
public string sender {
|
||
get {
|
||
return this.senderField;
|
||
}
|
||
set {
|
||
this.senderField = value;
|
||
this.RaisePropertyChanged("sender");
|
||
}
|
||
}
|
||
|
||
/// <remarks/>
|
||
[System.Xml.Serialization.XmlElementAttribute(Form=System.Xml.Schema.XmlSchemaForm.Unqualified, Order=4)]
|
||
public string transID {
|
||
get {
|
||
return this.transIDField;
|
||
}
|
||
set {
|
||
this.transIDField = value;
|
||
this.RaisePropertyChanged("transID");
|
||
}
|
||
}
|
||
|
||
public event System.ComponentModel.PropertyChangedEventHandler PropertyChanged;
|
||
|
||
protected void RaisePropertyChanged(string propertyName) {
|
||
System.ComponentModel.PropertyChangedEventHandler propertyChanged = this.PropertyChanged;
|
||
if ((propertyChanged != null)) {
|
||
propertyChanged(this, new System.ComponentModel.PropertyChangedEventArgs(propertyName));
|
||
}
|
||
}
|
||
}
|
||
|
||
/// <remarks/>
|
||
[System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.4161.0")]
|
||
[System.SerializableAttribute()]
|
||
[System.Diagnostics.DebuggerStepThroughAttribute()]
|
||
[System.ComponentModel.DesignerCategoryAttribute("code")]
|
||
[System.Xml.Serialization.XmlTypeAttribute(Namespace="http://zk.ws.epichust.com/")]
|
||
public partial class interfaceResponse : object, System.ComponentModel.INotifyPropertyChanged {
|
||
|
||
private string commentField;
|
||
|
||
private string interfaceIDField;
|
||
|
||
private string messageIDField;
|
||
|
||
private string resultCodeField;
|
||
|
||
private string resultMessageField;
|
||
|
||
private string resultTypeField;
|
||
|
||
private string transIDField;
|
||
|
||
/// <remarks/>
|
||
[System.Xml.Serialization.XmlElementAttribute(Form=System.Xml.Schema.XmlSchemaForm.Unqualified, Order=0)]
|
||
public string comment {
|
||
get {
|
||
return this.commentField;
|
||
}
|
||
set {
|
||
this.commentField = value;
|
||
this.RaisePropertyChanged("comment");
|
||
}
|
||
}
|
||
|
||
/// <remarks/>
|
||
[System.Xml.Serialization.XmlElementAttribute(Form=System.Xml.Schema.XmlSchemaForm.Unqualified, Order=1)]
|
||
public string interfaceID {
|
||
get {
|
||
return this.interfaceIDField;
|
||
}
|
||
set {
|
||
this.interfaceIDField = value;
|
||
this.RaisePropertyChanged("interfaceID");
|
||
}
|
||
}
|
||
|
||
/// <remarks/>
|
||
[System.Xml.Serialization.XmlElementAttribute(Form=System.Xml.Schema.XmlSchemaForm.Unqualified, Order=2)]
|
||
public string messageID {
|
||
get {
|
||
return this.messageIDField;
|
||
}
|
||
set {
|
||
this.messageIDField = value;
|
||
this.RaisePropertyChanged("messageID");
|
||
}
|
||
}
|
||
|
||
/// <remarks/>
|
||
[System.Xml.Serialization.XmlElementAttribute(Form=System.Xml.Schema.XmlSchemaForm.Unqualified, Order=3)]
|
||
public string resultCode {
|
||
get {
|
||
return this.resultCodeField;
|
||
}
|
||
set {
|
||
this.resultCodeField = value;
|
||
this.RaisePropertyChanged("resultCode");
|
||
}
|
||
}
|
||
|
||
/// <remarks/>
|
||
[System.Xml.Serialization.XmlElementAttribute(Form=System.Xml.Schema.XmlSchemaForm.Unqualified, Order=4)]
|
||
public string resultMessage {
|
||
get {
|
||
return this.resultMessageField;
|
||
}
|
||
set {
|
||
this.resultMessageField = value;
|
||
this.RaisePropertyChanged("resultMessage");
|
||
}
|
||
}
|
||
|
||
/// <remarks/>
|
||
[System.Xml.Serialization.XmlElementAttribute(Form=System.Xml.Schema.XmlSchemaForm.Unqualified, Order=5)]
|
||
public string resultType {
|
||
get {
|
||
return this.resultTypeField;
|
||
}
|
||
set {
|
||
this.resultTypeField = value;
|
||
this.RaisePropertyChanged("resultType");
|
||
}
|
||
}
|
||
|
||
/// <remarks/>
|
||
[System.Xml.Serialization.XmlElementAttribute(Form=System.Xml.Schema.XmlSchemaForm.Unqualified, Order=6)]
|
||
public string transID {
|
||
get {
|
||
return this.transIDField;
|
||
}
|
||
set {
|
||
this.transIDField = value;
|
||
this.RaisePropertyChanged("transID");
|
||
}
|
||
}
|
||
|
||
public event System.ComponentModel.PropertyChangedEventHandler PropertyChanged;
|
||
|
||
protected void RaisePropertyChanged(string propertyName) {
|
||
System.ComponentModel.PropertyChangedEventHandler propertyChanged = this.PropertyChanged;
|
||
if ((propertyChanged != null)) {
|
||
propertyChanged(this, new System.ComponentModel.PropertyChangedEventArgs(propertyName));
|
||
}
|
||
}
|
||
}
|
||
|
||
/// <remarks/>
|
||
[System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.4161.0")]
|
||
[System.SerializableAttribute()]
|
||
[System.Diagnostics.DebuggerStepThroughAttribute()]
|
||
[System.ComponentModel.DesignerCategoryAttribute("code")]
|
||
[System.Xml.Serialization.XmlTypeAttribute(Namespace="http://zk.ws.epichust.com/")]
|
||
public partial class citemInfoTo : object, System.ComponentModel.INotifyPropertyChanged {
|
||
|
||
private string actualValueField;
|
||
|
||
private string citemCodeField;
|
||
|
||
private string citemNameField;
|
||
|
||
private string citemRemarkField;
|
||
|
||
private string isOKField;
|
||
|
||
/// <remarks/>
|
||
[System.Xml.Serialization.XmlElementAttribute(Form=System.Xml.Schema.XmlSchemaForm.Unqualified, Order=0)]
|
||
public string actualValue {
|
||
get {
|
||
return this.actualValueField;
|
||
}
|
||
set {
|
||
this.actualValueField = value;
|
||
this.RaisePropertyChanged("actualValue");
|
||
}
|
||
}
|
||
|
||
/// <remarks/>
|
||
[System.Xml.Serialization.XmlElementAttribute(Form=System.Xml.Schema.XmlSchemaForm.Unqualified, Order=1)]
|
||
public string citemCode {
|
||
get {
|
||
return this.citemCodeField;
|
||
}
|
||
set {
|
||
this.citemCodeField = value;
|
||
this.RaisePropertyChanged("citemCode");
|
||
}
|
||
}
|
||
|
||
/// <remarks/>
|
||
[System.Xml.Serialization.XmlElementAttribute(Form=System.Xml.Schema.XmlSchemaForm.Unqualified, Order=2)]
|
||
public string citemName {
|
||
get {
|
||
return this.citemNameField;
|
||
}
|
||
set {
|
||
this.citemNameField = value;
|
||
this.RaisePropertyChanged("citemName");
|
||
}
|
||
}
|
||
|
||
/// <remarks/>
|
||
[System.Xml.Serialization.XmlElementAttribute(Form=System.Xml.Schema.XmlSchemaForm.Unqualified, Order=3)]
|
||
public string citemRemark {
|
||
get {
|
||
return this.citemRemarkField;
|
||
}
|
||
set {
|
||
this.citemRemarkField = value;
|
||
this.RaisePropertyChanged("citemRemark");
|
||
}
|
||
}
|
||
|
||
/// <remarks/>
|
||
[System.Xml.Serialization.XmlElementAttribute(Form=System.Xml.Schema.XmlSchemaForm.Unqualified, Order=4)]
|
||
public string isOK {
|
||
get {
|
||
return this.isOKField;
|
||
}
|
||
set {
|
||
this.isOKField = value;
|
||
this.RaisePropertyChanged("isOK");
|
||
}
|
||
}
|
||
|
||
public event System.ComponentModel.PropertyChangedEventHandler PropertyChanged;
|
||
|
||
protected void RaisePropertyChanged(string propertyName) {
|
||
System.ComponentModel.PropertyChangedEventHandler propertyChanged = this.PropertyChanged;
|
||
if ((propertyChanged != null)) {
|
||
propertyChanged(this, new System.ComponentModel.PropertyChangedEventArgs(propertyName));
|
||
}
|
||
}
|
||
}
|
||
|
||
/// <remarks/>
|
||
[System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.4161.0")]
|
||
[System.SerializableAttribute()]
|
||
[System.Diagnostics.DebuggerStepThroughAttribute()]
|
||
[System.ComponentModel.DesignerCategoryAttribute("code")]
|
||
[System.Xml.Serialization.XmlTypeAttribute(Namespace="http://zk.ws.epichust.com/")]
|
||
public partial class colltReInfoTo : object, System.ComponentModel.INotifyPropertyChanged {
|
||
|
||
private string acqTimeField;
|
||
|
||
private citemInfoTo[] citemInfoToField;
|
||
|
||
private string equipCodeField;
|
||
|
||
private string siteField;
|
||
|
||
private string workCellCodeField;
|
||
|
||
private string workCenterField;
|
||
|
||
/// <remarks/>
|
||
[System.Xml.Serialization.XmlElementAttribute(Form=System.Xml.Schema.XmlSchemaForm.Unqualified, Order=0)]
|
||
public string acqTime {
|
||
get {
|
||
return this.acqTimeField;
|
||
}
|
||
set {
|
||
this.acqTimeField = value;
|
||
this.RaisePropertyChanged("acqTime");
|
||
}
|
||
}
|
||
|
||
/// <remarks/>
|
||
[System.Xml.Serialization.XmlElementAttribute("citemInfoTo", Form=System.Xml.Schema.XmlSchemaForm.Unqualified, IsNullable=true, Order=1)]
|
||
public citemInfoTo[] citemInfoTo {
|
||
get {
|
||
return this.citemInfoToField;
|
||
}
|
||
set {
|
||
this.citemInfoToField = value;
|
||
this.RaisePropertyChanged("citemInfoTo");
|
||
}
|
||
}
|
||
|
||
/// <remarks/>
|
||
[System.Xml.Serialization.XmlElementAttribute(Form=System.Xml.Schema.XmlSchemaForm.Unqualified, Order=2)]
|
||
public string equipCode {
|
||
get {
|
||
return this.equipCodeField;
|
||
}
|
||
set {
|
||
this.equipCodeField = value;
|
||
this.RaisePropertyChanged("equipCode");
|
||
}
|
||
}
|
||
|
||
/// <remarks/>
|
||
[System.Xml.Serialization.XmlElementAttribute(Form=System.Xml.Schema.XmlSchemaForm.Unqualified, Order=3)]
|
||
public string site {
|
||
get {
|
||
return this.siteField;
|
||
}
|
||
set {
|
||
this.siteField = value;
|
||
this.RaisePropertyChanged("site");
|
||
}
|
||
}
|
||
|
||
/// <remarks/>
|
||
[System.Xml.Serialization.XmlElementAttribute(Form=System.Xml.Schema.XmlSchemaForm.Unqualified, Order=4)]
|
||
public string workCellCode {
|
||
get {
|
||
return this.workCellCodeField;
|
||
}
|
||
set {
|
||
this.workCellCodeField = value;
|
||
this.RaisePropertyChanged("workCellCode");
|
||
}
|
||
}
|
||
|
||
/// <remarks/>
|
||
[System.Xml.Serialization.XmlElementAttribute(Form=System.Xml.Schema.XmlSchemaForm.Unqualified, Order=5)]
|
||
public string workCenter {
|
||
get {
|
||
return this.workCenterField;
|
||
}
|
||
set {
|
||
this.workCenterField = value;
|
||
this.RaisePropertyChanged("workCenter");
|
||
}
|
||
}
|
||
|
||
public event System.ComponentModel.PropertyChangedEventHandler PropertyChanged;
|
||
|
||
protected void RaisePropertyChanged(string propertyName) {
|
||
System.ComponentModel.PropertyChangedEventHandler propertyChanged = this.PropertyChanged;
|
||
if ((propertyChanged != null)) {
|
||
propertyChanged(this, new System.ComponentModel.PropertyChangedEventArgs(propertyName));
|
||
}
|
||
}
|
||
}
|
||
|
||
[System.Diagnostics.DebuggerStepThroughAttribute()]
|
||
[System.CodeDom.Compiler.GeneratedCodeAttribute("System.ServiceModel", "4.0.0.0")]
|
||
[System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)]
|
||
[System.ServiceModel.MessageContractAttribute(WrapperName="collt", WrapperNamespace="http://zk.ws.epichust.com/", IsWrapped=true)]
|
||
public partial class collt {
|
||
|
||
[System.ServiceModel.MessageBodyMemberAttribute(Namespace="http://zk.ws.epichust.com/", Order=0)]
|
||
[System.Xml.Serialization.XmlElementAttribute(Form=System.Xml.Schema.XmlSchemaForm.Unqualified)]
|
||
public ExternalDataSync.ESB_collt.interfaceRequestHeader arg0;
|
||
|
||
[System.ServiceModel.MessageBodyMemberAttribute(Namespace="http://zk.ws.epichust.com/", Order=1)]
|
||
[System.Xml.Serialization.XmlElementAttribute("arg1", Form=System.Xml.Schema.XmlSchemaForm.Unqualified)]
|
||
public ExternalDataSync.ESB_collt.colltReInfoTo[] arg1;
|
||
|
||
public collt() {
|
||
}
|
||
|
||
public collt(ExternalDataSync.ESB_collt.interfaceRequestHeader arg0, ExternalDataSync.ESB_collt.colltReInfoTo[] arg1) {
|
||
this.arg0 = arg0;
|
||
this.arg1 = arg1;
|
||
}
|
||
}
|
||
|
||
[System.Diagnostics.DebuggerStepThroughAttribute()]
|
||
[System.CodeDom.Compiler.GeneratedCodeAttribute("System.ServiceModel", "4.0.0.0")]
|
||
[System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)]
|
||
[System.ServiceModel.MessageContractAttribute(WrapperName="colltResponse", WrapperNamespace="http://zk.ws.epichust.com/", IsWrapped=true)]
|
||
public partial class colltResponse {
|
||
|
||
[System.ServiceModel.MessageBodyMemberAttribute(Namespace="http://zk.ws.epichust.com/", Order=0)]
|
||
[System.Xml.Serialization.XmlElementAttribute(Form=System.Xml.Schema.XmlSchemaForm.Unqualified)]
|
||
public ExternalDataSync.ESB_collt.interfaceResponse @return;
|
||
|
||
public colltResponse() {
|
||
}
|
||
|
||
public colltResponse(ExternalDataSync.ESB_collt.interfaceResponse @return) {
|
||
this.@return = @return;
|
||
}
|
||
}
|
||
|
||
[System.CodeDom.Compiler.GeneratedCodeAttribute("System.ServiceModel", "4.0.0.0")]
|
||
public interface ColltReInterfaceChannel : ExternalDataSync.ESB_collt.ColltReInterface, System.ServiceModel.IClientChannel {
|
||
}
|
||
|
||
[System.Diagnostics.DebuggerStepThroughAttribute()]
|
||
[System.CodeDom.Compiler.GeneratedCodeAttribute("System.ServiceModel", "4.0.0.0")]
|
||
public partial class ColltReInterfaceClient : System.ServiceModel.ClientBase<ExternalDataSync.ESB_collt.ColltReInterface>, ExternalDataSync.ESB_collt.ColltReInterface {
|
||
|
||
public ColltReInterfaceClient() {
|
||
}
|
||
|
||
public ColltReInterfaceClient(string endpointConfigurationName) :
|
||
base(endpointConfigurationName) {
|
||
}
|
||
|
||
public ColltReInterfaceClient(string endpointConfigurationName, string remoteAddress) :
|
||
base(endpointConfigurationName, remoteAddress) {
|
||
}
|
||
|
||
public ColltReInterfaceClient(string endpointConfigurationName, System.ServiceModel.EndpointAddress remoteAddress) :
|
||
base(endpointConfigurationName, remoteAddress) {
|
||
}
|
||
|
||
public ColltReInterfaceClient(System.ServiceModel.Channels.Binding binding, System.ServiceModel.EndpointAddress remoteAddress) :
|
||
base(binding, remoteAddress) {
|
||
}
|
||
|
||
[System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)]
|
||
ExternalDataSync.ESB_collt.colltResponse ExternalDataSync.ESB_collt.ColltReInterface.collt(ExternalDataSync.ESB_collt.collt request) {
|
||
return base.Channel.collt(request);
|
||
}
|
||
|
||
public ExternalDataSync.ESB_collt.interfaceResponse collt(ExternalDataSync.ESB_collt.interfaceRequestHeader arg0, ExternalDataSync.ESB_collt.colltReInfoTo[] arg1) {
|
||
ExternalDataSync.ESB_collt.collt inValue = new ExternalDataSync.ESB_collt.collt();
|
||
inValue.arg0 = arg0;
|
||
inValue.arg1 = arg1;
|
||
ExternalDataSync.ESB_collt.colltResponse retVal = ((ExternalDataSync.ESB_collt.ColltReInterface)(this)).collt(inValue);
|
||
return retVal.@return;
|
||
}
|
||
|
||
[System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)]
|
||
System.Threading.Tasks.Task<ExternalDataSync.ESB_collt.colltResponse> ExternalDataSync.ESB_collt.ColltReInterface.colltAsync(ExternalDataSync.ESB_collt.collt request) {
|
||
return base.Channel.colltAsync(request);
|
||
}
|
||
|
||
public System.Threading.Tasks.Task<ExternalDataSync.ESB_collt.colltResponse> colltAsync(ExternalDataSync.ESB_collt.interfaceRequestHeader arg0, ExternalDataSync.ESB_collt.colltReInfoTo[] arg1) {
|
||
ExternalDataSync.ESB_collt.collt inValue = new ExternalDataSync.ESB_collt.collt();
|
||
inValue.arg0 = arg0;
|
||
inValue.arg1 = arg1;
|
||
return ((ExternalDataSync.ESB_collt.ColltReInterface)(this)).colltAsync(inValue);
|
||
}
|
||
}
|
||
}
|