782 lines
36 KiB
C#
782 lines
36 KiB
C#
//------------------------------------------------------------------------------
|
|
// <auto-generated>
|
|
// 此代码由工具生成。
|
|
// 运行时版本:4.0.30319.42000
|
|
//
|
|
// 对此文件的更改可能会导致不正确的行为,并且如果
|
|
// 重新生成代码,这些更改将会丢失。
|
|
// </auto-generated>
|
|
//------------------------------------------------------------------------------
|
|
|
|
namespace WinFormTest.blwws {
|
|
|
|
|
|
[System.CodeDom.Compiler.GeneratedCodeAttribute("System.ServiceModel", "4.0.0.0")]
|
|
[System.ServiceModel.ServiceContractAttribute(Namespace="http://www.blw.com/", ConfigurationName="blwws.blwwsSoap")]
|
|
public interface blwwsSoap {
|
|
|
|
// CODEGEN: 命名空间 http://www.blw.com/ 的元素名称 key 以后生成的消息协定未标记为 nillable
|
|
[System.ServiceModel.OperationContractAttribute(Action="http://www.blw.com/CheckIn", ReplyAction="*")]
|
|
WinFormTest.blwws.CheckInResponse CheckIn(WinFormTest.blwws.CheckInRequest request);
|
|
|
|
// CODEGEN: 命名空间 http://www.blw.com/ 的元素名称 key 以后生成的消息协定未标记为 nillable
|
|
[System.ServiceModel.OperationContractAttribute(Action="http://www.blw.com/CheckIn2", ReplyAction="*")]
|
|
WinFormTest.blwws.CheckIn2Response CheckIn2(WinFormTest.blwws.CheckIn2Request request);
|
|
|
|
// CODEGEN: 命名空间 http://www.blw.com/ 的元素名称 key 以后生成的消息协定未标记为 nillable
|
|
[System.ServiceModel.OperationContractAttribute(Action="http://www.blw.com/UploadPhoto", ReplyAction="*")]
|
|
WinFormTest.blwws.UploadPhotoResponse UploadPhoto(WinFormTest.blwws.UploadPhotoRequest request);
|
|
|
|
// CODEGEN: 命名空间 http://www.blw.com/ 的元素名称 key 以后生成的消息协定未标记为 nillable
|
|
[System.ServiceModel.OperationContractAttribute(Action="http://www.blw.com/ChangePhoneNumber", ReplyAction="*")]
|
|
WinFormTest.blwws.ChangePhoneNumberResponse ChangePhoneNumber(WinFormTest.blwws.ChangePhoneNumberRequest request);
|
|
|
|
// CODEGEN: 命名空间 http://www.blw.com/ 的元素名称 key 以后生成的消息协定未标记为 nillable
|
|
[System.ServiceModel.OperationContractAttribute(Action="http://www.blw.com/CheckOut", ReplyAction="*")]
|
|
WinFormTest.blwws.CheckOutResponse CheckOut(WinFormTest.blwws.CheckOutRequest request);
|
|
|
|
// CODEGEN: 命名空间 http://www.blw.com/ 的元素名称 key 以后生成的消息协定未标记为 nillable
|
|
[System.ServiceModel.OperationContractAttribute(Action="http://www.blw.com/RentRoom", ReplyAction="*")]
|
|
WinFormTest.blwws.RentRoomResponse RentRoom(WinFormTest.blwws.RentRoomRequest request);
|
|
}
|
|
|
|
[System.Diagnostics.DebuggerStepThroughAttribute()]
|
|
[System.CodeDom.Compiler.GeneratedCodeAttribute("System.ServiceModel", "4.0.0.0")]
|
|
[System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)]
|
|
[System.ServiceModel.MessageContractAttribute(IsWrapped=false)]
|
|
public partial class CheckInRequest {
|
|
|
|
[System.ServiceModel.MessageBodyMemberAttribute(Name="CheckIn", Namespace="http://www.blw.com/", Order=0)]
|
|
public WinFormTest.blwws.CheckInRequestBody Body;
|
|
|
|
public CheckInRequest() {
|
|
}
|
|
|
|
public CheckInRequest(WinFormTest.blwws.CheckInRequestBody Body) {
|
|
this.Body = Body;
|
|
}
|
|
}
|
|
|
|
[System.Diagnostics.DebuggerStepThroughAttribute()]
|
|
[System.CodeDom.Compiler.GeneratedCodeAttribute("System.ServiceModel", "4.0.0.0")]
|
|
[System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)]
|
|
[System.Runtime.Serialization.DataContractAttribute(Namespace="http://www.blw.com/")]
|
|
public partial class CheckInRequestBody {
|
|
|
|
[System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=0)]
|
|
public string key;
|
|
|
|
[System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=1)]
|
|
public string code;
|
|
|
|
[System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=2)]
|
|
public string roomNumber;
|
|
|
|
[System.Runtime.Serialization.DataMemberAttribute(Order=3)]
|
|
public System.DateTime checkInDate;
|
|
|
|
[System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=4)]
|
|
public string xmlString;
|
|
|
|
[System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=5)]
|
|
public string errorMsg;
|
|
|
|
[System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=6)]
|
|
public string phoneNumber;
|
|
|
|
[System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=7)]
|
|
public string idNumber;
|
|
|
|
public CheckInRequestBody() {
|
|
}
|
|
|
|
public CheckInRequestBody(string key, string code, string roomNumber, System.DateTime checkInDate, string xmlString, string errorMsg, string phoneNumber, string idNumber) {
|
|
this.key = key;
|
|
this.code = code;
|
|
this.roomNumber = roomNumber;
|
|
this.checkInDate = checkInDate;
|
|
this.xmlString = xmlString;
|
|
this.errorMsg = errorMsg;
|
|
this.phoneNumber = phoneNumber;
|
|
this.idNumber = idNumber;
|
|
}
|
|
}
|
|
|
|
[System.Diagnostics.DebuggerStepThroughAttribute()]
|
|
[System.CodeDom.Compiler.GeneratedCodeAttribute("System.ServiceModel", "4.0.0.0")]
|
|
[System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)]
|
|
[System.ServiceModel.MessageContractAttribute(IsWrapped=false)]
|
|
public partial class CheckInResponse {
|
|
|
|
[System.ServiceModel.MessageBodyMemberAttribute(Name="CheckInResponse", Namespace="http://www.blw.com/", Order=0)]
|
|
public WinFormTest.blwws.CheckInResponseBody Body;
|
|
|
|
public CheckInResponse() {
|
|
}
|
|
|
|
public CheckInResponse(WinFormTest.blwws.CheckInResponseBody Body) {
|
|
this.Body = Body;
|
|
}
|
|
}
|
|
|
|
[System.Diagnostics.DebuggerStepThroughAttribute()]
|
|
[System.CodeDom.Compiler.GeneratedCodeAttribute("System.ServiceModel", "4.0.0.0")]
|
|
[System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)]
|
|
[System.Runtime.Serialization.DataContractAttribute(Namespace="http://www.blw.com/")]
|
|
public partial class CheckInResponseBody {
|
|
|
|
[System.Runtime.Serialization.DataMemberAttribute(Order=0)]
|
|
public bool CheckInResult;
|
|
|
|
[System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=1)]
|
|
public string errorMsg;
|
|
|
|
public CheckInResponseBody() {
|
|
}
|
|
|
|
public CheckInResponseBody(bool CheckInResult, string errorMsg) {
|
|
this.CheckInResult = CheckInResult;
|
|
this.errorMsg = errorMsg;
|
|
}
|
|
}
|
|
|
|
[System.Diagnostics.DebuggerStepThroughAttribute()]
|
|
[System.CodeDom.Compiler.GeneratedCodeAttribute("System.ServiceModel", "4.0.0.0")]
|
|
[System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)]
|
|
[System.ServiceModel.MessageContractAttribute(IsWrapped=false)]
|
|
public partial class CheckIn2Request {
|
|
|
|
[System.ServiceModel.MessageBodyMemberAttribute(Name="CheckIn2", Namespace="http://www.blw.com/", Order=0)]
|
|
public WinFormTest.blwws.CheckIn2RequestBody Body;
|
|
|
|
public CheckIn2Request() {
|
|
}
|
|
|
|
public CheckIn2Request(WinFormTest.blwws.CheckIn2RequestBody Body) {
|
|
this.Body = Body;
|
|
}
|
|
}
|
|
|
|
[System.Diagnostics.DebuggerStepThroughAttribute()]
|
|
[System.CodeDom.Compiler.GeneratedCodeAttribute("System.ServiceModel", "4.0.0.0")]
|
|
[System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)]
|
|
[System.Runtime.Serialization.DataContractAttribute(Namespace="http://www.blw.com/")]
|
|
public partial class CheckIn2RequestBody {
|
|
|
|
[System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=0)]
|
|
public string key;
|
|
|
|
[System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=1)]
|
|
public string code;
|
|
|
|
[System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=2)]
|
|
public string roomNumber;
|
|
|
|
[System.Runtime.Serialization.DataMemberAttribute(Order=3)]
|
|
public System.DateTime checkInDate;
|
|
|
|
[System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=4)]
|
|
public string xmlString;
|
|
|
|
[System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=5)]
|
|
public string errorMsg;
|
|
|
|
[System.Runtime.Serialization.DataMemberAttribute(Order=6)]
|
|
public long checkInID;
|
|
|
|
[System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=7)]
|
|
public string phoneNumber;
|
|
|
|
[System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=8)]
|
|
public string idNumber;
|
|
|
|
public CheckIn2RequestBody() {
|
|
}
|
|
|
|
public CheckIn2RequestBody(string key, string code, string roomNumber, System.DateTime checkInDate, string xmlString, string errorMsg, long checkInID, string phoneNumber, string idNumber) {
|
|
this.key = key;
|
|
this.code = code;
|
|
this.roomNumber = roomNumber;
|
|
this.checkInDate = checkInDate;
|
|
this.xmlString = xmlString;
|
|
this.errorMsg = errorMsg;
|
|
this.checkInID = checkInID;
|
|
this.phoneNumber = phoneNumber;
|
|
this.idNumber = idNumber;
|
|
}
|
|
}
|
|
|
|
[System.Diagnostics.DebuggerStepThroughAttribute()]
|
|
[System.CodeDom.Compiler.GeneratedCodeAttribute("System.ServiceModel", "4.0.0.0")]
|
|
[System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)]
|
|
[System.ServiceModel.MessageContractAttribute(IsWrapped=false)]
|
|
public partial class CheckIn2Response {
|
|
|
|
[System.ServiceModel.MessageBodyMemberAttribute(Name="CheckIn2Response", Namespace="http://www.blw.com/", Order=0)]
|
|
public WinFormTest.blwws.CheckIn2ResponseBody Body;
|
|
|
|
public CheckIn2Response() {
|
|
}
|
|
|
|
public CheckIn2Response(WinFormTest.blwws.CheckIn2ResponseBody Body) {
|
|
this.Body = Body;
|
|
}
|
|
}
|
|
|
|
[System.Diagnostics.DebuggerStepThroughAttribute()]
|
|
[System.CodeDom.Compiler.GeneratedCodeAttribute("System.ServiceModel", "4.0.0.0")]
|
|
[System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)]
|
|
[System.Runtime.Serialization.DataContractAttribute(Namespace="http://www.blw.com/")]
|
|
public partial class CheckIn2ResponseBody {
|
|
|
|
[System.Runtime.Serialization.DataMemberAttribute(Order=0)]
|
|
public bool CheckIn2Result;
|
|
|
|
[System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=1)]
|
|
public string errorMsg;
|
|
|
|
[System.Runtime.Serialization.DataMemberAttribute(Order=2)]
|
|
public long checkInID;
|
|
|
|
public CheckIn2ResponseBody() {
|
|
}
|
|
|
|
public CheckIn2ResponseBody(bool CheckIn2Result, string errorMsg, long checkInID) {
|
|
this.CheckIn2Result = CheckIn2Result;
|
|
this.errorMsg = errorMsg;
|
|
this.checkInID = checkInID;
|
|
}
|
|
}
|
|
|
|
[System.Diagnostics.DebuggerStepThroughAttribute()]
|
|
[System.CodeDom.Compiler.GeneratedCodeAttribute("System.ServiceModel", "4.0.0.0")]
|
|
[System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)]
|
|
[System.ServiceModel.MessageContractAttribute(IsWrapped=false)]
|
|
public partial class UploadPhotoRequest {
|
|
|
|
[System.ServiceModel.MessageBodyMemberAttribute(Name="UploadPhoto", Namespace="http://www.blw.com/", Order=0)]
|
|
public WinFormTest.blwws.UploadPhotoRequestBody Body;
|
|
|
|
public UploadPhotoRequest() {
|
|
}
|
|
|
|
public UploadPhotoRequest(WinFormTest.blwws.UploadPhotoRequestBody Body) {
|
|
this.Body = Body;
|
|
}
|
|
}
|
|
|
|
[System.Diagnostics.DebuggerStepThroughAttribute()]
|
|
[System.CodeDom.Compiler.GeneratedCodeAttribute("System.ServiceModel", "4.0.0.0")]
|
|
[System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)]
|
|
[System.Runtime.Serialization.DataContractAttribute(Namespace="http://www.blw.com/")]
|
|
public partial class UploadPhotoRequestBody {
|
|
|
|
[System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=0)]
|
|
public string key;
|
|
|
|
[System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=1)]
|
|
public string code;
|
|
|
|
[System.Runtime.Serialization.DataMemberAttribute(Order=2)]
|
|
public long checkInID;
|
|
|
|
[System.Runtime.Serialization.DataMemberAttribute(Order=3)]
|
|
public int idType;
|
|
|
|
[System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=4)]
|
|
public string idCard;
|
|
|
|
[System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=5)]
|
|
public string name;
|
|
|
|
[System.Runtime.Serialization.DataMemberAttribute(Order=6)]
|
|
public int sex;
|
|
|
|
[System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=7)]
|
|
public string birthday;
|
|
|
|
[System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=8)]
|
|
public string photoUrl;
|
|
|
|
[System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=9)]
|
|
public byte[] photo;
|
|
|
|
[System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=10)]
|
|
public string errorMsg;
|
|
|
|
public UploadPhotoRequestBody() {
|
|
}
|
|
|
|
public UploadPhotoRequestBody(string key, string code, long checkInID, int idType, string idCard, string name, int sex, string birthday, string photoUrl, byte[] photo, string errorMsg) {
|
|
this.key = key;
|
|
this.code = code;
|
|
this.checkInID = checkInID;
|
|
this.idType = idType;
|
|
this.idCard = idCard;
|
|
this.name = name;
|
|
this.sex = sex;
|
|
this.birthday = birthday;
|
|
this.photoUrl = photoUrl;
|
|
this.photo = photo;
|
|
this.errorMsg = errorMsg;
|
|
}
|
|
}
|
|
|
|
[System.Diagnostics.DebuggerStepThroughAttribute()]
|
|
[System.CodeDom.Compiler.GeneratedCodeAttribute("System.ServiceModel", "4.0.0.0")]
|
|
[System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)]
|
|
[System.ServiceModel.MessageContractAttribute(IsWrapped=false)]
|
|
public partial class UploadPhotoResponse {
|
|
|
|
[System.ServiceModel.MessageBodyMemberAttribute(Name="UploadPhotoResponse", Namespace="http://www.blw.com/", Order=0)]
|
|
public WinFormTest.blwws.UploadPhotoResponseBody Body;
|
|
|
|
public UploadPhotoResponse() {
|
|
}
|
|
|
|
public UploadPhotoResponse(WinFormTest.blwws.UploadPhotoResponseBody Body) {
|
|
this.Body = Body;
|
|
}
|
|
}
|
|
|
|
[System.Diagnostics.DebuggerStepThroughAttribute()]
|
|
[System.CodeDom.Compiler.GeneratedCodeAttribute("System.ServiceModel", "4.0.0.0")]
|
|
[System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)]
|
|
[System.Runtime.Serialization.DataContractAttribute(Namespace="http://www.blw.com/")]
|
|
public partial class UploadPhotoResponseBody {
|
|
|
|
[System.Runtime.Serialization.DataMemberAttribute(Order=0)]
|
|
public bool UploadPhotoResult;
|
|
|
|
[System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=1)]
|
|
public string errorMsg;
|
|
|
|
public UploadPhotoResponseBody() {
|
|
}
|
|
|
|
public UploadPhotoResponseBody(bool UploadPhotoResult, string errorMsg) {
|
|
this.UploadPhotoResult = UploadPhotoResult;
|
|
this.errorMsg = errorMsg;
|
|
}
|
|
}
|
|
|
|
[System.Diagnostics.DebuggerStepThroughAttribute()]
|
|
[System.CodeDom.Compiler.GeneratedCodeAttribute("System.ServiceModel", "4.0.0.0")]
|
|
[System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)]
|
|
[System.ServiceModel.MessageContractAttribute(IsWrapped=false)]
|
|
public partial class ChangePhoneNumberRequest {
|
|
|
|
[System.ServiceModel.MessageBodyMemberAttribute(Name="ChangePhoneNumber", Namespace="http://www.blw.com/", Order=0)]
|
|
public WinFormTest.blwws.ChangePhoneNumberRequestBody Body;
|
|
|
|
public ChangePhoneNumberRequest() {
|
|
}
|
|
|
|
public ChangePhoneNumberRequest(WinFormTest.blwws.ChangePhoneNumberRequestBody Body) {
|
|
this.Body = Body;
|
|
}
|
|
}
|
|
|
|
[System.Diagnostics.DebuggerStepThroughAttribute()]
|
|
[System.CodeDom.Compiler.GeneratedCodeAttribute("System.ServiceModel", "4.0.0.0")]
|
|
[System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)]
|
|
[System.Runtime.Serialization.DataContractAttribute(Namespace="http://www.blw.com/")]
|
|
public partial class ChangePhoneNumberRequestBody {
|
|
|
|
[System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=0)]
|
|
public string key;
|
|
|
|
[System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=1)]
|
|
public string code;
|
|
|
|
[System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=2)]
|
|
public string roomNumber;
|
|
|
|
[System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=3)]
|
|
public string phoneNumber;
|
|
|
|
[System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=4)]
|
|
public string idNumber;
|
|
|
|
[System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=5)]
|
|
public string errorMsg;
|
|
|
|
public ChangePhoneNumberRequestBody() {
|
|
}
|
|
|
|
public ChangePhoneNumberRequestBody(string key, string code, string roomNumber, string phoneNumber, string idNumber, string errorMsg) {
|
|
this.key = key;
|
|
this.code = code;
|
|
this.roomNumber = roomNumber;
|
|
this.phoneNumber = phoneNumber;
|
|
this.idNumber = idNumber;
|
|
this.errorMsg = errorMsg;
|
|
}
|
|
}
|
|
|
|
[System.Diagnostics.DebuggerStepThroughAttribute()]
|
|
[System.CodeDom.Compiler.GeneratedCodeAttribute("System.ServiceModel", "4.0.0.0")]
|
|
[System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)]
|
|
[System.ServiceModel.MessageContractAttribute(IsWrapped=false)]
|
|
public partial class ChangePhoneNumberResponse {
|
|
|
|
[System.ServiceModel.MessageBodyMemberAttribute(Name="ChangePhoneNumberResponse", Namespace="http://www.blw.com/", Order=0)]
|
|
public WinFormTest.blwws.ChangePhoneNumberResponseBody Body;
|
|
|
|
public ChangePhoneNumberResponse() {
|
|
}
|
|
|
|
public ChangePhoneNumberResponse(WinFormTest.blwws.ChangePhoneNumberResponseBody Body) {
|
|
this.Body = Body;
|
|
}
|
|
}
|
|
|
|
[System.Diagnostics.DebuggerStepThroughAttribute()]
|
|
[System.CodeDom.Compiler.GeneratedCodeAttribute("System.ServiceModel", "4.0.0.0")]
|
|
[System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)]
|
|
[System.Runtime.Serialization.DataContractAttribute(Namespace="http://www.blw.com/")]
|
|
public partial class ChangePhoneNumberResponseBody {
|
|
|
|
[System.Runtime.Serialization.DataMemberAttribute(Order=0)]
|
|
public bool ChangePhoneNumberResult;
|
|
|
|
[System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=1)]
|
|
public string errorMsg;
|
|
|
|
public ChangePhoneNumberResponseBody() {
|
|
}
|
|
|
|
public ChangePhoneNumberResponseBody(bool ChangePhoneNumberResult, string errorMsg) {
|
|
this.ChangePhoneNumberResult = ChangePhoneNumberResult;
|
|
this.errorMsg = errorMsg;
|
|
}
|
|
}
|
|
|
|
[System.Diagnostics.DebuggerStepThroughAttribute()]
|
|
[System.CodeDom.Compiler.GeneratedCodeAttribute("System.ServiceModel", "4.0.0.0")]
|
|
[System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)]
|
|
[System.ServiceModel.MessageContractAttribute(IsWrapped=false)]
|
|
public partial class CheckOutRequest {
|
|
|
|
[System.ServiceModel.MessageBodyMemberAttribute(Name="CheckOut", Namespace="http://www.blw.com/", Order=0)]
|
|
public WinFormTest.blwws.CheckOutRequestBody Body;
|
|
|
|
public CheckOutRequest() {
|
|
}
|
|
|
|
public CheckOutRequest(WinFormTest.blwws.CheckOutRequestBody Body) {
|
|
this.Body = Body;
|
|
}
|
|
}
|
|
|
|
[System.Diagnostics.DebuggerStepThroughAttribute()]
|
|
[System.CodeDom.Compiler.GeneratedCodeAttribute("System.ServiceModel", "4.0.0.0")]
|
|
[System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)]
|
|
[System.Runtime.Serialization.DataContractAttribute(Namespace="http://www.blw.com/")]
|
|
public partial class CheckOutRequestBody {
|
|
|
|
[System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=0)]
|
|
public string key;
|
|
|
|
[System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=1)]
|
|
public string code;
|
|
|
|
[System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=2)]
|
|
public string roomNumber;
|
|
|
|
[System.Runtime.Serialization.DataMemberAttribute(Order=3)]
|
|
public System.DateTime checkOutDate;
|
|
|
|
[System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=4)]
|
|
public string errorMsg;
|
|
|
|
public CheckOutRequestBody() {
|
|
}
|
|
|
|
public CheckOutRequestBody(string key, string code, string roomNumber, System.DateTime checkOutDate, string errorMsg) {
|
|
this.key = key;
|
|
this.code = code;
|
|
this.roomNumber = roomNumber;
|
|
this.checkOutDate = checkOutDate;
|
|
this.errorMsg = errorMsg;
|
|
}
|
|
}
|
|
|
|
[System.Diagnostics.DebuggerStepThroughAttribute()]
|
|
[System.CodeDom.Compiler.GeneratedCodeAttribute("System.ServiceModel", "4.0.0.0")]
|
|
[System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)]
|
|
[System.ServiceModel.MessageContractAttribute(IsWrapped=false)]
|
|
public partial class CheckOutResponse {
|
|
|
|
[System.ServiceModel.MessageBodyMemberAttribute(Name="CheckOutResponse", Namespace="http://www.blw.com/", Order=0)]
|
|
public WinFormTest.blwws.CheckOutResponseBody Body;
|
|
|
|
public CheckOutResponse() {
|
|
}
|
|
|
|
public CheckOutResponse(WinFormTest.blwws.CheckOutResponseBody Body) {
|
|
this.Body = Body;
|
|
}
|
|
}
|
|
|
|
[System.Diagnostics.DebuggerStepThroughAttribute()]
|
|
[System.CodeDom.Compiler.GeneratedCodeAttribute("System.ServiceModel", "4.0.0.0")]
|
|
[System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)]
|
|
[System.Runtime.Serialization.DataContractAttribute(Namespace="http://www.blw.com/")]
|
|
public partial class CheckOutResponseBody {
|
|
|
|
[System.Runtime.Serialization.DataMemberAttribute(Order=0)]
|
|
public bool CheckOutResult;
|
|
|
|
[System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=1)]
|
|
public string errorMsg;
|
|
|
|
public CheckOutResponseBody() {
|
|
}
|
|
|
|
public CheckOutResponseBody(bool CheckOutResult, string errorMsg) {
|
|
this.CheckOutResult = CheckOutResult;
|
|
this.errorMsg = errorMsg;
|
|
}
|
|
}
|
|
|
|
[System.Diagnostics.DebuggerStepThroughAttribute()]
|
|
[System.CodeDom.Compiler.GeneratedCodeAttribute("System.ServiceModel", "4.0.0.0")]
|
|
[System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)]
|
|
[System.ServiceModel.MessageContractAttribute(IsWrapped=false)]
|
|
public partial class RentRoomRequest {
|
|
|
|
[System.ServiceModel.MessageBodyMemberAttribute(Name="RentRoom", Namespace="http://www.blw.com/", Order=0)]
|
|
public WinFormTest.blwws.RentRoomRequestBody Body;
|
|
|
|
public RentRoomRequest() {
|
|
}
|
|
|
|
public RentRoomRequest(WinFormTest.blwws.RentRoomRequestBody Body) {
|
|
this.Body = Body;
|
|
}
|
|
}
|
|
|
|
[System.Diagnostics.DebuggerStepThroughAttribute()]
|
|
[System.CodeDom.Compiler.GeneratedCodeAttribute("System.ServiceModel", "4.0.0.0")]
|
|
[System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)]
|
|
[System.Runtime.Serialization.DataContractAttribute(Namespace="http://www.blw.com/")]
|
|
public partial class RentRoomRequestBody {
|
|
|
|
[System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=0)]
|
|
public string key;
|
|
|
|
[System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=1)]
|
|
public string code;
|
|
|
|
[System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=2)]
|
|
public string roomNumber;
|
|
|
|
[System.Runtime.Serialization.DataMemberAttribute(Order=3)]
|
|
public System.DateTime rentDate;
|
|
|
|
[System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=4)]
|
|
public string errorMsg;
|
|
|
|
public RentRoomRequestBody() {
|
|
}
|
|
|
|
public RentRoomRequestBody(string key, string code, string roomNumber, System.DateTime rentDate, string errorMsg) {
|
|
this.key = key;
|
|
this.code = code;
|
|
this.roomNumber = roomNumber;
|
|
this.rentDate = rentDate;
|
|
this.errorMsg = errorMsg;
|
|
}
|
|
}
|
|
|
|
[System.Diagnostics.DebuggerStepThroughAttribute()]
|
|
[System.CodeDom.Compiler.GeneratedCodeAttribute("System.ServiceModel", "4.0.0.0")]
|
|
[System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)]
|
|
[System.ServiceModel.MessageContractAttribute(IsWrapped=false)]
|
|
public partial class RentRoomResponse {
|
|
|
|
[System.ServiceModel.MessageBodyMemberAttribute(Name="RentRoomResponse", Namespace="http://www.blw.com/", Order=0)]
|
|
public WinFormTest.blwws.RentRoomResponseBody Body;
|
|
|
|
public RentRoomResponse() {
|
|
}
|
|
|
|
public RentRoomResponse(WinFormTest.blwws.RentRoomResponseBody Body) {
|
|
this.Body = Body;
|
|
}
|
|
}
|
|
|
|
[System.Diagnostics.DebuggerStepThroughAttribute()]
|
|
[System.CodeDom.Compiler.GeneratedCodeAttribute("System.ServiceModel", "4.0.0.0")]
|
|
[System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)]
|
|
[System.Runtime.Serialization.DataContractAttribute(Namespace="http://www.blw.com/")]
|
|
public partial class RentRoomResponseBody {
|
|
|
|
[System.Runtime.Serialization.DataMemberAttribute(Order=0)]
|
|
public bool RentRoomResult;
|
|
|
|
[System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=1)]
|
|
public string errorMsg;
|
|
|
|
public RentRoomResponseBody() {
|
|
}
|
|
|
|
public RentRoomResponseBody(bool RentRoomResult, string errorMsg) {
|
|
this.RentRoomResult = RentRoomResult;
|
|
this.errorMsg = errorMsg;
|
|
}
|
|
}
|
|
|
|
[System.CodeDom.Compiler.GeneratedCodeAttribute("System.ServiceModel", "4.0.0.0")]
|
|
public interface blwwsSoapChannel : WinFormTest.blwws.blwwsSoap, System.ServiceModel.IClientChannel {
|
|
}
|
|
|
|
[System.Diagnostics.DebuggerStepThroughAttribute()]
|
|
[System.CodeDom.Compiler.GeneratedCodeAttribute("System.ServiceModel", "4.0.0.0")]
|
|
public partial class blwwsSoapClient : System.ServiceModel.ClientBase<WinFormTest.blwws.blwwsSoap>, WinFormTest.blwws.blwwsSoap {
|
|
|
|
public blwwsSoapClient() {
|
|
}
|
|
|
|
public blwwsSoapClient(string endpointConfigurationName) :
|
|
base(endpointConfigurationName) {
|
|
}
|
|
|
|
public blwwsSoapClient(string endpointConfigurationName, string remoteAddress) :
|
|
base(endpointConfigurationName, remoteAddress) {
|
|
}
|
|
|
|
public blwwsSoapClient(string endpointConfigurationName, System.ServiceModel.EndpointAddress remoteAddress) :
|
|
base(endpointConfigurationName, remoteAddress) {
|
|
}
|
|
|
|
public blwwsSoapClient(System.ServiceModel.Channels.Binding binding, System.ServiceModel.EndpointAddress remoteAddress) :
|
|
base(binding, remoteAddress) {
|
|
}
|
|
|
|
[System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)]
|
|
WinFormTest.blwws.CheckInResponse WinFormTest.blwws.blwwsSoap.CheckIn(WinFormTest.blwws.CheckInRequest request) {
|
|
return base.Channel.CheckIn(request);
|
|
}
|
|
|
|
public bool CheckIn(string key, string code, string roomNumber, System.DateTime checkInDate, string xmlString, ref string errorMsg, string phoneNumber, string idNumber) {
|
|
WinFormTest.blwws.CheckInRequest inValue = new WinFormTest.blwws.CheckInRequest();
|
|
inValue.Body = new WinFormTest.blwws.CheckInRequestBody();
|
|
inValue.Body.key = key;
|
|
inValue.Body.code = code;
|
|
inValue.Body.roomNumber = roomNumber;
|
|
inValue.Body.checkInDate = checkInDate;
|
|
inValue.Body.xmlString = xmlString;
|
|
inValue.Body.errorMsg = errorMsg;
|
|
inValue.Body.phoneNumber = phoneNumber;
|
|
inValue.Body.idNumber = idNumber;
|
|
WinFormTest.blwws.CheckInResponse retVal = ((WinFormTest.blwws.blwwsSoap)(this)).CheckIn(inValue);
|
|
errorMsg = retVal.Body.errorMsg;
|
|
return retVal.Body.CheckInResult;
|
|
}
|
|
|
|
[System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)]
|
|
WinFormTest.blwws.CheckIn2Response WinFormTest.blwws.blwwsSoap.CheckIn2(WinFormTest.blwws.CheckIn2Request request) {
|
|
return base.Channel.CheckIn2(request);
|
|
}
|
|
|
|
public bool CheckIn2(string key, string code, string roomNumber, System.DateTime checkInDate, string xmlString, ref string errorMsg, ref long checkInID, string phoneNumber, string idNumber) {
|
|
WinFormTest.blwws.CheckIn2Request inValue = new WinFormTest.blwws.CheckIn2Request();
|
|
inValue.Body = new WinFormTest.blwws.CheckIn2RequestBody();
|
|
inValue.Body.key = key;
|
|
inValue.Body.code = code;
|
|
inValue.Body.roomNumber = roomNumber;
|
|
inValue.Body.checkInDate = checkInDate;
|
|
inValue.Body.xmlString = xmlString;
|
|
inValue.Body.errorMsg = errorMsg;
|
|
inValue.Body.checkInID = checkInID;
|
|
inValue.Body.phoneNumber = phoneNumber;
|
|
inValue.Body.idNumber = idNumber;
|
|
WinFormTest.blwws.CheckIn2Response retVal = ((WinFormTest.blwws.blwwsSoap)(this)).CheckIn2(inValue);
|
|
errorMsg = retVal.Body.errorMsg;
|
|
checkInID = retVal.Body.checkInID;
|
|
return retVal.Body.CheckIn2Result;
|
|
}
|
|
|
|
[System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)]
|
|
WinFormTest.blwws.UploadPhotoResponse WinFormTest.blwws.blwwsSoap.UploadPhoto(WinFormTest.blwws.UploadPhotoRequest request) {
|
|
return base.Channel.UploadPhoto(request);
|
|
}
|
|
|
|
public bool UploadPhoto(string key, string code, long checkInID, int idType, string idCard, string name, int sex, string birthday, string photoUrl, byte[] photo, ref string errorMsg) {
|
|
WinFormTest.blwws.UploadPhotoRequest inValue = new WinFormTest.blwws.UploadPhotoRequest();
|
|
inValue.Body = new WinFormTest.blwws.UploadPhotoRequestBody();
|
|
inValue.Body.key = key;
|
|
inValue.Body.code = code;
|
|
inValue.Body.checkInID = checkInID;
|
|
inValue.Body.idType = idType;
|
|
inValue.Body.idCard = idCard;
|
|
inValue.Body.name = name;
|
|
inValue.Body.sex = sex;
|
|
inValue.Body.birthday = birthday;
|
|
inValue.Body.photoUrl = photoUrl;
|
|
inValue.Body.photo = photo;
|
|
inValue.Body.errorMsg = errorMsg;
|
|
WinFormTest.blwws.UploadPhotoResponse retVal = ((WinFormTest.blwws.blwwsSoap)(this)).UploadPhoto(inValue);
|
|
errorMsg = retVal.Body.errorMsg;
|
|
return retVal.Body.UploadPhotoResult;
|
|
}
|
|
|
|
[System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)]
|
|
WinFormTest.blwws.ChangePhoneNumberResponse WinFormTest.blwws.blwwsSoap.ChangePhoneNumber(WinFormTest.blwws.ChangePhoneNumberRequest request) {
|
|
return base.Channel.ChangePhoneNumber(request);
|
|
}
|
|
|
|
public bool ChangePhoneNumber(string key, string code, string roomNumber, string phoneNumber, string idNumber, ref string errorMsg) {
|
|
WinFormTest.blwws.ChangePhoneNumberRequest inValue = new WinFormTest.blwws.ChangePhoneNumberRequest();
|
|
inValue.Body = new WinFormTest.blwws.ChangePhoneNumberRequestBody();
|
|
inValue.Body.key = key;
|
|
inValue.Body.code = code;
|
|
inValue.Body.roomNumber = roomNumber;
|
|
inValue.Body.phoneNumber = phoneNumber;
|
|
inValue.Body.idNumber = idNumber;
|
|
inValue.Body.errorMsg = errorMsg;
|
|
WinFormTest.blwws.ChangePhoneNumberResponse retVal = ((WinFormTest.blwws.blwwsSoap)(this)).ChangePhoneNumber(inValue);
|
|
errorMsg = retVal.Body.errorMsg;
|
|
return retVal.Body.ChangePhoneNumberResult;
|
|
}
|
|
|
|
[System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)]
|
|
WinFormTest.blwws.CheckOutResponse WinFormTest.blwws.blwwsSoap.CheckOut(WinFormTest.blwws.CheckOutRequest request) {
|
|
return base.Channel.CheckOut(request);
|
|
}
|
|
|
|
public bool CheckOut(string key, string code, string roomNumber, System.DateTime checkOutDate, ref string errorMsg) {
|
|
WinFormTest.blwws.CheckOutRequest inValue = new WinFormTest.blwws.CheckOutRequest();
|
|
inValue.Body = new WinFormTest.blwws.CheckOutRequestBody();
|
|
inValue.Body.key = key;
|
|
inValue.Body.code = code;
|
|
inValue.Body.roomNumber = roomNumber;
|
|
inValue.Body.checkOutDate = checkOutDate;
|
|
inValue.Body.errorMsg = errorMsg;
|
|
WinFormTest.blwws.CheckOutResponse retVal = ((WinFormTest.blwws.blwwsSoap)(this)).CheckOut(inValue);
|
|
errorMsg = retVal.Body.errorMsg;
|
|
return retVal.Body.CheckOutResult;
|
|
}
|
|
|
|
[System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)]
|
|
WinFormTest.blwws.RentRoomResponse WinFormTest.blwws.blwwsSoap.RentRoom(WinFormTest.blwws.RentRoomRequest request) {
|
|
return base.Channel.RentRoom(request);
|
|
}
|
|
|
|
public bool RentRoom(string key, string code, string roomNumber, System.DateTime rentDate, ref string errorMsg) {
|
|
WinFormTest.blwws.RentRoomRequest inValue = new WinFormTest.blwws.RentRoomRequest();
|
|
inValue.Body = new WinFormTest.blwws.RentRoomRequestBody();
|
|
inValue.Body.key = key;
|
|
inValue.Body.code = code;
|
|
inValue.Body.roomNumber = roomNumber;
|
|
inValue.Body.rentDate = rentDate;
|
|
inValue.Body.errorMsg = errorMsg;
|
|
WinFormTest.blwws.RentRoomResponse retVal = ((WinFormTest.blwws.blwwsSoap)(this)).RentRoom(inValue);
|
|
errorMsg = retVal.Body.errorMsg;
|
|
return retVal.Body.RentRoomResult;
|
|
}
|
|
}
|
|
}
|