| 12345678910111213141516171819202122 |
-
- using System.ServiceModel;
- namespace Dongke.IBOSS.PRD.WCF.Contracts
- {
- /// <summary>
- /// 智能设备对接服务
- /// </summary>
- [ServiceContract(ConfigurationName = "SmartDeviceService.ISmartDevice",
- Name = "ISmartDevice",
- Namespace = "Dongke.IBOSS.PRD.WCF.Contracts")]
- public interface ISmartDevice
- {
- /// <summary>
- /// 自动扫描计件
- /// </summary>
- /// <returns></returns>
- [OperationContract(IsOneWay = true)]
- void AddWorkPiece(string accountCode, string userCode, string userPassword,
- int procedureID, string barcode);
- }
- }
|