| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950 |
-
- using System.ServiceModel;
- using System.ServiceModel.Web;
- namespace Dongke.IBOSS.PRD.WCF.ExHGS3QRS
- {
- /// <summary>
- /// 智能设备对接服务(恒洁三水三车间对接乾润扫码)
- /// </summary>
- [ServiceContract(ConfigurationName = "ExHGS3QR.IExHGS3QR",
- Name = "IExHGS3QR",
- Namespace = "Dongke.IBOSS.PRD.WCF.ExHGS3QRS")]
- public interface IExHGS3QR
- {
- #region 恒洁三水三车间对接乾润扫码
- [OperationContract]
- //[WebInvoke(BodyStyle = WebMessageBodyStyle.WrappedRequest
- // , ResponseFormat = WebMessageFormat.Json
- // , RequestFormat = WebMessageFormat.Json)]
- [WebGet(
- RequestFormat = WebMessageFormat.Json ,
- ResponseFormat = WebMessageFormat.Json )]
- string AddWorkInfoHGS3_QR_TEST(string barcode, string procedure_no, int road_no, double weight);
- /// <summary>
- /// 恒洁三水三车间对接乾润扫码
- /// </summary>
- /// <param name="barcode"></param>
- /// <param name="procedure_no">工序号</param>
- /// <param name="road_no">道口号</param>
- /// <param name="weight">重量</param>
- /// <returns></returns>
- [OperationContract]
- //[WebInvoke(BodyStyle = WebMessageBodyStyle.WrappedRequest
- // , ResponseFormat = WebMessageFormat.Json
- // , RequestFormat = WebMessageFormat.Json)]
- [WebGet(
- RequestFormat = WebMessageFormat.Json,
- ResponseFormat = WebMessageFormat.Json)]
- string AddWorkInfoHGS3_QR(string barcode,
- string procedure_no,
- string road_no,
- string rack,
- string position,
- int procedure_in = 1);
- #endregion
- }
- }
|