Reference.cs 238 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511
  1. //------------------------------------------------------------------------------
  2. // <auto-generated>
  3. // 此代码由工具生成。
  4. // 运行时版本:4.0.30319.42000
  5. //
  6. // 对此文件的更改可能会导致不正确的行为,并且如果
  7. // 重新生成代码,这些更改将会丢失。
  8. // </auto-generated>
  9. //------------------------------------------------------------------------------
  10. namespace Dongke.IBOSS.PRD.WCF.Proxys.PMModuleService {
  11. [System.CodeDom.Compiler.GeneratedCodeAttribute("System.ServiceModel", "4.0.0.0")]
  12. [System.ServiceModel.ServiceContractAttribute(Namespace="Dongke.IBOSS.PRD.WCF.Contracts", ConfigurationName="PMModuleService.IPMModule")]
  13. public interface IPMModule {
  14. [System.ServiceModel.OperationContractAttribute(Action="Dongke.IBOSS.PRD.WCF.Contracts/IPMModule/GetBarCodeInGroutingDailyDetail", ReplyAction="Dongke.IBOSS.PRD.WCF.Contracts/IPMModule/GetBarCodeInGroutingDailyDetailResponse")]
  15. System.Data.DataSet GetBarCodeInGroutingDailyDetail(string barcode);
  16. [System.ServiceModel.OperationContractAttribute(Action="Dongke.IBOSS.PRD.WCF.Contracts/IPMModule/GetCompleteProductionDataID", ReplyAction="Dongke.IBOSS.PRD.WCF.Contracts/IPMModule/GetCompleteProductionDataIDResponse")]
  17. int GetCompleteProductionDataID(string barcode);
  18. [System.ServiceModel.OperationContractAttribute(Action="Dongke.IBOSS.PRD.WCF.Contracts/IPMModule/GetInProductionDataList", ReplyAction="Dongke.IBOSS.PRD.WCF.Contracts/IPMModule/GetInProductionDataListResponse")]
  19. System.Data.DataSet GetInProductionDataList(string barcode);
  20. [System.ServiceModel.OperationContractAttribute(Action="Dongke.IBOSS.PRD.WCF.Contracts/IPMModule/CheckScrapProduct", ReplyAction="Dongke.IBOSS.PRD.WCF.Contracts/IPMModule/CheckScrapProductResponse")]
  21. int CheckScrapProduct(string barcode);
  22. [System.ServiceModel.OperationContractAttribute(Action="Dongke.IBOSS.PRD.WCF.Contracts/IPMModule/GetGoodsInfoBybarcode", ReplyAction="Dongke.IBOSS.PRD.WCF.Contracts/IPMModule/GetGoodsInfoBybarcodeResponse")]
  23. System.Data.DataSet GetGoodsInfoBybarcode(string barcode);
  24. [System.ServiceModel.OperationContractAttribute(Action="Dongke.IBOSS.PRD.WCF.Contracts/IPMModule/UpdateGroutingUserCodeByMissingID", ReplyAction="Dongke.IBOSS.PRD.WCF.Contracts/IPMModule/UpdateGroutingUserCodeByMissingIDRespons" +
  25. "e")]
  26. int UpdateGroutingUserCodeByMissingID(string groutingUserCode, int missingID);
  27. [System.ServiceModel.OperationContractAttribute(Action="Dongke.IBOSS.PRD.WCF.Contracts/IPMModule/CheckKilnCarByIntoCar", ReplyAction="Dongke.IBOSS.PRD.WCF.Contracts/IPMModule/CheckKilnCarByIntoCarResponse")]
  28. int CheckKilnCarByIntoCar(string kilncarcode, int procedureid);
  29. [System.ServiceModel.OperationContractAttribute(Action="Dongke.IBOSS.PRD.WCF.Contracts/IPMModule/GetInCheckedDetail", ReplyAction="Dongke.IBOSS.PRD.WCF.Contracts/IPMModule/GetInCheckedDetailResponse")]
  30. System.Data.DataSet GetInCheckedDetail(string ProcedureIDS);
  31. [System.ServiceModel.OperationContractAttribute(Action="Dongke.IBOSS.PRD.WCF.Contracts/IPMModule/SaveInChecked", ReplyAction="Dongke.IBOSS.PRD.WCF.Contracts/IPMModule/SaveInCheckedResponse")]
  32. int SaveInChecked(Dongke.IBOSS.PRD.WCF.DataModels.InProductionEntity[] inProductionEntity, string remarks);
  33. [System.ServiceModel.OperationContractAttribute(Action="Dongke.IBOSS.PRD.WCF.Contracts/IPMModule/GetInCheckedList", ReplyAction="Dongke.IBOSS.PRD.WCF.Contracts/IPMModule/GetInCheckedListResponse")]
  34. System.Data.DataSet GetInCheckedList();
  35. [System.ServiceModel.OperationContractAttribute(Action="Dongke.IBOSS.PRD.WCF.Contracts/IPMModule/GetInCheckedUserList", ReplyAction="Dongke.IBOSS.PRD.WCF.Contracts/IPMModule/GetInCheckedUserListResponse")]
  36. System.Data.DataSet GetInCheckedUserList(int InCheckedID);
  37. [System.ServiceModel.OperationContractAttribute(Action="Dongke.IBOSS.PRD.WCF.Contracts/IPMModule/UpdateInChecked", ReplyAction="Dongke.IBOSS.PRD.WCF.Contracts/IPMModule/UpdateInCheckedResponse")]
  38. int UpdateInChecked(int InCheckedID, string BarCode);
  39. [System.ServiceModel.OperationContractAttribute(Action="Dongke.IBOSS.PRD.WCF.Contracts/IPMModule/DisableInChecked", ReplyAction="Dongke.IBOSS.PRD.WCF.Contracts/IPMModule/DisableInCheckedResponse")]
  40. int DisableInChecked(int inCheckedID);
  41. [System.ServiceModel.OperationContractAttribute(Action="Dongke.IBOSS.PRD.WCF.Contracts/IPMModule/GetAllInChecked", ReplyAction="Dongke.IBOSS.PRD.WCF.Contracts/IPMModule/GetAllInCheckedResponse")]
  42. System.Data.DataSet GetAllInChecked(Dongke.IBOSS.PRD.WCF.DataModels.InCheckedEntity entity);
  43. [System.ServiceModel.OperationContractAttribute(Action="Dongke.IBOSS.PRD.WCF.Contracts/IPMModule/GetAllInCheckedDetail", ReplyAction="Dongke.IBOSS.PRD.WCF.Contracts/IPMModule/GetAllInCheckedDetailResponse")]
  44. System.Data.DataSet GetAllInCheckedDetail(int inCheckedID);
  45. [System.ServiceModel.OperationContractAttribute(Action="Dongke.IBOSS.PRD.WCF.Contracts/IPMModule/GetScrapProductUserCodeByProductionDataI" +
  46. "D", ReplyAction="Dongke.IBOSS.PRD.WCF.Contracts/IPMModule/GetScrapProductUserCodeByProductionDataI" +
  47. "DResponse")]
  48. System.Data.DataSet GetScrapProductUserCodeByProductionDataID(int ProductionDataID);
  49. [System.ServiceModel.OperationContractAttribute(Action="Dongke.IBOSS.PRD.WCF.Contracts/IPMModule/CheckKilnCarByIntoCar2", ReplyAction="Dongke.IBOSS.PRD.WCF.Contracts/IPMModule/CheckKilnCarByIntoCar2Response")]
  50. int CheckKilnCarByIntoCar2(string kilncarcode, int procedureid);
  51. [System.ServiceModel.OperationContractAttribute(Action="Dongke.IBOSS.PRD.WCF.Contracts/IPMModule/AddChancelFinishedproduct", ReplyAction="Dongke.IBOSS.PRD.WCF.Contracts/IPMModule/AddChancelFinishedproductResponse")]
  52. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.Basics.BaseResources.Constant.ServiceResultStatus))]
  53. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.PMModule.SearchFinishedProductEntity))]
  54. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.PMModule.GetBarCodeEntity))]
  55. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.PMModule.SearchProductionDataEntity))]
  56. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.InProductionEntity[]))]
  57. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.InProductionEntity))]
  58. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.InCheckedEntity))]
  59. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.RPT010401_SE))]
  60. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.FPM2110_SE))]
  61. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.FPM2112_SE))]
  62. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.SemiCheckEntity))]
  63. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.SemiCheckDefectEntity[]))]
  64. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.SemiCheckDefectEntity))]
  65. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.SemiCheckResponsibleEntity[]))]
  66. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.SemiCheckResponsibleEntity))]
  67. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.SemiCheckEntity[]))]
  68. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.OrderEntity))]
  69. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.FPM0101_SE))]
  70. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.GroutingDailyEntity))]
  71. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.GroutingDailyEntity[]))]
  72. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.GroutingDailyDetailEntity[]))]
  73. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.GroutingDailyDetailEntity))]
  74. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.ScrapProductEntity))]
  75. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.ResponProcedureEntity))]
  76. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.ScrapResponsibleEntity[]))]
  77. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.ScrapResponsibleEntity))]
  78. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.ProductionDataEntity))]
  79. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.ProductionProcedureListEntity[]))]
  80. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.ProductionProcedureListEntity))]
  81. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.ProductionDefectEntity[]))]
  82. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.ProductionDefectEntity))]
  83. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.DefectImageEntity[]))]
  84. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.DefectImageEntity))]
  85. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.DefectMissedResponsibleEntity[]))]
  86. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.DefectMissedResponsibleEntity))]
  87. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.DefectResponsibleEntity[]))]
  88. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.DefectResponsibleEntity))]
  89. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.ProcedureEntity))]
  90. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.ProcedureFlowEntity[]))]
  91. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.ProcedureFlowEntity))]
  92. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.CheckProcedureUserResult))]
  93. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.CheckKilnCarResultEntity))]
  94. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.KilnCarInfo[]))]
  95. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.KilnCarInfo))]
  96. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.ProductionDataEntity[]))]
  97. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.SearchProgressRAPEntity))]
  98. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.CelsiusRecordEntity))]
  99. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.GroutingCountByUserEntity))]
  100. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.PMProgressRAPEntity))]
  101. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.WCFConstant.FormMode))]
  102. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.PMResultEntity))]
  103. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.SearchInProductionEntity))]
  104. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.SemiTestDetailEntity))]
  105. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.SemiTestDefectEntity[]))]
  106. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.SemiTestDefectEntity))]
  107. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.CheckCancelLoadCar))]
  108. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.SemiTestEntity[]))]
  109. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.SemiTestEntity))]
  110. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.SemiTestDetailEntity[]))]
  111. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(System.Exception))]
  112. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(int[]))]
  113. Dongke.IBOSS.PRD.WCF.DataModels.ServiceResultEntity AddChancelFinishedproduct(string barcode);
  114. [System.ServiceModel.OperationContractAttribute(Action="Dongke.IBOSS.PRD.WCF.Contracts/IPMModule/AddCancelScrapProduction", ReplyAction="Dongke.IBOSS.PRD.WCF.Contracts/IPMModule/AddCancelScrapProductionResponse")]
  115. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.Basics.BaseResources.Constant.ServiceResultStatus))]
  116. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.PMModule.SearchFinishedProductEntity))]
  117. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.PMModule.GetBarCodeEntity))]
  118. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.PMModule.SearchProductionDataEntity))]
  119. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.InProductionEntity[]))]
  120. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.InProductionEntity))]
  121. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.InCheckedEntity))]
  122. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.RPT010401_SE))]
  123. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.FPM2110_SE))]
  124. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.FPM2112_SE))]
  125. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.SemiCheckEntity))]
  126. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.SemiCheckDefectEntity[]))]
  127. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.SemiCheckDefectEntity))]
  128. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.SemiCheckResponsibleEntity[]))]
  129. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.SemiCheckResponsibleEntity))]
  130. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.SemiCheckEntity[]))]
  131. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.OrderEntity))]
  132. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.FPM0101_SE))]
  133. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.GroutingDailyEntity))]
  134. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.GroutingDailyEntity[]))]
  135. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.GroutingDailyDetailEntity[]))]
  136. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.GroutingDailyDetailEntity))]
  137. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.ScrapProductEntity))]
  138. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.ResponProcedureEntity))]
  139. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.ScrapResponsibleEntity[]))]
  140. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.ScrapResponsibleEntity))]
  141. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.ProductionDataEntity))]
  142. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.ProductionProcedureListEntity[]))]
  143. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.ProductionProcedureListEntity))]
  144. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.ProductionDefectEntity[]))]
  145. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.ProductionDefectEntity))]
  146. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.DefectImageEntity[]))]
  147. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.DefectImageEntity))]
  148. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.DefectMissedResponsibleEntity[]))]
  149. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.DefectMissedResponsibleEntity))]
  150. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.DefectResponsibleEntity[]))]
  151. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.DefectResponsibleEntity))]
  152. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.ProcedureEntity))]
  153. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.ProcedureFlowEntity[]))]
  154. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.ProcedureFlowEntity))]
  155. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.CheckProcedureUserResult))]
  156. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.CheckKilnCarResultEntity))]
  157. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.KilnCarInfo[]))]
  158. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.KilnCarInfo))]
  159. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.ProductionDataEntity[]))]
  160. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.SearchProgressRAPEntity))]
  161. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.CelsiusRecordEntity))]
  162. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.GroutingCountByUserEntity))]
  163. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.PMProgressRAPEntity))]
  164. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.WCFConstant.FormMode))]
  165. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.PMResultEntity))]
  166. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.SearchInProductionEntity))]
  167. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.SemiTestDetailEntity))]
  168. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.SemiTestDefectEntity[]))]
  169. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.SemiTestDefectEntity))]
  170. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.CheckCancelLoadCar))]
  171. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.SemiTestEntity[]))]
  172. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.SemiTestEntity))]
  173. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.SemiTestDetailEntity[]))]
  174. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(System.Exception))]
  175. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(int[]))]
  176. Dongke.IBOSS.PRD.WCF.DataModels.ServiceResultEntity AddCancelScrapProduction(string barcode);
  177. [System.ServiceModel.OperationContractAttribute(Action="Dongke.IBOSS.PRD.WCF.Contracts/IPMModule/GetGroutingInfoBybarcode", ReplyAction="Dongke.IBOSS.PRD.WCF.Contracts/IPMModule/GetGroutingInfoBybarcodeResponse")]
  178. System.Data.DataSet GetGroutingInfoBybarcode(string barcode);
  179. [System.ServiceModel.OperationContractAttribute(Action="Dongke.IBOSS.PRD.WCF.Contracts/IPMModule/GetFinishedProductGroutingInfoBybarcode", ReplyAction="Dongke.IBOSS.PRD.WCF.Contracts/IPMModule/GetFinishedProductGroutingInfoBybarcodeR" +
  180. "esponse")]
  181. System.Data.DataSet GetFinishedProductGroutingInfoBybarcode(string barcode);
  182. [System.ServiceModel.OperationContractAttribute(Action="Dongke.IBOSS.PRD.WCF.Contracts/IPMModule/AddPublicBodyProduct", ReplyAction="Dongke.IBOSS.PRD.WCF.Contracts/IPMModule/AddPublicBodyProductResponse")]
  183. int AddPublicBodyProduct(string barcode);
  184. [System.ServiceModel.OperationContractAttribute(Action="Dongke.IBOSS.PRD.WCF.Contracts/IPMModule/CheckBarcodeDeliverMud", ReplyAction="Dongke.IBOSS.PRD.WCF.Contracts/IPMModule/CheckBarcodeDeliverMudResponse")]
  185. System.Data.DataSet CheckBarcodeDeliverMud(int procedureid, string barcode);
  186. [System.ServiceModel.OperationContractAttribute(Action="Dongke.IBOSS.PRD.WCF.Contracts/IPMModule/GetPM2108Data", ReplyAction="Dongke.IBOSS.PRD.WCF.Contracts/IPMModule/GetPM2108DataResponse")]
  187. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.Basics.BaseResources.Constant.ServiceResultStatus))]
  188. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.PMModule.SearchFinishedProductEntity))]
  189. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.PMModule.GetBarCodeEntity))]
  190. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.PMModule.SearchProductionDataEntity))]
  191. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.InProductionEntity[]))]
  192. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.InProductionEntity))]
  193. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.InCheckedEntity))]
  194. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.RPT010401_SE))]
  195. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.FPM2110_SE))]
  196. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.FPM2112_SE))]
  197. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.SemiCheckEntity))]
  198. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.SemiCheckDefectEntity[]))]
  199. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.SemiCheckDefectEntity))]
  200. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.SemiCheckResponsibleEntity[]))]
  201. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.SemiCheckResponsibleEntity))]
  202. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.SemiCheckEntity[]))]
  203. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.OrderEntity))]
  204. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.FPM0101_SE))]
  205. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.GroutingDailyEntity))]
  206. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.GroutingDailyEntity[]))]
  207. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.GroutingDailyDetailEntity[]))]
  208. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.GroutingDailyDetailEntity))]
  209. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.ScrapProductEntity))]
  210. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.ResponProcedureEntity))]
  211. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.ScrapResponsibleEntity[]))]
  212. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.ScrapResponsibleEntity))]
  213. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.ProductionDataEntity))]
  214. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.ProductionProcedureListEntity[]))]
  215. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.ProductionProcedureListEntity))]
  216. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.ProductionDefectEntity[]))]
  217. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.ProductionDefectEntity))]
  218. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.DefectImageEntity[]))]
  219. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.DefectImageEntity))]
  220. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.DefectMissedResponsibleEntity[]))]
  221. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.DefectMissedResponsibleEntity))]
  222. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.DefectResponsibleEntity[]))]
  223. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.DefectResponsibleEntity))]
  224. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.ProcedureEntity))]
  225. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.ProcedureFlowEntity[]))]
  226. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.ProcedureFlowEntity))]
  227. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.CheckProcedureUserResult))]
  228. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.CheckKilnCarResultEntity))]
  229. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.KilnCarInfo[]))]
  230. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.KilnCarInfo))]
  231. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.ProductionDataEntity[]))]
  232. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.SearchProgressRAPEntity))]
  233. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.CelsiusRecordEntity))]
  234. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.GroutingCountByUserEntity))]
  235. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.PMProgressRAPEntity))]
  236. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.WCFConstant.FormMode))]
  237. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.PMResultEntity))]
  238. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.SearchInProductionEntity))]
  239. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.SemiTestDetailEntity))]
  240. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.SemiTestDefectEntity[]))]
  241. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.SemiTestDefectEntity))]
  242. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.CheckCancelLoadCar))]
  243. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.SemiTestEntity[]))]
  244. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.SemiTestEntity))]
  245. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.SemiTestDetailEntity[]))]
  246. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(System.Exception))]
  247. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(int[]))]
  248. Dongke.IBOSS.PRD.WCF.DataModels.ServiceResultEntity GetPM2108Data(Dongke.IBOSS.PRD.WCF.DataModels.RPT010401_SE se);
  249. [System.ServiceModel.OperationContractAttribute(Action="Dongke.IBOSS.PRD.WCF.Contracts/IPMModule/SaveClearInproduction", ReplyAction="Dongke.IBOSS.PRD.WCF.Contracts/IPMModule/SaveClearInproductionResponse")]
  250. int SaveClearInproduction(string barcodes);
  251. [System.ServiceModel.OperationContractAttribute(Action="Dongke.IBOSS.PRD.WCF.Contracts/IPMModule/SaveClearAllInproduction", ReplyAction="Dongke.IBOSS.PRD.WCF.Contracts/IPMModule/SaveClearAllInproductionResponse")]
  252. int SaveClearAllInproduction(Dongke.IBOSS.PRD.WCF.DataModels.RPT010401_SE se);
  253. [System.ServiceModel.OperationContractAttribute(Action="Dongke.IBOSS.PRD.WCF.Contracts/IPMModule/GetPM2110Data", ReplyAction="Dongke.IBOSS.PRD.WCF.Contracts/IPMModule/GetPM2110DataResponse")]
  254. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.Basics.BaseResources.Constant.ServiceResultStatus))]
  255. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.PMModule.SearchFinishedProductEntity))]
  256. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.PMModule.GetBarCodeEntity))]
  257. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.PMModule.SearchProductionDataEntity))]
  258. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.InProductionEntity[]))]
  259. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.InProductionEntity))]
  260. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.InCheckedEntity))]
  261. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.RPT010401_SE))]
  262. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.FPM2110_SE))]
  263. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.FPM2112_SE))]
  264. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.SemiCheckEntity))]
  265. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.SemiCheckDefectEntity[]))]
  266. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.SemiCheckDefectEntity))]
  267. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.SemiCheckResponsibleEntity[]))]
  268. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.SemiCheckResponsibleEntity))]
  269. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.SemiCheckEntity[]))]
  270. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.OrderEntity))]
  271. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.FPM0101_SE))]
  272. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.GroutingDailyEntity))]
  273. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.GroutingDailyEntity[]))]
  274. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.GroutingDailyDetailEntity[]))]
  275. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.GroutingDailyDetailEntity))]
  276. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.ScrapProductEntity))]
  277. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.ResponProcedureEntity))]
  278. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.ScrapResponsibleEntity[]))]
  279. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.ScrapResponsibleEntity))]
  280. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.ProductionDataEntity))]
  281. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.ProductionProcedureListEntity[]))]
  282. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.ProductionProcedureListEntity))]
  283. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.ProductionDefectEntity[]))]
  284. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.ProductionDefectEntity))]
  285. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.DefectImageEntity[]))]
  286. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.DefectImageEntity))]
  287. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.DefectMissedResponsibleEntity[]))]
  288. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.DefectMissedResponsibleEntity))]
  289. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.DefectResponsibleEntity[]))]
  290. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.DefectResponsibleEntity))]
  291. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.ProcedureEntity))]
  292. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.ProcedureFlowEntity[]))]
  293. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.ProcedureFlowEntity))]
  294. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.CheckProcedureUserResult))]
  295. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.CheckKilnCarResultEntity))]
  296. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.KilnCarInfo[]))]
  297. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.KilnCarInfo))]
  298. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.ProductionDataEntity[]))]
  299. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.SearchProgressRAPEntity))]
  300. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.CelsiusRecordEntity))]
  301. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.GroutingCountByUserEntity))]
  302. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.PMProgressRAPEntity))]
  303. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.WCFConstant.FormMode))]
  304. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.PMResultEntity))]
  305. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.SearchInProductionEntity))]
  306. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.SemiTestDetailEntity))]
  307. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.SemiTestDefectEntity[]))]
  308. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.SemiTestDefectEntity))]
  309. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.CheckCancelLoadCar))]
  310. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.SemiTestEntity[]))]
  311. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.SemiTestEntity))]
  312. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.SemiTestDetailEntity[]))]
  313. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(System.Exception))]
  314. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(int[]))]
  315. Dongke.IBOSS.PRD.WCF.DataModels.ServiceResultEntity GetPM2110Data(Dongke.IBOSS.PRD.WCF.DataModels.FPM2110_SE se);
  316. [System.ServiceModel.OperationContractAttribute(Action="Dongke.IBOSS.PRD.WCF.Contracts/IPMModule/SaveClearInproductionTrash", ReplyAction="Dongke.IBOSS.PRD.WCF.Contracts/IPMModule/SaveClearInproductionTrashResponse")]
  317. int SaveClearInproductionTrash(string barcodes);
  318. [System.ServiceModel.OperationContractAttribute(Action="Dongke.IBOSS.PRD.WCF.Contracts/IPMModule/SaveClearAllInproductionTrash", ReplyAction="Dongke.IBOSS.PRD.WCF.Contracts/IPMModule/SaveClearAllInproductionTrashResponse")]
  319. int SaveClearAllInproductionTrash(Dongke.IBOSS.PRD.WCF.DataModels.FPM2110_SE se);
  320. [System.ServiceModel.OperationContractAttribute(Action="Dongke.IBOSS.PRD.WCF.Contracts/IPMModule/GetPM2112Data", ReplyAction="Dongke.IBOSS.PRD.WCF.Contracts/IPMModule/GetPM2112DataResponse")]
  321. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.Basics.BaseResources.Constant.ServiceResultStatus))]
  322. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.PMModule.SearchFinishedProductEntity))]
  323. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.PMModule.GetBarCodeEntity))]
  324. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.PMModule.SearchProductionDataEntity))]
  325. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.InProductionEntity[]))]
  326. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.InProductionEntity))]
  327. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.InCheckedEntity))]
  328. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.RPT010401_SE))]
  329. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.FPM2110_SE))]
  330. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.FPM2112_SE))]
  331. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.SemiCheckEntity))]
  332. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.SemiCheckDefectEntity[]))]
  333. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.SemiCheckDefectEntity))]
  334. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.SemiCheckResponsibleEntity[]))]
  335. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.SemiCheckResponsibleEntity))]
  336. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.SemiCheckEntity[]))]
  337. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.OrderEntity))]
  338. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.FPM0101_SE))]
  339. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.GroutingDailyEntity))]
  340. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.GroutingDailyEntity[]))]
  341. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.GroutingDailyDetailEntity[]))]
  342. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.GroutingDailyDetailEntity))]
  343. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.ScrapProductEntity))]
  344. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.ResponProcedureEntity))]
  345. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.ScrapResponsibleEntity[]))]
  346. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.ScrapResponsibleEntity))]
  347. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.ProductionDataEntity))]
  348. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.ProductionProcedureListEntity[]))]
  349. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.ProductionProcedureListEntity))]
  350. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.ProductionDefectEntity[]))]
  351. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.ProductionDefectEntity))]
  352. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.DefectImageEntity[]))]
  353. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.DefectImageEntity))]
  354. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.DefectMissedResponsibleEntity[]))]
  355. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.DefectMissedResponsibleEntity))]
  356. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.DefectResponsibleEntity[]))]
  357. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.DefectResponsibleEntity))]
  358. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.ProcedureEntity))]
  359. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.ProcedureFlowEntity[]))]
  360. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.ProcedureFlowEntity))]
  361. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.CheckProcedureUserResult))]
  362. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.CheckKilnCarResultEntity))]
  363. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.KilnCarInfo[]))]
  364. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.KilnCarInfo))]
  365. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.ProductionDataEntity[]))]
  366. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.SearchProgressRAPEntity))]
  367. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.CelsiusRecordEntity))]
  368. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.GroutingCountByUserEntity))]
  369. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.PMProgressRAPEntity))]
  370. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.WCFConstant.FormMode))]
  371. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.PMResultEntity))]
  372. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.SearchInProductionEntity))]
  373. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.SemiTestDetailEntity))]
  374. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.SemiTestDefectEntity[]))]
  375. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.SemiTestDefectEntity))]
  376. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.CheckCancelLoadCar))]
  377. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.SemiTestEntity[]))]
  378. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.SemiTestEntity))]
  379. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.SemiTestDetailEntity[]))]
  380. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(System.Exception))]
  381. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(int[]))]
  382. Dongke.IBOSS.PRD.WCF.DataModels.ServiceResultEntity GetPM2112Data(Dongke.IBOSS.PRD.WCF.DataModels.FPM2112_SE se);
  383. [System.ServiceModel.OperationContractAttribute(Action="Dongke.IBOSS.PRD.WCF.Contracts/IPMModule/SaveClearInproductionTmp", ReplyAction="Dongke.IBOSS.PRD.WCF.Contracts/IPMModule/SaveClearInproductionTmpResponse")]
  384. int SaveClearInproductionTmp(string barcodes);
  385. [System.ServiceModel.OperationContractAttribute(Action="Dongke.IBOSS.PRD.WCF.Contracts/IPMModule/SaveClearAllInproductionTmp", ReplyAction="Dongke.IBOSS.PRD.WCF.Contracts/IPMModule/SaveClearAllInproductionTmpResponse")]
  386. int SaveClearAllInproductionTmp(Dongke.IBOSS.PRD.WCF.DataModels.FPM2112_SE se);
  387. [System.ServiceModel.OperationContractAttribute(Action="Dongke.IBOSS.PRD.WCF.Contracts/IPMModule/ResetBarCode", ReplyAction="Dongke.IBOSS.PRD.WCF.Contracts/IPMModule/ResetBarCodeResponse")]
  388. int ResetBarCode(string barcode);
  389. [System.ServiceModel.OperationContractAttribute(Action="Dongke.IBOSS.PRD.WCF.Contracts/IPMModule/ResetSelectedBarCode", ReplyAction="Dongke.IBOSS.PRD.WCF.Contracts/IPMModule/ResetSelectedBarCodeResponse")]
  390. int ResetSelectedBarCode(string barcodes);
  391. [System.ServiceModel.OperationContractAttribute(Action="Dongke.IBOSS.PRD.WCF.Contracts/IPMModule/AddChancelBarCode", ReplyAction="Dongke.IBOSS.PRD.WCF.Contracts/IPMModule/AddChancelBarCodeResponse")]
  392. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.Basics.BaseResources.Constant.ServiceResultStatus))]
  393. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.PMModule.SearchFinishedProductEntity))]
  394. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.PMModule.GetBarCodeEntity))]
  395. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.PMModule.SearchProductionDataEntity))]
  396. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.InProductionEntity[]))]
  397. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.InProductionEntity))]
  398. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.InCheckedEntity))]
  399. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.RPT010401_SE))]
  400. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.FPM2110_SE))]
  401. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.FPM2112_SE))]
  402. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.SemiCheckEntity))]
  403. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.SemiCheckDefectEntity[]))]
  404. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.SemiCheckDefectEntity))]
  405. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.SemiCheckResponsibleEntity[]))]
  406. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.SemiCheckResponsibleEntity))]
  407. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.SemiCheckEntity[]))]
  408. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.OrderEntity))]
  409. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.FPM0101_SE))]
  410. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.GroutingDailyEntity))]
  411. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.GroutingDailyEntity[]))]
  412. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.GroutingDailyDetailEntity[]))]
  413. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.GroutingDailyDetailEntity))]
  414. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.ScrapProductEntity))]
  415. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.ResponProcedureEntity))]
  416. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.ScrapResponsibleEntity[]))]
  417. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.ScrapResponsibleEntity))]
  418. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.ProductionDataEntity))]
  419. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.ProductionProcedureListEntity[]))]
  420. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.ProductionProcedureListEntity))]
  421. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.ProductionDefectEntity[]))]
  422. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.ProductionDefectEntity))]
  423. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.DefectImageEntity[]))]
  424. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.DefectImageEntity))]
  425. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.DefectMissedResponsibleEntity[]))]
  426. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.DefectMissedResponsibleEntity))]
  427. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.DefectResponsibleEntity[]))]
  428. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.DefectResponsibleEntity))]
  429. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.ProcedureEntity))]
  430. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.ProcedureFlowEntity[]))]
  431. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.ProcedureFlowEntity))]
  432. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.CheckProcedureUserResult))]
  433. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.CheckKilnCarResultEntity))]
  434. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.KilnCarInfo[]))]
  435. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.KilnCarInfo))]
  436. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.ProductionDataEntity[]))]
  437. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.SearchProgressRAPEntity))]
  438. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.CelsiusRecordEntity))]
  439. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.GroutingCountByUserEntity))]
  440. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.PMProgressRAPEntity))]
  441. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.WCFConstant.FormMode))]
  442. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.PMResultEntity))]
  443. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.SearchInProductionEntity))]
  444. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.SemiTestDetailEntity))]
  445. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.SemiTestDefectEntity[]))]
  446. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.SemiTestDefectEntity))]
  447. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.CheckCancelLoadCar))]
  448. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.SemiTestEntity[]))]
  449. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.SemiTestEntity))]
  450. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.SemiTestDetailEntity[]))]
  451. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(System.Exception))]
  452. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(int[]))]
  453. Dongke.IBOSS.PRD.WCF.DataModels.ServiceResultEntity AddChancelBarCode(string barcode);
  454. [System.ServiceModel.OperationContractAttribute(Action="Dongke.IBOSS.PRD.WCF.Contracts/IPMModule/GetCompleteProcedureIDPDA", ReplyAction="Dongke.IBOSS.PRD.WCF.Contracts/IPMModule/GetCompleteProcedureIDPDAResponse")]
  455. System.Data.DataSet GetCompleteProcedureIDPDA(string barcode);
  456. [System.ServiceModel.OperationContractAttribute(Action="Dongke.IBOSS.PRD.WCF.Contracts/IPMModule/AddChancelDeliverMudBarCode", ReplyAction="Dongke.IBOSS.PRD.WCF.Contracts/IPMModule/AddChancelDeliverMudBarCodeResponse")]
  457. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.Basics.BaseResources.Constant.ServiceResultStatus))]
  458. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.PMModule.SearchFinishedProductEntity))]
  459. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.PMModule.GetBarCodeEntity))]
  460. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.PMModule.SearchProductionDataEntity))]
  461. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.InProductionEntity[]))]
  462. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.InProductionEntity))]
  463. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.InCheckedEntity))]
  464. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.RPT010401_SE))]
  465. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.FPM2110_SE))]
  466. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.FPM2112_SE))]
  467. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.SemiCheckEntity))]
  468. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.SemiCheckDefectEntity[]))]
  469. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.SemiCheckDefectEntity))]
  470. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.SemiCheckResponsibleEntity[]))]
  471. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.SemiCheckResponsibleEntity))]
  472. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.SemiCheckEntity[]))]
  473. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.OrderEntity))]
  474. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.FPM0101_SE))]
  475. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.GroutingDailyEntity))]
  476. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.GroutingDailyEntity[]))]
  477. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.GroutingDailyDetailEntity[]))]
  478. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.GroutingDailyDetailEntity))]
  479. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.ScrapProductEntity))]
  480. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.ResponProcedureEntity))]
  481. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.ScrapResponsibleEntity[]))]
  482. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.ScrapResponsibleEntity))]
  483. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.ProductionDataEntity))]
  484. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.ProductionProcedureListEntity[]))]
  485. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.ProductionProcedureListEntity))]
  486. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.ProductionDefectEntity[]))]
  487. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.ProductionDefectEntity))]
  488. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.DefectImageEntity[]))]
  489. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.DefectImageEntity))]
  490. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.DefectMissedResponsibleEntity[]))]
  491. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.DefectMissedResponsibleEntity))]
  492. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.DefectResponsibleEntity[]))]
  493. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.DefectResponsibleEntity))]
  494. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.ProcedureEntity))]
  495. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.ProcedureFlowEntity[]))]
  496. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.ProcedureFlowEntity))]
  497. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.CheckProcedureUserResult))]
  498. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.CheckKilnCarResultEntity))]
  499. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.KilnCarInfo[]))]
  500. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.KilnCarInfo))]
  501. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.ProductionDataEntity[]))]
  502. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.SearchProgressRAPEntity))]
  503. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.CelsiusRecordEntity))]
  504. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.GroutingCountByUserEntity))]
  505. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.PMProgressRAPEntity))]
  506. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.WCFConstant.FormMode))]
  507. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.PMResultEntity))]
  508. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.SearchInProductionEntity))]
  509. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.SemiTestDetailEntity))]
  510. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.SemiTestDefectEntity[]))]
  511. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.SemiTestDefectEntity))]
  512. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.CheckCancelLoadCar))]
  513. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.SemiTestEntity[]))]
  514. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.SemiTestEntity))]
  515. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.SemiTestDetailEntity[]))]
  516. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(System.Exception))]
  517. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(int[]))]
  518. Dongke.IBOSS.PRD.WCF.DataModels.ServiceResultEntity AddChancelDeliverMudBarCode(string barcode);
  519. [System.ServiceModel.OperationContractAttribute(Action="Dongke.IBOSS.PRD.WCF.Contracts/IPMModule/SaveClearInChecked", ReplyAction="Dongke.IBOSS.PRD.WCF.Contracts/IPMModule/SaveClearInCheckedResponse")]
  520. int SaveClearInChecked(int inCheckedID, string barcodes);
  521. [System.ServiceModel.OperationContractAttribute(Action="Dongke.IBOSS.PRD.WCF.Contracts/IPMModule/SaveClearInCheckedAll", ReplyAction="Dongke.IBOSS.PRD.WCF.Contracts/IPMModule/SaveClearInCheckedAllResponse")]
  522. int SaveClearInCheckedAll(int inCheckedID, string procedureIDs, string goodsCodes, System.Nullable<System.DateTime> startDateTime, System.Nullable<System.DateTime> endDateTime);
  523. [System.ServiceModel.OperationContractAttribute(Action="Dongke.IBOSS.PRD.WCF.Contracts/IPMModule/GetLogoID", ReplyAction="Dongke.IBOSS.PRD.WCF.Contracts/IPMModule/GetLogoIDResponse")]
  524. int GetLogoID(int ProcedureID);
  525. [System.ServiceModel.OperationContractAttribute(Action="Dongke.IBOSS.PRD.WCF.Contracts/IPMModule/SaveBarCodeLogo", ReplyAction="Dongke.IBOSS.PRD.WCF.Contracts/IPMModule/SaveBarCodeLogoResponse")]
  526. int SaveBarCodeLogo(string barcode, int logoid);
  527. [System.ServiceModel.OperationContractAttribute(Action="Dongke.IBOSS.PRD.WCF.Contracts/IPMModule/GetBarCodeLogoID", ReplyAction="Dongke.IBOSS.PRD.WCF.Contracts/IPMModule/GetBarCodeLogoIDResponse")]
  528. System.Data.DataSet GetBarCodeLogoID(string barcode);
  529. [System.ServiceModel.OperationContractAttribute(Action="Dongke.IBOSS.PRD.WCF.Contracts/IPMModule/CheckWasteScrapProduct", ReplyAction="Dongke.IBOSS.PRD.WCF.Contracts/IPMModule/CheckWasteScrapProductResponse")]
  530. int CheckWasteScrapProduct(string barcode);
  531. [System.ServiceModel.OperationContractAttribute(Action="Dongke.IBOSS.PRD.WCF.Contracts/IPMModule/GetSemiCheck", ReplyAction="Dongke.IBOSS.PRD.WCF.Contracts/IPMModule/GetSemiCheckResponse")]
  532. System.Data.DataSet GetSemiCheck(Dongke.IBOSS.PRD.WCF.DataModels.SemiCheckEntity entity);
  533. [System.ServiceModel.OperationContractAttribute(Action="Dongke.IBOSS.PRD.WCF.Contracts/IPMModule/GetSemiCheckDefect", ReplyAction="Dongke.IBOSS.PRD.WCF.Contracts/IPMModule/GetSemiCheckDefectResponse")]
  534. System.Data.DataSet GetSemiCheckDefect(int semiCheckID);
  535. [System.ServiceModel.OperationContractAttribute(Action="Dongke.IBOSS.PRD.WCF.Contracts/IPMModule/GetSemiCheckStatusFuntion", ReplyAction="Dongke.IBOSS.PRD.WCF.Contracts/IPMModule/GetSemiCheckStatusFuntionResponse")]
  536. int GetSemiCheckStatusFuntion();
  537. [System.ServiceModel.OperationContractAttribute(Action="Dongke.IBOSS.PRD.WCF.Contracts/IPMModule/SemiCheckBarcode", ReplyAction="Dongke.IBOSS.PRD.WCF.Contracts/IPMModule/SemiCheckBarcodeResponse")]
  538. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.Basics.BaseResources.Constant.ServiceResultStatus))]
  539. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.PMModule.SearchFinishedProductEntity))]
  540. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.PMModule.GetBarCodeEntity))]
  541. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.PMModule.SearchProductionDataEntity))]
  542. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.InProductionEntity[]))]
  543. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.InProductionEntity))]
  544. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.InCheckedEntity))]
  545. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.RPT010401_SE))]
  546. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.FPM2110_SE))]
  547. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.FPM2112_SE))]
  548. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.SemiCheckEntity))]
  549. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.SemiCheckDefectEntity[]))]
  550. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.SemiCheckDefectEntity))]
  551. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.SemiCheckResponsibleEntity[]))]
  552. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.SemiCheckResponsibleEntity))]
  553. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.SemiCheckEntity[]))]
  554. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.OrderEntity))]
  555. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.FPM0101_SE))]
  556. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.GroutingDailyEntity))]
  557. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.GroutingDailyEntity[]))]
  558. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.GroutingDailyDetailEntity[]))]
  559. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.GroutingDailyDetailEntity))]
  560. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.ScrapProductEntity))]
  561. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.ResponProcedureEntity))]
  562. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.ScrapResponsibleEntity[]))]
  563. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.ScrapResponsibleEntity))]
  564. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.ProductionDataEntity))]
  565. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.ProductionProcedureListEntity[]))]
  566. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.ProductionProcedureListEntity))]
  567. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.ProductionDefectEntity[]))]
  568. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.ProductionDefectEntity))]
  569. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.DefectImageEntity[]))]
  570. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.DefectImageEntity))]
  571. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.DefectMissedResponsibleEntity[]))]
  572. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.DefectMissedResponsibleEntity))]
  573. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.DefectResponsibleEntity[]))]
  574. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.DefectResponsibleEntity))]
  575. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.ProcedureEntity))]
  576. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.ProcedureFlowEntity[]))]
  577. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.ProcedureFlowEntity))]
  578. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.CheckProcedureUserResult))]
  579. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.CheckKilnCarResultEntity))]
  580. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.KilnCarInfo[]))]
  581. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.KilnCarInfo))]
  582. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.ProductionDataEntity[]))]
  583. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.SearchProgressRAPEntity))]
  584. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.CelsiusRecordEntity))]
  585. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.GroutingCountByUserEntity))]
  586. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.PMProgressRAPEntity))]
  587. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.WCFConstant.FormMode))]
  588. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.PMResultEntity))]
  589. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.SearchInProductionEntity))]
  590. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.SemiTestDetailEntity))]
  591. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.SemiTestDefectEntity[]))]
  592. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.SemiTestDefectEntity))]
  593. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.CheckCancelLoadCar))]
  594. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.SemiTestEntity[]))]
  595. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.SemiTestEntity))]
  596. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.SemiTestDetailEntity[]))]
  597. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(System.Exception))]
  598. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(int[]))]
  599. Dongke.IBOSS.PRD.WCF.DataModels.ServiceResultEntity SemiCheckBarcode(string barcode);
  600. [System.ServiceModel.OperationContractAttribute(Action="Dongke.IBOSS.PRD.WCF.Contracts/IPMModule/GetSemiCheckByID", ReplyAction="Dongke.IBOSS.PRD.WCF.Contracts/IPMModule/GetSemiCheckByIDResponse")]
  601. System.Data.DataSet GetSemiCheckByID(int semiCheckID);
  602. [System.ServiceModel.OperationContractAttribute(Action="Dongke.IBOSS.PRD.WCF.Contracts/IPMModule/GetSemiCheckPassProcedure", ReplyAction="Dongke.IBOSS.PRD.WCF.Contracts/IPMModule/GetSemiCheckPassProcedureResponse")]
  603. System.Data.DataSet GetSemiCheckPassProcedure(string barcode);
  604. [System.ServiceModel.OperationContractAttribute(Action="Dongke.IBOSS.PRD.WCF.Contracts/IPMModule/GetSemiCheckDefectStaffByUserID", ReplyAction="Dongke.IBOSS.PRD.WCF.Contracts/IPMModule/GetSemiCheckDefectStaffByUserIDResponse")]
  605. System.Data.DataSet GetSemiCheckDefectStaffByUserID(int userid);
  606. [System.ServiceModel.OperationContractAttribute(Action="Dongke.IBOSS.PRD.WCF.Contracts/IPMModule/AddSemiCheck", ReplyAction="Dongke.IBOSS.PRD.WCF.Contracts/IPMModule/AddSemiCheckResponse")]
  607. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.Basics.BaseResources.Constant.ServiceResultStatus))]
  608. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.PMModule.SearchFinishedProductEntity))]
  609. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.PMModule.GetBarCodeEntity))]
  610. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.PMModule.SearchProductionDataEntity))]
  611. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.InProductionEntity[]))]
  612. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.InProductionEntity))]
  613. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.InCheckedEntity))]
  614. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.RPT010401_SE))]
  615. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.FPM2110_SE))]
  616. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.FPM2112_SE))]
  617. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.SemiCheckEntity))]
  618. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.SemiCheckDefectEntity[]))]
  619. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.SemiCheckDefectEntity))]
  620. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.SemiCheckResponsibleEntity[]))]
  621. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.SemiCheckResponsibleEntity))]
  622. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.SemiCheckEntity[]))]
  623. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.OrderEntity))]
  624. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.FPM0101_SE))]
  625. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.GroutingDailyEntity))]
  626. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.GroutingDailyEntity[]))]
  627. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.GroutingDailyDetailEntity[]))]
  628. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.GroutingDailyDetailEntity))]
  629. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.ScrapProductEntity))]
  630. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.ResponProcedureEntity))]
  631. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.ScrapResponsibleEntity[]))]
  632. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.ScrapResponsibleEntity))]
  633. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.ProductionDataEntity))]
  634. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.ProductionProcedureListEntity[]))]
  635. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.ProductionProcedureListEntity))]
  636. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.ProductionDefectEntity[]))]
  637. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.ProductionDefectEntity))]
  638. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.DefectImageEntity[]))]
  639. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.DefectImageEntity))]
  640. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.DefectMissedResponsibleEntity[]))]
  641. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.DefectMissedResponsibleEntity))]
  642. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.DefectResponsibleEntity[]))]
  643. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.DefectResponsibleEntity))]
  644. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.ProcedureEntity))]
  645. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.ProcedureFlowEntity[]))]
  646. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.ProcedureFlowEntity))]
  647. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.CheckProcedureUserResult))]
  648. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.CheckKilnCarResultEntity))]
  649. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.KilnCarInfo[]))]
  650. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.KilnCarInfo))]
  651. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.ProductionDataEntity[]))]
  652. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.SearchProgressRAPEntity))]
  653. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.CelsiusRecordEntity))]
  654. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.GroutingCountByUserEntity))]
  655. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.PMProgressRAPEntity))]
  656. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.WCFConstant.FormMode))]
  657. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.PMResultEntity))]
  658. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.SearchInProductionEntity))]
  659. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.SemiTestDetailEntity))]
  660. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.SemiTestDefectEntity[]))]
  661. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.SemiTestDefectEntity))]
  662. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.CheckCancelLoadCar))]
  663. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.SemiTestEntity[]))]
  664. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.SemiTestEntity))]
  665. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.SemiTestDetailEntity[]))]
  666. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(System.Exception))]
  667. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(int[]))]
  668. Dongke.IBOSS.PRD.WCF.DataModels.ServiceResultEntity AddSemiCheck(Dongke.IBOSS.PRD.WCF.DataModels.SemiCheckEntity[] entityobj);
  669. [System.ServiceModel.OperationContractAttribute(Action="Dongke.IBOSS.PRD.WCF.Contracts/IPMModule/ReSemiCheckBarcode", ReplyAction="Dongke.IBOSS.PRD.WCF.Contracts/IPMModule/ReSemiCheckBarcodeResponse")]
  670. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.Basics.BaseResources.Constant.ServiceResultStatus))]
  671. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.PMModule.SearchFinishedProductEntity))]
  672. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.PMModule.GetBarCodeEntity))]
  673. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.PMModule.SearchProductionDataEntity))]
  674. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.InProductionEntity[]))]
  675. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.InProductionEntity))]
  676. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.InCheckedEntity))]
  677. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.RPT010401_SE))]
  678. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.FPM2110_SE))]
  679. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.FPM2112_SE))]
  680. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.SemiCheckEntity))]
  681. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.SemiCheckDefectEntity[]))]
  682. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.SemiCheckDefectEntity))]
  683. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.SemiCheckResponsibleEntity[]))]
  684. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.SemiCheckResponsibleEntity))]
  685. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.SemiCheckEntity[]))]
  686. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.OrderEntity))]
  687. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.FPM0101_SE))]
  688. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.GroutingDailyEntity))]
  689. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.GroutingDailyEntity[]))]
  690. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.GroutingDailyDetailEntity[]))]
  691. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.GroutingDailyDetailEntity))]
  692. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.ScrapProductEntity))]
  693. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.ResponProcedureEntity))]
  694. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.ScrapResponsibleEntity[]))]
  695. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.ScrapResponsibleEntity))]
  696. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.ProductionDataEntity))]
  697. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.ProductionProcedureListEntity[]))]
  698. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.ProductionProcedureListEntity))]
  699. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.ProductionDefectEntity[]))]
  700. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.ProductionDefectEntity))]
  701. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.DefectImageEntity[]))]
  702. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.DefectImageEntity))]
  703. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.DefectMissedResponsibleEntity[]))]
  704. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.DefectMissedResponsibleEntity))]
  705. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.DefectResponsibleEntity[]))]
  706. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.DefectResponsibleEntity))]
  707. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.ProcedureEntity))]
  708. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.ProcedureFlowEntity[]))]
  709. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.ProcedureFlowEntity))]
  710. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.CheckProcedureUserResult))]
  711. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.CheckKilnCarResultEntity))]
  712. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.KilnCarInfo[]))]
  713. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.KilnCarInfo))]
  714. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.ProductionDataEntity[]))]
  715. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.SearchProgressRAPEntity))]
  716. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.CelsiusRecordEntity))]
  717. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.GroutingCountByUserEntity))]
  718. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.PMProgressRAPEntity))]
  719. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.WCFConstant.FormMode))]
  720. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.PMResultEntity))]
  721. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.SearchInProductionEntity))]
  722. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.SemiTestDetailEntity))]
  723. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.SemiTestDefectEntity[]))]
  724. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.SemiTestDefectEntity))]
  725. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.CheckCancelLoadCar))]
  726. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.SemiTestEntity[]))]
  727. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.SemiTestEntity))]
  728. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.SemiTestDetailEntity[]))]
  729. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(System.Exception))]
  730. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(int[]))]
  731. Dongke.IBOSS.PRD.WCF.DataModels.ServiceResultEntity ReSemiCheckBarcode(string barcode);
  732. [System.ServiceModel.OperationContractAttribute(Action="Dongke.IBOSS.PRD.WCF.Contracts/IPMModule/CancelSemiCheckBarcode", ReplyAction="Dongke.IBOSS.PRD.WCF.Contracts/IPMModule/CancelSemiCheckBarcodeResponse")]
  733. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.Basics.BaseResources.Constant.ServiceResultStatus))]
  734. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.PMModule.SearchFinishedProductEntity))]
  735. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.PMModule.GetBarCodeEntity))]
  736. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.PMModule.SearchProductionDataEntity))]
  737. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.InProductionEntity[]))]
  738. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.InProductionEntity))]
  739. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.InCheckedEntity))]
  740. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.RPT010401_SE))]
  741. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.FPM2110_SE))]
  742. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.FPM2112_SE))]
  743. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.SemiCheckEntity))]
  744. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.SemiCheckDefectEntity[]))]
  745. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.SemiCheckDefectEntity))]
  746. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.SemiCheckResponsibleEntity[]))]
  747. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.SemiCheckResponsibleEntity))]
  748. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.SemiCheckEntity[]))]
  749. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.OrderEntity))]
  750. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.FPM0101_SE))]
  751. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.GroutingDailyEntity))]
  752. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.GroutingDailyEntity[]))]
  753. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.GroutingDailyDetailEntity[]))]
  754. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.GroutingDailyDetailEntity))]
  755. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.ScrapProductEntity))]
  756. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.ResponProcedureEntity))]
  757. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.ScrapResponsibleEntity[]))]
  758. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.ScrapResponsibleEntity))]
  759. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.ProductionDataEntity))]
  760. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.ProductionProcedureListEntity[]))]
  761. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.ProductionProcedureListEntity))]
  762. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.ProductionDefectEntity[]))]
  763. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.ProductionDefectEntity))]
  764. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.DefectImageEntity[]))]
  765. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.DefectImageEntity))]
  766. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.DefectMissedResponsibleEntity[]))]
  767. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.DefectMissedResponsibleEntity))]
  768. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.DefectResponsibleEntity[]))]
  769. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.DefectResponsibleEntity))]
  770. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.ProcedureEntity))]
  771. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.ProcedureFlowEntity[]))]
  772. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.ProcedureFlowEntity))]
  773. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.CheckProcedureUserResult))]
  774. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.CheckKilnCarResultEntity))]
  775. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.KilnCarInfo[]))]
  776. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.KilnCarInfo))]
  777. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.ProductionDataEntity[]))]
  778. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.SearchProgressRAPEntity))]
  779. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.CelsiusRecordEntity))]
  780. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.GroutingCountByUserEntity))]
  781. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.PMProgressRAPEntity))]
  782. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.WCFConstant.FormMode))]
  783. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.PMResultEntity))]
  784. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.SearchInProductionEntity))]
  785. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.SemiTestDetailEntity))]
  786. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.SemiTestDefectEntity[]))]
  787. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.SemiTestDefectEntity))]
  788. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.CheckCancelLoadCar))]
  789. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.SemiTestEntity[]))]
  790. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.SemiTestEntity))]
  791. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.SemiTestDetailEntity[]))]
  792. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(System.Exception))]
  793. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(int[]))]
  794. Dongke.IBOSS.PRD.WCF.DataModels.ServiceResultEntity CancelSemiCheckBarcode(string barcode);
  795. [System.ServiceModel.OperationContractAttribute(Action="Dongke.IBOSS.PRD.WCF.Contracts/IPMModule/BarcodeAllowCancel", ReplyAction="Dongke.IBOSS.PRD.WCF.Contracts/IPMModule/BarcodeAllowCancelResponse")]
  796. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.Basics.BaseResources.Constant.ServiceResultStatus))]
  797. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.PMModule.SearchFinishedProductEntity))]
  798. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.PMModule.GetBarCodeEntity))]
  799. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.PMModule.SearchProductionDataEntity))]
  800. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.InProductionEntity[]))]
  801. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.InProductionEntity))]
  802. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.InCheckedEntity))]
  803. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.RPT010401_SE))]
  804. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.FPM2110_SE))]
  805. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.FPM2112_SE))]
  806. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.SemiCheckEntity))]
  807. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.SemiCheckDefectEntity[]))]
  808. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.SemiCheckDefectEntity))]
  809. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.SemiCheckResponsibleEntity[]))]
  810. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.SemiCheckResponsibleEntity))]
  811. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.SemiCheckEntity[]))]
  812. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.OrderEntity))]
  813. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.FPM0101_SE))]
  814. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.GroutingDailyEntity))]
  815. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.GroutingDailyEntity[]))]
  816. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.GroutingDailyDetailEntity[]))]
  817. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.GroutingDailyDetailEntity))]
  818. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.ScrapProductEntity))]
  819. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.ResponProcedureEntity))]
  820. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.ScrapResponsibleEntity[]))]
  821. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.ScrapResponsibleEntity))]
  822. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.ProductionDataEntity))]
  823. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.ProductionProcedureListEntity[]))]
  824. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.ProductionProcedureListEntity))]
  825. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.ProductionDefectEntity[]))]
  826. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.ProductionDefectEntity))]
  827. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.DefectImageEntity[]))]
  828. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.DefectImageEntity))]
  829. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.DefectMissedResponsibleEntity[]))]
  830. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.DefectMissedResponsibleEntity))]
  831. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.DefectResponsibleEntity[]))]
  832. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.DefectResponsibleEntity))]
  833. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.ProcedureEntity))]
  834. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.ProcedureFlowEntity[]))]
  835. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.ProcedureFlowEntity))]
  836. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.CheckProcedureUserResult))]
  837. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.CheckKilnCarResultEntity))]
  838. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.KilnCarInfo[]))]
  839. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.KilnCarInfo))]
  840. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.ProductionDataEntity[]))]
  841. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.SearchProgressRAPEntity))]
  842. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.CelsiusRecordEntity))]
  843. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.GroutingCountByUserEntity))]
  844. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.PMProgressRAPEntity))]
  845. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.WCFConstant.FormMode))]
  846. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.PMResultEntity))]
  847. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.SearchInProductionEntity))]
  848. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.SemiTestDetailEntity))]
  849. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.SemiTestDefectEntity[]))]
  850. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.SemiTestDefectEntity))]
  851. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.CheckCancelLoadCar))]
  852. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.SemiTestEntity[]))]
  853. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.SemiTestEntity))]
  854. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.SemiTestDetailEntity[]))]
  855. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(System.Exception))]
  856. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(int[]))]
  857. Dongke.IBOSS.PRD.WCF.DataModels.ServiceResultEntity BarcodeAllowCancel(System.DateTime orgTime, int days, string settingCode);
  858. [System.ServiceModel.OperationContractAttribute(Action="Dongke.IBOSS.PRD.WCF.Contracts/IPMModule/SaveOrder", ReplyAction="Dongke.IBOSS.PRD.WCF.Contracts/IPMModule/SaveOrderResponse")]
  859. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.Basics.BaseResources.Constant.ServiceResultStatus))]
  860. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.PMModule.SearchFinishedProductEntity))]
  861. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.PMModule.GetBarCodeEntity))]
  862. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.PMModule.SearchProductionDataEntity))]
  863. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.InProductionEntity[]))]
  864. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.InProductionEntity))]
  865. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.InCheckedEntity))]
  866. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.RPT010401_SE))]
  867. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.FPM2110_SE))]
  868. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.FPM2112_SE))]
  869. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.SemiCheckEntity))]
  870. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.SemiCheckDefectEntity[]))]
  871. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.SemiCheckDefectEntity))]
  872. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.SemiCheckResponsibleEntity[]))]
  873. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.SemiCheckResponsibleEntity))]
  874. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.SemiCheckEntity[]))]
  875. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.OrderEntity))]
  876. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.FPM0101_SE))]
  877. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.GroutingDailyEntity))]
  878. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.GroutingDailyEntity[]))]
  879. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.GroutingDailyDetailEntity[]))]
  880. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.GroutingDailyDetailEntity))]
  881. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.ScrapProductEntity))]
  882. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.ResponProcedureEntity))]
  883. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.ScrapResponsibleEntity[]))]
  884. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.ScrapResponsibleEntity))]
  885. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.ProductionDataEntity))]
  886. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.ProductionProcedureListEntity[]))]
  887. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.ProductionProcedureListEntity))]
  888. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.ProductionDefectEntity[]))]
  889. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.ProductionDefectEntity))]
  890. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.DefectImageEntity[]))]
  891. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.DefectImageEntity))]
  892. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.DefectMissedResponsibleEntity[]))]
  893. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.DefectMissedResponsibleEntity))]
  894. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.DefectResponsibleEntity[]))]
  895. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.DefectResponsibleEntity))]
  896. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.ProcedureEntity))]
  897. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.ProcedureFlowEntity[]))]
  898. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.ProcedureFlowEntity))]
  899. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.CheckProcedureUserResult))]
  900. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.CheckKilnCarResultEntity))]
  901. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.KilnCarInfo[]))]
  902. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.KilnCarInfo))]
  903. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.ProductionDataEntity[]))]
  904. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.SearchProgressRAPEntity))]
  905. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.CelsiusRecordEntity))]
  906. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.GroutingCountByUserEntity))]
  907. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.PMProgressRAPEntity))]
  908. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.WCFConstant.FormMode))]
  909. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.PMResultEntity))]
  910. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.SearchInProductionEntity))]
  911. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.SemiTestDetailEntity))]
  912. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.SemiTestDefectEntity[]))]
  913. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.SemiTestDefectEntity))]
  914. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.CheckCancelLoadCar))]
  915. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.SemiTestEntity[]))]
  916. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.SemiTestEntity))]
  917. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.SemiTestDetailEntity[]))]
  918. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(System.Exception))]
  919. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(int[]))]
  920. Dongke.IBOSS.PRD.WCF.DataModels.ServiceResultEntity SaveOrder(Dongke.IBOSS.PRD.WCF.DataModels.OrderEntity order);
  921. [System.ServiceModel.OperationContractAttribute(Action="Dongke.IBOSS.PRD.WCF.Contracts/IPMModule/ChangeOrderFlag", ReplyAction="Dongke.IBOSS.PRD.WCF.Contracts/IPMModule/ChangeOrderFlagResponse")]
  922. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.Basics.BaseResources.Constant.ServiceResultStatus))]
  923. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.PMModule.SearchFinishedProductEntity))]
  924. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.PMModule.GetBarCodeEntity))]
  925. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.PMModule.SearchProductionDataEntity))]
  926. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.InProductionEntity[]))]
  927. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.InProductionEntity))]
  928. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.InCheckedEntity))]
  929. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.RPT010401_SE))]
  930. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.FPM2110_SE))]
  931. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.FPM2112_SE))]
  932. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.SemiCheckEntity))]
  933. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.SemiCheckDefectEntity[]))]
  934. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.SemiCheckDefectEntity))]
  935. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.SemiCheckResponsibleEntity[]))]
  936. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.SemiCheckResponsibleEntity))]
  937. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.SemiCheckEntity[]))]
  938. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.OrderEntity))]
  939. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.FPM0101_SE))]
  940. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.GroutingDailyEntity))]
  941. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.GroutingDailyEntity[]))]
  942. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.GroutingDailyDetailEntity[]))]
  943. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.GroutingDailyDetailEntity))]
  944. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.ScrapProductEntity))]
  945. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.ResponProcedureEntity))]
  946. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.ScrapResponsibleEntity[]))]
  947. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.ScrapResponsibleEntity))]
  948. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.ProductionDataEntity))]
  949. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.ProductionProcedureListEntity[]))]
  950. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.ProductionProcedureListEntity))]
  951. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.ProductionDefectEntity[]))]
  952. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.ProductionDefectEntity))]
  953. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.DefectImageEntity[]))]
  954. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.DefectImageEntity))]
  955. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.DefectMissedResponsibleEntity[]))]
  956. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.DefectMissedResponsibleEntity))]
  957. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.DefectResponsibleEntity[]))]
  958. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.DefectResponsibleEntity))]
  959. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.ProcedureEntity))]
  960. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.ProcedureFlowEntity[]))]
  961. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.ProcedureFlowEntity))]
  962. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.CheckProcedureUserResult))]
  963. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.CheckKilnCarResultEntity))]
  964. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.KilnCarInfo[]))]
  965. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.KilnCarInfo))]
  966. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.ProductionDataEntity[]))]
  967. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.SearchProgressRAPEntity))]
  968. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.CelsiusRecordEntity))]
  969. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.GroutingCountByUserEntity))]
  970. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.PMProgressRAPEntity))]
  971. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.WCFConstant.FormMode))]
  972. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.PMResultEntity))]
  973. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.SearchInProductionEntity))]
  974. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.SemiTestDetailEntity))]
  975. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.SemiTestDefectEntity[]))]
  976. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.SemiTestDefectEntity))]
  977. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.CheckCancelLoadCar))]
  978. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.SemiTestEntity[]))]
  979. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.SemiTestEntity))]
  980. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.SemiTestDetailEntity[]))]
  981. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(System.Exception))]
  982. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(int[]))]
  983. Dongke.IBOSS.PRD.WCF.DataModels.ServiceResultEntity ChangeOrderFlag(Dongke.IBOSS.PRD.WCF.DataModels.OrderEntity order);
  984. [System.ServiceModel.OperationContractAttribute(Action="Dongke.IBOSS.PRD.WCF.Contracts/IPMModule/GetOrderList", ReplyAction="Dongke.IBOSS.PRD.WCF.Contracts/IPMModule/GetOrderListResponse")]
  985. System.Data.DataSet GetOrderList(Dongke.IBOSS.PRD.WCF.DataModels.OrderEntity order);
  986. [System.ServiceModel.OperationContractAttribute(Action="Dongke.IBOSS.PRD.WCF.Contracts/IPMModule/GetFinishedHandover", ReplyAction="Dongke.IBOSS.PRD.WCF.Contracts/IPMModule/GetFinishedHandoverResponse")]
  987. System.Data.DataSet GetFinishedHandover(Dongke.IBOSS.PRD.WCF.DataModels.PMModule.SearchFinishedProductEntity entity);
  988. [System.ServiceModel.OperationContractAttribute(Action="Dongke.IBOSS.PRD.WCF.Contracts/IPMModule/FinishedHandoverBarcode", ReplyAction="Dongke.IBOSS.PRD.WCF.Contracts/IPMModule/FinishedHandoverBarcodeResponse")]
  989. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.Basics.BaseResources.Constant.ServiceResultStatus))]
  990. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.PMModule.SearchFinishedProductEntity))]
  991. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.PMModule.GetBarCodeEntity))]
  992. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.PMModule.SearchProductionDataEntity))]
  993. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.InProductionEntity[]))]
  994. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.InProductionEntity))]
  995. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.InCheckedEntity))]
  996. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.RPT010401_SE))]
  997. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.FPM2110_SE))]
  998. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.FPM2112_SE))]
  999. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.SemiCheckEntity))]
  1000. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.SemiCheckDefectEntity[]))]
  1001. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.SemiCheckDefectEntity))]
  1002. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.SemiCheckResponsibleEntity[]))]
  1003. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.SemiCheckResponsibleEntity))]
  1004. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.SemiCheckEntity[]))]
  1005. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.OrderEntity))]
  1006. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.FPM0101_SE))]
  1007. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.GroutingDailyEntity))]
  1008. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.GroutingDailyEntity[]))]
  1009. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.GroutingDailyDetailEntity[]))]
  1010. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.GroutingDailyDetailEntity))]
  1011. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.ScrapProductEntity))]
  1012. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.ResponProcedureEntity))]
  1013. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.ScrapResponsibleEntity[]))]
  1014. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.ScrapResponsibleEntity))]
  1015. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.ProductionDataEntity))]
  1016. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.ProductionProcedureListEntity[]))]
  1017. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.ProductionProcedureListEntity))]
  1018. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.ProductionDefectEntity[]))]
  1019. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.ProductionDefectEntity))]
  1020. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.DefectImageEntity[]))]
  1021. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.DefectImageEntity))]
  1022. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.DefectMissedResponsibleEntity[]))]
  1023. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.DefectMissedResponsibleEntity))]
  1024. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.DefectResponsibleEntity[]))]
  1025. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.DefectResponsibleEntity))]
  1026. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.ProcedureEntity))]
  1027. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.ProcedureFlowEntity[]))]
  1028. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.ProcedureFlowEntity))]
  1029. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.CheckProcedureUserResult))]
  1030. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.CheckKilnCarResultEntity))]
  1031. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.KilnCarInfo[]))]
  1032. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.KilnCarInfo))]
  1033. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.ProductionDataEntity[]))]
  1034. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.SearchProgressRAPEntity))]
  1035. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.CelsiusRecordEntity))]
  1036. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.GroutingCountByUserEntity))]
  1037. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.PMProgressRAPEntity))]
  1038. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.WCFConstant.FormMode))]
  1039. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.PMResultEntity))]
  1040. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.SearchInProductionEntity))]
  1041. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.SemiTestDetailEntity))]
  1042. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.SemiTestDefectEntity[]))]
  1043. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.SemiTestDefectEntity))]
  1044. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.CheckCancelLoadCar))]
  1045. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.SemiTestEntity[]))]
  1046. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.SemiTestEntity))]
  1047. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.SemiTestDetailEntity[]))]
  1048. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(System.Exception))]
  1049. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(int[]))]
  1050. Dongke.IBOSS.PRD.WCF.DataModels.ServiceResultEntity FinishedHandoverBarcode(string barcode);
  1051. [System.ServiceModel.OperationContractAttribute(Action="Dongke.IBOSS.PRD.WCF.Contracts/IPMModule/SaveFinishedHandover", ReplyAction="Dongke.IBOSS.PRD.WCF.Contracts/IPMModule/SaveFinishedHandoverResponse")]
  1052. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.Basics.BaseResources.Constant.ServiceResultStatus))]
  1053. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.PMModule.SearchFinishedProductEntity))]
  1054. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.PMModule.GetBarCodeEntity))]
  1055. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.PMModule.SearchProductionDataEntity))]
  1056. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.InProductionEntity[]))]
  1057. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.InProductionEntity))]
  1058. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.InCheckedEntity))]
  1059. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.RPT010401_SE))]
  1060. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.FPM2110_SE))]
  1061. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.FPM2112_SE))]
  1062. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.SemiCheckEntity))]
  1063. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.SemiCheckDefectEntity[]))]
  1064. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.SemiCheckDefectEntity))]
  1065. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.SemiCheckResponsibleEntity[]))]
  1066. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.SemiCheckResponsibleEntity))]
  1067. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.SemiCheckEntity[]))]
  1068. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.OrderEntity))]
  1069. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.FPM0101_SE))]
  1070. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.GroutingDailyEntity))]
  1071. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.GroutingDailyEntity[]))]
  1072. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.GroutingDailyDetailEntity[]))]
  1073. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.GroutingDailyDetailEntity))]
  1074. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.ScrapProductEntity))]
  1075. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.ResponProcedureEntity))]
  1076. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.ScrapResponsibleEntity[]))]
  1077. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.ScrapResponsibleEntity))]
  1078. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.ProductionDataEntity))]
  1079. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.ProductionProcedureListEntity[]))]
  1080. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.ProductionProcedureListEntity))]
  1081. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.ProductionDefectEntity[]))]
  1082. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.ProductionDefectEntity))]
  1083. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.DefectImageEntity[]))]
  1084. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.DefectImageEntity))]
  1085. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.DefectMissedResponsibleEntity[]))]
  1086. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.DefectMissedResponsibleEntity))]
  1087. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.DefectResponsibleEntity[]))]
  1088. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.DefectResponsibleEntity))]
  1089. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.ProcedureEntity))]
  1090. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.ProcedureFlowEntity[]))]
  1091. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.ProcedureFlowEntity))]
  1092. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.CheckProcedureUserResult))]
  1093. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.CheckKilnCarResultEntity))]
  1094. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.KilnCarInfo[]))]
  1095. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.KilnCarInfo))]
  1096. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.ProductionDataEntity[]))]
  1097. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.SearchProgressRAPEntity))]
  1098. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.CelsiusRecordEntity))]
  1099. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.GroutingCountByUserEntity))]
  1100. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.PMProgressRAPEntity))]
  1101. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.WCFConstant.FormMode))]
  1102. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.PMResultEntity))]
  1103. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.SearchInProductionEntity))]
  1104. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.SemiTestDetailEntity))]
  1105. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.SemiTestDefectEntity[]))]
  1106. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.SemiTestDefectEntity))]
  1107. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.CheckCancelLoadCar))]
  1108. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.SemiTestEntity[]))]
  1109. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.SemiTestEntity))]
  1110. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.SemiTestDetailEntity[]))]
  1111. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(System.Exception))]
  1112. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(int[]))]
  1113. Dongke.IBOSS.PRD.WCF.DataModels.ServiceResultEntity SaveFinishedHandover(int orderid, System.Data.DataTable dtData);
  1114. [System.ServiceModel.OperationContractAttribute(Action="Dongke.IBOSS.PRD.WCF.Contracts/IPMModule/CancelFinishedHandoverBarcode", ReplyAction="Dongke.IBOSS.PRD.WCF.Contracts/IPMModule/CancelFinishedHandoverBarcodeResponse")]
  1115. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.Basics.BaseResources.Constant.ServiceResultStatus))]
  1116. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.PMModule.SearchFinishedProductEntity))]
  1117. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.PMModule.GetBarCodeEntity))]
  1118. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.PMModule.SearchProductionDataEntity))]
  1119. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.InProductionEntity[]))]
  1120. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.InProductionEntity))]
  1121. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.InCheckedEntity))]
  1122. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.RPT010401_SE))]
  1123. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.FPM2110_SE))]
  1124. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.FPM2112_SE))]
  1125. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.SemiCheckEntity))]
  1126. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.SemiCheckDefectEntity[]))]
  1127. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.SemiCheckDefectEntity))]
  1128. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.SemiCheckResponsibleEntity[]))]
  1129. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.SemiCheckResponsibleEntity))]
  1130. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.SemiCheckEntity[]))]
  1131. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.OrderEntity))]
  1132. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.FPM0101_SE))]
  1133. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.GroutingDailyEntity))]
  1134. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.GroutingDailyEntity[]))]
  1135. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.GroutingDailyDetailEntity[]))]
  1136. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.GroutingDailyDetailEntity))]
  1137. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.ScrapProductEntity))]
  1138. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.ResponProcedureEntity))]
  1139. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.ScrapResponsibleEntity[]))]
  1140. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.ScrapResponsibleEntity))]
  1141. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.ProductionDataEntity))]
  1142. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.ProductionProcedureListEntity[]))]
  1143. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.ProductionProcedureListEntity))]
  1144. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.ProductionDefectEntity[]))]
  1145. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.ProductionDefectEntity))]
  1146. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.DefectImageEntity[]))]
  1147. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.DefectImageEntity))]
  1148. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.DefectMissedResponsibleEntity[]))]
  1149. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.DefectMissedResponsibleEntity))]
  1150. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.DefectResponsibleEntity[]))]
  1151. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.DefectResponsibleEntity))]
  1152. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.ProcedureEntity))]
  1153. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.ProcedureFlowEntity[]))]
  1154. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.ProcedureFlowEntity))]
  1155. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.CheckProcedureUserResult))]
  1156. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.CheckKilnCarResultEntity))]
  1157. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.KilnCarInfo[]))]
  1158. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.KilnCarInfo))]
  1159. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.ProductionDataEntity[]))]
  1160. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.SearchProgressRAPEntity))]
  1161. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.CelsiusRecordEntity))]
  1162. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.GroutingCountByUserEntity))]
  1163. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.PMProgressRAPEntity))]
  1164. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.WCFConstant.FormMode))]
  1165. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.PMResultEntity))]
  1166. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.SearchInProductionEntity))]
  1167. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.SemiTestDetailEntity))]
  1168. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.SemiTestDefectEntity[]))]
  1169. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.SemiTestDefectEntity))]
  1170. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.CheckCancelLoadCar))]
  1171. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.SemiTestEntity[]))]
  1172. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.SemiTestEntity))]
  1173. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.SemiTestDetailEntity[]))]
  1174. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(System.Exception))]
  1175. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(int[]))]
  1176. Dongke.IBOSS.PRD.WCF.DataModels.ServiceResultEntity CancelFinishedHandoverBarcode(string barcode);
  1177. [System.ServiceModel.OperationContractAttribute(Action="Dongke.IBOSS.PRD.WCF.Contracts/IPMModule/SaveCancelFinishedHandoverByBarcode", ReplyAction="Dongke.IBOSS.PRD.WCF.Contracts/IPMModule/SaveCancelFinishedHandoverByBarcodeRespo" +
  1178. "nse")]
  1179. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.Basics.BaseResources.Constant.ServiceResultStatus))]
  1180. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.PMModule.SearchFinishedProductEntity))]
  1181. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.PMModule.GetBarCodeEntity))]
  1182. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.PMModule.SearchProductionDataEntity))]
  1183. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.InProductionEntity[]))]
  1184. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.InProductionEntity))]
  1185. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.InCheckedEntity))]
  1186. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.RPT010401_SE))]
  1187. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.FPM2110_SE))]
  1188. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.FPM2112_SE))]
  1189. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.SemiCheckEntity))]
  1190. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.SemiCheckDefectEntity[]))]
  1191. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.SemiCheckDefectEntity))]
  1192. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.SemiCheckResponsibleEntity[]))]
  1193. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.SemiCheckResponsibleEntity))]
  1194. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.SemiCheckEntity[]))]
  1195. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.OrderEntity))]
  1196. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.FPM0101_SE))]
  1197. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.GroutingDailyEntity))]
  1198. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.GroutingDailyEntity[]))]
  1199. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.GroutingDailyDetailEntity[]))]
  1200. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.GroutingDailyDetailEntity))]
  1201. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.ScrapProductEntity))]
  1202. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.ResponProcedureEntity))]
  1203. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.ScrapResponsibleEntity[]))]
  1204. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.ScrapResponsibleEntity))]
  1205. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.ProductionDataEntity))]
  1206. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.ProductionProcedureListEntity[]))]
  1207. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.ProductionProcedureListEntity))]
  1208. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.ProductionDefectEntity[]))]
  1209. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.ProductionDefectEntity))]
  1210. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.DefectImageEntity[]))]
  1211. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.DefectImageEntity))]
  1212. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.DefectMissedResponsibleEntity[]))]
  1213. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.DefectMissedResponsibleEntity))]
  1214. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.DefectResponsibleEntity[]))]
  1215. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.DefectResponsibleEntity))]
  1216. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.ProcedureEntity))]
  1217. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.ProcedureFlowEntity[]))]
  1218. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.ProcedureFlowEntity))]
  1219. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.CheckProcedureUserResult))]
  1220. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.CheckKilnCarResultEntity))]
  1221. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.KilnCarInfo[]))]
  1222. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.KilnCarInfo))]
  1223. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.ProductionDataEntity[]))]
  1224. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.SearchProgressRAPEntity))]
  1225. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.CelsiusRecordEntity))]
  1226. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.GroutingCountByUserEntity))]
  1227. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.PMProgressRAPEntity))]
  1228. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.WCFConstant.FormMode))]
  1229. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.PMResultEntity))]
  1230. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.SearchInProductionEntity))]
  1231. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.SemiTestDetailEntity))]
  1232. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.SemiTestDefectEntity[]))]
  1233. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.SemiTestDefectEntity))]
  1234. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.CheckCancelLoadCar))]
  1235. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.SemiTestEntity[]))]
  1236. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.SemiTestEntity))]
  1237. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.SemiTestDetailEntity[]))]
  1238. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(System.Exception))]
  1239. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(int[]))]
  1240. Dongke.IBOSS.PRD.WCF.DataModels.ServiceResultEntity SaveCancelFinishedHandoverByBarcode(string barcode);
  1241. [System.ServiceModel.OperationContractAttribute(Action="Dongke.IBOSS.PRD.WCF.Contracts/IPMModule/SaveChangeFinishedHandoverByBarcode", ReplyAction="Dongke.IBOSS.PRD.WCF.Contracts/IPMModule/SaveChangeFinishedHandoverByBarcodeRespo" +
  1242. "nse")]
  1243. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.Basics.BaseResources.Constant.ServiceResultStatus))]
  1244. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.PMModule.SearchFinishedProductEntity))]
  1245. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.PMModule.GetBarCodeEntity))]
  1246. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.PMModule.SearchProductionDataEntity))]
  1247. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.InProductionEntity[]))]
  1248. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.InProductionEntity))]
  1249. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.InCheckedEntity))]
  1250. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.RPT010401_SE))]
  1251. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.FPM2110_SE))]
  1252. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.FPM2112_SE))]
  1253. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.SemiCheckEntity))]
  1254. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.SemiCheckDefectEntity[]))]
  1255. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.SemiCheckDefectEntity))]
  1256. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.SemiCheckResponsibleEntity[]))]
  1257. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.SemiCheckResponsibleEntity))]
  1258. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.SemiCheckEntity[]))]
  1259. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.OrderEntity))]
  1260. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.FPM0101_SE))]
  1261. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.GroutingDailyEntity))]
  1262. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.GroutingDailyEntity[]))]
  1263. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.GroutingDailyDetailEntity[]))]
  1264. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.GroutingDailyDetailEntity))]
  1265. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.ScrapProductEntity))]
  1266. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.ResponProcedureEntity))]
  1267. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.ScrapResponsibleEntity[]))]
  1268. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.ScrapResponsibleEntity))]
  1269. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.ProductionDataEntity))]
  1270. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.ProductionProcedureListEntity[]))]
  1271. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.ProductionProcedureListEntity))]
  1272. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.ProductionDefectEntity[]))]
  1273. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.ProductionDefectEntity))]
  1274. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.DefectImageEntity[]))]
  1275. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.DefectImageEntity))]
  1276. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.DefectMissedResponsibleEntity[]))]
  1277. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.DefectMissedResponsibleEntity))]
  1278. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.DefectResponsibleEntity[]))]
  1279. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.DefectResponsibleEntity))]
  1280. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.ProcedureEntity))]
  1281. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.ProcedureFlowEntity[]))]
  1282. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.ProcedureFlowEntity))]
  1283. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.CheckProcedureUserResult))]
  1284. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.CheckKilnCarResultEntity))]
  1285. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.KilnCarInfo[]))]
  1286. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.KilnCarInfo))]
  1287. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.ProductionDataEntity[]))]
  1288. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.SearchProgressRAPEntity))]
  1289. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.CelsiusRecordEntity))]
  1290. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.GroutingCountByUserEntity))]
  1291. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.PMProgressRAPEntity))]
  1292. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.WCFConstant.FormMode))]
  1293. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.PMResultEntity))]
  1294. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.SearchInProductionEntity))]
  1295. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.SemiTestDetailEntity))]
  1296. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.SemiTestDefectEntity[]))]
  1297. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.SemiTestDefectEntity))]
  1298. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.CheckCancelLoadCar))]
  1299. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.SemiTestEntity[]))]
  1300. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.SemiTestEntity))]
  1301. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.SemiTestDetailEntity[]))]
  1302. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(System.Exception))]
  1303. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(int[]))]
  1304. Dongke.IBOSS.PRD.WCF.DataModels.ServiceResultEntity SaveChangeFinishedHandoverByBarcode(string barcode, int orderid);
  1305. [System.ServiceModel.OperationContractAttribute(Action="Dongke.IBOSS.PRD.WCF.Contracts/IPMModule/CheckRecydingFlagBarcode", ReplyAction="Dongke.IBOSS.PRD.WCF.Contracts/IPMModule/CheckRecydingFlagBarcodeResponse")]
  1306. System.Data.DataSet CheckRecydingFlagBarcode(int procedureid, string barcode);
  1307. [System.ServiceModel.OperationContractAttribute(Action="Dongke.IBOSS.PRD.WCF.Contracts/IPMModule/GetRecyclingflagByBarcode", ReplyAction="Dongke.IBOSS.PRD.WCF.Contracts/IPMModule/GetRecyclingflagByBarcodeResponse")]
  1308. int GetRecyclingflagByBarcode(string barcode);
  1309. [System.ServiceModel.OperationContractAttribute(Action="Dongke.IBOSS.PRD.WCF.Contracts/IPMModule/GetFPM0101SData", ReplyAction="Dongke.IBOSS.PRD.WCF.Contracts/IPMModule/GetFPM0101SDataResponse")]
  1310. System.Data.DataSet GetFPM0101SData(Dongke.IBOSS.PRD.WCF.DataModels.FPM0101_SE se);
  1311. [System.ServiceModel.OperationContractAttribute(Action="Dongke.IBOSS.PRD.WCF.Contracts/IPMModule/GetGroutingDaily", ReplyAction="Dongke.IBOSS.PRD.WCF.Contracts/IPMModule/GetGroutingDailyResponse")]
  1312. System.Data.DataSet GetGroutingDaily(Dongke.IBOSS.PRD.WCF.DataModels.GroutingDailyEntity groutingDailyEntity);
  1313. [System.ServiceModel.OperationContractAttribute(Action="Dongke.IBOSS.PRD.WCF.Contracts/IPMModule/GetGroutingDailyDetailByMainId", ReplyAction="Dongke.IBOSS.PRD.WCF.Contracts/IPMModule/GetGroutingDailyDetailByMainIdResponse")]
  1314. System.Data.DataSet GetGroutingDailyDetailByMainId(int DailyMainId);
  1315. [System.ServiceModel.OperationContractAttribute(Action="Dongke.IBOSS.PRD.WCF.Contracts/IPMModule/AddGroutingDaily", ReplyAction="Dongke.IBOSS.PRD.WCF.Contracts/IPMModule/AddGroutingDailyResponse")]
  1316. int AddGroutingDaily(Dongke.IBOSS.PRD.WCF.DataModels.GroutingDailyEntity[] groutingDailyEntityList, Dongke.IBOSS.PRD.WCF.DataModels.GroutingDailyDetailEntity[] dailyDetailEntityList);
  1317. [System.ServiceModel.OperationContractAttribute(Action="Dongke.IBOSS.PRD.WCF.Contracts/IPMModule/UpdateGroutingDaily", ReplyAction="Dongke.IBOSS.PRD.WCF.Contracts/IPMModule/UpdateGroutingDailyResponse")]
  1318. int UpdateGroutingDaily(Dongke.IBOSS.PRD.WCF.DataModels.GroutingDailyDetailEntity[] dailyDetailList);
  1319. [System.ServiceModel.OperationContractAttribute(Action="Dongke.IBOSS.PRD.WCF.Contracts/IPMModule/GetGroutingProductByDetailId", ReplyAction="Dongke.IBOSS.PRD.WCF.Contracts/IPMModule/GetGroutingProductByDetailIdResponse")]
  1320. string GetGroutingProductByDetailId(int DailyDetailId);
  1321. [System.ServiceModel.OperationContractAttribute(Action="Dongke.IBOSS.PRD.WCF.Contracts/IPMModule/UpdateBarCode", ReplyAction="Dongke.IBOSS.PRD.WCF.Contracts/IPMModule/UpdateBarCodeResponse")]
  1322. int UpdateBarCode(string barCode, string barCodeUpdate);
  1323. [System.ServiceModel.OperationContractAttribute(Action="Dongke.IBOSS.PRD.WCF.Contracts/IPMModule/GetCanManyTimes", ReplyAction="Dongke.IBOSS.PRD.WCF.Contracts/IPMModule/GetCanManyTimesResponse")]
  1324. int GetCanManyTimes(int GroutingLineID, System.DateTime GroutingDate);
  1325. [System.ServiceModel.OperationContractAttribute(Action="Dongke.IBOSS.PRD.WCF.Contracts/IPMModule/GetGDailyDetailLeftBarCode", ReplyAction="Dongke.IBOSS.PRD.WCF.Contracts/IPMModule/GetGDailyDetailLeftBarCodeResponse")]
  1326. System.Data.DataSet GetGDailyDetailLeftBarCode(string GroutingLineIds, System.Nullable<System.DateTime> GroutingDateStart, System.Nullable<System.DateTime> GroutingDateEnd);
  1327. [System.ServiceModel.OperationContractAttribute(Action="Dongke.IBOSS.PRD.WCF.Contracts/IPMModule/AddBarCode", ReplyAction="Dongke.IBOSS.PRD.WCF.Contracts/IPMModule/AddBarCodeResponse")]
  1328. int AddBarCode(Dongke.IBOSS.PRD.WCF.DataModels.GroutingDailyDetailEntity[] dailyDetailList, string ScrapIds);
  1329. [System.ServiceModel.OperationContractAttribute(Action="Dongke.IBOSS.PRD.WCF.Contracts/IPMModule/BarCodesIsRepeat", ReplyAction="Dongke.IBOSS.PRD.WCF.Contracts/IPMModule/BarCodesIsRepeatResponse")]
  1330. string BarCodesIsRepeat(string BarCodes);
  1331. [System.ServiceModel.OperationContractAttribute(Action="Dongke.IBOSS.PRD.WCF.Contracts/IPMModule/GetMaxGroutingCountByMouldCode", ReplyAction="Dongke.IBOSS.PRD.WCF.Contracts/IPMModule/GetMaxGroutingCountByMouldCodeResponse")]
  1332. int GetMaxGroutingCountByMouldCode(string MouldCode, System.DateTime inTime);
  1333. [System.ServiceModel.OperationContractAttribute(Action="Dongke.IBOSS.PRD.WCF.Contracts/IPMModule/GetMouldCodeFromHistoryByTime", ReplyAction="Dongke.IBOSS.PRD.WCF.Contracts/IPMModule/GetMouldCodeFromHistoryByTimeResponse")]
  1334. string GetMouldCodeFromHistoryByTime(int GroutingLineDetailID, System.DateTime inTime);
  1335. [System.ServiceModel.OperationContractAttribute(Action="Dongke.IBOSS.PRD.WCF.Contracts/IPMModule/GetBarCode", ReplyAction="Dongke.IBOSS.PRD.WCF.Contracts/IPMModule/GetBarCodeResponse")]
  1336. System.Data.DataSet GetBarCode(Dongke.IBOSS.PRD.WCF.DataModels.PMModule.GetBarCodeEntity gbEntity);
  1337. [System.ServiceModel.OperationContractAttribute(Action="Dongke.IBOSS.PRD.WCF.Contracts/IPMModule/GetInProductionAndProductionData", ReplyAction="Dongke.IBOSS.PRD.WCF.Contracts/IPMModule/GetInProductionAndProductionDataResponse" +
  1338. "")]
  1339. System.Data.DataSet GetInProductionAndProductionData(string BarCode);
  1340. [System.ServiceModel.OperationContractAttribute(Action="Dongke.IBOSS.PRD.WCF.Contracts/IPMModule/AddScrapProduct", ReplyAction="Dongke.IBOSS.PRD.WCF.Contracts/IPMModule/AddScrapProductResponse")]
  1341. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.Basics.BaseResources.Constant.ServiceResultStatus))]
  1342. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.PMModule.SearchFinishedProductEntity))]
  1343. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.PMModule.GetBarCodeEntity))]
  1344. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.PMModule.SearchProductionDataEntity))]
  1345. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.InProductionEntity[]))]
  1346. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.InProductionEntity))]
  1347. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.InCheckedEntity))]
  1348. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.ServiceResultEntity))]
  1349. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.RPT010401_SE))]
  1350. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.FPM2110_SE))]
  1351. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.FPM2112_SE))]
  1352. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.SemiCheckEntity))]
  1353. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.SemiCheckDefectEntity[]))]
  1354. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.SemiCheckDefectEntity))]
  1355. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.SemiCheckResponsibleEntity[]))]
  1356. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.SemiCheckResponsibleEntity))]
  1357. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.SemiCheckEntity[]))]
  1358. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.OrderEntity))]
  1359. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.FPM0101_SE))]
  1360. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.GroutingDailyEntity))]
  1361. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.GroutingDailyEntity[]))]
  1362. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.GroutingDailyDetailEntity[]))]
  1363. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.GroutingDailyDetailEntity))]
  1364. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.ResponProcedureEntity))]
  1365. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.ScrapResponsibleEntity[]))]
  1366. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.ScrapResponsibleEntity))]
  1367. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.ProductionDataEntity))]
  1368. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.ProductionProcedureListEntity[]))]
  1369. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.ProductionProcedureListEntity))]
  1370. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.ProductionDefectEntity[]))]
  1371. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.ProductionDefectEntity))]
  1372. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.DefectImageEntity[]))]
  1373. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.DefectImageEntity))]
  1374. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.DefectMissedResponsibleEntity[]))]
  1375. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.DefectMissedResponsibleEntity))]
  1376. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.DefectResponsibleEntity[]))]
  1377. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.DefectResponsibleEntity))]
  1378. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.ProcedureEntity))]
  1379. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.ProcedureFlowEntity[]))]
  1380. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.ProcedureFlowEntity))]
  1381. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.CheckProcedureUserResult))]
  1382. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.CheckKilnCarResultEntity))]
  1383. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.KilnCarInfo[]))]
  1384. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.KilnCarInfo))]
  1385. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.ProductionDataEntity[]))]
  1386. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.SearchProgressRAPEntity))]
  1387. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.CelsiusRecordEntity))]
  1388. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.GroutingCountByUserEntity))]
  1389. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.PMProgressRAPEntity))]
  1390. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.WCFConstant.FormMode))]
  1391. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.PMResultEntity))]
  1392. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.SearchInProductionEntity))]
  1393. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.SemiTestDetailEntity))]
  1394. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.SemiTestDefectEntity[]))]
  1395. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.SemiTestDefectEntity))]
  1396. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.CheckCancelLoadCar))]
  1397. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.SemiTestEntity[]))]
  1398. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.SemiTestEntity))]
  1399. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.SemiTestDetailEntity[]))]
  1400. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(System.Exception))]
  1401. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(int[]))]
  1402. int AddScrapProduct(Dongke.IBOSS.PRD.WCF.DataModels.ScrapProductEntity SProductEntity, Dongke.IBOSS.PRD.WCF.DataModels.ResponProcedureEntity RProcedureEntity, Dongke.IBOSS.PRD.WCF.DataModels.ScrapResponsibleEntity[] SResponsibleList);
  1403. [System.ServiceModel.OperationContractAttribute(Action="Dongke.IBOSS.PRD.WCF.Contracts/IPMModule/OpenInProductionAndProductionData", ReplyAction="Dongke.IBOSS.PRD.WCF.Contracts/IPMModule/OpenInProductionAndProductionDataRespons" +
  1404. "e")]
  1405. void OpenInProductionAndProductionData(Dongke.IBOSS.PRD.WCF.DataModels.InProductionEntity inProduction, Dongke.IBOSS.PRD.WCF.DataModels.ProductionDataEntity productionData);
  1406. [System.ServiceModel.OperationContractAttribute(Action="Dongke.IBOSS.PRD.WCF.Contracts/IPMModule/GetScrapProduct", ReplyAction="Dongke.IBOSS.PRD.WCF.Contracts/IPMModule/GetScrapProductResponse")]
  1407. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.Basics.BaseResources.Constant.ServiceResultStatus))]
  1408. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.PMModule.SearchFinishedProductEntity))]
  1409. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.PMModule.GetBarCodeEntity))]
  1410. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.PMModule.SearchProductionDataEntity))]
  1411. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.InProductionEntity[]))]
  1412. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.InProductionEntity))]
  1413. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.InCheckedEntity))]
  1414. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.ServiceResultEntity))]
  1415. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.RPT010401_SE))]
  1416. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.FPM2110_SE))]
  1417. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.FPM2112_SE))]
  1418. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.SemiCheckEntity))]
  1419. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.SemiCheckDefectEntity[]))]
  1420. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.SemiCheckDefectEntity))]
  1421. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.SemiCheckResponsibleEntity[]))]
  1422. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.SemiCheckResponsibleEntity))]
  1423. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.SemiCheckEntity[]))]
  1424. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.OrderEntity))]
  1425. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.FPM0101_SE))]
  1426. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.GroutingDailyEntity))]
  1427. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.GroutingDailyEntity[]))]
  1428. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.GroutingDailyDetailEntity[]))]
  1429. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.GroutingDailyDetailEntity))]
  1430. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.ResponProcedureEntity))]
  1431. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.ScrapResponsibleEntity[]))]
  1432. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.ScrapResponsibleEntity))]
  1433. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.ProductionDataEntity))]
  1434. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.ProductionProcedureListEntity[]))]
  1435. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.ProductionProcedureListEntity))]
  1436. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.ProductionDefectEntity[]))]
  1437. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.ProductionDefectEntity))]
  1438. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.DefectImageEntity[]))]
  1439. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.DefectImageEntity))]
  1440. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.DefectMissedResponsibleEntity[]))]
  1441. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.DefectMissedResponsibleEntity))]
  1442. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.DefectResponsibleEntity[]))]
  1443. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.DefectResponsibleEntity))]
  1444. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.ProcedureEntity))]
  1445. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.ProcedureFlowEntity[]))]
  1446. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.ProcedureFlowEntity))]
  1447. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.CheckProcedureUserResult))]
  1448. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.CheckKilnCarResultEntity))]
  1449. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.KilnCarInfo[]))]
  1450. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.KilnCarInfo))]
  1451. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.ProductionDataEntity[]))]
  1452. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.SearchProgressRAPEntity))]
  1453. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.CelsiusRecordEntity))]
  1454. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.GroutingCountByUserEntity))]
  1455. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.PMProgressRAPEntity))]
  1456. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.WCFConstant.FormMode))]
  1457. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.PMResultEntity))]
  1458. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.SearchInProductionEntity))]
  1459. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.SemiTestDetailEntity))]
  1460. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.SemiTestDefectEntity[]))]
  1461. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.SemiTestDefectEntity))]
  1462. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.CheckCancelLoadCar))]
  1463. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.SemiTestEntity[]))]
  1464. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.SemiTestEntity))]
  1465. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.SemiTestDetailEntity[]))]
  1466. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(System.Exception))]
  1467. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(int[]))]
  1468. System.Data.DataSet GetScrapProduct(Dongke.IBOSS.PRD.WCF.DataModels.ScrapProductEntity selectProEntity);
  1469. [System.ServiceModel.OperationContractAttribute(Action="Dongke.IBOSS.PRD.WCF.Contracts/IPMModule/GetScrapResponsibleByResponProcedureID", ReplyAction="Dongke.IBOSS.PRD.WCF.Contracts/IPMModule/GetScrapResponsibleByResponProcedureIDRe" +
  1470. "sponse")]
  1471. System.Data.DataSet GetScrapResponsibleByResponProcedureID(int ResponProcedureId);
  1472. [System.ServiceModel.OperationContractAttribute(Action="Dongke.IBOSS.PRD.WCF.Contracts/IPMModule/GetScrapResponsibleBySPId", ReplyAction="Dongke.IBOSS.PRD.WCF.Contracts/IPMModule/GetScrapResponsibleBySPIdResponse")]
  1473. System.Data.DataSet GetScrapResponsibleBySPId(int SPId);
  1474. [System.ServiceModel.OperationContractAttribute(Action="Dongke.IBOSS.PRD.WCF.Contracts/IPMModule/UpdateScrapProduct", ReplyAction="Dongke.IBOSS.PRD.WCF.Contracts/IPMModule/UpdateScrapProductResponse")]
  1475. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.Basics.BaseResources.Constant.ServiceResultStatus))]
  1476. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.PMModule.SearchFinishedProductEntity))]
  1477. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.PMModule.GetBarCodeEntity))]
  1478. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.PMModule.SearchProductionDataEntity))]
  1479. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.InProductionEntity[]))]
  1480. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.InProductionEntity))]
  1481. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.InCheckedEntity))]
  1482. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.ServiceResultEntity))]
  1483. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.RPT010401_SE))]
  1484. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.FPM2110_SE))]
  1485. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.FPM2112_SE))]
  1486. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.SemiCheckEntity))]
  1487. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.SemiCheckDefectEntity[]))]
  1488. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.SemiCheckDefectEntity))]
  1489. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.SemiCheckResponsibleEntity[]))]
  1490. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.SemiCheckResponsibleEntity))]
  1491. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.SemiCheckEntity[]))]
  1492. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.OrderEntity))]
  1493. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.FPM0101_SE))]
  1494. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.GroutingDailyEntity))]
  1495. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.GroutingDailyEntity[]))]
  1496. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.GroutingDailyDetailEntity[]))]
  1497. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.GroutingDailyDetailEntity))]
  1498. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.ResponProcedureEntity))]
  1499. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.ScrapResponsibleEntity[]))]
  1500. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.ScrapResponsibleEntity))]
  1501. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.ProductionDataEntity))]
  1502. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.ProductionProcedureListEntity[]))]
  1503. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.ProductionProcedureListEntity))]
  1504. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.ProductionDefectEntity[]))]
  1505. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.ProductionDefectEntity))]
  1506. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.DefectImageEntity[]))]
  1507. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.DefectImageEntity))]
  1508. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.DefectMissedResponsibleEntity[]))]
  1509. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.DefectMissedResponsibleEntity))]
  1510. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.DefectResponsibleEntity[]))]
  1511. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.DefectResponsibleEntity))]
  1512. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.ProcedureEntity))]
  1513. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.ProcedureFlowEntity[]))]
  1514. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.ProcedureFlowEntity))]
  1515. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.CheckProcedureUserResult))]
  1516. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.CheckKilnCarResultEntity))]
  1517. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.KilnCarInfo[]))]
  1518. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.KilnCarInfo))]
  1519. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.ProductionDataEntity[]))]
  1520. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.SearchProgressRAPEntity))]
  1521. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.CelsiusRecordEntity))]
  1522. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.GroutingCountByUserEntity))]
  1523. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.PMProgressRAPEntity))]
  1524. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.WCFConstant.FormMode))]
  1525. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.PMResultEntity))]
  1526. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.SearchInProductionEntity))]
  1527. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.SemiTestDetailEntity))]
  1528. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.SemiTestDefectEntity[]))]
  1529. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.SemiTestDefectEntity))]
  1530. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.CheckCancelLoadCar))]
  1531. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.SemiTestEntity[]))]
  1532. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.SemiTestEntity))]
  1533. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.SemiTestDetailEntity[]))]
  1534. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(System.Exception))]
  1535. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(int[]))]
  1536. int UpdateScrapProduct(Dongke.IBOSS.PRD.WCF.DataModels.ScrapProductEntity UpdateSProductEntity, Dongke.IBOSS.PRD.WCF.DataModels.ResponProcedureEntity UpdateRProcedureEntity, Dongke.IBOSS.PRD.WCF.DataModels.ScrapResponsibleEntity[] UpdateSResponsibleList, Dongke.IBOSS.PRD.WCF.DataModels.ScrapResponsibleEntity[] YSResponsibleList);
  1537. [System.ServiceModel.OperationContractAttribute(Action="Dongke.IBOSS.PRD.WCF.Contracts/IPMModule/GetResponProcedureBySPId", ReplyAction="Dongke.IBOSS.PRD.WCF.Contracts/IPMModule/GetResponProcedureBySPIdResponse")]
  1538. System.Data.DataSet GetResponProcedureBySPId(int SPId);
  1539. [System.ServiceModel.OperationContractAttribute(Action="Dongke.IBOSS.PRD.WCF.Contracts/IPMModule/ScrapProductChack", ReplyAction="Dongke.IBOSS.PRD.WCF.Contracts/IPMModule/ScrapProductChackResponse")]
  1540. string ScrapProductChack(string BarCode);
  1541. [System.ServiceModel.OperationContractAttribute(Action="Dongke.IBOSS.PRD.WCF.Contracts/IPMModule/AuditScrapProduct", ReplyAction="Dongke.IBOSS.PRD.WCF.Contracts/IPMModule/AuditScrapProductResponse")]
  1542. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.Basics.BaseResources.Constant.ServiceResultStatus))]
  1543. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.PMModule.SearchFinishedProductEntity))]
  1544. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.PMModule.GetBarCodeEntity))]
  1545. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.PMModule.SearchProductionDataEntity))]
  1546. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.InProductionEntity[]))]
  1547. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.InProductionEntity))]
  1548. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.InCheckedEntity))]
  1549. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.ServiceResultEntity))]
  1550. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.RPT010401_SE))]
  1551. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.FPM2110_SE))]
  1552. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.FPM2112_SE))]
  1553. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.SemiCheckEntity))]
  1554. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.SemiCheckDefectEntity[]))]
  1555. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.SemiCheckDefectEntity))]
  1556. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.SemiCheckResponsibleEntity[]))]
  1557. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.SemiCheckResponsibleEntity))]
  1558. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.SemiCheckEntity[]))]
  1559. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.OrderEntity))]
  1560. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.FPM0101_SE))]
  1561. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.GroutingDailyEntity))]
  1562. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.GroutingDailyEntity[]))]
  1563. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.GroutingDailyDetailEntity[]))]
  1564. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.GroutingDailyDetailEntity))]
  1565. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.ResponProcedureEntity))]
  1566. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.ScrapResponsibleEntity[]))]
  1567. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.ScrapResponsibleEntity))]
  1568. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.ProductionDataEntity))]
  1569. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.ProductionProcedureListEntity[]))]
  1570. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.ProductionProcedureListEntity))]
  1571. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.ProductionDefectEntity[]))]
  1572. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.ProductionDefectEntity))]
  1573. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.DefectImageEntity[]))]
  1574. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.DefectImageEntity))]
  1575. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.DefectMissedResponsibleEntity[]))]
  1576. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.DefectMissedResponsibleEntity))]
  1577. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.DefectResponsibleEntity[]))]
  1578. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.DefectResponsibleEntity))]
  1579. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.ProcedureEntity))]
  1580. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.ProcedureFlowEntity[]))]
  1581. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.ProcedureFlowEntity))]
  1582. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.CheckProcedureUserResult))]
  1583. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.CheckKilnCarResultEntity))]
  1584. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.KilnCarInfo[]))]
  1585. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.KilnCarInfo))]
  1586. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.ProductionDataEntity[]))]
  1587. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.SearchProgressRAPEntity))]
  1588. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.CelsiusRecordEntity))]
  1589. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.GroutingCountByUserEntity))]
  1590. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.PMProgressRAPEntity))]
  1591. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.WCFConstant.FormMode))]
  1592. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.PMResultEntity))]
  1593. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.SearchInProductionEntity))]
  1594. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.SemiTestDetailEntity))]
  1595. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.SemiTestDefectEntity[]))]
  1596. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.SemiTestDefectEntity))]
  1597. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.CheckCancelLoadCar))]
  1598. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.SemiTestEntity[]))]
  1599. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.SemiTestEntity))]
  1600. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.SemiTestDetailEntity[]))]
  1601. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(System.Exception))]
  1602. [System.ServiceModel.ServiceKnownTypeAttribute(typeof(int[]))]
  1603. int AuditScrapProduct(Dongke.IBOSS.PRD.WCF.DataModels.ScrapProductEntity spEntity);
  1604. [System.ServiceModel.OperationContractAttribute(Action="Dongke.IBOSS.PRD.WCF.Contracts/IPMModule/GetInProductionByBarcode", ReplyAction="Dongke.IBOSS.PRD.WCF.Contracts/IPMModule/GetInProductionByBarcodeResponse")]
  1605. System.Data.DataSet GetInProductionByBarcode(string barcode);
  1606. [System.ServiceModel.OperationContractAttribute(Action="Dongke.IBOSS.PRD.WCF.Contracts/IPMModule/SearchProductionData", ReplyAction="Dongke.IBOSS.PRD.WCF.Contracts/IPMModule/SearchProductionDataResponse")]
  1607. System.Data.DataTable SearchProductionData(Dongke.IBOSS.PRD.WCF.DataModels.PMModule.SearchProductionDataEntity searchEntity);
  1608. [System.ServiceModel.OperationContractAttribute(Action="Dongke.IBOSS.PRD.WCF.Contracts/IPMModule/GetProductionData", ReplyAction="Dongke.IBOSS.PRD.WCF.Contracts/IPMModule/GetProductionDataResponse")]
  1609. System.Data.DataTable GetProductionData(Dongke.IBOSS.PRD.WCF.DataModels.PMModule.SearchProductionDataEntity searchEntity);
  1610. [System.ServiceModel.OperationContractAttribute(Action="Dongke.IBOSS.PRD.WCF.Contracts/IPMModule/GetProductionDataPDA", ReplyAction="Dongke.IBOSS.PRD.WCF.Contracts/IPMModule/GetProductionDataPDAResponse")]
  1611. System.Data.DataTable GetProductionDataPDA(Dongke.IBOSS.PRD.WCF.DataModels.PMModule.SearchProductionDataEntity searchEntity);
  1612. [System.ServiceModel.OperationContractAttribute(Action="Dongke.IBOSS.PRD.WCF.Contracts/IPMModule/GetProcedureDataEntityByID", ReplyAction="Dongke.IBOSS.PRD.WCF.Contracts/IPMModule/GetProcedureDataEntityByIDResponse")]
  1613. Dongke.IBOSS.PRD.WCF.DataModels.ProcedureEntity GetProcedureDataEntityByID(int procedureID);
  1614. [System.ServiceModel.OperationContractAttribute(Action="Dongke.IBOSS.PRD.WCF.Contracts/IPMModule/DecideUserInProcedure", ReplyAction="Dongke.IBOSS.PRD.WCF.Contracts/IPMModule/DecideUserInProcedureResponse")]
  1615. System.Data.DataSet DecideUserInProcedure(int procedureID, int userID);
  1616. [System.ServiceModel.OperationContractAttribute(Action="Dongke.IBOSS.PRD.WCF.Contracts/IPMModule/CheckBarcode", ReplyAction="Dongke.IBOSS.PRD.WCF.Contracts/IPMModule/CheckBarcodeResponse")]
  1617. System.Data.DataSet CheckBarcode(int procedureid, string barcode);
  1618. [System.ServiceModel.OperationContractAttribute(Action="Dongke.IBOSS.PRD.WCF.Contracts/IPMModule/CheckProcedureUser", ReplyAction="Dongke.IBOSS.PRD.WCF.Contracts/IPMModule/CheckProcedureUserResponse")]
  1619. Dongke.IBOSS.PRD.WCF.DataModels.CheckProcedureUserResult CheckProcedureUser(int procedureID, string UserCode);
  1620. [System.ServiceModel.OperationContractAttribute(Action="Dongke.IBOSS.PRD.WCF.Contracts/IPMModule/SaveProductionData", ReplyAction="Dongke.IBOSS.PRD.WCF.Contracts/IPMModule/SaveProductionDataResponse")]
  1621. string SaveProductionData(Dongke.IBOSS.PRD.WCF.DataModels.ProductionDataEntity productionData);
  1622. [System.ServiceModel.OperationContractAttribute(Action="Dongke.IBOSS.PRD.WCF.Contracts/IPMModule/AddWorkPiece", ReplyAction="Dongke.IBOSS.PRD.WCF.Contracts/IPMModule/AddWorkPieceResponse")]
  1623. System.Data.DataTable AddWorkPiece(int procedureID, System.Data.DataTable barcodeTable);
  1624. [System.ServiceModel.OperationContractAttribute(Action="Dongke.IBOSS.PRD.WCF.Contracts/IPMModule/CheckKilnCar", ReplyAction="Dongke.IBOSS.PRD.WCF.Contracts/IPMModule/CheckKilnCarResponse")]
  1625. Dongke.IBOSS.PRD.WCF.DataModels.CheckKilnCarResultEntity CheckKilnCar(int pProcedureId, string kilnCarCode, int pModelType);
  1626. [System.ServiceModel.OperationContractAttribute(Action="Dongke.IBOSS.PRD.WCF.Contracts/IPMModule/AddCheckBarcode", ReplyAction="Dongke.IBOSS.PRD.WCF.Contracts/IPMModule/AddCheckBarcodeResponse")]
  1627. string AddCheckBarcode(int procedureID, Dongke.IBOSS.PRD.WCF.DataModels.ProductionDataEntity[] productionDataEntitys);
  1628. [System.ServiceModel.OperationContractAttribute(Action="Dongke.IBOSS.PRD.WCF.Contracts/IPMModule/GetProductionByBarcode", ReplyAction="Dongke.IBOSS.PRD.WCF.Contracts/IPMModule/GetProductionByBarcodeResponse")]
  1629. System.Data.DataSet GetProductionByBarcode(int procedureID, string barcode);
  1630. [System.ServiceModel.OperationContractAttribute(Action="Dongke.IBOSS.PRD.WCF.Contracts/IPMModule/GetReworkProcedureByBarcode", ReplyAction="Dongke.IBOSS.PRD.WCF.Contracts/IPMModule/GetReworkProcedureByBarcodeResponse")]
  1631. System.Data.DataSet GetReworkProcedureByBarcode(int procedureID, string barcode);
  1632. [System.ServiceModel.OperationContractAttribute(Action="Dongke.IBOSS.PRD.WCF.Contracts/IPMModule/GetDefectByProcedure", ReplyAction="Dongke.IBOSS.PRD.WCF.Contracts/IPMModule/GetDefectByProcedureResponse")]
  1633. System.Data.DataSet GetDefectByProcedure(int procedureID);
  1634. [System.ServiceModel.OperationContractAttribute(Action="Dongke.IBOSS.PRD.WCF.Contracts/IPMModule/GetDefectLocaionByGoodsID", ReplyAction="Dongke.IBOSS.PRD.WCF.Contracts/IPMModule/GetDefectLocaionByGoodsIDResponse")]
  1635. System.Data.DataSet GetDefectLocaionByGoodsID(int goodsID);
  1636. [System.ServiceModel.OperationContractAttribute(Action="Dongke.IBOSS.PRD.WCF.Contracts/IPMModule/GetDutyProcedureByBarCode", ReplyAction="Dongke.IBOSS.PRD.WCF.Contracts/IPMModule/GetDutyProcedureByBarCodeResponse")]
  1637. System.Data.DataSet GetDutyProcedureByBarCode(string barcode, int defectid);
  1638. [System.ServiceModel.OperationContractAttribute(Action="Dongke.IBOSS.PRD.WCF.Contracts/IPMModule/GetDutyProcedureCodeByBarCode", ReplyAction="Dongke.IBOSS.PRD.WCF.Contracts/IPMModule/GetDutyProcedureCodeByBarCodeResponse")]
  1639. System.Data.DataSet GetDutyProcedureCodeByBarCode(string barcode, int dutyProcedureID);
  1640. [System.ServiceModel.OperationContractAttribute(Action="Dongke.IBOSS.PRD.WCF.Contracts/IPMModule/GetDutyProcedureCodeByProductionDataID", ReplyAction="Dongke.IBOSS.PRD.WCF.Contracts/IPMModule/GetDutyProcedureCodeByProductionDataIDRe" +
  1641. "sponse")]
  1642. System.Data.DataSet GetDutyProcedureCodeByProductionDataID(int ProductionDataID);
  1643. [System.ServiceModel.OperationContractAttribute(Action="Dongke.IBOSS.PRD.WCF.Contracts/IPMModule/GetDutyJobsCodeByUser", ReplyAction="Dongke.IBOSS.PRD.WCF.Contracts/IPMModule/GetDutyJobsCodeByUserResponse")]
  1644. System.Data.DataSet GetDutyJobsCodeByUser(int userID, int productionDataID);
  1645. [System.ServiceModel.OperationContractAttribute(Action="Dongke.IBOSS.PRD.WCF.Contracts/IPMModule/GetDutyStaffByUserIDAndJobs", ReplyAction="Dongke.IBOSS.PRD.WCF.Contracts/IPMModule/GetDutyStaffByUserIDAndJobsResponse")]
  1646. System.Data.DataSet GetDutyStaffByUserIDAndJobs(int productionDataID, int userID, int jobs);
  1647. [System.ServiceModel.OperationContractAttribute(Action="Dongke.IBOSS.PRD.WCF.Contracts/IPMModule/SearcStaffAdminRAPInfo", ReplyAction="Dongke.IBOSS.PRD.WCF.Contracts/IPMModule/SearcStaffAdminRAPInfoResponse")]
  1648. System.Data.DataSet SearcStaffAdminRAPInfo(Dongke.IBOSS.PRD.WCF.DataModels.SearchProgressRAPEntity searchProgressRAPEntity);
  1649. [System.ServiceModel.OperationContractAttribute(Action="Dongke.IBOSS.PRD.WCF.Contracts/IPMModule/AddCelsiusRecord", ReplyAction="Dongke.IBOSS.PRD.WCF.Contracts/IPMModule/AddCelsiusRecordResponse")]
  1650. int AddCelsiusRecord(Dongke.IBOSS.PRD.WCF.DataModels.CelsiusRecordEntity crEntity);
  1651. [System.ServiceModel.OperationContractAttribute(Action="Dongke.IBOSS.PRD.WCF.Contracts/IPMModule/UpdateCelsiusRecord", ReplyAction="Dongke.IBOSS.PRD.WCF.Contracts/IPMModule/UpdateCelsiusRecordResponse")]
  1652. int UpdateCelsiusRecord(Dongke.IBOSS.PRD.WCF.DataModels.CelsiusRecordEntity crEntity);
  1653. [System.ServiceModel.OperationContractAttribute(Action="Dongke.IBOSS.PRD.WCF.Contracts/IPMModule/GetCelsiusRecord", ReplyAction="Dongke.IBOSS.PRD.WCF.Contracts/IPMModule/GetCelsiusRecordResponse")]
  1654. System.Data.DataSet GetCelsiusRecord(Dongke.IBOSS.PRD.WCF.DataModels.CelsiusRecordEntity celsiusRecordEntity);
  1655. [System.ServiceModel.OperationContractAttribute(Action="Dongke.IBOSS.PRD.WCF.Contracts/IPMModule/GetCelsiusRecordView", ReplyAction="Dongke.IBOSS.PRD.WCF.Contracts/IPMModule/GetCelsiusRecordViewResponse")]
  1656. System.Data.DataSet GetCelsiusRecordView(Dongke.IBOSS.PRD.WCF.DataModels.CelsiusRecordEntity celsiusRecordEntity);
  1657. [System.ServiceModel.OperationContractAttribute(Action="Dongke.IBOSS.PRD.WCF.Contracts/IPMModule/EditCelsiusRecord", ReplyAction="Dongke.IBOSS.PRD.WCF.Contracts/IPMModule/EditCelsiusRecordResponse")]
  1658. int EditCelsiusRecord(System.DateTime RecordTime, System.Data.DataTable dtCelsius);
  1659. [System.ServiceModel.OperationContractAttribute(Action="Dongke.IBOSS.PRD.WCF.Contracts/IPMModule/DeleteCelsiusRecord", ReplyAction="Dongke.IBOSS.PRD.WCF.Contracts/IPMModule/DeleteCelsiusRecordResponse")]
  1660. int DeleteCelsiusRecord(int recordID);
  1661. [System.ServiceModel.OperationContractAttribute(Action="Dongke.IBOSS.PRD.WCF.Contracts/IPMModule/GetGroutingCountByUser", ReplyAction="Dongke.IBOSS.PRD.WCF.Contracts/IPMModule/GetGroutingCountByUserResponse")]
  1662. System.Data.DataSet GetGroutingCountByUser(Dongke.IBOSS.PRD.WCF.DataModels.GroutingCountByUserEntity gcEntity);
  1663. [System.ServiceModel.OperationContractAttribute(Action="Dongke.IBOSS.PRD.WCF.Contracts/IPMModule/SaveStaffProgressRAPInfo", ReplyAction="Dongke.IBOSS.PRD.WCF.Contracts/IPMModule/SaveStaffProgressRAPInfoResponse")]
  1664. Dongke.IBOSS.PRD.WCF.DataModels.PMResultEntity SaveStaffProgressRAPInfo(Dongke.IBOSS.PRD.WCF.DataModels.PMProgressRAPEntity pProgressRAPEntity, Dongke.IBOSS.PRD.WCF.DataModels.WCFConstant.FormMode pStatus);
  1665. [System.ServiceModel.OperationContractAttribute(Action="Dongke.IBOSS.PRD.WCF.Contracts/IPMModule/SaveStaffProgressRAPApprovalInfo", ReplyAction="Dongke.IBOSS.PRD.WCF.Contracts/IPMModule/SaveStaffProgressRAPApprovalInfoResponse" +
  1666. "")]
  1667. Dongke.IBOSS.PRD.WCF.DataModels.PMResultEntity SaveStaffProgressRAPApprovalInfo(Dongke.IBOSS.PRD.WCF.DataModels.PMProgressRAPEntity pProgressRAPEntity, bool pState);
  1668. [System.ServiceModel.OperationContractAttribute(Action="Dongke.IBOSS.PRD.WCF.Contracts/IPMModule/SetStaffProgressRAPValueFlag", ReplyAction="Dongke.IBOSS.PRD.WCF.Contracts/IPMModule/SetStaffProgressRAPValueFlagResponse")]
  1669. Dongke.IBOSS.PRD.WCF.DataModels.PMResultEntity SetStaffProgressRAPValueFlag(int pRAPID);
  1670. [System.ServiceModel.OperationContractAttribute(Action="Dongke.IBOSS.PRD.WCF.Contracts/IPMModule/GetKilnCarByBarCode", ReplyAction="Dongke.IBOSS.PRD.WCF.Contracts/IPMModule/GetKilnCarByBarCodeResponse")]
  1671. System.Data.DataSet GetKilnCarByBarCode(string barcode);
  1672. [System.ServiceModel.OperationContractAttribute(Action="Dongke.IBOSS.PRD.WCF.Contracts/IPMModule/GetProductionDefectByProductionDataID", ReplyAction="Dongke.IBOSS.PRD.WCF.Contracts/IPMModule/GetProductionDefectByProductionDataIDRes" +
  1673. "ponse")]
  1674. System.Data.DataSet GetProductionDefectByProductionDataID(int ProductionDataID);
  1675. [System.ServiceModel.OperationContractAttribute(Action="Dongke.IBOSS.PRD.WCF.Contracts/IPMModule/GetReworkProcedureByProcedureID", ReplyAction="Dongke.IBOSS.PRD.WCF.Contracts/IPMModule/GetReworkProcedureByProcedureIDResponse")]
  1676. System.Data.DataSet GetReworkProcedureByProcedureID(int procedureID);
  1677. [System.ServiceModel.OperationContractAttribute(Action="Dongke.IBOSS.PRD.WCF.Contracts/IPMModule/GetInProductionData", ReplyAction="Dongke.IBOSS.PRD.WCF.Contracts/IPMModule/GetInProductionDataResponse")]
  1678. System.Data.DataSet GetInProductionData(Dongke.IBOSS.PRD.WCF.DataModels.SearchInProductionEntity searchInProductionEntity);
  1679. [System.ServiceModel.OperationContractAttribute(Action="Dongke.IBOSS.PRD.WCF.Contracts/IPMModule/GetFinishedProductionData", ReplyAction="Dongke.IBOSS.PRD.WCF.Contracts/IPMModule/GetFinishedProductionDataResponse")]
  1680. System.Data.DataSet GetFinishedProductionData(Dongke.IBOSS.PRD.WCF.DataModels.PMModule.SearchFinishedProductEntity searchFinishedProductionEntity);
  1681. [System.ServiceModel.OperationContractAttribute(Action="Dongke.IBOSS.PRD.WCF.Contracts/IPMModule/GetSearchSemiTestListModule", ReplyAction="Dongke.IBOSS.PRD.WCF.Contracts/IPMModule/GetSearchSemiTestListModuleResponse")]
  1682. System.Data.DataSet GetSearchSemiTestListModule(Dongke.IBOSS.PRD.WCF.DataModels.SemiTestDetailEntity semiTestDetailEntity);
  1683. [System.ServiceModel.OperationContractAttribute(Action="Dongke.IBOSS.PRD.WCF.Contracts/IPMModule/CheckCancelLoadCar", ReplyAction="Dongke.IBOSS.PRD.WCF.Contracts/IPMModule/CheckCancelLoadCarResponse")]
  1684. Dongke.IBOSS.PRD.WCF.DataModels.CheckCancelLoadCar CheckCancelLoadCar(int procedureID, string barcode);
  1685. [System.ServiceModel.OperationContractAttribute(Action="Dongke.IBOSS.PRD.WCF.Contracts/IPMModule/AddCancelLoadCar", ReplyAction="Dongke.IBOSS.PRD.WCF.Contracts/IPMModule/AddCancelLoadCarResponse")]
  1686. string AddCancelLoadCar(int procedureID, string barcode);
  1687. [System.ServiceModel.OperationContractAttribute(Action="Dongke.IBOSS.PRD.WCF.Contracts/IPMModule/GetProductionDataByID", ReplyAction="Dongke.IBOSS.PRD.WCF.Contracts/IPMModule/GetProductionDataByIDResponse")]
  1688. System.Data.DataSet GetProductionDataByID(int productionDataID);
  1689. [System.ServiceModel.OperationContractAttribute(Action="Dongke.IBOSS.PRD.WCF.Contracts/IPMModule/GetCompleteProcedureID", ReplyAction="Dongke.IBOSS.PRD.WCF.Contracts/IPMModule/GetCompleteProcedureIDResponse")]
  1690. int GetCompleteProcedureID(string barcode);
  1691. [System.ServiceModel.OperationContractAttribute(Action="Dongke.IBOSS.PRD.WCF.Contracts/IPMModule/DeleteProductionDataByID", ReplyAction="Dongke.IBOSS.PRD.WCF.Contracts/IPMModule/DeleteProductionDataByIDResponse")]
  1692. int DeleteProductionDataByID(int productionDataID);
  1693. [System.ServiceModel.OperationContractAttribute(Action="Dongke.IBOSS.PRD.WCF.Contracts/IPMModule/GetGroutingProducttByBarCode", ReplyAction="Dongke.IBOSS.PRD.WCF.Contracts/IPMModule/GetGroutingProducttByBarCodeResponse")]
  1694. System.Data.DataSet GetGroutingProducttByBarCode(string barcode);
  1695. [System.ServiceModel.OperationContractAttribute(Action="Dongke.IBOSS.PRD.WCF.Contracts/IPMModule/GetDutyStaffByUserID", ReplyAction="Dongke.IBOSS.PRD.WCF.Contracts/IPMModule/GetDutyStaffByUserIDResponse")]
  1696. System.Data.DataSet GetDutyStaffByUserID(int jobs);
  1697. [System.ServiceModel.OperationContractAttribute(Action="Dongke.IBOSS.PRD.WCF.Contracts/IPMModule/GetMissedStaffByUserID", ReplyAction="Dongke.IBOSS.PRD.WCF.Contracts/IPMModule/GetMissedStaffByUserIDResponse")]
  1698. System.Data.DataSet GetMissedStaffByUserID(int userid);
  1699. [System.ServiceModel.OperationContractAttribute(Action="Dongke.IBOSS.PRD.WCF.Contracts/IPMModule/AddSemiTest", ReplyAction="Dongke.IBOSS.PRD.WCF.Contracts/IPMModule/AddSemiTestResponse")]
  1700. string AddSemiTest(Dongke.IBOSS.PRD.WCF.DataModels.SemiTestEntity[] semiTestEntitys);
  1701. [System.ServiceModel.OperationContractAttribute(Action="Dongke.IBOSS.PRD.WCF.Contracts/IPMModule/GetSemiTestByID", ReplyAction="Dongke.IBOSS.PRD.WCF.Contracts/IPMModule/GetSemiTestByIDResponse")]
  1702. System.Data.DataSet GetSemiTestByID(int semiTestID);
  1703. [System.ServiceModel.OperationContractAttribute(Action="Dongke.IBOSS.PRD.WCF.Contracts/IPMModule/DeleteSemiTestDataByID", ReplyAction="Dongke.IBOSS.PRD.WCF.Contracts/IPMModule/DeleteSemiTestDataByIDResponse")]
  1704. int DeleteSemiTestDataByID(int semiTestID);
  1705. [System.ServiceModel.OperationContractAttribute(Action="Dongke.IBOSS.PRD.WCF.Contracts/IPMModule/ValidateOPTimeStamp", ReplyAction="Dongke.IBOSS.PRD.WCF.Contracts/IPMModule/ValidateOPTimeStampResponse")]
  1706. int ValidateOPTimeStamp(int semiTestID, System.DateTime opTimeStamp);
  1707. [System.ServiceModel.OperationContractAttribute(Action="Dongke.IBOSS.PRD.WCF.Contracts/IPMModule/UpdateSemiTestByID", ReplyAction="Dongke.IBOSS.PRD.WCF.Contracts/IPMModule/UpdateSemiTestByIDResponse")]
  1708. int UpdateSemiTestByID(int semiTestID, int auditStatus);
  1709. [System.ServiceModel.OperationContractAttribute(Action="Dongke.IBOSS.PRD.WCF.Contracts/IPMModule/SearchSemiTestList", ReplyAction="Dongke.IBOSS.PRD.WCF.Contracts/IPMModule/SearchSemiTestListResponse")]
  1710. System.Data.DataSet SearchSemiTestList(Dongke.IBOSS.PRD.WCF.DataModels.SemiTestEntity semiTestEntity);
  1711. [System.ServiceModel.OperationContractAttribute(Action="Dongke.IBOSS.PRD.WCF.Contracts/IPMModule/SearchSemiTestInfo", ReplyAction="Dongke.IBOSS.PRD.WCF.Contracts/IPMModule/SearchSemiTestInfoResponse")]
  1712. System.Data.DataSet SearchSemiTestInfo(int semitestID);
  1713. [System.ServiceModel.OperationContractAttribute(Action="Dongke.IBOSS.PRD.WCF.Contracts/IPMModule/GetDutyStaffByUserJobsID", ReplyAction="Dongke.IBOSS.PRD.WCF.Contracts/IPMModule/GetDutyStaffByUserJobsIDResponse")]
  1714. System.Data.DataSet GetDutyStaffByUserJobsID(int jobs, int userID);
  1715. [System.ServiceModel.OperationContractAttribute(Action="Dongke.IBOSS.PRD.WCF.Contracts/IPMModule/SearchSemiTestDetailInfo", ReplyAction="Dongke.IBOSS.PRD.WCF.Contracts/IPMModule/SearchSemiTestDetailInfoResponse")]
  1716. System.Data.DataSet SearchSemiTestDetailInfo(int semitestDetailID);
  1717. [System.ServiceModel.OperationContractAttribute(Action="Dongke.IBOSS.PRD.WCF.Contracts/IPMModule/GetSubstandardInfo", ReplyAction="Dongke.IBOSS.PRD.WCF.Contracts/IPMModule/GetSubstandardInfoResponse")]
  1718. System.Data.DataSet GetSubstandardInfo(string barcode);
  1719. [System.ServiceModel.OperationContractAttribute(Action="Dongke.IBOSS.PRD.WCF.Contracts/IPMModule/GetReFine", ReplyAction="Dongke.IBOSS.PRD.WCF.Contracts/IPMModule/GetReFineResponse")]
  1720. System.Data.DataSet GetReFine(string barcode);
  1721. [System.ServiceModel.OperationContractAttribute(Action="Dongke.IBOSS.PRD.WCF.Contracts/IPMModule/AddBarCodeMissing", ReplyAction="Dongke.IBOSS.PRD.WCF.Contracts/IPMModule/AddBarCodeMissingResponse")]
  1722. int AddBarCodeMissing(string barcode, int produceid);
  1723. [System.ServiceModel.OperationContractAttribute(Action="Dongke.IBOSS.PRD.WCF.Contracts/IPMModule/CheckDryRepairBarcode", ReplyAction="Dongke.IBOSS.PRD.WCF.Contracts/IPMModule/CheckDryRepairBarcodeResponse")]
  1724. System.Data.DataSet CheckDryRepairBarcode(int procedureid, string barcode);
  1725. [System.ServiceModel.OperationContractAttribute(Action="Dongke.IBOSS.PRD.WCF.Contracts/IPMModule/GetSpecialRepairflagByBarcode", ReplyAction="Dongke.IBOSS.PRD.WCF.Contracts/IPMModule/GetSpecialRepairflagByBarcodeResponse")]
  1726. int GetSpecialRepairflagByBarcode(string barcode);
  1727. [System.ServiceModel.OperationContractAttribute(Action="Dongke.IBOSS.PRD.WCF.Contracts/IPMModule/GetKilnCarGoodsByKilnCarID", ReplyAction="Dongke.IBOSS.PRD.WCF.Contracts/IPMModule/GetKilnCarGoodsByKilnCarIDResponse")]
  1728. System.Data.DataSet GetKilnCarGoodsByKilnCarID(int KilnCarID);
  1729. }
  1730. [System.CodeDom.Compiler.GeneratedCodeAttribute("System.ServiceModel", "4.0.0.0")]
  1731. public interface IPMModuleChannel : Dongke.IBOSS.PRD.WCF.Proxys.PMModuleService.IPMModule, System.ServiceModel.IClientChannel {
  1732. }
  1733. [System.Diagnostics.DebuggerStepThroughAttribute()]
  1734. [System.CodeDom.Compiler.GeneratedCodeAttribute("System.ServiceModel", "4.0.0.0")]
  1735. public partial class PMModuleClient : System.ServiceModel.ClientBase<Dongke.IBOSS.PRD.WCF.Proxys.PMModuleService.IPMModule>, Dongke.IBOSS.PRD.WCF.Proxys.PMModuleService.IPMModule {
  1736. public PMModuleClient() {
  1737. }
  1738. public PMModuleClient(string endpointConfigurationName) :
  1739. base(endpointConfigurationName) {
  1740. }
  1741. public PMModuleClient(string endpointConfigurationName, string remoteAddress) :
  1742. base(endpointConfigurationName, remoteAddress) {
  1743. }
  1744. public PMModuleClient(string endpointConfigurationName, System.ServiceModel.EndpointAddress remoteAddress) :
  1745. base(endpointConfigurationName, remoteAddress) {
  1746. }
  1747. public PMModuleClient(System.ServiceModel.Channels.Binding binding, System.ServiceModel.EndpointAddress remoteAddress) :
  1748. base(binding, remoteAddress) {
  1749. }
  1750. public System.Data.DataSet GetBarCodeInGroutingDailyDetail(string barcode) {
  1751. return base.Channel.GetBarCodeInGroutingDailyDetail(barcode);
  1752. }
  1753. public int GetCompleteProductionDataID(string barcode) {
  1754. return base.Channel.GetCompleteProductionDataID(barcode);
  1755. }
  1756. public System.Data.DataSet GetInProductionDataList(string barcode) {
  1757. return base.Channel.GetInProductionDataList(barcode);
  1758. }
  1759. public int CheckScrapProduct(string barcode) {
  1760. return base.Channel.CheckScrapProduct(barcode);
  1761. }
  1762. public System.Data.DataSet GetGoodsInfoBybarcode(string barcode) {
  1763. return base.Channel.GetGoodsInfoBybarcode(barcode);
  1764. }
  1765. public int UpdateGroutingUserCodeByMissingID(string groutingUserCode, int missingID) {
  1766. return base.Channel.UpdateGroutingUserCodeByMissingID(groutingUserCode, missingID);
  1767. }
  1768. public int CheckKilnCarByIntoCar(string kilncarcode, int procedureid) {
  1769. return base.Channel.CheckKilnCarByIntoCar(kilncarcode, procedureid);
  1770. }
  1771. public System.Data.DataSet GetInCheckedDetail(string ProcedureIDS) {
  1772. return base.Channel.GetInCheckedDetail(ProcedureIDS);
  1773. }
  1774. public int SaveInChecked(Dongke.IBOSS.PRD.WCF.DataModels.InProductionEntity[] inProductionEntity, string remarks) {
  1775. return base.Channel.SaveInChecked(inProductionEntity, remarks);
  1776. }
  1777. public System.Data.DataSet GetInCheckedList() {
  1778. return base.Channel.GetInCheckedList();
  1779. }
  1780. public System.Data.DataSet GetInCheckedUserList(int InCheckedID) {
  1781. return base.Channel.GetInCheckedUserList(InCheckedID);
  1782. }
  1783. public int UpdateInChecked(int InCheckedID, string BarCode) {
  1784. return base.Channel.UpdateInChecked(InCheckedID, BarCode);
  1785. }
  1786. public int DisableInChecked(int inCheckedID) {
  1787. return base.Channel.DisableInChecked(inCheckedID);
  1788. }
  1789. public System.Data.DataSet GetAllInChecked(Dongke.IBOSS.PRD.WCF.DataModels.InCheckedEntity entity) {
  1790. return base.Channel.GetAllInChecked(entity);
  1791. }
  1792. public System.Data.DataSet GetAllInCheckedDetail(int inCheckedID) {
  1793. return base.Channel.GetAllInCheckedDetail(inCheckedID);
  1794. }
  1795. public System.Data.DataSet GetScrapProductUserCodeByProductionDataID(int ProductionDataID) {
  1796. return base.Channel.GetScrapProductUserCodeByProductionDataID(ProductionDataID);
  1797. }
  1798. public int CheckKilnCarByIntoCar2(string kilncarcode, int procedureid) {
  1799. return base.Channel.CheckKilnCarByIntoCar2(kilncarcode, procedureid);
  1800. }
  1801. public Dongke.IBOSS.PRD.WCF.DataModels.ServiceResultEntity AddChancelFinishedproduct(string barcode) {
  1802. return base.Channel.AddChancelFinishedproduct(barcode);
  1803. }
  1804. public Dongke.IBOSS.PRD.WCF.DataModels.ServiceResultEntity AddCancelScrapProduction(string barcode) {
  1805. return base.Channel.AddCancelScrapProduction(barcode);
  1806. }
  1807. public System.Data.DataSet GetGroutingInfoBybarcode(string barcode) {
  1808. return base.Channel.GetGroutingInfoBybarcode(barcode);
  1809. }
  1810. public System.Data.DataSet GetFinishedProductGroutingInfoBybarcode(string barcode) {
  1811. return base.Channel.GetFinishedProductGroutingInfoBybarcode(barcode);
  1812. }
  1813. public int AddPublicBodyProduct(string barcode) {
  1814. return base.Channel.AddPublicBodyProduct(barcode);
  1815. }
  1816. public System.Data.DataSet CheckBarcodeDeliverMud(int procedureid, string barcode) {
  1817. return base.Channel.CheckBarcodeDeliverMud(procedureid, barcode);
  1818. }
  1819. public Dongke.IBOSS.PRD.WCF.DataModels.ServiceResultEntity GetPM2108Data(Dongke.IBOSS.PRD.WCF.DataModels.RPT010401_SE se) {
  1820. return base.Channel.GetPM2108Data(se);
  1821. }
  1822. public int SaveClearInproduction(string barcodes) {
  1823. return base.Channel.SaveClearInproduction(barcodes);
  1824. }
  1825. public int SaveClearAllInproduction(Dongke.IBOSS.PRD.WCF.DataModels.RPT010401_SE se) {
  1826. return base.Channel.SaveClearAllInproduction(se);
  1827. }
  1828. public Dongke.IBOSS.PRD.WCF.DataModels.ServiceResultEntity GetPM2110Data(Dongke.IBOSS.PRD.WCF.DataModels.FPM2110_SE se) {
  1829. return base.Channel.GetPM2110Data(se);
  1830. }
  1831. public int SaveClearInproductionTrash(string barcodes) {
  1832. return base.Channel.SaveClearInproductionTrash(barcodes);
  1833. }
  1834. public int SaveClearAllInproductionTrash(Dongke.IBOSS.PRD.WCF.DataModels.FPM2110_SE se) {
  1835. return base.Channel.SaveClearAllInproductionTrash(se);
  1836. }
  1837. public Dongke.IBOSS.PRD.WCF.DataModels.ServiceResultEntity GetPM2112Data(Dongke.IBOSS.PRD.WCF.DataModels.FPM2112_SE se) {
  1838. return base.Channel.GetPM2112Data(se);
  1839. }
  1840. public int SaveClearInproductionTmp(string barcodes) {
  1841. return base.Channel.SaveClearInproductionTmp(barcodes);
  1842. }
  1843. public int SaveClearAllInproductionTmp(Dongke.IBOSS.PRD.WCF.DataModels.FPM2112_SE se) {
  1844. return base.Channel.SaveClearAllInproductionTmp(se);
  1845. }
  1846. public int ResetBarCode(string barcode) {
  1847. return base.Channel.ResetBarCode(barcode);
  1848. }
  1849. public int ResetSelectedBarCode(string barcodes) {
  1850. return base.Channel.ResetSelectedBarCode(barcodes);
  1851. }
  1852. public Dongke.IBOSS.PRD.WCF.DataModels.ServiceResultEntity AddChancelBarCode(string barcode) {
  1853. return base.Channel.AddChancelBarCode(barcode);
  1854. }
  1855. public System.Data.DataSet GetCompleteProcedureIDPDA(string barcode) {
  1856. return base.Channel.GetCompleteProcedureIDPDA(barcode);
  1857. }
  1858. public Dongke.IBOSS.PRD.WCF.DataModels.ServiceResultEntity AddChancelDeliverMudBarCode(string barcode) {
  1859. return base.Channel.AddChancelDeliverMudBarCode(barcode);
  1860. }
  1861. public int SaveClearInChecked(int inCheckedID, string barcodes) {
  1862. return base.Channel.SaveClearInChecked(inCheckedID, barcodes);
  1863. }
  1864. public int SaveClearInCheckedAll(int inCheckedID, string procedureIDs, string goodsCodes, System.Nullable<System.DateTime> startDateTime, System.Nullable<System.DateTime> endDateTime) {
  1865. return base.Channel.SaveClearInCheckedAll(inCheckedID, procedureIDs, goodsCodes, startDateTime, endDateTime);
  1866. }
  1867. public int GetLogoID(int ProcedureID) {
  1868. return base.Channel.GetLogoID(ProcedureID);
  1869. }
  1870. public int SaveBarCodeLogo(string barcode, int logoid) {
  1871. return base.Channel.SaveBarCodeLogo(barcode, logoid);
  1872. }
  1873. public System.Data.DataSet GetBarCodeLogoID(string barcode) {
  1874. return base.Channel.GetBarCodeLogoID(barcode);
  1875. }
  1876. public int CheckWasteScrapProduct(string barcode) {
  1877. return base.Channel.CheckWasteScrapProduct(barcode);
  1878. }
  1879. public System.Data.DataSet GetSemiCheck(Dongke.IBOSS.PRD.WCF.DataModels.SemiCheckEntity entity) {
  1880. return base.Channel.GetSemiCheck(entity);
  1881. }
  1882. public System.Data.DataSet GetSemiCheckDefect(int semiCheckID) {
  1883. return base.Channel.GetSemiCheckDefect(semiCheckID);
  1884. }
  1885. public int GetSemiCheckStatusFuntion() {
  1886. return base.Channel.GetSemiCheckStatusFuntion();
  1887. }
  1888. public Dongke.IBOSS.PRD.WCF.DataModels.ServiceResultEntity SemiCheckBarcode(string barcode) {
  1889. return base.Channel.SemiCheckBarcode(barcode);
  1890. }
  1891. public System.Data.DataSet GetSemiCheckByID(int semiCheckID) {
  1892. return base.Channel.GetSemiCheckByID(semiCheckID);
  1893. }
  1894. public System.Data.DataSet GetSemiCheckPassProcedure(string barcode) {
  1895. return base.Channel.GetSemiCheckPassProcedure(barcode);
  1896. }
  1897. public System.Data.DataSet GetSemiCheckDefectStaffByUserID(int userid) {
  1898. return base.Channel.GetSemiCheckDefectStaffByUserID(userid);
  1899. }
  1900. public Dongke.IBOSS.PRD.WCF.DataModels.ServiceResultEntity AddSemiCheck(Dongke.IBOSS.PRD.WCF.DataModels.SemiCheckEntity[] entityobj) {
  1901. return base.Channel.AddSemiCheck(entityobj);
  1902. }
  1903. public Dongke.IBOSS.PRD.WCF.DataModels.ServiceResultEntity ReSemiCheckBarcode(string barcode) {
  1904. return base.Channel.ReSemiCheckBarcode(barcode);
  1905. }
  1906. public Dongke.IBOSS.PRD.WCF.DataModels.ServiceResultEntity CancelSemiCheckBarcode(string barcode) {
  1907. return base.Channel.CancelSemiCheckBarcode(barcode);
  1908. }
  1909. public Dongke.IBOSS.PRD.WCF.DataModels.ServiceResultEntity BarcodeAllowCancel(System.DateTime orgTime, int days, string settingCode) {
  1910. return base.Channel.BarcodeAllowCancel(orgTime, days, settingCode);
  1911. }
  1912. public Dongke.IBOSS.PRD.WCF.DataModels.ServiceResultEntity SaveOrder(Dongke.IBOSS.PRD.WCF.DataModels.OrderEntity order) {
  1913. return base.Channel.SaveOrder(order);
  1914. }
  1915. public Dongke.IBOSS.PRD.WCF.DataModels.ServiceResultEntity ChangeOrderFlag(Dongke.IBOSS.PRD.WCF.DataModels.OrderEntity order) {
  1916. return base.Channel.ChangeOrderFlag(order);
  1917. }
  1918. public System.Data.DataSet GetOrderList(Dongke.IBOSS.PRD.WCF.DataModels.OrderEntity order) {
  1919. return base.Channel.GetOrderList(order);
  1920. }
  1921. public System.Data.DataSet GetFinishedHandover(Dongke.IBOSS.PRD.WCF.DataModels.PMModule.SearchFinishedProductEntity entity) {
  1922. return base.Channel.GetFinishedHandover(entity);
  1923. }
  1924. public Dongke.IBOSS.PRD.WCF.DataModels.ServiceResultEntity FinishedHandoverBarcode(string barcode) {
  1925. return base.Channel.FinishedHandoverBarcode(barcode);
  1926. }
  1927. public Dongke.IBOSS.PRD.WCF.DataModels.ServiceResultEntity SaveFinishedHandover(int orderid, System.Data.DataTable dtData) {
  1928. return base.Channel.SaveFinishedHandover(orderid, dtData);
  1929. }
  1930. public Dongke.IBOSS.PRD.WCF.DataModels.ServiceResultEntity CancelFinishedHandoverBarcode(string barcode) {
  1931. return base.Channel.CancelFinishedHandoverBarcode(barcode);
  1932. }
  1933. public Dongke.IBOSS.PRD.WCF.DataModels.ServiceResultEntity SaveCancelFinishedHandoverByBarcode(string barcode) {
  1934. return base.Channel.SaveCancelFinishedHandoverByBarcode(barcode);
  1935. }
  1936. public Dongke.IBOSS.PRD.WCF.DataModels.ServiceResultEntity SaveChangeFinishedHandoverByBarcode(string barcode, int orderid) {
  1937. return base.Channel.SaveChangeFinishedHandoverByBarcode(barcode, orderid);
  1938. }
  1939. public System.Data.DataSet CheckRecydingFlagBarcode(int procedureid, string barcode) {
  1940. return base.Channel.CheckRecydingFlagBarcode(procedureid, barcode);
  1941. }
  1942. public int GetRecyclingflagByBarcode(string barcode) {
  1943. return base.Channel.GetRecyclingflagByBarcode(barcode);
  1944. }
  1945. public System.Data.DataSet GetFPM0101SData(Dongke.IBOSS.PRD.WCF.DataModels.FPM0101_SE se) {
  1946. return base.Channel.GetFPM0101SData(se);
  1947. }
  1948. public System.Data.DataSet GetGroutingDaily(Dongke.IBOSS.PRD.WCF.DataModels.GroutingDailyEntity groutingDailyEntity) {
  1949. return base.Channel.GetGroutingDaily(groutingDailyEntity);
  1950. }
  1951. public System.Data.DataSet GetGroutingDailyDetailByMainId(int DailyMainId) {
  1952. return base.Channel.GetGroutingDailyDetailByMainId(DailyMainId);
  1953. }
  1954. public int AddGroutingDaily(Dongke.IBOSS.PRD.WCF.DataModels.GroutingDailyEntity[] groutingDailyEntityList, Dongke.IBOSS.PRD.WCF.DataModels.GroutingDailyDetailEntity[] dailyDetailEntityList) {
  1955. return base.Channel.AddGroutingDaily(groutingDailyEntityList, dailyDetailEntityList);
  1956. }
  1957. public int UpdateGroutingDaily(Dongke.IBOSS.PRD.WCF.DataModels.GroutingDailyDetailEntity[] dailyDetailList) {
  1958. return base.Channel.UpdateGroutingDaily(dailyDetailList);
  1959. }
  1960. public string GetGroutingProductByDetailId(int DailyDetailId) {
  1961. return base.Channel.GetGroutingProductByDetailId(DailyDetailId);
  1962. }
  1963. public int UpdateBarCode(string barCode, string barCodeUpdate) {
  1964. return base.Channel.UpdateBarCode(barCode, barCodeUpdate);
  1965. }
  1966. public int GetCanManyTimes(int GroutingLineID, System.DateTime GroutingDate) {
  1967. return base.Channel.GetCanManyTimes(GroutingLineID, GroutingDate);
  1968. }
  1969. public System.Data.DataSet GetGDailyDetailLeftBarCode(string GroutingLineIds, System.Nullable<System.DateTime> GroutingDateStart, System.Nullable<System.DateTime> GroutingDateEnd) {
  1970. return base.Channel.GetGDailyDetailLeftBarCode(GroutingLineIds, GroutingDateStart, GroutingDateEnd);
  1971. }
  1972. public int AddBarCode(Dongke.IBOSS.PRD.WCF.DataModels.GroutingDailyDetailEntity[] dailyDetailList, string ScrapIds) {
  1973. return base.Channel.AddBarCode(dailyDetailList, ScrapIds);
  1974. }
  1975. public string BarCodesIsRepeat(string BarCodes) {
  1976. return base.Channel.BarCodesIsRepeat(BarCodes);
  1977. }
  1978. public int GetMaxGroutingCountByMouldCode(string MouldCode, System.DateTime inTime) {
  1979. return base.Channel.GetMaxGroutingCountByMouldCode(MouldCode, inTime);
  1980. }
  1981. public string GetMouldCodeFromHistoryByTime(int GroutingLineDetailID, System.DateTime inTime) {
  1982. return base.Channel.GetMouldCodeFromHistoryByTime(GroutingLineDetailID, inTime);
  1983. }
  1984. public System.Data.DataSet GetBarCode(Dongke.IBOSS.PRD.WCF.DataModels.PMModule.GetBarCodeEntity gbEntity) {
  1985. return base.Channel.GetBarCode(gbEntity);
  1986. }
  1987. public System.Data.DataSet GetInProductionAndProductionData(string BarCode) {
  1988. return base.Channel.GetInProductionAndProductionData(BarCode);
  1989. }
  1990. public int AddScrapProduct(Dongke.IBOSS.PRD.WCF.DataModels.ScrapProductEntity SProductEntity, Dongke.IBOSS.PRD.WCF.DataModels.ResponProcedureEntity RProcedureEntity, Dongke.IBOSS.PRD.WCF.DataModels.ScrapResponsibleEntity[] SResponsibleList) {
  1991. return base.Channel.AddScrapProduct(SProductEntity, RProcedureEntity, SResponsibleList);
  1992. }
  1993. public void OpenInProductionAndProductionData(Dongke.IBOSS.PRD.WCF.DataModels.InProductionEntity inProduction, Dongke.IBOSS.PRD.WCF.DataModels.ProductionDataEntity productionData) {
  1994. base.Channel.OpenInProductionAndProductionData(inProduction, productionData);
  1995. }
  1996. public System.Data.DataSet GetScrapProduct(Dongke.IBOSS.PRD.WCF.DataModels.ScrapProductEntity selectProEntity) {
  1997. return base.Channel.GetScrapProduct(selectProEntity);
  1998. }
  1999. public System.Data.DataSet GetScrapResponsibleByResponProcedureID(int ResponProcedureId) {
  2000. return base.Channel.GetScrapResponsibleByResponProcedureID(ResponProcedureId);
  2001. }
  2002. public System.Data.DataSet GetScrapResponsibleBySPId(int SPId) {
  2003. return base.Channel.GetScrapResponsibleBySPId(SPId);
  2004. }
  2005. public int UpdateScrapProduct(Dongke.IBOSS.PRD.WCF.DataModels.ScrapProductEntity UpdateSProductEntity, Dongke.IBOSS.PRD.WCF.DataModels.ResponProcedureEntity UpdateRProcedureEntity, Dongke.IBOSS.PRD.WCF.DataModels.ScrapResponsibleEntity[] UpdateSResponsibleList, Dongke.IBOSS.PRD.WCF.DataModels.ScrapResponsibleEntity[] YSResponsibleList) {
  2006. return base.Channel.UpdateScrapProduct(UpdateSProductEntity, UpdateRProcedureEntity, UpdateSResponsibleList, YSResponsibleList);
  2007. }
  2008. public System.Data.DataSet GetResponProcedureBySPId(int SPId) {
  2009. return base.Channel.GetResponProcedureBySPId(SPId);
  2010. }
  2011. public string ScrapProductChack(string BarCode) {
  2012. return base.Channel.ScrapProductChack(BarCode);
  2013. }
  2014. public int AuditScrapProduct(Dongke.IBOSS.PRD.WCF.DataModels.ScrapProductEntity spEntity) {
  2015. return base.Channel.AuditScrapProduct(spEntity);
  2016. }
  2017. public System.Data.DataSet GetInProductionByBarcode(string barcode) {
  2018. return base.Channel.GetInProductionByBarcode(barcode);
  2019. }
  2020. public System.Data.DataTable SearchProductionData(Dongke.IBOSS.PRD.WCF.DataModels.PMModule.SearchProductionDataEntity searchEntity) {
  2021. return base.Channel.SearchProductionData(searchEntity);
  2022. }
  2023. public System.Data.DataTable GetProductionData(Dongke.IBOSS.PRD.WCF.DataModels.PMModule.SearchProductionDataEntity searchEntity) {
  2024. return base.Channel.GetProductionData(searchEntity);
  2025. }
  2026. public System.Data.DataTable GetProductionDataPDA(Dongke.IBOSS.PRD.WCF.DataModels.PMModule.SearchProductionDataEntity searchEntity) {
  2027. return base.Channel.GetProductionDataPDA(searchEntity);
  2028. }
  2029. public Dongke.IBOSS.PRD.WCF.DataModels.ProcedureEntity GetProcedureDataEntityByID(int procedureID) {
  2030. return base.Channel.GetProcedureDataEntityByID(procedureID);
  2031. }
  2032. public System.Data.DataSet DecideUserInProcedure(int procedureID, int userID) {
  2033. return base.Channel.DecideUserInProcedure(procedureID, userID);
  2034. }
  2035. public System.Data.DataSet CheckBarcode(int procedureid, string barcode) {
  2036. return base.Channel.CheckBarcode(procedureid, barcode);
  2037. }
  2038. public Dongke.IBOSS.PRD.WCF.DataModels.CheckProcedureUserResult CheckProcedureUser(int procedureID, string UserCode) {
  2039. return base.Channel.CheckProcedureUser(procedureID, UserCode);
  2040. }
  2041. public string SaveProductionData(Dongke.IBOSS.PRD.WCF.DataModels.ProductionDataEntity productionData) {
  2042. return base.Channel.SaveProductionData(productionData);
  2043. }
  2044. public System.Data.DataTable AddWorkPiece(int procedureID, System.Data.DataTable barcodeTable) {
  2045. return base.Channel.AddWorkPiece(procedureID, barcodeTable);
  2046. }
  2047. public Dongke.IBOSS.PRD.WCF.DataModels.CheckKilnCarResultEntity CheckKilnCar(int pProcedureId, string kilnCarCode, int pModelType) {
  2048. return base.Channel.CheckKilnCar(pProcedureId, kilnCarCode, pModelType);
  2049. }
  2050. public string AddCheckBarcode(int procedureID, Dongke.IBOSS.PRD.WCF.DataModels.ProductionDataEntity[] productionDataEntitys) {
  2051. return base.Channel.AddCheckBarcode(procedureID, productionDataEntitys);
  2052. }
  2053. public System.Data.DataSet GetProductionByBarcode(int procedureID, string barcode) {
  2054. return base.Channel.GetProductionByBarcode(procedureID, barcode);
  2055. }
  2056. public System.Data.DataSet GetReworkProcedureByBarcode(int procedureID, string barcode) {
  2057. return base.Channel.GetReworkProcedureByBarcode(procedureID, barcode);
  2058. }
  2059. public System.Data.DataSet GetDefectByProcedure(int procedureID) {
  2060. return base.Channel.GetDefectByProcedure(procedureID);
  2061. }
  2062. public System.Data.DataSet GetDefectLocaionByGoodsID(int goodsID) {
  2063. return base.Channel.GetDefectLocaionByGoodsID(goodsID);
  2064. }
  2065. public System.Data.DataSet GetDutyProcedureByBarCode(string barcode, int defectid) {
  2066. return base.Channel.GetDutyProcedureByBarCode(barcode, defectid);
  2067. }
  2068. public System.Data.DataSet GetDutyProcedureCodeByBarCode(string barcode, int dutyProcedureID) {
  2069. return base.Channel.GetDutyProcedureCodeByBarCode(barcode, dutyProcedureID);
  2070. }
  2071. public System.Data.DataSet GetDutyProcedureCodeByProductionDataID(int ProductionDataID) {
  2072. return base.Channel.GetDutyProcedureCodeByProductionDataID(ProductionDataID);
  2073. }
  2074. public System.Data.DataSet GetDutyJobsCodeByUser(int userID, int productionDataID) {
  2075. return base.Channel.GetDutyJobsCodeByUser(userID, productionDataID);
  2076. }
  2077. public System.Data.DataSet GetDutyStaffByUserIDAndJobs(int productionDataID, int userID, int jobs) {
  2078. return base.Channel.GetDutyStaffByUserIDAndJobs(productionDataID, userID, jobs);
  2079. }
  2080. public System.Data.DataSet SearcStaffAdminRAPInfo(Dongke.IBOSS.PRD.WCF.DataModels.SearchProgressRAPEntity searchProgressRAPEntity) {
  2081. return base.Channel.SearcStaffAdminRAPInfo(searchProgressRAPEntity);
  2082. }
  2083. public int AddCelsiusRecord(Dongke.IBOSS.PRD.WCF.DataModels.CelsiusRecordEntity crEntity) {
  2084. return base.Channel.AddCelsiusRecord(crEntity);
  2085. }
  2086. public int UpdateCelsiusRecord(Dongke.IBOSS.PRD.WCF.DataModels.CelsiusRecordEntity crEntity) {
  2087. return base.Channel.UpdateCelsiusRecord(crEntity);
  2088. }
  2089. public System.Data.DataSet GetCelsiusRecord(Dongke.IBOSS.PRD.WCF.DataModels.CelsiusRecordEntity celsiusRecordEntity) {
  2090. return base.Channel.GetCelsiusRecord(celsiusRecordEntity);
  2091. }
  2092. public System.Data.DataSet GetCelsiusRecordView(Dongke.IBOSS.PRD.WCF.DataModels.CelsiusRecordEntity celsiusRecordEntity) {
  2093. return base.Channel.GetCelsiusRecordView(celsiusRecordEntity);
  2094. }
  2095. public int EditCelsiusRecord(System.DateTime RecordTime, System.Data.DataTable dtCelsius) {
  2096. return base.Channel.EditCelsiusRecord(RecordTime, dtCelsius);
  2097. }
  2098. public int DeleteCelsiusRecord(int recordID) {
  2099. return base.Channel.DeleteCelsiusRecord(recordID);
  2100. }
  2101. public System.Data.DataSet GetGroutingCountByUser(Dongke.IBOSS.PRD.WCF.DataModels.GroutingCountByUserEntity gcEntity) {
  2102. return base.Channel.GetGroutingCountByUser(gcEntity);
  2103. }
  2104. public Dongke.IBOSS.PRD.WCF.DataModels.PMResultEntity SaveStaffProgressRAPInfo(Dongke.IBOSS.PRD.WCF.DataModels.PMProgressRAPEntity pProgressRAPEntity, Dongke.IBOSS.PRD.WCF.DataModels.WCFConstant.FormMode pStatus) {
  2105. return base.Channel.SaveStaffProgressRAPInfo(pProgressRAPEntity, pStatus);
  2106. }
  2107. public Dongke.IBOSS.PRD.WCF.DataModels.PMResultEntity SaveStaffProgressRAPApprovalInfo(Dongke.IBOSS.PRD.WCF.DataModels.PMProgressRAPEntity pProgressRAPEntity, bool pState) {
  2108. return base.Channel.SaveStaffProgressRAPApprovalInfo(pProgressRAPEntity, pState);
  2109. }
  2110. public Dongke.IBOSS.PRD.WCF.DataModels.PMResultEntity SetStaffProgressRAPValueFlag(int pRAPID) {
  2111. return base.Channel.SetStaffProgressRAPValueFlag(pRAPID);
  2112. }
  2113. public System.Data.DataSet GetKilnCarByBarCode(string barcode) {
  2114. return base.Channel.GetKilnCarByBarCode(barcode);
  2115. }
  2116. public System.Data.DataSet GetProductionDefectByProductionDataID(int ProductionDataID) {
  2117. return base.Channel.GetProductionDefectByProductionDataID(ProductionDataID);
  2118. }
  2119. public System.Data.DataSet GetReworkProcedureByProcedureID(int procedureID) {
  2120. return base.Channel.GetReworkProcedureByProcedureID(procedureID);
  2121. }
  2122. public System.Data.DataSet GetInProductionData(Dongke.IBOSS.PRD.WCF.DataModels.SearchInProductionEntity searchInProductionEntity) {
  2123. return base.Channel.GetInProductionData(searchInProductionEntity);
  2124. }
  2125. public System.Data.DataSet GetFinishedProductionData(Dongke.IBOSS.PRD.WCF.DataModels.PMModule.SearchFinishedProductEntity searchFinishedProductionEntity) {
  2126. return base.Channel.GetFinishedProductionData(searchFinishedProductionEntity);
  2127. }
  2128. public System.Data.DataSet GetSearchSemiTestListModule(Dongke.IBOSS.PRD.WCF.DataModels.SemiTestDetailEntity semiTestDetailEntity) {
  2129. return base.Channel.GetSearchSemiTestListModule(semiTestDetailEntity);
  2130. }
  2131. public Dongke.IBOSS.PRD.WCF.DataModels.CheckCancelLoadCar CheckCancelLoadCar(int procedureID, string barcode) {
  2132. return base.Channel.CheckCancelLoadCar(procedureID, barcode);
  2133. }
  2134. public string AddCancelLoadCar(int procedureID, string barcode) {
  2135. return base.Channel.AddCancelLoadCar(procedureID, barcode);
  2136. }
  2137. public System.Data.DataSet GetProductionDataByID(int productionDataID) {
  2138. return base.Channel.GetProductionDataByID(productionDataID);
  2139. }
  2140. public int GetCompleteProcedureID(string barcode) {
  2141. return base.Channel.GetCompleteProcedureID(barcode);
  2142. }
  2143. public int DeleteProductionDataByID(int productionDataID) {
  2144. return base.Channel.DeleteProductionDataByID(productionDataID);
  2145. }
  2146. public System.Data.DataSet GetGroutingProducttByBarCode(string barcode) {
  2147. return base.Channel.GetGroutingProducttByBarCode(barcode);
  2148. }
  2149. public System.Data.DataSet GetDutyStaffByUserID(int jobs) {
  2150. return base.Channel.GetDutyStaffByUserID(jobs);
  2151. }
  2152. public System.Data.DataSet GetMissedStaffByUserID(int userid) {
  2153. return base.Channel.GetMissedStaffByUserID(userid);
  2154. }
  2155. public string AddSemiTest(Dongke.IBOSS.PRD.WCF.DataModels.SemiTestEntity[] semiTestEntitys) {
  2156. return base.Channel.AddSemiTest(semiTestEntitys);
  2157. }
  2158. public System.Data.DataSet GetSemiTestByID(int semiTestID) {
  2159. return base.Channel.GetSemiTestByID(semiTestID);
  2160. }
  2161. public int DeleteSemiTestDataByID(int semiTestID) {
  2162. return base.Channel.DeleteSemiTestDataByID(semiTestID);
  2163. }
  2164. public int ValidateOPTimeStamp(int semiTestID, System.DateTime opTimeStamp) {
  2165. return base.Channel.ValidateOPTimeStamp(semiTestID, opTimeStamp);
  2166. }
  2167. public int UpdateSemiTestByID(int semiTestID, int auditStatus) {
  2168. return base.Channel.UpdateSemiTestByID(semiTestID, auditStatus);
  2169. }
  2170. public System.Data.DataSet SearchSemiTestList(Dongke.IBOSS.PRD.WCF.DataModels.SemiTestEntity semiTestEntity) {
  2171. return base.Channel.SearchSemiTestList(semiTestEntity);
  2172. }
  2173. public System.Data.DataSet SearchSemiTestInfo(int semitestID) {
  2174. return base.Channel.SearchSemiTestInfo(semitestID);
  2175. }
  2176. public System.Data.DataSet GetDutyStaffByUserJobsID(int jobs, int userID) {
  2177. return base.Channel.GetDutyStaffByUserJobsID(jobs, userID);
  2178. }
  2179. public System.Data.DataSet SearchSemiTestDetailInfo(int semitestDetailID) {
  2180. return base.Channel.SearchSemiTestDetailInfo(semitestDetailID);
  2181. }
  2182. public System.Data.DataSet GetSubstandardInfo(string barcode) {
  2183. return base.Channel.GetSubstandardInfo(barcode);
  2184. }
  2185. public System.Data.DataSet GetReFine(string barcode) {
  2186. return base.Channel.GetReFine(barcode);
  2187. }
  2188. public int AddBarCodeMissing(string barcode, int produceid) {
  2189. return base.Channel.AddBarCodeMissing(barcode, produceid);
  2190. }
  2191. public System.Data.DataSet CheckDryRepairBarcode(int procedureid, string barcode) {
  2192. return base.Channel.CheckDryRepairBarcode(procedureid, barcode);
  2193. }
  2194. public int GetSpecialRepairflagByBarcode(string barcode) {
  2195. return base.Channel.GetSpecialRepairflagByBarcode(barcode);
  2196. }
  2197. public System.Data.DataSet GetKilnCarGoodsByKilnCarID(int KilnCarID) {
  2198. return base.Channel.GetKilnCarGoodsByKilnCarID(KilnCarID);
  2199. }
  2200. }
  2201. }