| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511 |
- //------------------------------------------------------------------------------
- // <auto-generated>
- // 此代码由工具生成。
- // 运行时版本:4.0.30319.42000
- //
- // 对此文件的更改可能会导致不正确的行为,并且如果
- // 重新生成代码,这些更改将会丢失。
- // </auto-generated>
- //------------------------------------------------------------------------------
- namespace Dongke.IBOSS.PRD.WCF.Proxys.PMModuleService {
-
-
- [System.CodeDom.Compiler.GeneratedCodeAttribute("System.ServiceModel", "4.0.0.0")]
- [System.ServiceModel.ServiceContractAttribute(Namespace="Dongke.IBOSS.PRD.WCF.Contracts", ConfigurationName="PMModuleService.IPMModule")]
- public interface IPMModule {
-
- [System.ServiceModel.OperationContractAttribute(Action="Dongke.IBOSS.PRD.WCF.Contracts/IPMModule/GetBarCodeInGroutingDailyDetail", ReplyAction="Dongke.IBOSS.PRD.WCF.Contracts/IPMModule/GetBarCodeInGroutingDailyDetailResponse")]
- System.Data.DataSet GetBarCodeInGroutingDailyDetail(string barcode);
-
- [System.ServiceModel.OperationContractAttribute(Action="Dongke.IBOSS.PRD.WCF.Contracts/IPMModule/GetCompleteProductionDataID", ReplyAction="Dongke.IBOSS.PRD.WCF.Contracts/IPMModule/GetCompleteProductionDataIDResponse")]
- int GetCompleteProductionDataID(string barcode);
-
- [System.ServiceModel.OperationContractAttribute(Action="Dongke.IBOSS.PRD.WCF.Contracts/IPMModule/GetInProductionDataList", ReplyAction="Dongke.IBOSS.PRD.WCF.Contracts/IPMModule/GetInProductionDataListResponse")]
- System.Data.DataSet GetInProductionDataList(string barcode);
-
- [System.ServiceModel.OperationContractAttribute(Action="Dongke.IBOSS.PRD.WCF.Contracts/IPMModule/CheckScrapProduct", ReplyAction="Dongke.IBOSS.PRD.WCF.Contracts/IPMModule/CheckScrapProductResponse")]
- int CheckScrapProduct(string barcode);
-
- [System.ServiceModel.OperationContractAttribute(Action="Dongke.IBOSS.PRD.WCF.Contracts/IPMModule/GetGoodsInfoBybarcode", ReplyAction="Dongke.IBOSS.PRD.WCF.Contracts/IPMModule/GetGoodsInfoBybarcodeResponse")]
- System.Data.DataSet GetGoodsInfoBybarcode(string barcode);
-
- [System.ServiceModel.OperationContractAttribute(Action="Dongke.IBOSS.PRD.WCF.Contracts/IPMModule/UpdateGroutingUserCodeByMissingID", ReplyAction="Dongke.IBOSS.PRD.WCF.Contracts/IPMModule/UpdateGroutingUserCodeByMissingIDRespons" +
- "e")]
- int UpdateGroutingUserCodeByMissingID(string groutingUserCode, int missingID);
-
- [System.ServiceModel.OperationContractAttribute(Action="Dongke.IBOSS.PRD.WCF.Contracts/IPMModule/CheckKilnCarByIntoCar", ReplyAction="Dongke.IBOSS.PRD.WCF.Contracts/IPMModule/CheckKilnCarByIntoCarResponse")]
- int CheckKilnCarByIntoCar(string kilncarcode, int procedureid);
-
- [System.ServiceModel.OperationContractAttribute(Action="Dongke.IBOSS.PRD.WCF.Contracts/IPMModule/GetInCheckedDetail", ReplyAction="Dongke.IBOSS.PRD.WCF.Contracts/IPMModule/GetInCheckedDetailResponse")]
- System.Data.DataSet GetInCheckedDetail(string ProcedureIDS);
-
- [System.ServiceModel.OperationContractAttribute(Action="Dongke.IBOSS.PRD.WCF.Contracts/IPMModule/SaveInChecked", ReplyAction="Dongke.IBOSS.PRD.WCF.Contracts/IPMModule/SaveInCheckedResponse")]
- int SaveInChecked(Dongke.IBOSS.PRD.WCF.DataModels.InProductionEntity[] inProductionEntity, string remarks);
-
- [System.ServiceModel.OperationContractAttribute(Action="Dongke.IBOSS.PRD.WCF.Contracts/IPMModule/GetInCheckedList", ReplyAction="Dongke.IBOSS.PRD.WCF.Contracts/IPMModule/GetInCheckedListResponse")]
- System.Data.DataSet GetInCheckedList();
-
- [System.ServiceModel.OperationContractAttribute(Action="Dongke.IBOSS.PRD.WCF.Contracts/IPMModule/GetInCheckedUserList", ReplyAction="Dongke.IBOSS.PRD.WCF.Contracts/IPMModule/GetInCheckedUserListResponse")]
- System.Data.DataSet GetInCheckedUserList(int InCheckedID);
-
- [System.ServiceModel.OperationContractAttribute(Action="Dongke.IBOSS.PRD.WCF.Contracts/IPMModule/UpdateInChecked", ReplyAction="Dongke.IBOSS.PRD.WCF.Contracts/IPMModule/UpdateInCheckedResponse")]
- int UpdateInChecked(int InCheckedID, string BarCode);
-
- [System.ServiceModel.OperationContractAttribute(Action="Dongke.IBOSS.PRD.WCF.Contracts/IPMModule/DisableInChecked", ReplyAction="Dongke.IBOSS.PRD.WCF.Contracts/IPMModule/DisableInCheckedResponse")]
- int DisableInChecked(int inCheckedID);
-
- [System.ServiceModel.OperationContractAttribute(Action="Dongke.IBOSS.PRD.WCF.Contracts/IPMModule/GetAllInChecked", ReplyAction="Dongke.IBOSS.PRD.WCF.Contracts/IPMModule/GetAllInCheckedResponse")]
- System.Data.DataSet GetAllInChecked(Dongke.IBOSS.PRD.WCF.DataModels.InCheckedEntity entity);
-
- [System.ServiceModel.OperationContractAttribute(Action="Dongke.IBOSS.PRD.WCF.Contracts/IPMModule/GetAllInCheckedDetail", ReplyAction="Dongke.IBOSS.PRD.WCF.Contracts/IPMModule/GetAllInCheckedDetailResponse")]
- System.Data.DataSet GetAllInCheckedDetail(int inCheckedID);
-
- [System.ServiceModel.OperationContractAttribute(Action="Dongke.IBOSS.PRD.WCF.Contracts/IPMModule/GetScrapProductUserCodeByProductionDataI" +
- "D", ReplyAction="Dongke.IBOSS.PRD.WCF.Contracts/IPMModule/GetScrapProductUserCodeByProductionDataI" +
- "DResponse")]
- System.Data.DataSet GetScrapProductUserCodeByProductionDataID(int ProductionDataID);
-
- [System.ServiceModel.OperationContractAttribute(Action="Dongke.IBOSS.PRD.WCF.Contracts/IPMModule/CheckKilnCarByIntoCar2", ReplyAction="Dongke.IBOSS.PRD.WCF.Contracts/IPMModule/CheckKilnCarByIntoCar2Response")]
- int CheckKilnCarByIntoCar2(string kilncarcode, int procedureid);
-
- [System.ServiceModel.OperationContractAttribute(Action="Dongke.IBOSS.PRD.WCF.Contracts/IPMModule/AddChancelFinishedproduct", ReplyAction="Dongke.IBOSS.PRD.WCF.Contracts/IPMModule/AddChancelFinishedproductResponse")]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.Basics.BaseResources.Constant.ServiceResultStatus))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.PMModule.SearchFinishedProductEntity))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.PMModule.GetBarCodeEntity))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.PMModule.SearchProductionDataEntity))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.InProductionEntity[]))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.InProductionEntity))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.InCheckedEntity))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.RPT010401_SE))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.FPM2110_SE))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.FPM2112_SE))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.SemiCheckEntity))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.SemiCheckDefectEntity[]))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.SemiCheckDefectEntity))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.SemiCheckResponsibleEntity[]))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.SemiCheckResponsibleEntity))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.SemiCheckEntity[]))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.OrderEntity))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.FPM0101_SE))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.GroutingDailyEntity))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.GroutingDailyEntity[]))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.GroutingDailyDetailEntity[]))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.GroutingDailyDetailEntity))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.ScrapProductEntity))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.ResponProcedureEntity))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.ScrapResponsibleEntity[]))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.ScrapResponsibleEntity))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.ProductionDataEntity))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.ProductionProcedureListEntity[]))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.ProductionProcedureListEntity))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.ProductionDefectEntity[]))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.ProductionDefectEntity))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.DefectImageEntity[]))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.DefectImageEntity))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.DefectMissedResponsibleEntity[]))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.DefectMissedResponsibleEntity))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.DefectResponsibleEntity[]))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.DefectResponsibleEntity))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.ProcedureEntity))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.ProcedureFlowEntity[]))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.ProcedureFlowEntity))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.CheckProcedureUserResult))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.CheckKilnCarResultEntity))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.KilnCarInfo[]))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.KilnCarInfo))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.ProductionDataEntity[]))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.SearchProgressRAPEntity))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.CelsiusRecordEntity))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.GroutingCountByUserEntity))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.PMProgressRAPEntity))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.WCFConstant.FormMode))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.PMResultEntity))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.SearchInProductionEntity))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.SemiTestDetailEntity))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.SemiTestDefectEntity[]))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.SemiTestDefectEntity))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.CheckCancelLoadCar))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.SemiTestEntity[]))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.SemiTestEntity))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.SemiTestDetailEntity[]))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(System.Exception))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(int[]))]
- Dongke.IBOSS.PRD.WCF.DataModels.ServiceResultEntity AddChancelFinishedproduct(string barcode);
-
- [System.ServiceModel.OperationContractAttribute(Action="Dongke.IBOSS.PRD.WCF.Contracts/IPMModule/AddCancelScrapProduction", ReplyAction="Dongke.IBOSS.PRD.WCF.Contracts/IPMModule/AddCancelScrapProductionResponse")]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.Basics.BaseResources.Constant.ServiceResultStatus))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.PMModule.SearchFinishedProductEntity))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.PMModule.GetBarCodeEntity))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.PMModule.SearchProductionDataEntity))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.InProductionEntity[]))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.InProductionEntity))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.InCheckedEntity))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.RPT010401_SE))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.FPM2110_SE))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.FPM2112_SE))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.SemiCheckEntity))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.SemiCheckDefectEntity[]))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.SemiCheckDefectEntity))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.SemiCheckResponsibleEntity[]))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.SemiCheckResponsibleEntity))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.SemiCheckEntity[]))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.OrderEntity))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.FPM0101_SE))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.GroutingDailyEntity))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.GroutingDailyEntity[]))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.GroutingDailyDetailEntity[]))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.GroutingDailyDetailEntity))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.ScrapProductEntity))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.ResponProcedureEntity))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.ScrapResponsibleEntity[]))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.ScrapResponsibleEntity))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.ProductionDataEntity))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.ProductionProcedureListEntity[]))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.ProductionProcedureListEntity))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.ProductionDefectEntity[]))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.ProductionDefectEntity))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.DefectImageEntity[]))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.DefectImageEntity))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.DefectMissedResponsibleEntity[]))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.DefectMissedResponsibleEntity))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.DefectResponsibleEntity[]))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.DefectResponsibleEntity))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.ProcedureEntity))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.ProcedureFlowEntity[]))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.ProcedureFlowEntity))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.CheckProcedureUserResult))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.CheckKilnCarResultEntity))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.KilnCarInfo[]))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.KilnCarInfo))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.ProductionDataEntity[]))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.SearchProgressRAPEntity))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.CelsiusRecordEntity))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.GroutingCountByUserEntity))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.PMProgressRAPEntity))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.WCFConstant.FormMode))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.PMResultEntity))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.SearchInProductionEntity))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.SemiTestDetailEntity))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.SemiTestDefectEntity[]))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.SemiTestDefectEntity))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.CheckCancelLoadCar))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.SemiTestEntity[]))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.SemiTestEntity))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.SemiTestDetailEntity[]))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(System.Exception))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(int[]))]
- Dongke.IBOSS.PRD.WCF.DataModels.ServiceResultEntity AddCancelScrapProduction(string barcode);
-
- [System.ServiceModel.OperationContractAttribute(Action="Dongke.IBOSS.PRD.WCF.Contracts/IPMModule/GetGroutingInfoBybarcode", ReplyAction="Dongke.IBOSS.PRD.WCF.Contracts/IPMModule/GetGroutingInfoBybarcodeResponse")]
- System.Data.DataSet GetGroutingInfoBybarcode(string barcode);
-
- [System.ServiceModel.OperationContractAttribute(Action="Dongke.IBOSS.PRD.WCF.Contracts/IPMModule/GetFinishedProductGroutingInfoBybarcode", ReplyAction="Dongke.IBOSS.PRD.WCF.Contracts/IPMModule/GetFinishedProductGroutingInfoBybarcodeR" +
- "esponse")]
- System.Data.DataSet GetFinishedProductGroutingInfoBybarcode(string barcode);
-
- [System.ServiceModel.OperationContractAttribute(Action="Dongke.IBOSS.PRD.WCF.Contracts/IPMModule/AddPublicBodyProduct", ReplyAction="Dongke.IBOSS.PRD.WCF.Contracts/IPMModule/AddPublicBodyProductResponse")]
- int AddPublicBodyProduct(string barcode);
-
- [System.ServiceModel.OperationContractAttribute(Action="Dongke.IBOSS.PRD.WCF.Contracts/IPMModule/CheckBarcodeDeliverMud", ReplyAction="Dongke.IBOSS.PRD.WCF.Contracts/IPMModule/CheckBarcodeDeliverMudResponse")]
- System.Data.DataSet CheckBarcodeDeliverMud(int procedureid, string barcode);
-
- [System.ServiceModel.OperationContractAttribute(Action="Dongke.IBOSS.PRD.WCF.Contracts/IPMModule/GetPM2108Data", ReplyAction="Dongke.IBOSS.PRD.WCF.Contracts/IPMModule/GetPM2108DataResponse")]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.Basics.BaseResources.Constant.ServiceResultStatus))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.PMModule.SearchFinishedProductEntity))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.PMModule.GetBarCodeEntity))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.PMModule.SearchProductionDataEntity))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.InProductionEntity[]))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.InProductionEntity))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.InCheckedEntity))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.RPT010401_SE))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.FPM2110_SE))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.FPM2112_SE))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.SemiCheckEntity))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.SemiCheckDefectEntity[]))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.SemiCheckDefectEntity))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.SemiCheckResponsibleEntity[]))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.SemiCheckResponsibleEntity))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.SemiCheckEntity[]))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.OrderEntity))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.FPM0101_SE))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.GroutingDailyEntity))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.GroutingDailyEntity[]))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.GroutingDailyDetailEntity[]))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.GroutingDailyDetailEntity))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.ScrapProductEntity))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.ResponProcedureEntity))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.ScrapResponsibleEntity[]))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.ScrapResponsibleEntity))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.ProductionDataEntity))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.ProductionProcedureListEntity[]))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.ProductionProcedureListEntity))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.ProductionDefectEntity[]))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.ProductionDefectEntity))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.DefectImageEntity[]))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.DefectImageEntity))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.DefectMissedResponsibleEntity[]))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.DefectMissedResponsibleEntity))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.DefectResponsibleEntity[]))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.DefectResponsibleEntity))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.ProcedureEntity))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.ProcedureFlowEntity[]))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.ProcedureFlowEntity))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.CheckProcedureUserResult))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.CheckKilnCarResultEntity))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.KilnCarInfo[]))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.KilnCarInfo))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.ProductionDataEntity[]))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.SearchProgressRAPEntity))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.CelsiusRecordEntity))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.GroutingCountByUserEntity))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.PMProgressRAPEntity))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.WCFConstant.FormMode))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.PMResultEntity))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.SearchInProductionEntity))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.SemiTestDetailEntity))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.SemiTestDefectEntity[]))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.SemiTestDefectEntity))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.CheckCancelLoadCar))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.SemiTestEntity[]))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.SemiTestEntity))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.SemiTestDetailEntity[]))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(System.Exception))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(int[]))]
- Dongke.IBOSS.PRD.WCF.DataModels.ServiceResultEntity GetPM2108Data(Dongke.IBOSS.PRD.WCF.DataModels.RPT010401_SE se);
-
- [System.ServiceModel.OperationContractAttribute(Action="Dongke.IBOSS.PRD.WCF.Contracts/IPMModule/SaveClearInproduction", ReplyAction="Dongke.IBOSS.PRD.WCF.Contracts/IPMModule/SaveClearInproductionResponse")]
- int SaveClearInproduction(string barcodes);
-
- [System.ServiceModel.OperationContractAttribute(Action="Dongke.IBOSS.PRD.WCF.Contracts/IPMModule/SaveClearAllInproduction", ReplyAction="Dongke.IBOSS.PRD.WCF.Contracts/IPMModule/SaveClearAllInproductionResponse")]
- int SaveClearAllInproduction(Dongke.IBOSS.PRD.WCF.DataModels.RPT010401_SE se);
-
- [System.ServiceModel.OperationContractAttribute(Action="Dongke.IBOSS.PRD.WCF.Contracts/IPMModule/GetPM2110Data", ReplyAction="Dongke.IBOSS.PRD.WCF.Contracts/IPMModule/GetPM2110DataResponse")]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.Basics.BaseResources.Constant.ServiceResultStatus))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.PMModule.SearchFinishedProductEntity))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.PMModule.GetBarCodeEntity))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.PMModule.SearchProductionDataEntity))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.InProductionEntity[]))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.InProductionEntity))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.InCheckedEntity))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.RPT010401_SE))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.FPM2110_SE))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.FPM2112_SE))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.SemiCheckEntity))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.SemiCheckDefectEntity[]))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.SemiCheckDefectEntity))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.SemiCheckResponsibleEntity[]))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.SemiCheckResponsibleEntity))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.SemiCheckEntity[]))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.OrderEntity))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.FPM0101_SE))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.GroutingDailyEntity))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.GroutingDailyEntity[]))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.GroutingDailyDetailEntity[]))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.GroutingDailyDetailEntity))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.ScrapProductEntity))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.ResponProcedureEntity))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.ScrapResponsibleEntity[]))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.ScrapResponsibleEntity))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.ProductionDataEntity))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.ProductionProcedureListEntity[]))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.ProductionProcedureListEntity))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.ProductionDefectEntity[]))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.ProductionDefectEntity))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.DefectImageEntity[]))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.DefectImageEntity))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.DefectMissedResponsibleEntity[]))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.DefectMissedResponsibleEntity))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.DefectResponsibleEntity[]))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.DefectResponsibleEntity))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.ProcedureEntity))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.ProcedureFlowEntity[]))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.ProcedureFlowEntity))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.CheckProcedureUserResult))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.CheckKilnCarResultEntity))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.KilnCarInfo[]))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.KilnCarInfo))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.ProductionDataEntity[]))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.SearchProgressRAPEntity))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.CelsiusRecordEntity))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.GroutingCountByUserEntity))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.PMProgressRAPEntity))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.WCFConstant.FormMode))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.PMResultEntity))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.SearchInProductionEntity))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.SemiTestDetailEntity))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.SemiTestDefectEntity[]))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.SemiTestDefectEntity))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.CheckCancelLoadCar))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.SemiTestEntity[]))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.SemiTestEntity))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.SemiTestDetailEntity[]))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(System.Exception))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(int[]))]
- Dongke.IBOSS.PRD.WCF.DataModels.ServiceResultEntity GetPM2110Data(Dongke.IBOSS.PRD.WCF.DataModels.FPM2110_SE se);
-
- [System.ServiceModel.OperationContractAttribute(Action="Dongke.IBOSS.PRD.WCF.Contracts/IPMModule/SaveClearInproductionTrash", ReplyAction="Dongke.IBOSS.PRD.WCF.Contracts/IPMModule/SaveClearInproductionTrashResponse")]
- int SaveClearInproductionTrash(string barcodes);
-
- [System.ServiceModel.OperationContractAttribute(Action="Dongke.IBOSS.PRD.WCF.Contracts/IPMModule/SaveClearAllInproductionTrash", ReplyAction="Dongke.IBOSS.PRD.WCF.Contracts/IPMModule/SaveClearAllInproductionTrashResponse")]
- int SaveClearAllInproductionTrash(Dongke.IBOSS.PRD.WCF.DataModels.FPM2110_SE se);
-
- [System.ServiceModel.OperationContractAttribute(Action="Dongke.IBOSS.PRD.WCF.Contracts/IPMModule/GetPM2112Data", ReplyAction="Dongke.IBOSS.PRD.WCF.Contracts/IPMModule/GetPM2112DataResponse")]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.Basics.BaseResources.Constant.ServiceResultStatus))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.PMModule.SearchFinishedProductEntity))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.PMModule.GetBarCodeEntity))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.PMModule.SearchProductionDataEntity))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.InProductionEntity[]))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.InProductionEntity))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.InCheckedEntity))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.RPT010401_SE))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.FPM2110_SE))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.FPM2112_SE))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.SemiCheckEntity))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.SemiCheckDefectEntity[]))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.SemiCheckDefectEntity))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.SemiCheckResponsibleEntity[]))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.SemiCheckResponsibleEntity))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.SemiCheckEntity[]))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.OrderEntity))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.FPM0101_SE))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.GroutingDailyEntity))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.GroutingDailyEntity[]))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.GroutingDailyDetailEntity[]))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.GroutingDailyDetailEntity))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.ScrapProductEntity))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.ResponProcedureEntity))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.ScrapResponsibleEntity[]))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.ScrapResponsibleEntity))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.ProductionDataEntity))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.ProductionProcedureListEntity[]))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.ProductionProcedureListEntity))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.ProductionDefectEntity[]))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.ProductionDefectEntity))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.DefectImageEntity[]))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.DefectImageEntity))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.DefectMissedResponsibleEntity[]))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.DefectMissedResponsibleEntity))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.DefectResponsibleEntity[]))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.DefectResponsibleEntity))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.ProcedureEntity))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.ProcedureFlowEntity[]))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.ProcedureFlowEntity))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.CheckProcedureUserResult))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.CheckKilnCarResultEntity))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.KilnCarInfo[]))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.KilnCarInfo))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.ProductionDataEntity[]))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.SearchProgressRAPEntity))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.CelsiusRecordEntity))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.GroutingCountByUserEntity))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.PMProgressRAPEntity))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.WCFConstant.FormMode))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.PMResultEntity))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.SearchInProductionEntity))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.SemiTestDetailEntity))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.SemiTestDefectEntity[]))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.SemiTestDefectEntity))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.CheckCancelLoadCar))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.SemiTestEntity[]))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.SemiTestEntity))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.SemiTestDetailEntity[]))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(System.Exception))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(int[]))]
- Dongke.IBOSS.PRD.WCF.DataModels.ServiceResultEntity GetPM2112Data(Dongke.IBOSS.PRD.WCF.DataModels.FPM2112_SE se);
-
- [System.ServiceModel.OperationContractAttribute(Action="Dongke.IBOSS.PRD.WCF.Contracts/IPMModule/SaveClearInproductionTmp", ReplyAction="Dongke.IBOSS.PRD.WCF.Contracts/IPMModule/SaveClearInproductionTmpResponse")]
- int SaveClearInproductionTmp(string barcodes);
-
- [System.ServiceModel.OperationContractAttribute(Action="Dongke.IBOSS.PRD.WCF.Contracts/IPMModule/SaveClearAllInproductionTmp", ReplyAction="Dongke.IBOSS.PRD.WCF.Contracts/IPMModule/SaveClearAllInproductionTmpResponse")]
- int SaveClearAllInproductionTmp(Dongke.IBOSS.PRD.WCF.DataModels.FPM2112_SE se);
-
- [System.ServiceModel.OperationContractAttribute(Action="Dongke.IBOSS.PRD.WCF.Contracts/IPMModule/ResetBarCode", ReplyAction="Dongke.IBOSS.PRD.WCF.Contracts/IPMModule/ResetBarCodeResponse")]
- int ResetBarCode(string barcode);
-
- [System.ServiceModel.OperationContractAttribute(Action="Dongke.IBOSS.PRD.WCF.Contracts/IPMModule/ResetSelectedBarCode", ReplyAction="Dongke.IBOSS.PRD.WCF.Contracts/IPMModule/ResetSelectedBarCodeResponse")]
- int ResetSelectedBarCode(string barcodes);
-
- [System.ServiceModel.OperationContractAttribute(Action="Dongke.IBOSS.PRD.WCF.Contracts/IPMModule/AddChancelBarCode", ReplyAction="Dongke.IBOSS.PRD.WCF.Contracts/IPMModule/AddChancelBarCodeResponse")]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.Basics.BaseResources.Constant.ServiceResultStatus))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.PMModule.SearchFinishedProductEntity))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.PMModule.GetBarCodeEntity))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.PMModule.SearchProductionDataEntity))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.InProductionEntity[]))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.InProductionEntity))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.InCheckedEntity))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.RPT010401_SE))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.FPM2110_SE))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.FPM2112_SE))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.SemiCheckEntity))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.SemiCheckDefectEntity[]))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.SemiCheckDefectEntity))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.SemiCheckResponsibleEntity[]))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.SemiCheckResponsibleEntity))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.SemiCheckEntity[]))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.OrderEntity))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.FPM0101_SE))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.GroutingDailyEntity))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.GroutingDailyEntity[]))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.GroutingDailyDetailEntity[]))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.GroutingDailyDetailEntity))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.ScrapProductEntity))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.ResponProcedureEntity))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.ScrapResponsibleEntity[]))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.ScrapResponsibleEntity))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.ProductionDataEntity))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.ProductionProcedureListEntity[]))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.ProductionProcedureListEntity))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.ProductionDefectEntity[]))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.ProductionDefectEntity))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.DefectImageEntity[]))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.DefectImageEntity))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.DefectMissedResponsibleEntity[]))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.DefectMissedResponsibleEntity))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.DefectResponsibleEntity[]))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.DefectResponsibleEntity))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.ProcedureEntity))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.ProcedureFlowEntity[]))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.ProcedureFlowEntity))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.CheckProcedureUserResult))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.CheckKilnCarResultEntity))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.KilnCarInfo[]))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.KilnCarInfo))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.ProductionDataEntity[]))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.SearchProgressRAPEntity))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.CelsiusRecordEntity))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.GroutingCountByUserEntity))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.PMProgressRAPEntity))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.WCFConstant.FormMode))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.PMResultEntity))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.SearchInProductionEntity))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.SemiTestDetailEntity))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.SemiTestDefectEntity[]))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.SemiTestDefectEntity))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.CheckCancelLoadCar))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.SemiTestEntity[]))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.SemiTestEntity))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.SemiTestDetailEntity[]))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(System.Exception))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(int[]))]
- Dongke.IBOSS.PRD.WCF.DataModels.ServiceResultEntity AddChancelBarCode(string barcode);
-
- [System.ServiceModel.OperationContractAttribute(Action="Dongke.IBOSS.PRD.WCF.Contracts/IPMModule/GetCompleteProcedureIDPDA", ReplyAction="Dongke.IBOSS.PRD.WCF.Contracts/IPMModule/GetCompleteProcedureIDPDAResponse")]
- System.Data.DataSet GetCompleteProcedureIDPDA(string barcode);
-
- [System.ServiceModel.OperationContractAttribute(Action="Dongke.IBOSS.PRD.WCF.Contracts/IPMModule/AddChancelDeliverMudBarCode", ReplyAction="Dongke.IBOSS.PRD.WCF.Contracts/IPMModule/AddChancelDeliverMudBarCodeResponse")]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.Basics.BaseResources.Constant.ServiceResultStatus))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.PMModule.SearchFinishedProductEntity))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.PMModule.GetBarCodeEntity))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.PMModule.SearchProductionDataEntity))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.InProductionEntity[]))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.InProductionEntity))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.InCheckedEntity))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.RPT010401_SE))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.FPM2110_SE))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.FPM2112_SE))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.SemiCheckEntity))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.SemiCheckDefectEntity[]))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.SemiCheckDefectEntity))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.SemiCheckResponsibleEntity[]))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.SemiCheckResponsibleEntity))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.SemiCheckEntity[]))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.OrderEntity))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.FPM0101_SE))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.GroutingDailyEntity))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.GroutingDailyEntity[]))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.GroutingDailyDetailEntity[]))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.GroutingDailyDetailEntity))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.ScrapProductEntity))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.ResponProcedureEntity))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.ScrapResponsibleEntity[]))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.ScrapResponsibleEntity))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.ProductionDataEntity))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.ProductionProcedureListEntity[]))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.ProductionProcedureListEntity))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.ProductionDefectEntity[]))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.ProductionDefectEntity))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.DefectImageEntity[]))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.DefectImageEntity))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.DefectMissedResponsibleEntity[]))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.DefectMissedResponsibleEntity))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.DefectResponsibleEntity[]))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.DefectResponsibleEntity))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.ProcedureEntity))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.ProcedureFlowEntity[]))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.ProcedureFlowEntity))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.CheckProcedureUserResult))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.CheckKilnCarResultEntity))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.KilnCarInfo[]))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.KilnCarInfo))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.ProductionDataEntity[]))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.SearchProgressRAPEntity))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.CelsiusRecordEntity))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.GroutingCountByUserEntity))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.PMProgressRAPEntity))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.WCFConstant.FormMode))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.PMResultEntity))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.SearchInProductionEntity))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.SemiTestDetailEntity))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.SemiTestDefectEntity[]))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.SemiTestDefectEntity))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.CheckCancelLoadCar))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.SemiTestEntity[]))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.SemiTestEntity))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.SemiTestDetailEntity[]))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(System.Exception))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(int[]))]
- Dongke.IBOSS.PRD.WCF.DataModels.ServiceResultEntity AddChancelDeliverMudBarCode(string barcode);
-
- [System.ServiceModel.OperationContractAttribute(Action="Dongke.IBOSS.PRD.WCF.Contracts/IPMModule/SaveClearInChecked", ReplyAction="Dongke.IBOSS.PRD.WCF.Contracts/IPMModule/SaveClearInCheckedResponse")]
- int SaveClearInChecked(int inCheckedID, string barcodes);
-
- [System.ServiceModel.OperationContractAttribute(Action="Dongke.IBOSS.PRD.WCF.Contracts/IPMModule/SaveClearInCheckedAll", ReplyAction="Dongke.IBOSS.PRD.WCF.Contracts/IPMModule/SaveClearInCheckedAllResponse")]
- int SaveClearInCheckedAll(int inCheckedID, string procedureIDs, string goodsCodes, System.Nullable<System.DateTime> startDateTime, System.Nullable<System.DateTime> endDateTime);
-
- [System.ServiceModel.OperationContractAttribute(Action="Dongke.IBOSS.PRD.WCF.Contracts/IPMModule/GetLogoID", ReplyAction="Dongke.IBOSS.PRD.WCF.Contracts/IPMModule/GetLogoIDResponse")]
- int GetLogoID(int ProcedureID);
-
- [System.ServiceModel.OperationContractAttribute(Action="Dongke.IBOSS.PRD.WCF.Contracts/IPMModule/SaveBarCodeLogo", ReplyAction="Dongke.IBOSS.PRD.WCF.Contracts/IPMModule/SaveBarCodeLogoResponse")]
- int SaveBarCodeLogo(string barcode, int logoid);
-
- [System.ServiceModel.OperationContractAttribute(Action="Dongke.IBOSS.PRD.WCF.Contracts/IPMModule/GetBarCodeLogoID", ReplyAction="Dongke.IBOSS.PRD.WCF.Contracts/IPMModule/GetBarCodeLogoIDResponse")]
- System.Data.DataSet GetBarCodeLogoID(string barcode);
-
- [System.ServiceModel.OperationContractAttribute(Action="Dongke.IBOSS.PRD.WCF.Contracts/IPMModule/CheckWasteScrapProduct", ReplyAction="Dongke.IBOSS.PRD.WCF.Contracts/IPMModule/CheckWasteScrapProductResponse")]
- int CheckWasteScrapProduct(string barcode);
-
- [System.ServiceModel.OperationContractAttribute(Action="Dongke.IBOSS.PRD.WCF.Contracts/IPMModule/GetSemiCheck", ReplyAction="Dongke.IBOSS.PRD.WCF.Contracts/IPMModule/GetSemiCheckResponse")]
- System.Data.DataSet GetSemiCheck(Dongke.IBOSS.PRD.WCF.DataModels.SemiCheckEntity entity);
-
- [System.ServiceModel.OperationContractAttribute(Action="Dongke.IBOSS.PRD.WCF.Contracts/IPMModule/GetSemiCheckDefect", ReplyAction="Dongke.IBOSS.PRD.WCF.Contracts/IPMModule/GetSemiCheckDefectResponse")]
- System.Data.DataSet GetSemiCheckDefect(int semiCheckID);
-
- [System.ServiceModel.OperationContractAttribute(Action="Dongke.IBOSS.PRD.WCF.Contracts/IPMModule/GetSemiCheckStatusFuntion", ReplyAction="Dongke.IBOSS.PRD.WCF.Contracts/IPMModule/GetSemiCheckStatusFuntionResponse")]
- int GetSemiCheckStatusFuntion();
-
- [System.ServiceModel.OperationContractAttribute(Action="Dongke.IBOSS.PRD.WCF.Contracts/IPMModule/SemiCheckBarcode", ReplyAction="Dongke.IBOSS.PRD.WCF.Contracts/IPMModule/SemiCheckBarcodeResponse")]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.Basics.BaseResources.Constant.ServiceResultStatus))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.PMModule.SearchFinishedProductEntity))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.PMModule.GetBarCodeEntity))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.PMModule.SearchProductionDataEntity))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.InProductionEntity[]))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.InProductionEntity))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.InCheckedEntity))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.RPT010401_SE))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.FPM2110_SE))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.FPM2112_SE))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.SemiCheckEntity))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.SemiCheckDefectEntity[]))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.SemiCheckDefectEntity))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.SemiCheckResponsibleEntity[]))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.SemiCheckResponsibleEntity))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.SemiCheckEntity[]))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.OrderEntity))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.FPM0101_SE))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.GroutingDailyEntity))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.GroutingDailyEntity[]))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.GroutingDailyDetailEntity[]))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.GroutingDailyDetailEntity))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.ScrapProductEntity))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.ResponProcedureEntity))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.ScrapResponsibleEntity[]))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.ScrapResponsibleEntity))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.ProductionDataEntity))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.ProductionProcedureListEntity[]))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.ProductionProcedureListEntity))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.ProductionDefectEntity[]))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.ProductionDefectEntity))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.DefectImageEntity[]))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.DefectImageEntity))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.DefectMissedResponsibleEntity[]))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.DefectMissedResponsibleEntity))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.DefectResponsibleEntity[]))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.DefectResponsibleEntity))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.ProcedureEntity))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.ProcedureFlowEntity[]))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.ProcedureFlowEntity))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.CheckProcedureUserResult))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.CheckKilnCarResultEntity))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.KilnCarInfo[]))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.KilnCarInfo))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.ProductionDataEntity[]))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.SearchProgressRAPEntity))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.CelsiusRecordEntity))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.GroutingCountByUserEntity))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.PMProgressRAPEntity))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.WCFConstant.FormMode))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.PMResultEntity))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.SearchInProductionEntity))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.SemiTestDetailEntity))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.SemiTestDefectEntity[]))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.SemiTestDefectEntity))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.CheckCancelLoadCar))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.SemiTestEntity[]))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.SemiTestEntity))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.SemiTestDetailEntity[]))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(System.Exception))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(int[]))]
- Dongke.IBOSS.PRD.WCF.DataModels.ServiceResultEntity SemiCheckBarcode(string barcode);
-
- [System.ServiceModel.OperationContractAttribute(Action="Dongke.IBOSS.PRD.WCF.Contracts/IPMModule/GetSemiCheckByID", ReplyAction="Dongke.IBOSS.PRD.WCF.Contracts/IPMModule/GetSemiCheckByIDResponse")]
- System.Data.DataSet GetSemiCheckByID(int semiCheckID);
-
- [System.ServiceModel.OperationContractAttribute(Action="Dongke.IBOSS.PRD.WCF.Contracts/IPMModule/GetSemiCheckPassProcedure", ReplyAction="Dongke.IBOSS.PRD.WCF.Contracts/IPMModule/GetSemiCheckPassProcedureResponse")]
- System.Data.DataSet GetSemiCheckPassProcedure(string barcode);
-
- [System.ServiceModel.OperationContractAttribute(Action="Dongke.IBOSS.PRD.WCF.Contracts/IPMModule/GetSemiCheckDefectStaffByUserID", ReplyAction="Dongke.IBOSS.PRD.WCF.Contracts/IPMModule/GetSemiCheckDefectStaffByUserIDResponse")]
- System.Data.DataSet GetSemiCheckDefectStaffByUserID(int userid);
-
- [System.ServiceModel.OperationContractAttribute(Action="Dongke.IBOSS.PRD.WCF.Contracts/IPMModule/AddSemiCheck", ReplyAction="Dongke.IBOSS.PRD.WCF.Contracts/IPMModule/AddSemiCheckResponse")]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.Basics.BaseResources.Constant.ServiceResultStatus))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.PMModule.SearchFinishedProductEntity))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.PMModule.GetBarCodeEntity))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.PMModule.SearchProductionDataEntity))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.InProductionEntity[]))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.InProductionEntity))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.InCheckedEntity))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.RPT010401_SE))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.FPM2110_SE))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.FPM2112_SE))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.SemiCheckEntity))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.SemiCheckDefectEntity[]))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.SemiCheckDefectEntity))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.SemiCheckResponsibleEntity[]))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.SemiCheckResponsibleEntity))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.SemiCheckEntity[]))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.OrderEntity))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.FPM0101_SE))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.GroutingDailyEntity))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.GroutingDailyEntity[]))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.GroutingDailyDetailEntity[]))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.GroutingDailyDetailEntity))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.ScrapProductEntity))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.ResponProcedureEntity))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.ScrapResponsibleEntity[]))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.ScrapResponsibleEntity))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.ProductionDataEntity))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.ProductionProcedureListEntity[]))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.ProductionProcedureListEntity))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.ProductionDefectEntity[]))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.ProductionDefectEntity))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.DefectImageEntity[]))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.DefectImageEntity))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.DefectMissedResponsibleEntity[]))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.DefectMissedResponsibleEntity))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.DefectResponsibleEntity[]))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.DefectResponsibleEntity))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.ProcedureEntity))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.ProcedureFlowEntity[]))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.ProcedureFlowEntity))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.CheckProcedureUserResult))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.CheckKilnCarResultEntity))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.KilnCarInfo[]))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.KilnCarInfo))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.ProductionDataEntity[]))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.SearchProgressRAPEntity))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.CelsiusRecordEntity))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.GroutingCountByUserEntity))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.PMProgressRAPEntity))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.WCFConstant.FormMode))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.PMResultEntity))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.SearchInProductionEntity))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.SemiTestDetailEntity))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.SemiTestDefectEntity[]))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.SemiTestDefectEntity))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.CheckCancelLoadCar))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.SemiTestEntity[]))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.SemiTestEntity))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.SemiTestDetailEntity[]))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(System.Exception))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(int[]))]
- Dongke.IBOSS.PRD.WCF.DataModels.ServiceResultEntity AddSemiCheck(Dongke.IBOSS.PRD.WCF.DataModels.SemiCheckEntity[] entityobj);
-
- [System.ServiceModel.OperationContractAttribute(Action="Dongke.IBOSS.PRD.WCF.Contracts/IPMModule/ReSemiCheckBarcode", ReplyAction="Dongke.IBOSS.PRD.WCF.Contracts/IPMModule/ReSemiCheckBarcodeResponse")]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.Basics.BaseResources.Constant.ServiceResultStatus))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.PMModule.SearchFinishedProductEntity))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.PMModule.GetBarCodeEntity))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.PMModule.SearchProductionDataEntity))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.InProductionEntity[]))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.InProductionEntity))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.InCheckedEntity))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.RPT010401_SE))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.FPM2110_SE))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.FPM2112_SE))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.SemiCheckEntity))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.SemiCheckDefectEntity[]))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.SemiCheckDefectEntity))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.SemiCheckResponsibleEntity[]))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.SemiCheckResponsibleEntity))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.SemiCheckEntity[]))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.OrderEntity))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.FPM0101_SE))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.GroutingDailyEntity))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.GroutingDailyEntity[]))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.GroutingDailyDetailEntity[]))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.GroutingDailyDetailEntity))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.ScrapProductEntity))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.ResponProcedureEntity))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.ScrapResponsibleEntity[]))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.ScrapResponsibleEntity))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.ProductionDataEntity))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.ProductionProcedureListEntity[]))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.ProductionProcedureListEntity))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.ProductionDefectEntity[]))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.ProductionDefectEntity))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.DefectImageEntity[]))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.DefectImageEntity))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.DefectMissedResponsibleEntity[]))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.DefectMissedResponsibleEntity))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.DefectResponsibleEntity[]))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.DefectResponsibleEntity))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.ProcedureEntity))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.ProcedureFlowEntity[]))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.ProcedureFlowEntity))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.CheckProcedureUserResult))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.CheckKilnCarResultEntity))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.KilnCarInfo[]))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.KilnCarInfo))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.ProductionDataEntity[]))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.SearchProgressRAPEntity))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.CelsiusRecordEntity))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.GroutingCountByUserEntity))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.PMProgressRAPEntity))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.WCFConstant.FormMode))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.PMResultEntity))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.SearchInProductionEntity))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.SemiTestDetailEntity))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.SemiTestDefectEntity[]))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.SemiTestDefectEntity))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.CheckCancelLoadCar))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.SemiTestEntity[]))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.SemiTestEntity))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.SemiTestDetailEntity[]))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(System.Exception))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(int[]))]
- Dongke.IBOSS.PRD.WCF.DataModels.ServiceResultEntity ReSemiCheckBarcode(string barcode);
-
- [System.ServiceModel.OperationContractAttribute(Action="Dongke.IBOSS.PRD.WCF.Contracts/IPMModule/CancelSemiCheckBarcode", ReplyAction="Dongke.IBOSS.PRD.WCF.Contracts/IPMModule/CancelSemiCheckBarcodeResponse")]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.Basics.BaseResources.Constant.ServiceResultStatus))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.PMModule.SearchFinishedProductEntity))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.PMModule.GetBarCodeEntity))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.PMModule.SearchProductionDataEntity))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.InProductionEntity[]))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.InProductionEntity))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.InCheckedEntity))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.RPT010401_SE))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.FPM2110_SE))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.FPM2112_SE))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.SemiCheckEntity))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.SemiCheckDefectEntity[]))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.SemiCheckDefectEntity))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.SemiCheckResponsibleEntity[]))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.SemiCheckResponsibleEntity))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.SemiCheckEntity[]))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.OrderEntity))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.FPM0101_SE))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.GroutingDailyEntity))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.GroutingDailyEntity[]))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.GroutingDailyDetailEntity[]))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.GroutingDailyDetailEntity))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.ScrapProductEntity))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.ResponProcedureEntity))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.ScrapResponsibleEntity[]))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.ScrapResponsibleEntity))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.ProductionDataEntity))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.ProductionProcedureListEntity[]))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.ProductionProcedureListEntity))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.ProductionDefectEntity[]))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.ProductionDefectEntity))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.DefectImageEntity[]))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.DefectImageEntity))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.DefectMissedResponsibleEntity[]))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.DefectMissedResponsibleEntity))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.DefectResponsibleEntity[]))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.DefectResponsibleEntity))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.ProcedureEntity))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.ProcedureFlowEntity[]))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.ProcedureFlowEntity))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.CheckProcedureUserResult))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.CheckKilnCarResultEntity))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.KilnCarInfo[]))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.KilnCarInfo))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.ProductionDataEntity[]))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.SearchProgressRAPEntity))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.CelsiusRecordEntity))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.GroutingCountByUserEntity))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.PMProgressRAPEntity))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.WCFConstant.FormMode))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.PMResultEntity))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.SearchInProductionEntity))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.SemiTestDetailEntity))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.SemiTestDefectEntity[]))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.SemiTestDefectEntity))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.CheckCancelLoadCar))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.SemiTestEntity[]))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.SemiTestEntity))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.SemiTestDetailEntity[]))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(System.Exception))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(int[]))]
- Dongke.IBOSS.PRD.WCF.DataModels.ServiceResultEntity CancelSemiCheckBarcode(string barcode);
-
- [System.ServiceModel.OperationContractAttribute(Action="Dongke.IBOSS.PRD.WCF.Contracts/IPMModule/BarcodeAllowCancel", ReplyAction="Dongke.IBOSS.PRD.WCF.Contracts/IPMModule/BarcodeAllowCancelResponse")]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.Basics.BaseResources.Constant.ServiceResultStatus))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.PMModule.SearchFinishedProductEntity))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.PMModule.GetBarCodeEntity))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.PMModule.SearchProductionDataEntity))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.InProductionEntity[]))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.InProductionEntity))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.InCheckedEntity))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.RPT010401_SE))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.FPM2110_SE))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.FPM2112_SE))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.SemiCheckEntity))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.SemiCheckDefectEntity[]))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.SemiCheckDefectEntity))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.SemiCheckResponsibleEntity[]))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.SemiCheckResponsibleEntity))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.SemiCheckEntity[]))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.OrderEntity))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.FPM0101_SE))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.GroutingDailyEntity))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.GroutingDailyEntity[]))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.GroutingDailyDetailEntity[]))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.GroutingDailyDetailEntity))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.ScrapProductEntity))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.ResponProcedureEntity))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.ScrapResponsibleEntity[]))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.ScrapResponsibleEntity))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.ProductionDataEntity))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.ProductionProcedureListEntity[]))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.ProductionProcedureListEntity))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.ProductionDefectEntity[]))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.ProductionDefectEntity))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.DefectImageEntity[]))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.DefectImageEntity))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.DefectMissedResponsibleEntity[]))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.DefectMissedResponsibleEntity))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.DefectResponsibleEntity[]))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.DefectResponsibleEntity))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.ProcedureEntity))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.ProcedureFlowEntity[]))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.ProcedureFlowEntity))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.CheckProcedureUserResult))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.CheckKilnCarResultEntity))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.KilnCarInfo[]))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.KilnCarInfo))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.ProductionDataEntity[]))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.SearchProgressRAPEntity))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.CelsiusRecordEntity))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.GroutingCountByUserEntity))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.PMProgressRAPEntity))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.WCFConstant.FormMode))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.PMResultEntity))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.SearchInProductionEntity))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.SemiTestDetailEntity))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.SemiTestDefectEntity[]))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.SemiTestDefectEntity))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.CheckCancelLoadCar))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.SemiTestEntity[]))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.SemiTestEntity))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.SemiTestDetailEntity[]))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(System.Exception))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(int[]))]
- Dongke.IBOSS.PRD.WCF.DataModels.ServiceResultEntity BarcodeAllowCancel(System.DateTime orgTime, int days, string settingCode);
-
- [System.ServiceModel.OperationContractAttribute(Action="Dongke.IBOSS.PRD.WCF.Contracts/IPMModule/SaveOrder", ReplyAction="Dongke.IBOSS.PRD.WCF.Contracts/IPMModule/SaveOrderResponse")]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.Basics.BaseResources.Constant.ServiceResultStatus))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.PMModule.SearchFinishedProductEntity))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.PMModule.GetBarCodeEntity))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.PMModule.SearchProductionDataEntity))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.InProductionEntity[]))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.InProductionEntity))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.InCheckedEntity))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.RPT010401_SE))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.FPM2110_SE))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.FPM2112_SE))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.SemiCheckEntity))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.SemiCheckDefectEntity[]))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.SemiCheckDefectEntity))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.SemiCheckResponsibleEntity[]))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.SemiCheckResponsibleEntity))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.SemiCheckEntity[]))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.OrderEntity))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.FPM0101_SE))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.GroutingDailyEntity))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.GroutingDailyEntity[]))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.GroutingDailyDetailEntity[]))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.GroutingDailyDetailEntity))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.ScrapProductEntity))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.ResponProcedureEntity))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.ScrapResponsibleEntity[]))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.ScrapResponsibleEntity))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.ProductionDataEntity))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.ProductionProcedureListEntity[]))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.ProductionProcedureListEntity))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.ProductionDefectEntity[]))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.ProductionDefectEntity))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.DefectImageEntity[]))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.DefectImageEntity))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.DefectMissedResponsibleEntity[]))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.DefectMissedResponsibleEntity))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.DefectResponsibleEntity[]))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.DefectResponsibleEntity))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.ProcedureEntity))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.ProcedureFlowEntity[]))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.ProcedureFlowEntity))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.CheckProcedureUserResult))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.CheckKilnCarResultEntity))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.KilnCarInfo[]))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.KilnCarInfo))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.ProductionDataEntity[]))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.SearchProgressRAPEntity))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.CelsiusRecordEntity))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.GroutingCountByUserEntity))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.PMProgressRAPEntity))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.WCFConstant.FormMode))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.PMResultEntity))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.SearchInProductionEntity))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.SemiTestDetailEntity))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.SemiTestDefectEntity[]))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.SemiTestDefectEntity))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.CheckCancelLoadCar))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.SemiTestEntity[]))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.SemiTestEntity))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.SemiTestDetailEntity[]))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(System.Exception))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(int[]))]
- Dongke.IBOSS.PRD.WCF.DataModels.ServiceResultEntity SaveOrder(Dongke.IBOSS.PRD.WCF.DataModels.OrderEntity order);
-
- [System.ServiceModel.OperationContractAttribute(Action="Dongke.IBOSS.PRD.WCF.Contracts/IPMModule/ChangeOrderFlag", ReplyAction="Dongke.IBOSS.PRD.WCF.Contracts/IPMModule/ChangeOrderFlagResponse")]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.Basics.BaseResources.Constant.ServiceResultStatus))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.PMModule.SearchFinishedProductEntity))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.PMModule.GetBarCodeEntity))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.PMModule.SearchProductionDataEntity))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.InProductionEntity[]))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.InProductionEntity))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.InCheckedEntity))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.RPT010401_SE))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.FPM2110_SE))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.FPM2112_SE))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.SemiCheckEntity))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.SemiCheckDefectEntity[]))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.SemiCheckDefectEntity))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.SemiCheckResponsibleEntity[]))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.SemiCheckResponsibleEntity))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.SemiCheckEntity[]))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.OrderEntity))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.FPM0101_SE))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.GroutingDailyEntity))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.GroutingDailyEntity[]))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.GroutingDailyDetailEntity[]))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.GroutingDailyDetailEntity))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.ScrapProductEntity))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.ResponProcedureEntity))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.ScrapResponsibleEntity[]))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.ScrapResponsibleEntity))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.ProductionDataEntity))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.ProductionProcedureListEntity[]))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.ProductionProcedureListEntity))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.ProductionDefectEntity[]))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.ProductionDefectEntity))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.DefectImageEntity[]))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.DefectImageEntity))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.DefectMissedResponsibleEntity[]))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.DefectMissedResponsibleEntity))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.DefectResponsibleEntity[]))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.DefectResponsibleEntity))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.ProcedureEntity))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.ProcedureFlowEntity[]))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.ProcedureFlowEntity))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.CheckProcedureUserResult))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.CheckKilnCarResultEntity))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.KilnCarInfo[]))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.KilnCarInfo))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.ProductionDataEntity[]))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.SearchProgressRAPEntity))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.CelsiusRecordEntity))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.GroutingCountByUserEntity))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.PMProgressRAPEntity))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.WCFConstant.FormMode))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.PMResultEntity))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.SearchInProductionEntity))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.SemiTestDetailEntity))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.SemiTestDefectEntity[]))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.SemiTestDefectEntity))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.CheckCancelLoadCar))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.SemiTestEntity[]))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.SemiTestEntity))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.SemiTestDetailEntity[]))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(System.Exception))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(int[]))]
- Dongke.IBOSS.PRD.WCF.DataModels.ServiceResultEntity ChangeOrderFlag(Dongke.IBOSS.PRD.WCF.DataModels.OrderEntity order);
-
- [System.ServiceModel.OperationContractAttribute(Action="Dongke.IBOSS.PRD.WCF.Contracts/IPMModule/GetOrderList", ReplyAction="Dongke.IBOSS.PRD.WCF.Contracts/IPMModule/GetOrderListResponse")]
- System.Data.DataSet GetOrderList(Dongke.IBOSS.PRD.WCF.DataModels.OrderEntity order);
-
- [System.ServiceModel.OperationContractAttribute(Action="Dongke.IBOSS.PRD.WCF.Contracts/IPMModule/GetFinishedHandover", ReplyAction="Dongke.IBOSS.PRD.WCF.Contracts/IPMModule/GetFinishedHandoverResponse")]
- System.Data.DataSet GetFinishedHandover(Dongke.IBOSS.PRD.WCF.DataModels.PMModule.SearchFinishedProductEntity entity);
-
- [System.ServiceModel.OperationContractAttribute(Action="Dongke.IBOSS.PRD.WCF.Contracts/IPMModule/FinishedHandoverBarcode", ReplyAction="Dongke.IBOSS.PRD.WCF.Contracts/IPMModule/FinishedHandoverBarcodeResponse")]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.Basics.BaseResources.Constant.ServiceResultStatus))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.PMModule.SearchFinishedProductEntity))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.PMModule.GetBarCodeEntity))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.PMModule.SearchProductionDataEntity))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.InProductionEntity[]))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.InProductionEntity))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.InCheckedEntity))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.RPT010401_SE))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.FPM2110_SE))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.FPM2112_SE))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.SemiCheckEntity))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.SemiCheckDefectEntity[]))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.SemiCheckDefectEntity))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.SemiCheckResponsibleEntity[]))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.SemiCheckResponsibleEntity))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.SemiCheckEntity[]))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.OrderEntity))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.FPM0101_SE))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.GroutingDailyEntity))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.GroutingDailyEntity[]))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.GroutingDailyDetailEntity[]))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.GroutingDailyDetailEntity))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.ScrapProductEntity))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.ResponProcedureEntity))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.ScrapResponsibleEntity[]))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.ScrapResponsibleEntity))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.ProductionDataEntity))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.ProductionProcedureListEntity[]))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.ProductionProcedureListEntity))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.ProductionDefectEntity[]))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.ProductionDefectEntity))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.DefectImageEntity[]))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.DefectImageEntity))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.DefectMissedResponsibleEntity[]))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.DefectMissedResponsibleEntity))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.DefectResponsibleEntity[]))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.DefectResponsibleEntity))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.ProcedureEntity))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.ProcedureFlowEntity[]))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.ProcedureFlowEntity))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.CheckProcedureUserResult))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.CheckKilnCarResultEntity))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.KilnCarInfo[]))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.KilnCarInfo))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.ProductionDataEntity[]))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.SearchProgressRAPEntity))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.CelsiusRecordEntity))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.GroutingCountByUserEntity))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.PMProgressRAPEntity))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.WCFConstant.FormMode))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.PMResultEntity))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.SearchInProductionEntity))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.SemiTestDetailEntity))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.SemiTestDefectEntity[]))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.SemiTestDefectEntity))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.CheckCancelLoadCar))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.SemiTestEntity[]))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.SemiTestEntity))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.SemiTestDetailEntity[]))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(System.Exception))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(int[]))]
- Dongke.IBOSS.PRD.WCF.DataModels.ServiceResultEntity FinishedHandoverBarcode(string barcode);
-
- [System.ServiceModel.OperationContractAttribute(Action="Dongke.IBOSS.PRD.WCF.Contracts/IPMModule/SaveFinishedHandover", ReplyAction="Dongke.IBOSS.PRD.WCF.Contracts/IPMModule/SaveFinishedHandoverResponse")]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.Basics.BaseResources.Constant.ServiceResultStatus))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.PMModule.SearchFinishedProductEntity))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.PMModule.GetBarCodeEntity))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.PMModule.SearchProductionDataEntity))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.InProductionEntity[]))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.InProductionEntity))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.InCheckedEntity))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.RPT010401_SE))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.FPM2110_SE))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.FPM2112_SE))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.SemiCheckEntity))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.SemiCheckDefectEntity[]))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.SemiCheckDefectEntity))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.SemiCheckResponsibleEntity[]))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.SemiCheckResponsibleEntity))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.SemiCheckEntity[]))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.OrderEntity))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.FPM0101_SE))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.GroutingDailyEntity))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.GroutingDailyEntity[]))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.GroutingDailyDetailEntity[]))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.GroutingDailyDetailEntity))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.ScrapProductEntity))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.ResponProcedureEntity))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.ScrapResponsibleEntity[]))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.ScrapResponsibleEntity))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.ProductionDataEntity))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.ProductionProcedureListEntity[]))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.ProductionProcedureListEntity))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.ProductionDefectEntity[]))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.ProductionDefectEntity))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.DefectImageEntity[]))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.DefectImageEntity))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.DefectMissedResponsibleEntity[]))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.DefectMissedResponsibleEntity))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.DefectResponsibleEntity[]))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.DefectResponsibleEntity))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.ProcedureEntity))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.ProcedureFlowEntity[]))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.ProcedureFlowEntity))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.CheckProcedureUserResult))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.CheckKilnCarResultEntity))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.KilnCarInfo[]))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.KilnCarInfo))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.ProductionDataEntity[]))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.SearchProgressRAPEntity))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.CelsiusRecordEntity))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.GroutingCountByUserEntity))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.PMProgressRAPEntity))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.WCFConstant.FormMode))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.PMResultEntity))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.SearchInProductionEntity))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.SemiTestDetailEntity))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.SemiTestDefectEntity[]))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.SemiTestDefectEntity))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.CheckCancelLoadCar))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.SemiTestEntity[]))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.SemiTestEntity))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.SemiTestDetailEntity[]))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(System.Exception))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(int[]))]
- Dongke.IBOSS.PRD.WCF.DataModels.ServiceResultEntity SaveFinishedHandover(int orderid, System.Data.DataTable dtData);
-
- [System.ServiceModel.OperationContractAttribute(Action="Dongke.IBOSS.PRD.WCF.Contracts/IPMModule/CancelFinishedHandoverBarcode", ReplyAction="Dongke.IBOSS.PRD.WCF.Contracts/IPMModule/CancelFinishedHandoverBarcodeResponse")]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.Basics.BaseResources.Constant.ServiceResultStatus))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.PMModule.SearchFinishedProductEntity))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.PMModule.GetBarCodeEntity))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.PMModule.SearchProductionDataEntity))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.InProductionEntity[]))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.InProductionEntity))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.InCheckedEntity))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.RPT010401_SE))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.FPM2110_SE))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.FPM2112_SE))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.SemiCheckEntity))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.SemiCheckDefectEntity[]))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.SemiCheckDefectEntity))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.SemiCheckResponsibleEntity[]))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.SemiCheckResponsibleEntity))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.SemiCheckEntity[]))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.OrderEntity))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.FPM0101_SE))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.GroutingDailyEntity))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.GroutingDailyEntity[]))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.GroutingDailyDetailEntity[]))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.GroutingDailyDetailEntity))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.ScrapProductEntity))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.ResponProcedureEntity))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.ScrapResponsibleEntity[]))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.ScrapResponsibleEntity))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.ProductionDataEntity))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.ProductionProcedureListEntity[]))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.ProductionProcedureListEntity))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.ProductionDefectEntity[]))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.ProductionDefectEntity))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.DefectImageEntity[]))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.DefectImageEntity))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.DefectMissedResponsibleEntity[]))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.DefectMissedResponsibleEntity))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.DefectResponsibleEntity[]))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.DefectResponsibleEntity))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.ProcedureEntity))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.ProcedureFlowEntity[]))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.ProcedureFlowEntity))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.CheckProcedureUserResult))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.CheckKilnCarResultEntity))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.KilnCarInfo[]))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.KilnCarInfo))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.ProductionDataEntity[]))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.SearchProgressRAPEntity))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.CelsiusRecordEntity))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.GroutingCountByUserEntity))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.PMProgressRAPEntity))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.WCFConstant.FormMode))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.PMResultEntity))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.SearchInProductionEntity))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.SemiTestDetailEntity))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.SemiTestDefectEntity[]))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.SemiTestDefectEntity))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.CheckCancelLoadCar))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.SemiTestEntity[]))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.SemiTestEntity))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.SemiTestDetailEntity[]))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(System.Exception))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(int[]))]
- Dongke.IBOSS.PRD.WCF.DataModels.ServiceResultEntity CancelFinishedHandoverBarcode(string barcode);
-
- [System.ServiceModel.OperationContractAttribute(Action="Dongke.IBOSS.PRD.WCF.Contracts/IPMModule/SaveCancelFinishedHandoverByBarcode", ReplyAction="Dongke.IBOSS.PRD.WCF.Contracts/IPMModule/SaveCancelFinishedHandoverByBarcodeRespo" +
- "nse")]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.Basics.BaseResources.Constant.ServiceResultStatus))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.PMModule.SearchFinishedProductEntity))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.PMModule.GetBarCodeEntity))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.PMModule.SearchProductionDataEntity))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.InProductionEntity[]))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.InProductionEntity))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.InCheckedEntity))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.RPT010401_SE))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.FPM2110_SE))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.FPM2112_SE))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.SemiCheckEntity))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.SemiCheckDefectEntity[]))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.SemiCheckDefectEntity))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.SemiCheckResponsibleEntity[]))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.SemiCheckResponsibleEntity))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.SemiCheckEntity[]))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.OrderEntity))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.FPM0101_SE))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.GroutingDailyEntity))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.GroutingDailyEntity[]))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.GroutingDailyDetailEntity[]))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.GroutingDailyDetailEntity))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.ScrapProductEntity))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.ResponProcedureEntity))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.ScrapResponsibleEntity[]))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.ScrapResponsibleEntity))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.ProductionDataEntity))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.ProductionProcedureListEntity[]))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.ProductionProcedureListEntity))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.ProductionDefectEntity[]))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.ProductionDefectEntity))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.DefectImageEntity[]))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.DefectImageEntity))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.DefectMissedResponsibleEntity[]))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.DefectMissedResponsibleEntity))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.DefectResponsibleEntity[]))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.DefectResponsibleEntity))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.ProcedureEntity))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.ProcedureFlowEntity[]))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.ProcedureFlowEntity))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.CheckProcedureUserResult))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.CheckKilnCarResultEntity))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.KilnCarInfo[]))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.KilnCarInfo))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.ProductionDataEntity[]))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.SearchProgressRAPEntity))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.CelsiusRecordEntity))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.GroutingCountByUserEntity))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.PMProgressRAPEntity))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.WCFConstant.FormMode))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.PMResultEntity))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.SearchInProductionEntity))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.SemiTestDetailEntity))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.SemiTestDefectEntity[]))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.SemiTestDefectEntity))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.CheckCancelLoadCar))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.SemiTestEntity[]))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.SemiTestEntity))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.SemiTestDetailEntity[]))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(System.Exception))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(int[]))]
- Dongke.IBOSS.PRD.WCF.DataModels.ServiceResultEntity SaveCancelFinishedHandoverByBarcode(string barcode);
-
- [System.ServiceModel.OperationContractAttribute(Action="Dongke.IBOSS.PRD.WCF.Contracts/IPMModule/SaveChangeFinishedHandoverByBarcode", ReplyAction="Dongke.IBOSS.PRD.WCF.Contracts/IPMModule/SaveChangeFinishedHandoverByBarcodeRespo" +
- "nse")]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.Basics.BaseResources.Constant.ServiceResultStatus))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.PMModule.SearchFinishedProductEntity))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.PMModule.GetBarCodeEntity))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.PMModule.SearchProductionDataEntity))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.InProductionEntity[]))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.InProductionEntity))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.InCheckedEntity))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.RPT010401_SE))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.FPM2110_SE))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.FPM2112_SE))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.SemiCheckEntity))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.SemiCheckDefectEntity[]))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.SemiCheckDefectEntity))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.SemiCheckResponsibleEntity[]))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.SemiCheckResponsibleEntity))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.SemiCheckEntity[]))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.OrderEntity))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.FPM0101_SE))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.GroutingDailyEntity))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.GroutingDailyEntity[]))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.GroutingDailyDetailEntity[]))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.GroutingDailyDetailEntity))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.ScrapProductEntity))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.ResponProcedureEntity))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.ScrapResponsibleEntity[]))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.ScrapResponsibleEntity))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.ProductionDataEntity))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.ProductionProcedureListEntity[]))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.ProductionProcedureListEntity))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.ProductionDefectEntity[]))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.ProductionDefectEntity))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.DefectImageEntity[]))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.DefectImageEntity))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.DefectMissedResponsibleEntity[]))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.DefectMissedResponsibleEntity))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.DefectResponsibleEntity[]))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.DefectResponsibleEntity))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.ProcedureEntity))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.ProcedureFlowEntity[]))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.ProcedureFlowEntity))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.CheckProcedureUserResult))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.CheckKilnCarResultEntity))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.KilnCarInfo[]))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.KilnCarInfo))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.ProductionDataEntity[]))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.SearchProgressRAPEntity))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.CelsiusRecordEntity))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.GroutingCountByUserEntity))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.PMProgressRAPEntity))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.WCFConstant.FormMode))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.PMResultEntity))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.SearchInProductionEntity))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.SemiTestDetailEntity))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.SemiTestDefectEntity[]))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.SemiTestDefectEntity))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.CheckCancelLoadCar))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.SemiTestEntity[]))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.SemiTestEntity))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.SemiTestDetailEntity[]))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(System.Exception))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(int[]))]
- Dongke.IBOSS.PRD.WCF.DataModels.ServiceResultEntity SaveChangeFinishedHandoverByBarcode(string barcode, int orderid);
-
- [System.ServiceModel.OperationContractAttribute(Action="Dongke.IBOSS.PRD.WCF.Contracts/IPMModule/CheckRecydingFlagBarcode", ReplyAction="Dongke.IBOSS.PRD.WCF.Contracts/IPMModule/CheckRecydingFlagBarcodeResponse")]
- System.Data.DataSet CheckRecydingFlagBarcode(int procedureid, string barcode);
-
- [System.ServiceModel.OperationContractAttribute(Action="Dongke.IBOSS.PRD.WCF.Contracts/IPMModule/GetRecyclingflagByBarcode", ReplyAction="Dongke.IBOSS.PRD.WCF.Contracts/IPMModule/GetRecyclingflagByBarcodeResponse")]
- int GetRecyclingflagByBarcode(string barcode);
-
- [System.ServiceModel.OperationContractAttribute(Action="Dongke.IBOSS.PRD.WCF.Contracts/IPMModule/GetFPM0101SData", ReplyAction="Dongke.IBOSS.PRD.WCF.Contracts/IPMModule/GetFPM0101SDataResponse")]
- System.Data.DataSet GetFPM0101SData(Dongke.IBOSS.PRD.WCF.DataModels.FPM0101_SE se);
-
- [System.ServiceModel.OperationContractAttribute(Action="Dongke.IBOSS.PRD.WCF.Contracts/IPMModule/GetGroutingDaily", ReplyAction="Dongke.IBOSS.PRD.WCF.Contracts/IPMModule/GetGroutingDailyResponse")]
- System.Data.DataSet GetGroutingDaily(Dongke.IBOSS.PRD.WCF.DataModels.GroutingDailyEntity groutingDailyEntity);
-
- [System.ServiceModel.OperationContractAttribute(Action="Dongke.IBOSS.PRD.WCF.Contracts/IPMModule/GetGroutingDailyDetailByMainId", ReplyAction="Dongke.IBOSS.PRD.WCF.Contracts/IPMModule/GetGroutingDailyDetailByMainIdResponse")]
- System.Data.DataSet GetGroutingDailyDetailByMainId(int DailyMainId);
-
- [System.ServiceModel.OperationContractAttribute(Action="Dongke.IBOSS.PRD.WCF.Contracts/IPMModule/AddGroutingDaily", ReplyAction="Dongke.IBOSS.PRD.WCF.Contracts/IPMModule/AddGroutingDailyResponse")]
- int AddGroutingDaily(Dongke.IBOSS.PRD.WCF.DataModels.GroutingDailyEntity[] groutingDailyEntityList, Dongke.IBOSS.PRD.WCF.DataModels.GroutingDailyDetailEntity[] dailyDetailEntityList);
-
- [System.ServiceModel.OperationContractAttribute(Action="Dongke.IBOSS.PRD.WCF.Contracts/IPMModule/UpdateGroutingDaily", ReplyAction="Dongke.IBOSS.PRD.WCF.Contracts/IPMModule/UpdateGroutingDailyResponse")]
- int UpdateGroutingDaily(Dongke.IBOSS.PRD.WCF.DataModels.GroutingDailyDetailEntity[] dailyDetailList);
-
- [System.ServiceModel.OperationContractAttribute(Action="Dongke.IBOSS.PRD.WCF.Contracts/IPMModule/GetGroutingProductByDetailId", ReplyAction="Dongke.IBOSS.PRD.WCF.Contracts/IPMModule/GetGroutingProductByDetailIdResponse")]
- string GetGroutingProductByDetailId(int DailyDetailId);
-
- [System.ServiceModel.OperationContractAttribute(Action="Dongke.IBOSS.PRD.WCF.Contracts/IPMModule/UpdateBarCode", ReplyAction="Dongke.IBOSS.PRD.WCF.Contracts/IPMModule/UpdateBarCodeResponse")]
- int UpdateBarCode(string barCode, string barCodeUpdate);
-
- [System.ServiceModel.OperationContractAttribute(Action="Dongke.IBOSS.PRD.WCF.Contracts/IPMModule/GetCanManyTimes", ReplyAction="Dongke.IBOSS.PRD.WCF.Contracts/IPMModule/GetCanManyTimesResponse")]
- int GetCanManyTimes(int GroutingLineID, System.DateTime GroutingDate);
-
- [System.ServiceModel.OperationContractAttribute(Action="Dongke.IBOSS.PRD.WCF.Contracts/IPMModule/GetGDailyDetailLeftBarCode", ReplyAction="Dongke.IBOSS.PRD.WCF.Contracts/IPMModule/GetGDailyDetailLeftBarCodeResponse")]
- System.Data.DataSet GetGDailyDetailLeftBarCode(string GroutingLineIds, System.Nullable<System.DateTime> GroutingDateStart, System.Nullable<System.DateTime> GroutingDateEnd);
-
- [System.ServiceModel.OperationContractAttribute(Action="Dongke.IBOSS.PRD.WCF.Contracts/IPMModule/AddBarCode", ReplyAction="Dongke.IBOSS.PRD.WCF.Contracts/IPMModule/AddBarCodeResponse")]
- int AddBarCode(Dongke.IBOSS.PRD.WCF.DataModels.GroutingDailyDetailEntity[] dailyDetailList, string ScrapIds);
-
- [System.ServiceModel.OperationContractAttribute(Action="Dongke.IBOSS.PRD.WCF.Contracts/IPMModule/BarCodesIsRepeat", ReplyAction="Dongke.IBOSS.PRD.WCF.Contracts/IPMModule/BarCodesIsRepeatResponse")]
- string BarCodesIsRepeat(string BarCodes);
-
- [System.ServiceModel.OperationContractAttribute(Action="Dongke.IBOSS.PRD.WCF.Contracts/IPMModule/GetMaxGroutingCountByMouldCode", ReplyAction="Dongke.IBOSS.PRD.WCF.Contracts/IPMModule/GetMaxGroutingCountByMouldCodeResponse")]
- int GetMaxGroutingCountByMouldCode(string MouldCode, System.DateTime inTime);
-
- [System.ServiceModel.OperationContractAttribute(Action="Dongke.IBOSS.PRD.WCF.Contracts/IPMModule/GetMouldCodeFromHistoryByTime", ReplyAction="Dongke.IBOSS.PRD.WCF.Contracts/IPMModule/GetMouldCodeFromHistoryByTimeResponse")]
- string GetMouldCodeFromHistoryByTime(int GroutingLineDetailID, System.DateTime inTime);
-
- [System.ServiceModel.OperationContractAttribute(Action="Dongke.IBOSS.PRD.WCF.Contracts/IPMModule/GetBarCode", ReplyAction="Dongke.IBOSS.PRD.WCF.Contracts/IPMModule/GetBarCodeResponse")]
- System.Data.DataSet GetBarCode(Dongke.IBOSS.PRD.WCF.DataModels.PMModule.GetBarCodeEntity gbEntity);
-
- [System.ServiceModel.OperationContractAttribute(Action="Dongke.IBOSS.PRD.WCF.Contracts/IPMModule/GetInProductionAndProductionData", ReplyAction="Dongke.IBOSS.PRD.WCF.Contracts/IPMModule/GetInProductionAndProductionDataResponse" +
- "")]
- System.Data.DataSet GetInProductionAndProductionData(string BarCode);
-
- [System.ServiceModel.OperationContractAttribute(Action="Dongke.IBOSS.PRD.WCF.Contracts/IPMModule/AddScrapProduct", ReplyAction="Dongke.IBOSS.PRD.WCF.Contracts/IPMModule/AddScrapProductResponse")]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.Basics.BaseResources.Constant.ServiceResultStatus))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.PMModule.SearchFinishedProductEntity))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.PMModule.GetBarCodeEntity))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.PMModule.SearchProductionDataEntity))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.InProductionEntity[]))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.InProductionEntity))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.InCheckedEntity))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.ServiceResultEntity))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.RPT010401_SE))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.FPM2110_SE))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.FPM2112_SE))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.SemiCheckEntity))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.SemiCheckDefectEntity[]))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.SemiCheckDefectEntity))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.SemiCheckResponsibleEntity[]))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.SemiCheckResponsibleEntity))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.SemiCheckEntity[]))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.OrderEntity))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.FPM0101_SE))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.GroutingDailyEntity))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.GroutingDailyEntity[]))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.GroutingDailyDetailEntity[]))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.GroutingDailyDetailEntity))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.ResponProcedureEntity))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.ScrapResponsibleEntity[]))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.ScrapResponsibleEntity))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.ProductionDataEntity))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.ProductionProcedureListEntity[]))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.ProductionProcedureListEntity))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.ProductionDefectEntity[]))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.ProductionDefectEntity))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.DefectImageEntity[]))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.DefectImageEntity))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.DefectMissedResponsibleEntity[]))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.DefectMissedResponsibleEntity))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.DefectResponsibleEntity[]))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.DefectResponsibleEntity))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.ProcedureEntity))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.ProcedureFlowEntity[]))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.ProcedureFlowEntity))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.CheckProcedureUserResult))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.CheckKilnCarResultEntity))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.KilnCarInfo[]))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.KilnCarInfo))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.ProductionDataEntity[]))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.SearchProgressRAPEntity))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.CelsiusRecordEntity))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.GroutingCountByUserEntity))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.PMProgressRAPEntity))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.WCFConstant.FormMode))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.PMResultEntity))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.SearchInProductionEntity))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.SemiTestDetailEntity))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.SemiTestDefectEntity[]))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.SemiTestDefectEntity))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.CheckCancelLoadCar))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.SemiTestEntity[]))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.SemiTestEntity))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.SemiTestDetailEntity[]))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(System.Exception))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(int[]))]
- int AddScrapProduct(Dongke.IBOSS.PRD.WCF.DataModels.ScrapProductEntity SProductEntity, Dongke.IBOSS.PRD.WCF.DataModels.ResponProcedureEntity RProcedureEntity, Dongke.IBOSS.PRD.WCF.DataModels.ScrapResponsibleEntity[] SResponsibleList);
-
- [System.ServiceModel.OperationContractAttribute(Action="Dongke.IBOSS.PRD.WCF.Contracts/IPMModule/OpenInProductionAndProductionData", ReplyAction="Dongke.IBOSS.PRD.WCF.Contracts/IPMModule/OpenInProductionAndProductionDataRespons" +
- "e")]
- void OpenInProductionAndProductionData(Dongke.IBOSS.PRD.WCF.DataModels.InProductionEntity inProduction, Dongke.IBOSS.PRD.WCF.DataModels.ProductionDataEntity productionData);
-
- [System.ServiceModel.OperationContractAttribute(Action="Dongke.IBOSS.PRD.WCF.Contracts/IPMModule/GetScrapProduct", ReplyAction="Dongke.IBOSS.PRD.WCF.Contracts/IPMModule/GetScrapProductResponse")]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.Basics.BaseResources.Constant.ServiceResultStatus))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.PMModule.SearchFinishedProductEntity))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.PMModule.GetBarCodeEntity))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.PMModule.SearchProductionDataEntity))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.InProductionEntity[]))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.InProductionEntity))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.InCheckedEntity))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.ServiceResultEntity))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.RPT010401_SE))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.FPM2110_SE))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.FPM2112_SE))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.SemiCheckEntity))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.SemiCheckDefectEntity[]))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.SemiCheckDefectEntity))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.SemiCheckResponsibleEntity[]))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.SemiCheckResponsibleEntity))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.SemiCheckEntity[]))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.OrderEntity))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.FPM0101_SE))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.GroutingDailyEntity))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.GroutingDailyEntity[]))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.GroutingDailyDetailEntity[]))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.GroutingDailyDetailEntity))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.ResponProcedureEntity))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.ScrapResponsibleEntity[]))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.ScrapResponsibleEntity))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.ProductionDataEntity))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.ProductionProcedureListEntity[]))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.ProductionProcedureListEntity))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.ProductionDefectEntity[]))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.ProductionDefectEntity))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.DefectImageEntity[]))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.DefectImageEntity))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.DefectMissedResponsibleEntity[]))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.DefectMissedResponsibleEntity))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.DefectResponsibleEntity[]))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.DefectResponsibleEntity))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.ProcedureEntity))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.ProcedureFlowEntity[]))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.ProcedureFlowEntity))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.CheckProcedureUserResult))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.CheckKilnCarResultEntity))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.KilnCarInfo[]))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.KilnCarInfo))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.ProductionDataEntity[]))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.SearchProgressRAPEntity))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.CelsiusRecordEntity))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.GroutingCountByUserEntity))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.PMProgressRAPEntity))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.WCFConstant.FormMode))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.PMResultEntity))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.SearchInProductionEntity))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.SemiTestDetailEntity))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.SemiTestDefectEntity[]))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.SemiTestDefectEntity))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.CheckCancelLoadCar))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.SemiTestEntity[]))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.SemiTestEntity))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.SemiTestDetailEntity[]))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(System.Exception))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(int[]))]
- System.Data.DataSet GetScrapProduct(Dongke.IBOSS.PRD.WCF.DataModels.ScrapProductEntity selectProEntity);
-
- [System.ServiceModel.OperationContractAttribute(Action="Dongke.IBOSS.PRD.WCF.Contracts/IPMModule/GetScrapResponsibleByResponProcedureID", ReplyAction="Dongke.IBOSS.PRD.WCF.Contracts/IPMModule/GetScrapResponsibleByResponProcedureIDRe" +
- "sponse")]
- System.Data.DataSet GetScrapResponsibleByResponProcedureID(int ResponProcedureId);
-
- [System.ServiceModel.OperationContractAttribute(Action="Dongke.IBOSS.PRD.WCF.Contracts/IPMModule/GetScrapResponsibleBySPId", ReplyAction="Dongke.IBOSS.PRD.WCF.Contracts/IPMModule/GetScrapResponsibleBySPIdResponse")]
- System.Data.DataSet GetScrapResponsibleBySPId(int SPId);
-
- [System.ServiceModel.OperationContractAttribute(Action="Dongke.IBOSS.PRD.WCF.Contracts/IPMModule/UpdateScrapProduct", ReplyAction="Dongke.IBOSS.PRD.WCF.Contracts/IPMModule/UpdateScrapProductResponse")]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.Basics.BaseResources.Constant.ServiceResultStatus))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.PMModule.SearchFinishedProductEntity))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.PMModule.GetBarCodeEntity))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.PMModule.SearchProductionDataEntity))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.InProductionEntity[]))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.InProductionEntity))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.InCheckedEntity))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.ServiceResultEntity))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.RPT010401_SE))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.FPM2110_SE))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.FPM2112_SE))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.SemiCheckEntity))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.SemiCheckDefectEntity[]))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.SemiCheckDefectEntity))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.SemiCheckResponsibleEntity[]))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.SemiCheckResponsibleEntity))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.SemiCheckEntity[]))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.OrderEntity))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.FPM0101_SE))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.GroutingDailyEntity))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.GroutingDailyEntity[]))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.GroutingDailyDetailEntity[]))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.GroutingDailyDetailEntity))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.ResponProcedureEntity))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.ScrapResponsibleEntity[]))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.ScrapResponsibleEntity))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.ProductionDataEntity))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.ProductionProcedureListEntity[]))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.ProductionProcedureListEntity))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.ProductionDefectEntity[]))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.ProductionDefectEntity))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.DefectImageEntity[]))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.DefectImageEntity))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.DefectMissedResponsibleEntity[]))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.DefectMissedResponsibleEntity))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.DefectResponsibleEntity[]))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.DefectResponsibleEntity))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.ProcedureEntity))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.ProcedureFlowEntity[]))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.ProcedureFlowEntity))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.CheckProcedureUserResult))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.CheckKilnCarResultEntity))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.KilnCarInfo[]))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.KilnCarInfo))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.ProductionDataEntity[]))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.SearchProgressRAPEntity))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.CelsiusRecordEntity))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.GroutingCountByUserEntity))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.PMProgressRAPEntity))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.WCFConstant.FormMode))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.PMResultEntity))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.SearchInProductionEntity))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.SemiTestDetailEntity))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.SemiTestDefectEntity[]))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.SemiTestDefectEntity))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.CheckCancelLoadCar))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.SemiTestEntity[]))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.SemiTestEntity))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.SemiTestDetailEntity[]))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(System.Exception))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(int[]))]
- 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);
-
- [System.ServiceModel.OperationContractAttribute(Action="Dongke.IBOSS.PRD.WCF.Contracts/IPMModule/GetResponProcedureBySPId", ReplyAction="Dongke.IBOSS.PRD.WCF.Contracts/IPMModule/GetResponProcedureBySPIdResponse")]
- System.Data.DataSet GetResponProcedureBySPId(int SPId);
-
- [System.ServiceModel.OperationContractAttribute(Action="Dongke.IBOSS.PRD.WCF.Contracts/IPMModule/ScrapProductChack", ReplyAction="Dongke.IBOSS.PRD.WCF.Contracts/IPMModule/ScrapProductChackResponse")]
- string ScrapProductChack(string BarCode);
-
- [System.ServiceModel.OperationContractAttribute(Action="Dongke.IBOSS.PRD.WCF.Contracts/IPMModule/AuditScrapProduct", ReplyAction="Dongke.IBOSS.PRD.WCF.Contracts/IPMModule/AuditScrapProductResponse")]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.Basics.BaseResources.Constant.ServiceResultStatus))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.PMModule.SearchFinishedProductEntity))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.PMModule.GetBarCodeEntity))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.PMModule.SearchProductionDataEntity))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.InProductionEntity[]))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.InProductionEntity))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.InCheckedEntity))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.ServiceResultEntity))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.RPT010401_SE))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.FPM2110_SE))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.FPM2112_SE))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.SemiCheckEntity))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.SemiCheckDefectEntity[]))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.SemiCheckDefectEntity))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.SemiCheckResponsibleEntity[]))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.SemiCheckResponsibleEntity))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.SemiCheckEntity[]))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.OrderEntity))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.FPM0101_SE))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.GroutingDailyEntity))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.GroutingDailyEntity[]))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.GroutingDailyDetailEntity[]))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.GroutingDailyDetailEntity))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.ResponProcedureEntity))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.ScrapResponsibleEntity[]))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.ScrapResponsibleEntity))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.ProductionDataEntity))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.ProductionProcedureListEntity[]))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.ProductionProcedureListEntity))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.ProductionDefectEntity[]))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.ProductionDefectEntity))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.DefectImageEntity[]))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.DefectImageEntity))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.DefectMissedResponsibleEntity[]))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.DefectMissedResponsibleEntity))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.DefectResponsibleEntity[]))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.DefectResponsibleEntity))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.ProcedureEntity))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.ProcedureFlowEntity[]))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.ProcedureFlowEntity))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.CheckProcedureUserResult))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.CheckKilnCarResultEntity))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.KilnCarInfo[]))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.KilnCarInfo))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.ProductionDataEntity[]))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.SearchProgressRAPEntity))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.CelsiusRecordEntity))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.GroutingCountByUserEntity))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.PMProgressRAPEntity))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.WCFConstant.FormMode))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.PMResultEntity))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.SearchInProductionEntity))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.SemiTestDetailEntity))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.SemiTestDefectEntity[]))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.SemiTestDefectEntity))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.CheckCancelLoadCar))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.SemiTestEntity[]))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.SemiTestEntity))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Dongke.IBOSS.PRD.WCF.DataModels.SemiTestDetailEntity[]))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(System.Exception))]
- [System.ServiceModel.ServiceKnownTypeAttribute(typeof(int[]))]
- int AuditScrapProduct(Dongke.IBOSS.PRD.WCF.DataModels.ScrapProductEntity spEntity);
-
- [System.ServiceModel.OperationContractAttribute(Action="Dongke.IBOSS.PRD.WCF.Contracts/IPMModule/GetInProductionByBarcode", ReplyAction="Dongke.IBOSS.PRD.WCF.Contracts/IPMModule/GetInProductionByBarcodeResponse")]
- System.Data.DataSet GetInProductionByBarcode(string barcode);
-
- [System.ServiceModel.OperationContractAttribute(Action="Dongke.IBOSS.PRD.WCF.Contracts/IPMModule/SearchProductionData", ReplyAction="Dongke.IBOSS.PRD.WCF.Contracts/IPMModule/SearchProductionDataResponse")]
- System.Data.DataTable SearchProductionData(Dongke.IBOSS.PRD.WCF.DataModels.PMModule.SearchProductionDataEntity searchEntity);
-
- [System.ServiceModel.OperationContractAttribute(Action="Dongke.IBOSS.PRD.WCF.Contracts/IPMModule/GetProductionData", ReplyAction="Dongke.IBOSS.PRD.WCF.Contracts/IPMModule/GetProductionDataResponse")]
- System.Data.DataTable GetProductionData(Dongke.IBOSS.PRD.WCF.DataModels.PMModule.SearchProductionDataEntity searchEntity);
-
- [System.ServiceModel.OperationContractAttribute(Action="Dongke.IBOSS.PRD.WCF.Contracts/IPMModule/GetProductionDataPDA", ReplyAction="Dongke.IBOSS.PRD.WCF.Contracts/IPMModule/GetProductionDataPDAResponse")]
- System.Data.DataTable GetProductionDataPDA(Dongke.IBOSS.PRD.WCF.DataModels.PMModule.SearchProductionDataEntity searchEntity);
-
- [System.ServiceModel.OperationContractAttribute(Action="Dongke.IBOSS.PRD.WCF.Contracts/IPMModule/GetProcedureDataEntityByID", ReplyAction="Dongke.IBOSS.PRD.WCF.Contracts/IPMModule/GetProcedureDataEntityByIDResponse")]
- Dongke.IBOSS.PRD.WCF.DataModels.ProcedureEntity GetProcedureDataEntityByID(int procedureID);
-
- [System.ServiceModel.OperationContractAttribute(Action="Dongke.IBOSS.PRD.WCF.Contracts/IPMModule/DecideUserInProcedure", ReplyAction="Dongke.IBOSS.PRD.WCF.Contracts/IPMModule/DecideUserInProcedureResponse")]
- System.Data.DataSet DecideUserInProcedure(int procedureID, int userID);
-
- [System.ServiceModel.OperationContractAttribute(Action="Dongke.IBOSS.PRD.WCF.Contracts/IPMModule/CheckBarcode", ReplyAction="Dongke.IBOSS.PRD.WCF.Contracts/IPMModule/CheckBarcodeResponse")]
- System.Data.DataSet CheckBarcode(int procedureid, string barcode);
-
- [System.ServiceModel.OperationContractAttribute(Action="Dongke.IBOSS.PRD.WCF.Contracts/IPMModule/CheckProcedureUser", ReplyAction="Dongke.IBOSS.PRD.WCF.Contracts/IPMModule/CheckProcedureUserResponse")]
- Dongke.IBOSS.PRD.WCF.DataModels.CheckProcedureUserResult CheckProcedureUser(int procedureID, string UserCode);
-
- [System.ServiceModel.OperationContractAttribute(Action="Dongke.IBOSS.PRD.WCF.Contracts/IPMModule/SaveProductionData", ReplyAction="Dongke.IBOSS.PRD.WCF.Contracts/IPMModule/SaveProductionDataResponse")]
- string SaveProductionData(Dongke.IBOSS.PRD.WCF.DataModels.ProductionDataEntity productionData);
-
- [System.ServiceModel.OperationContractAttribute(Action="Dongke.IBOSS.PRD.WCF.Contracts/IPMModule/AddWorkPiece", ReplyAction="Dongke.IBOSS.PRD.WCF.Contracts/IPMModule/AddWorkPieceResponse")]
- System.Data.DataTable AddWorkPiece(int procedureID, System.Data.DataTable barcodeTable);
-
- [System.ServiceModel.OperationContractAttribute(Action="Dongke.IBOSS.PRD.WCF.Contracts/IPMModule/CheckKilnCar", ReplyAction="Dongke.IBOSS.PRD.WCF.Contracts/IPMModule/CheckKilnCarResponse")]
- Dongke.IBOSS.PRD.WCF.DataModels.CheckKilnCarResultEntity CheckKilnCar(int pProcedureId, string kilnCarCode, int pModelType);
-
- [System.ServiceModel.OperationContractAttribute(Action="Dongke.IBOSS.PRD.WCF.Contracts/IPMModule/AddCheckBarcode", ReplyAction="Dongke.IBOSS.PRD.WCF.Contracts/IPMModule/AddCheckBarcodeResponse")]
- string AddCheckBarcode(int procedureID, Dongke.IBOSS.PRD.WCF.DataModels.ProductionDataEntity[] productionDataEntitys);
-
- [System.ServiceModel.OperationContractAttribute(Action="Dongke.IBOSS.PRD.WCF.Contracts/IPMModule/GetProductionByBarcode", ReplyAction="Dongke.IBOSS.PRD.WCF.Contracts/IPMModule/GetProductionByBarcodeResponse")]
- System.Data.DataSet GetProductionByBarcode(int procedureID, string barcode);
-
- [System.ServiceModel.OperationContractAttribute(Action="Dongke.IBOSS.PRD.WCF.Contracts/IPMModule/GetReworkProcedureByBarcode", ReplyAction="Dongke.IBOSS.PRD.WCF.Contracts/IPMModule/GetReworkProcedureByBarcodeResponse")]
- System.Data.DataSet GetReworkProcedureByBarcode(int procedureID, string barcode);
-
- [System.ServiceModel.OperationContractAttribute(Action="Dongke.IBOSS.PRD.WCF.Contracts/IPMModule/GetDefectByProcedure", ReplyAction="Dongke.IBOSS.PRD.WCF.Contracts/IPMModule/GetDefectByProcedureResponse")]
- System.Data.DataSet GetDefectByProcedure(int procedureID);
-
- [System.ServiceModel.OperationContractAttribute(Action="Dongke.IBOSS.PRD.WCF.Contracts/IPMModule/GetDefectLocaionByGoodsID", ReplyAction="Dongke.IBOSS.PRD.WCF.Contracts/IPMModule/GetDefectLocaionByGoodsIDResponse")]
- System.Data.DataSet GetDefectLocaionByGoodsID(int goodsID);
-
- [System.ServiceModel.OperationContractAttribute(Action="Dongke.IBOSS.PRD.WCF.Contracts/IPMModule/GetDutyProcedureByBarCode", ReplyAction="Dongke.IBOSS.PRD.WCF.Contracts/IPMModule/GetDutyProcedureByBarCodeResponse")]
- System.Data.DataSet GetDutyProcedureByBarCode(string barcode, int defectid);
-
- [System.ServiceModel.OperationContractAttribute(Action="Dongke.IBOSS.PRD.WCF.Contracts/IPMModule/GetDutyProcedureCodeByBarCode", ReplyAction="Dongke.IBOSS.PRD.WCF.Contracts/IPMModule/GetDutyProcedureCodeByBarCodeResponse")]
- System.Data.DataSet GetDutyProcedureCodeByBarCode(string barcode, int dutyProcedureID);
-
- [System.ServiceModel.OperationContractAttribute(Action="Dongke.IBOSS.PRD.WCF.Contracts/IPMModule/GetDutyProcedureCodeByProductionDataID", ReplyAction="Dongke.IBOSS.PRD.WCF.Contracts/IPMModule/GetDutyProcedureCodeByProductionDataIDRe" +
- "sponse")]
- System.Data.DataSet GetDutyProcedureCodeByProductionDataID(int ProductionDataID);
-
- [System.ServiceModel.OperationContractAttribute(Action="Dongke.IBOSS.PRD.WCF.Contracts/IPMModule/GetDutyJobsCodeByUser", ReplyAction="Dongke.IBOSS.PRD.WCF.Contracts/IPMModule/GetDutyJobsCodeByUserResponse")]
- System.Data.DataSet GetDutyJobsCodeByUser(int userID, int productionDataID);
-
- [System.ServiceModel.OperationContractAttribute(Action="Dongke.IBOSS.PRD.WCF.Contracts/IPMModule/GetDutyStaffByUserIDAndJobs", ReplyAction="Dongke.IBOSS.PRD.WCF.Contracts/IPMModule/GetDutyStaffByUserIDAndJobsResponse")]
- System.Data.DataSet GetDutyStaffByUserIDAndJobs(int productionDataID, int userID, int jobs);
-
- [System.ServiceModel.OperationContractAttribute(Action="Dongke.IBOSS.PRD.WCF.Contracts/IPMModule/SearcStaffAdminRAPInfo", ReplyAction="Dongke.IBOSS.PRD.WCF.Contracts/IPMModule/SearcStaffAdminRAPInfoResponse")]
- System.Data.DataSet SearcStaffAdminRAPInfo(Dongke.IBOSS.PRD.WCF.DataModels.SearchProgressRAPEntity searchProgressRAPEntity);
-
- [System.ServiceModel.OperationContractAttribute(Action="Dongke.IBOSS.PRD.WCF.Contracts/IPMModule/AddCelsiusRecord", ReplyAction="Dongke.IBOSS.PRD.WCF.Contracts/IPMModule/AddCelsiusRecordResponse")]
- int AddCelsiusRecord(Dongke.IBOSS.PRD.WCF.DataModels.CelsiusRecordEntity crEntity);
-
- [System.ServiceModel.OperationContractAttribute(Action="Dongke.IBOSS.PRD.WCF.Contracts/IPMModule/UpdateCelsiusRecord", ReplyAction="Dongke.IBOSS.PRD.WCF.Contracts/IPMModule/UpdateCelsiusRecordResponse")]
- int UpdateCelsiusRecord(Dongke.IBOSS.PRD.WCF.DataModels.CelsiusRecordEntity crEntity);
-
- [System.ServiceModel.OperationContractAttribute(Action="Dongke.IBOSS.PRD.WCF.Contracts/IPMModule/GetCelsiusRecord", ReplyAction="Dongke.IBOSS.PRD.WCF.Contracts/IPMModule/GetCelsiusRecordResponse")]
- System.Data.DataSet GetCelsiusRecord(Dongke.IBOSS.PRD.WCF.DataModels.CelsiusRecordEntity celsiusRecordEntity);
-
- [System.ServiceModel.OperationContractAttribute(Action="Dongke.IBOSS.PRD.WCF.Contracts/IPMModule/GetCelsiusRecordView", ReplyAction="Dongke.IBOSS.PRD.WCF.Contracts/IPMModule/GetCelsiusRecordViewResponse")]
- System.Data.DataSet GetCelsiusRecordView(Dongke.IBOSS.PRD.WCF.DataModels.CelsiusRecordEntity celsiusRecordEntity);
-
- [System.ServiceModel.OperationContractAttribute(Action="Dongke.IBOSS.PRD.WCF.Contracts/IPMModule/EditCelsiusRecord", ReplyAction="Dongke.IBOSS.PRD.WCF.Contracts/IPMModule/EditCelsiusRecordResponse")]
- int EditCelsiusRecord(System.DateTime RecordTime, System.Data.DataTable dtCelsius);
-
- [System.ServiceModel.OperationContractAttribute(Action="Dongke.IBOSS.PRD.WCF.Contracts/IPMModule/DeleteCelsiusRecord", ReplyAction="Dongke.IBOSS.PRD.WCF.Contracts/IPMModule/DeleteCelsiusRecordResponse")]
- int DeleteCelsiusRecord(int recordID);
-
- [System.ServiceModel.OperationContractAttribute(Action="Dongke.IBOSS.PRD.WCF.Contracts/IPMModule/GetGroutingCountByUser", ReplyAction="Dongke.IBOSS.PRD.WCF.Contracts/IPMModule/GetGroutingCountByUserResponse")]
- System.Data.DataSet GetGroutingCountByUser(Dongke.IBOSS.PRD.WCF.DataModels.GroutingCountByUserEntity gcEntity);
-
- [System.ServiceModel.OperationContractAttribute(Action="Dongke.IBOSS.PRD.WCF.Contracts/IPMModule/SaveStaffProgressRAPInfo", ReplyAction="Dongke.IBOSS.PRD.WCF.Contracts/IPMModule/SaveStaffProgressRAPInfoResponse")]
- Dongke.IBOSS.PRD.WCF.DataModels.PMResultEntity SaveStaffProgressRAPInfo(Dongke.IBOSS.PRD.WCF.DataModels.PMProgressRAPEntity pProgressRAPEntity, Dongke.IBOSS.PRD.WCF.DataModels.WCFConstant.FormMode pStatus);
-
- [System.ServiceModel.OperationContractAttribute(Action="Dongke.IBOSS.PRD.WCF.Contracts/IPMModule/SaveStaffProgressRAPApprovalInfo", ReplyAction="Dongke.IBOSS.PRD.WCF.Contracts/IPMModule/SaveStaffProgressRAPApprovalInfoResponse" +
- "")]
- Dongke.IBOSS.PRD.WCF.DataModels.PMResultEntity SaveStaffProgressRAPApprovalInfo(Dongke.IBOSS.PRD.WCF.DataModels.PMProgressRAPEntity pProgressRAPEntity, bool pState);
-
- [System.ServiceModel.OperationContractAttribute(Action="Dongke.IBOSS.PRD.WCF.Contracts/IPMModule/SetStaffProgressRAPValueFlag", ReplyAction="Dongke.IBOSS.PRD.WCF.Contracts/IPMModule/SetStaffProgressRAPValueFlagResponse")]
- Dongke.IBOSS.PRD.WCF.DataModels.PMResultEntity SetStaffProgressRAPValueFlag(int pRAPID);
-
- [System.ServiceModel.OperationContractAttribute(Action="Dongke.IBOSS.PRD.WCF.Contracts/IPMModule/GetKilnCarByBarCode", ReplyAction="Dongke.IBOSS.PRD.WCF.Contracts/IPMModule/GetKilnCarByBarCodeResponse")]
- System.Data.DataSet GetKilnCarByBarCode(string barcode);
-
- [System.ServiceModel.OperationContractAttribute(Action="Dongke.IBOSS.PRD.WCF.Contracts/IPMModule/GetProductionDefectByProductionDataID", ReplyAction="Dongke.IBOSS.PRD.WCF.Contracts/IPMModule/GetProductionDefectByProductionDataIDRes" +
- "ponse")]
- System.Data.DataSet GetProductionDefectByProductionDataID(int ProductionDataID);
-
- [System.ServiceModel.OperationContractAttribute(Action="Dongke.IBOSS.PRD.WCF.Contracts/IPMModule/GetReworkProcedureByProcedureID", ReplyAction="Dongke.IBOSS.PRD.WCF.Contracts/IPMModule/GetReworkProcedureByProcedureIDResponse")]
- System.Data.DataSet GetReworkProcedureByProcedureID(int procedureID);
-
- [System.ServiceModel.OperationContractAttribute(Action="Dongke.IBOSS.PRD.WCF.Contracts/IPMModule/GetInProductionData", ReplyAction="Dongke.IBOSS.PRD.WCF.Contracts/IPMModule/GetInProductionDataResponse")]
- System.Data.DataSet GetInProductionData(Dongke.IBOSS.PRD.WCF.DataModels.SearchInProductionEntity searchInProductionEntity);
-
- [System.ServiceModel.OperationContractAttribute(Action="Dongke.IBOSS.PRD.WCF.Contracts/IPMModule/GetFinishedProductionData", ReplyAction="Dongke.IBOSS.PRD.WCF.Contracts/IPMModule/GetFinishedProductionDataResponse")]
- System.Data.DataSet GetFinishedProductionData(Dongke.IBOSS.PRD.WCF.DataModels.PMModule.SearchFinishedProductEntity searchFinishedProductionEntity);
-
- [System.ServiceModel.OperationContractAttribute(Action="Dongke.IBOSS.PRD.WCF.Contracts/IPMModule/GetSearchSemiTestListModule", ReplyAction="Dongke.IBOSS.PRD.WCF.Contracts/IPMModule/GetSearchSemiTestListModuleResponse")]
- System.Data.DataSet GetSearchSemiTestListModule(Dongke.IBOSS.PRD.WCF.DataModels.SemiTestDetailEntity semiTestDetailEntity);
-
- [System.ServiceModel.OperationContractAttribute(Action="Dongke.IBOSS.PRD.WCF.Contracts/IPMModule/CheckCancelLoadCar", ReplyAction="Dongke.IBOSS.PRD.WCF.Contracts/IPMModule/CheckCancelLoadCarResponse")]
- Dongke.IBOSS.PRD.WCF.DataModels.CheckCancelLoadCar CheckCancelLoadCar(int procedureID, string barcode);
-
- [System.ServiceModel.OperationContractAttribute(Action="Dongke.IBOSS.PRD.WCF.Contracts/IPMModule/AddCancelLoadCar", ReplyAction="Dongke.IBOSS.PRD.WCF.Contracts/IPMModule/AddCancelLoadCarResponse")]
- string AddCancelLoadCar(int procedureID, string barcode);
-
- [System.ServiceModel.OperationContractAttribute(Action="Dongke.IBOSS.PRD.WCF.Contracts/IPMModule/GetProductionDataByID", ReplyAction="Dongke.IBOSS.PRD.WCF.Contracts/IPMModule/GetProductionDataByIDResponse")]
- System.Data.DataSet GetProductionDataByID(int productionDataID);
-
- [System.ServiceModel.OperationContractAttribute(Action="Dongke.IBOSS.PRD.WCF.Contracts/IPMModule/GetCompleteProcedureID", ReplyAction="Dongke.IBOSS.PRD.WCF.Contracts/IPMModule/GetCompleteProcedureIDResponse")]
- int GetCompleteProcedureID(string barcode);
-
- [System.ServiceModel.OperationContractAttribute(Action="Dongke.IBOSS.PRD.WCF.Contracts/IPMModule/DeleteProductionDataByID", ReplyAction="Dongke.IBOSS.PRD.WCF.Contracts/IPMModule/DeleteProductionDataByIDResponse")]
- int DeleteProductionDataByID(int productionDataID);
-
- [System.ServiceModel.OperationContractAttribute(Action="Dongke.IBOSS.PRD.WCF.Contracts/IPMModule/GetGroutingProducttByBarCode", ReplyAction="Dongke.IBOSS.PRD.WCF.Contracts/IPMModule/GetGroutingProducttByBarCodeResponse")]
- System.Data.DataSet GetGroutingProducttByBarCode(string barcode);
-
- [System.ServiceModel.OperationContractAttribute(Action="Dongke.IBOSS.PRD.WCF.Contracts/IPMModule/GetDutyStaffByUserID", ReplyAction="Dongke.IBOSS.PRD.WCF.Contracts/IPMModule/GetDutyStaffByUserIDResponse")]
- System.Data.DataSet GetDutyStaffByUserID(int jobs);
-
- [System.ServiceModel.OperationContractAttribute(Action="Dongke.IBOSS.PRD.WCF.Contracts/IPMModule/GetMissedStaffByUserID", ReplyAction="Dongke.IBOSS.PRD.WCF.Contracts/IPMModule/GetMissedStaffByUserIDResponse")]
- System.Data.DataSet GetMissedStaffByUserID(int userid);
-
- [System.ServiceModel.OperationContractAttribute(Action="Dongke.IBOSS.PRD.WCF.Contracts/IPMModule/AddSemiTest", ReplyAction="Dongke.IBOSS.PRD.WCF.Contracts/IPMModule/AddSemiTestResponse")]
- string AddSemiTest(Dongke.IBOSS.PRD.WCF.DataModels.SemiTestEntity[] semiTestEntitys);
-
- [System.ServiceModel.OperationContractAttribute(Action="Dongke.IBOSS.PRD.WCF.Contracts/IPMModule/GetSemiTestByID", ReplyAction="Dongke.IBOSS.PRD.WCF.Contracts/IPMModule/GetSemiTestByIDResponse")]
- System.Data.DataSet GetSemiTestByID(int semiTestID);
-
- [System.ServiceModel.OperationContractAttribute(Action="Dongke.IBOSS.PRD.WCF.Contracts/IPMModule/DeleteSemiTestDataByID", ReplyAction="Dongke.IBOSS.PRD.WCF.Contracts/IPMModule/DeleteSemiTestDataByIDResponse")]
- int DeleteSemiTestDataByID(int semiTestID);
-
- [System.ServiceModel.OperationContractAttribute(Action="Dongke.IBOSS.PRD.WCF.Contracts/IPMModule/ValidateOPTimeStamp", ReplyAction="Dongke.IBOSS.PRD.WCF.Contracts/IPMModule/ValidateOPTimeStampResponse")]
- int ValidateOPTimeStamp(int semiTestID, System.DateTime opTimeStamp);
-
- [System.ServiceModel.OperationContractAttribute(Action="Dongke.IBOSS.PRD.WCF.Contracts/IPMModule/UpdateSemiTestByID", ReplyAction="Dongke.IBOSS.PRD.WCF.Contracts/IPMModule/UpdateSemiTestByIDResponse")]
- int UpdateSemiTestByID(int semiTestID, int auditStatus);
-
- [System.ServiceModel.OperationContractAttribute(Action="Dongke.IBOSS.PRD.WCF.Contracts/IPMModule/SearchSemiTestList", ReplyAction="Dongke.IBOSS.PRD.WCF.Contracts/IPMModule/SearchSemiTestListResponse")]
- System.Data.DataSet SearchSemiTestList(Dongke.IBOSS.PRD.WCF.DataModels.SemiTestEntity semiTestEntity);
-
- [System.ServiceModel.OperationContractAttribute(Action="Dongke.IBOSS.PRD.WCF.Contracts/IPMModule/SearchSemiTestInfo", ReplyAction="Dongke.IBOSS.PRD.WCF.Contracts/IPMModule/SearchSemiTestInfoResponse")]
- System.Data.DataSet SearchSemiTestInfo(int semitestID);
-
- [System.ServiceModel.OperationContractAttribute(Action="Dongke.IBOSS.PRD.WCF.Contracts/IPMModule/GetDutyStaffByUserJobsID", ReplyAction="Dongke.IBOSS.PRD.WCF.Contracts/IPMModule/GetDutyStaffByUserJobsIDResponse")]
- System.Data.DataSet GetDutyStaffByUserJobsID(int jobs, int userID);
-
- [System.ServiceModel.OperationContractAttribute(Action="Dongke.IBOSS.PRD.WCF.Contracts/IPMModule/SearchSemiTestDetailInfo", ReplyAction="Dongke.IBOSS.PRD.WCF.Contracts/IPMModule/SearchSemiTestDetailInfoResponse")]
- System.Data.DataSet SearchSemiTestDetailInfo(int semitestDetailID);
-
- [System.ServiceModel.OperationContractAttribute(Action="Dongke.IBOSS.PRD.WCF.Contracts/IPMModule/GetSubstandardInfo", ReplyAction="Dongke.IBOSS.PRD.WCF.Contracts/IPMModule/GetSubstandardInfoResponse")]
- System.Data.DataSet GetSubstandardInfo(string barcode);
-
- [System.ServiceModel.OperationContractAttribute(Action="Dongke.IBOSS.PRD.WCF.Contracts/IPMModule/GetReFine", ReplyAction="Dongke.IBOSS.PRD.WCF.Contracts/IPMModule/GetReFineResponse")]
- System.Data.DataSet GetReFine(string barcode);
-
- [System.ServiceModel.OperationContractAttribute(Action="Dongke.IBOSS.PRD.WCF.Contracts/IPMModule/AddBarCodeMissing", ReplyAction="Dongke.IBOSS.PRD.WCF.Contracts/IPMModule/AddBarCodeMissingResponse")]
- int AddBarCodeMissing(string barcode, int produceid);
-
- [System.ServiceModel.OperationContractAttribute(Action="Dongke.IBOSS.PRD.WCF.Contracts/IPMModule/CheckDryRepairBarcode", ReplyAction="Dongke.IBOSS.PRD.WCF.Contracts/IPMModule/CheckDryRepairBarcodeResponse")]
- System.Data.DataSet CheckDryRepairBarcode(int procedureid, string barcode);
-
- [System.ServiceModel.OperationContractAttribute(Action="Dongke.IBOSS.PRD.WCF.Contracts/IPMModule/GetSpecialRepairflagByBarcode", ReplyAction="Dongke.IBOSS.PRD.WCF.Contracts/IPMModule/GetSpecialRepairflagByBarcodeResponse")]
- int GetSpecialRepairflagByBarcode(string barcode);
-
- [System.ServiceModel.OperationContractAttribute(Action="Dongke.IBOSS.PRD.WCF.Contracts/IPMModule/GetKilnCarGoodsByKilnCarID", ReplyAction="Dongke.IBOSS.PRD.WCF.Contracts/IPMModule/GetKilnCarGoodsByKilnCarIDResponse")]
- System.Data.DataSet GetKilnCarGoodsByKilnCarID(int KilnCarID);
- }
-
- [System.CodeDom.Compiler.GeneratedCodeAttribute("System.ServiceModel", "4.0.0.0")]
- public interface IPMModuleChannel : Dongke.IBOSS.PRD.WCF.Proxys.PMModuleService.IPMModule, System.ServiceModel.IClientChannel {
- }
-
- [System.Diagnostics.DebuggerStepThroughAttribute()]
- [System.CodeDom.Compiler.GeneratedCodeAttribute("System.ServiceModel", "4.0.0.0")]
- public partial class PMModuleClient : System.ServiceModel.ClientBase<Dongke.IBOSS.PRD.WCF.Proxys.PMModuleService.IPMModule>, Dongke.IBOSS.PRD.WCF.Proxys.PMModuleService.IPMModule {
-
- public PMModuleClient() {
- }
-
- public PMModuleClient(string endpointConfigurationName) :
- base(endpointConfigurationName) {
- }
-
- public PMModuleClient(string endpointConfigurationName, string remoteAddress) :
- base(endpointConfigurationName, remoteAddress) {
- }
-
- public PMModuleClient(string endpointConfigurationName, System.ServiceModel.EndpointAddress remoteAddress) :
- base(endpointConfigurationName, remoteAddress) {
- }
-
- public PMModuleClient(System.ServiceModel.Channels.Binding binding, System.ServiceModel.EndpointAddress remoteAddress) :
- base(binding, remoteAddress) {
- }
-
- public System.Data.DataSet GetBarCodeInGroutingDailyDetail(string barcode) {
- return base.Channel.GetBarCodeInGroutingDailyDetail(barcode);
- }
-
- public int GetCompleteProductionDataID(string barcode) {
- return base.Channel.GetCompleteProductionDataID(barcode);
- }
-
- public System.Data.DataSet GetInProductionDataList(string barcode) {
- return base.Channel.GetInProductionDataList(barcode);
- }
-
- public int CheckScrapProduct(string barcode) {
- return base.Channel.CheckScrapProduct(barcode);
- }
-
- public System.Data.DataSet GetGoodsInfoBybarcode(string barcode) {
- return base.Channel.GetGoodsInfoBybarcode(barcode);
- }
-
- public int UpdateGroutingUserCodeByMissingID(string groutingUserCode, int missingID) {
- return base.Channel.UpdateGroutingUserCodeByMissingID(groutingUserCode, missingID);
- }
-
- public int CheckKilnCarByIntoCar(string kilncarcode, int procedureid) {
- return base.Channel.CheckKilnCarByIntoCar(kilncarcode, procedureid);
- }
-
- public System.Data.DataSet GetInCheckedDetail(string ProcedureIDS) {
- return base.Channel.GetInCheckedDetail(ProcedureIDS);
- }
-
- public int SaveInChecked(Dongke.IBOSS.PRD.WCF.DataModels.InProductionEntity[] inProductionEntity, string remarks) {
- return base.Channel.SaveInChecked(inProductionEntity, remarks);
- }
-
- public System.Data.DataSet GetInCheckedList() {
- return base.Channel.GetInCheckedList();
- }
-
- public System.Data.DataSet GetInCheckedUserList(int InCheckedID) {
- return base.Channel.GetInCheckedUserList(InCheckedID);
- }
-
- public int UpdateInChecked(int InCheckedID, string BarCode) {
- return base.Channel.UpdateInChecked(InCheckedID, BarCode);
- }
-
- public int DisableInChecked(int inCheckedID) {
- return base.Channel.DisableInChecked(inCheckedID);
- }
-
- public System.Data.DataSet GetAllInChecked(Dongke.IBOSS.PRD.WCF.DataModels.InCheckedEntity entity) {
- return base.Channel.GetAllInChecked(entity);
- }
-
- public System.Data.DataSet GetAllInCheckedDetail(int inCheckedID) {
- return base.Channel.GetAllInCheckedDetail(inCheckedID);
- }
-
- public System.Data.DataSet GetScrapProductUserCodeByProductionDataID(int ProductionDataID) {
- return base.Channel.GetScrapProductUserCodeByProductionDataID(ProductionDataID);
- }
-
- public int CheckKilnCarByIntoCar2(string kilncarcode, int procedureid) {
- return base.Channel.CheckKilnCarByIntoCar2(kilncarcode, procedureid);
- }
-
- public Dongke.IBOSS.PRD.WCF.DataModels.ServiceResultEntity AddChancelFinishedproduct(string barcode) {
- return base.Channel.AddChancelFinishedproduct(barcode);
- }
-
- public Dongke.IBOSS.PRD.WCF.DataModels.ServiceResultEntity AddCancelScrapProduction(string barcode) {
- return base.Channel.AddCancelScrapProduction(barcode);
- }
-
- public System.Data.DataSet GetGroutingInfoBybarcode(string barcode) {
- return base.Channel.GetGroutingInfoBybarcode(barcode);
- }
-
- public System.Data.DataSet GetFinishedProductGroutingInfoBybarcode(string barcode) {
- return base.Channel.GetFinishedProductGroutingInfoBybarcode(barcode);
- }
-
- public int AddPublicBodyProduct(string barcode) {
- return base.Channel.AddPublicBodyProduct(barcode);
- }
-
- public System.Data.DataSet CheckBarcodeDeliverMud(int procedureid, string barcode) {
- return base.Channel.CheckBarcodeDeliverMud(procedureid, barcode);
- }
-
- public Dongke.IBOSS.PRD.WCF.DataModels.ServiceResultEntity GetPM2108Data(Dongke.IBOSS.PRD.WCF.DataModels.RPT010401_SE se) {
- return base.Channel.GetPM2108Data(se);
- }
-
- public int SaveClearInproduction(string barcodes) {
- return base.Channel.SaveClearInproduction(barcodes);
- }
-
- public int SaveClearAllInproduction(Dongke.IBOSS.PRD.WCF.DataModels.RPT010401_SE se) {
- return base.Channel.SaveClearAllInproduction(se);
- }
-
- public Dongke.IBOSS.PRD.WCF.DataModels.ServiceResultEntity GetPM2110Data(Dongke.IBOSS.PRD.WCF.DataModels.FPM2110_SE se) {
- return base.Channel.GetPM2110Data(se);
- }
-
- public int SaveClearInproductionTrash(string barcodes) {
- return base.Channel.SaveClearInproductionTrash(barcodes);
- }
-
- public int SaveClearAllInproductionTrash(Dongke.IBOSS.PRD.WCF.DataModels.FPM2110_SE se) {
- return base.Channel.SaveClearAllInproductionTrash(se);
- }
-
- public Dongke.IBOSS.PRD.WCF.DataModels.ServiceResultEntity GetPM2112Data(Dongke.IBOSS.PRD.WCF.DataModels.FPM2112_SE se) {
- return base.Channel.GetPM2112Data(se);
- }
-
- public int SaveClearInproductionTmp(string barcodes) {
- return base.Channel.SaveClearInproductionTmp(barcodes);
- }
-
- public int SaveClearAllInproductionTmp(Dongke.IBOSS.PRD.WCF.DataModels.FPM2112_SE se) {
- return base.Channel.SaveClearAllInproductionTmp(se);
- }
-
- public int ResetBarCode(string barcode) {
- return base.Channel.ResetBarCode(barcode);
- }
-
- public int ResetSelectedBarCode(string barcodes) {
- return base.Channel.ResetSelectedBarCode(barcodes);
- }
-
- public Dongke.IBOSS.PRD.WCF.DataModels.ServiceResultEntity AddChancelBarCode(string barcode) {
- return base.Channel.AddChancelBarCode(barcode);
- }
-
- public System.Data.DataSet GetCompleteProcedureIDPDA(string barcode) {
- return base.Channel.GetCompleteProcedureIDPDA(barcode);
- }
-
- public Dongke.IBOSS.PRD.WCF.DataModels.ServiceResultEntity AddChancelDeliverMudBarCode(string barcode) {
- return base.Channel.AddChancelDeliverMudBarCode(barcode);
- }
-
- public int SaveClearInChecked(int inCheckedID, string barcodes) {
- return base.Channel.SaveClearInChecked(inCheckedID, barcodes);
- }
-
- public int SaveClearInCheckedAll(int inCheckedID, string procedureIDs, string goodsCodes, System.Nullable<System.DateTime> startDateTime, System.Nullable<System.DateTime> endDateTime) {
- return base.Channel.SaveClearInCheckedAll(inCheckedID, procedureIDs, goodsCodes, startDateTime, endDateTime);
- }
-
- public int GetLogoID(int ProcedureID) {
- return base.Channel.GetLogoID(ProcedureID);
- }
-
- public int SaveBarCodeLogo(string barcode, int logoid) {
- return base.Channel.SaveBarCodeLogo(barcode, logoid);
- }
-
- public System.Data.DataSet GetBarCodeLogoID(string barcode) {
- return base.Channel.GetBarCodeLogoID(barcode);
- }
-
- public int CheckWasteScrapProduct(string barcode) {
- return base.Channel.CheckWasteScrapProduct(barcode);
- }
-
- public System.Data.DataSet GetSemiCheck(Dongke.IBOSS.PRD.WCF.DataModels.SemiCheckEntity entity) {
- return base.Channel.GetSemiCheck(entity);
- }
-
- public System.Data.DataSet GetSemiCheckDefect(int semiCheckID) {
- return base.Channel.GetSemiCheckDefect(semiCheckID);
- }
-
- public int GetSemiCheckStatusFuntion() {
- return base.Channel.GetSemiCheckStatusFuntion();
- }
-
- public Dongke.IBOSS.PRD.WCF.DataModels.ServiceResultEntity SemiCheckBarcode(string barcode) {
- return base.Channel.SemiCheckBarcode(barcode);
- }
-
- public System.Data.DataSet GetSemiCheckByID(int semiCheckID) {
- return base.Channel.GetSemiCheckByID(semiCheckID);
- }
-
- public System.Data.DataSet GetSemiCheckPassProcedure(string barcode) {
- return base.Channel.GetSemiCheckPassProcedure(barcode);
- }
-
- public System.Data.DataSet GetSemiCheckDefectStaffByUserID(int userid) {
- return base.Channel.GetSemiCheckDefectStaffByUserID(userid);
- }
-
- public Dongke.IBOSS.PRD.WCF.DataModels.ServiceResultEntity AddSemiCheck(Dongke.IBOSS.PRD.WCF.DataModels.SemiCheckEntity[] entityobj) {
- return base.Channel.AddSemiCheck(entityobj);
- }
-
- public Dongke.IBOSS.PRD.WCF.DataModels.ServiceResultEntity ReSemiCheckBarcode(string barcode) {
- return base.Channel.ReSemiCheckBarcode(barcode);
- }
-
- public Dongke.IBOSS.PRD.WCF.DataModels.ServiceResultEntity CancelSemiCheckBarcode(string barcode) {
- return base.Channel.CancelSemiCheckBarcode(barcode);
- }
-
- public Dongke.IBOSS.PRD.WCF.DataModels.ServiceResultEntity BarcodeAllowCancel(System.DateTime orgTime, int days, string settingCode) {
- return base.Channel.BarcodeAllowCancel(orgTime, days, settingCode);
- }
-
- public Dongke.IBOSS.PRD.WCF.DataModels.ServiceResultEntity SaveOrder(Dongke.IBOSS.PRD.WCF.DataModels.OrderEntity order) {
- return base.Channel.SaveOrder(order);
- }
-
- public Dongke.IBOSS.PRD.WCF.DataModels.ServiceResultEntity ChangeOrderFlag(Dongke.IBOSS.PRD.WCF.DataModels.OrderEntity order) {
- return base.Channel.ChangeOrderFlag(order);
- }
-
- public System.Data.DataSet GetOrderList(Dongke.IBOSS.PRD.WCF.DataModels.OrderEntity order) {
- return base.Channel.GetOrderList(order);
- }
-
- public System.Data.DataSet GetFinishedHandover(Dongke.IBOSS.PRD.WCF.DataModels.PMModule.SearchFinishedProductEntity entity) {
- return base.Channel.GetFinishedHandover(entity);
- }
-
- public Dongke.IBOSS.PRD.WCF.DataModels.ServiceResultEntity FinishedHandoverBarcode(string barcode) {
- return base.Channel.FinishedHandoverBarcode(barcode);
- }
-
- public Dongke.IBOSS.PRD.WCF.DataModels.ServiceResultEntity SaveFinishedHandover(int orderid, System.Data.DataTable dtData) {
- return base.Channel.SaveFinishedHandover(orderid, dtData);
- }
-
- public Dongke.IBOSS.PRD.WCF.DataModels.ServiceResultEntity CancelFinishedHandoverBarcode(string barcode) {
- return base.Channel.CancelFinishedHandoverBarcode(barcode);
- }
-
- public Dongke.IBOSS.PRD.WCF.DataModels.ServiceResultEntity SaveCancelFinishedHandoverByBarcode(string barcode) {
- return base.Channel.SaveCancelFinishedHandoverByBarcode(barcode);
- }
-
- public Dongke.IBOSS.PRD.WCF.DataModels.ServiceResultEntity SaveChangeFinishedHandoverByBarcode(string barcode, int orderid) {
- return base.Channel.SaveChangeFinishedHandoverByBarcode(barcode, orderid);
- }
-
- public System.Data.DataSet CheckRecydingFlagBarcode(int procedureid, string barcode) {
- return base.Channel.CheckRecydingFlagBarcode(procedureid, barcode);
- }
-
- public int GetRecyclingflagByBarcode(string barcode) {
- return base.Channel.GetRecyclingflagByBarcode(barcode);
- }
-
- public System.Data.DataSet GetFPM0101SData(Dongke.IBOSS.PRD.WCF.DataModels.FPM0101_SE se) {
- return base.Channel.GetFPM0101SData(se);
- }
-
- public System.Data.DataSet GetGroutingDaily(Dongke.IBOSS.PRD.WCF.DataModels.GroutingDailyEntity groutingDailyEntity) {
- return base.Channel.GetGroutingDaily(groutingDailyEntity);
- }
-
- public System.Data.DataSet GetGroutingDailyDetailByMainId(int DailyMainId) {
- return base.Channel.GetGroutingDailyDetailByMainId(DailyMainId);
- }
-
- public int AddGroutingDaily(Dongke.IBOSS.PRD.WCF.DataModels.GroutingDailyEntity[] groutingDailyEntityList, Dongke.IBOSS.PRD.WCF.DataModels.GroutingDailyDetailEntity[] dailyDetailEntityList) {
- return base.Channel.AddGroutingDaily(groutingDailyEntityList, dailyDetailEntityList);
- }
-
- public int UpdateGroutingDaily(Dongke.IBOSS.PRD.WCF.DataModels.GroutingDailyDetailEntity[] dailyDetailList) {
- return base.Channel.UpdateGroutingDaily(dailyDetailList);
- }
-
- public string GetGroutingProductByDetailId(int DailyDetailId) {
- return base.Channel.GetGroutingProductByDetailId(DailyDetailId);
- }
-
- public int UpdateBarCode(string barCode, string barCodeUpdate) {
- return base.Channel.UpdateBarCode(barCode, barCodeUpdate);
- }
-
- public int GetCanManyTimes(int GroutingLineID, System.DateTime GroutingDate) {
- return base.Channel.GetCanManyTimes(GroutingLineID, GroutingDate);
- }
-
- public System.Data.DataSet GetGDailyDetailLeftBarCode(string GroutingLineIds, System.Nullable<System.DateTime> GroutingDateStart, System.Nullable<System.DateTime> GroutingDateEnd) {
- return base.Channel.GetGDailyDetailLeftBarCode(GroutingLineIds, GroutingDateStart, GroutingDateEnd);
- }
-
- public int AddBarCode(Dongke.IBOSS.PRD.WCF.DataModels.GroutingDailyDetailEntity[] dailyDetailList, string ScrapIds) {
- return base.Channel.AddBarCode(dailyDetailList, ScrapIds);
- }
-
- public string BarCodesIsRepeat(string BarCodes) {
- return base.Channel.BarCodesIsRepeat(BarCodes);
- }
-
- public int GetMaxGroutingCountByMouldCode(string MouldCode, System.DateTime inTime) {
- return base.Channel.GetMaxGroutingCountByMouldCode(MouldCode, inTime);
- }
-
- public string GetMouldCodeFromHistoryByTime(int GroutingLineDetailID, System.DateTime inTime) {
- return base.Channel.GetMouldCodeFromHistoryByTime(GroutingLineDetailID, inTime);
- }
-
- public System.Data.DataSet GetBarCode(Dongke.IBOSS.PRD.WCF.DataModels.PMModule.GetBarCodeEntity gbEntity) {
- return base.Channel.GetBarCode(gbEntity);
- }
-
- public System.Data.DataSet GetInProductionAndProductionData(string BarCode) {
- return base.Channel.GetInProductionAndProductionData(BarCode);
- }
-
- public int AddScrapProduct(Dongke.IBOSS.PRD.WCF.DataModels.ScrapProductEntity SProductEntity, Dongke.IBOSS.PRD.WCF.DataModels.ResponProcedureEntity RProcedureEntity, Dongke.IBOSS.PRD.WCF.DataModels.ScrapResponsibleEntity[] SResponsibleList) {
- return base.Channel.AddScrapProduct(SProductEntity, RProcedureEntity, SResponsibleList);
- }
-
- public void OpenInProductionAndProductionData(Dongke.IBOSS.PRD.WCF.DataModels.InProductionEntity inProduction, Dongke.IBOSS.PRD.WCF.DataModels.ProductionDataEntity productionData) {
- base.Channel.OpenInProductionAndProductionData(inProduction, productionData);
- }
-
- public System.Data.DataSet GetScrapProduct(Dongke.IBOSS.PRD.WCF.DataModels.ScrapProductEntity selectProEntity) {
- return base.Channel.GetScrapProduct(selectProEntity);
- }
-
- public System.Data.DataSet GetScrapResponsibleByResponProcedureID(int ResponProcedureId) {
- return base.Channel.GetScrapResponsibleByResponProcedureID(ResponProcedureId);
- }
-
- public System.Data.DataSet GetScrapResponsibleBySPId(int SPId) {
- return base.Channel.GetScrapResponsibleBySPId(SPId);
- }
-
- 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) {
- return base.Channel.UpdateScrapProduct(UpdateSProductEntity, UpdateRProcedureEntity, UpdateSResponsibleList, YSResponsibleList);
- }
-
- public System.Data.DataSet GetResponProcedureBySPId(int SPId) {
- return base.Channel.GetResponProcedureBySPId(SPId);
- }
-
- public string ScrapProductChack(string BarCode) {
- return base.Channel.ScrapProductChack(BarCode);
- }
-
- public int AuditScrapProduct(Dongke.IBOSS.PRD.WCF.DataModels.ScrapProductEntity spEntity) {
- return base.Channel.AuditScrapProduct(spEntity);
- }
-
- public System.Data.DataSet GetInProductionByBarcode(string barcode) {
- return base.Channel.GetInProductionByBarcode(barcode);
- }
-
- public System.Data.DataTable SearchProductionData(Dongke.IBOSS.PRD.WCF.DataModels.PMModule.SearchProductionDataEntity searchEntity) {
- return base.Channel.SearchProductionData(searchEntity);
- }
-
- public System.Data.DataTable GetProductionData(Dongke.IBOSS.PRD.WCF.DataModels.PMModule.SearchProductionDataEntity searchEntity) {
- return base.Channel.GetProductionData(searchEntity);
- }
-
- public System.Data.DataTable GetProductionDataPDA(Dongke.IBOSS.PRD.WCF.DataModels.PMModule.SearchProductionDataEntity searchEntity) {
- return base.Channel.GetProductionDataPDA(searchEntity);
- }
-
- public Dongke.IBOSS.PRD.WCF.DataModels.ProcedureEntity GetProcedureDataEntityByID(int procedureID) {
- return base.Channel.GetProcedureDataEntityByID(procedureID);
- }
-
- public System.Data.DataSet DecideUserInProcedure(int procedureID, int userID) {
- return base.Channel.DecideUserInProcedure(procedureID, userID);
- }
-
- public System.Data.DataSet CheckBarcode(int procedureid, string barcode) {
- return base.Channel.CheckBarcode(procedureid, barcode);
- }
-
- public Dongke.IBOSS.PRD.WCF.DataModels.CheckProcedureUserResult CheckProcedureUser(int procedureID, string UserCode) {
- return base.Channel.CheckProcedureUser(procedureID, UserCode);
- }
-
- public string SaveProductionData(Dongke.IBOSS.PRD.WCF.DataModels.ProductionDataEntity productionData) {
- return base.Channel.SaveProductionData(productionData);
- }
-
- public System.Data.DataTable AddWorkPiece(int procedureID, System.Data.DataTable barcodeTable) {
- return base.Channel.AddWorkPiece(procedureID, barcodeTable);
- }
-
- public Dongke.IBOSS.PRD.WCF.DataModels.CheckKilnCarResultEntity CheckKilnCar(int pProcedureId, string kilnCarCode, int pModelType) {
- return base.Channel.CheckKilnCar(pProcedureId, kilnCarCode, pModelType);
- }
-
- public string AddCheckBarcode(int procedureID, Dongke.IBOSS.PRD.WCF.DataModels.ProductionDataEntity[] productionDataEntitys) {
- return base.Channel.AddCheckBarcode(procedureID, productionDataEntitys);
- }
-
- public System.Data.DataSet GetProductionByBarcode(int procedureID, string barcode) {
- return base.Channel.GetProductionByBarcode(procedureID, barcode);
- }
-
- public System.Data.DataSet GetReworkProcedureByBarcode(int procedureID, string barcode) {
- return base.Channel.GetReworkProcedureByBarcode(procedureID, barcode);
- }
-
- public System.Data.DataSet GetDefectByProcedure(int procedureID) {
- return base.Channel.GetDefectByProcedure(procedureID);
- }
-
- public System.Data.DataSet GetDefectLocaionByGoodsID(int goodsID) {
- return base.Channel.GetDefectLocaionByGoodsID(goodsID);
- }
-
- public System.Data.DataSet GetDutyProcedureByBarCode(string barcode, int defectid) {
- return base.Channel.GetDutyProcedureByBarCode(barcode, defectid);
- }
-
- public System.Data.DataSet GetDutyProcedureCodeByBarCode(string barcode, int dutyProcedureID) {
- return base.Channel.GetDutyProcedureCodeByBarCode(barcode, dutyProcedureID);
- }
-
- public System.Data.DataSet GetDutyProcedureCodeByProductionDataID(int ProductionDataID) {
- return base.Channel.GetDutyProcedureCodeByProductionDataID(ProductionDataID);
- }
-
- public System.Data.DataSet GetDutyJobsCodeByUser(int userID, int productionDataID) {
- return base.Channel.GetDutyJobsCodeByUser(userID, productionDataID);
- }
-
- public System.Data.DataSet GetDutyStaffByUserIDAndJobs(int productionDataID, int userID, int jobs) {
- return base.Channel.GetDutyStaffByUserIDAndJobs(productionDataID, userID, jobs);
- }
-
- public System.Data.DataSet SearcStaffAdminRAPInfo(Dongke.IBOSS.PRD.WCF.DataModels.SearchProgressRAPEntity searchProgressRAPEntity) {
- return base.Channel.SearcStaffAdminRAPInfo(searchProgressRAPEntity);
- }
-
- public int AddCelsiusRecord(Dongke.IBOSS.PRD.WCF.DataModels.CelsiusRecordEntity crEntity) {
- return base.Channel.AddCelsiusRecord(crEntity);
- }
-
- public int UpdateCelsiusRecord(Dongke.IBOSS.PRD.WCF.DataModels.CelsiusRecordEntity crEntity) {
- return base.Channel.UpdateCelsiusRecord(crEntity);
- }
-
- public System.Data.DataSet GetCelsiusRecord(Dongke.IBOSS.PRD.WCF.DataModels.CelsiusRecordEntity celsiusRecordEntity) {
- return base.Channel.GetCelsiusRecord(celsiusRecordEntity);
- }
-
- public System.Data.DataSet GetCelsiusRecordView(Dongke.IBOSS.PRD.WCF.DataModels.CelsiusRecordEntity celsiusRecordEntity) {
- return base.Channel.GetCelsiusRecordView(celsiusRecordEntity);
- }
-
- public int EditCelsiusRecord(System.DateTime RecordTime, System.Data.DataTable dtCelsius) {
- return base.Channel.EditCelsiusRecord(RecordTime, dtCelsius);
- }
-
- public int DeleteCelsiusRecord(int recordID) {
- return base.Channel.DeleteCelsiusRecord(recordID);
- }
-
- public System.Data.DataSet GetGroutingCountByUser(Dongke.IBOSS.PRD.WCF.DataModels.GroutingCountByUserEntity gcEntity) {
- return base.Channel.GetGroutingCountByUser(gcEntity);
- }
-
- public Dongke.IBOSS.PRD.WCF.DataModels.PMResultEntity SaveStaffProgressRAPInfo(Dongke.IBOSS.PRD.WCF.DataModels.PMProgressRAPEntity pProgressRAPEntity, Dongke.IBOSS.PRD.WCF.DataModels.WCFConstant.FormMode pStatus) {
- return base.Channel.SaveStaffProgressRAPInfo(pProgressRAPEntity, pStatus);
- }
-
- public Dongke.IBOSS.PRD.WCF.DataModels.PMResultEntity SaveStaffProgressRAPApprovalInfo(Dongke.IBOSS.PRD.WCF.DataModels.PMProgressRAPEntity pProgressRAPEntity, bool pState) {
- return base.Channel.SaveStaffProgressRAPApprovalInfo(pProgressRAPEntity, pState);
- }
-
- public Dongke.IBOSS.PRD.WCF.DataModels.PMResultEntity SetStaffProgressRAPValueFlag(int pRAPID) {
- return base.Channel.SetStaffProgressRAPValueFlag(pRAPID);
- }
-
- public System.Data.DataSet GetKilnCarByBarCode(string barcode) {
- return base.Channel.GetKilnCarByBarCode(barcode);
- }
-
- public System.Data.DataSet GetProductionDefectByProductionDataID(int ProductionDataID) {
- return base.Channel.GetProductionDefectByProductionDataID(ProductionDataID);
- }
-
- public System.Data.DataSet GetReworkProcedureByProcedureID(int procedureID) {
- return base.Channel.GetReworkProcedureByProcedureID(procedureID);
- }
-
- public System.Data.DataSet GetInProductionData(Dongke.IBOSS.PRD.WCF.DataModels.SearchInProductionEntity searchInProductionEntity) {
- return base.Channel.GetInProductionData(searchInProductionEntity);
- }
-
- public System.Data.DataSet GetFinishedProductionData(Dongke.IBOSS.PRD.WCF.DataModels.PMModule.SearchFinishedProductEntity searchFinishedProductionEntity) {
- return base.Channel.GetFinishedProductionData(searchFinishedProductionEntity);
- }
-
- public System.Data.DataSet GetSearchSemiTestListModule(Dongke.IBOSS.PRD.WCF.DataModels.SemiTestDetailEntity semiTestDetailEntity) {
- return base.Channel.GetSearchSemiTestListModule(semiTestDetailEntity);
- }
-
- public Dongke.IBOSS.PRD.WCF.DataModels.CheckCancelLoadCar CheckCancelLoadCar(int procedureID, string barcode) {
- return base.Channel.CheckCancelLoadCar(procedureID, barcode);
- }
-
- public string AddCancelLoadCar(int procedureID, string barcode) {
- return base.Channel.AddCancelLoadCar(procedureID, barcode);
- }
-
- public System.Data.DataSet GetProductionDataByID(int productionDataID) {
- return base.Channel.GetProductionDataByID(productionDataID);
- }
-
- public int GetCompleteProcedureID(string barcode) {
- return base.Channel.GetCompleteProcedureID(barcode);
- }
-
- public int DeleteProductionDataByID(int productionDataID) {
- return base.Channel.DeleteProductionDataByID(productionDataID);
- }
-
- public System.Data.DataSet GetGroutingProducttByBarCode(string barcode) {
- return base.Channel.GetGroutingProducttByBarCode(barcode);
- }
-
- public System.Data.DataSet GetDutyStaffByUserID(int jobs) {
- return base.Channel.GetDutyStaffByUserID(jobs);
- }
-
- public System.Data.DataSet GetMissedStaffByUserID(int userid) {
- return base.Channel.GetMissedStaffByUserID(userid);
- }
-
- public string AddSemiTest(Dongke.IBOSS.PRD.WCF.DataModels.SemiTestEntity[] semiTestEntitys) {
- return base.Channel.AddSemiTest(semiTestEntitys);
- }
-
- public System.Data.DataSet GetSemiTestByID(int semiTestID) {
- return base.Channel.GetSemiTestByID(semiTestID);
- }
-
- public int DeleteSemiTestDataByID(int semiTestID) {
- return base.Channel.DeleteSemiTestDataByID(semiTestID);
- }
-
- public int ValidateOPTimeStamp(int semiTestID, System.DateTime opTimeStamp) {
- return base.Channel.ValidateOPTimeStamp(semiTestID, opTimeStamp);
- }
-
- public int UpdateSemiTestByID(int semiTestID, int auditStatus) {
- return base.Channel.UpdateSemiTestByID(semiTestID, auditStatus);
- }
-
- public System.Data.DataSet SearchSemiTestList(Dongke.IBOSS.PRD.WCF.DataModels.SemiTestEntity semiTestEntity) {
- return base.Channel.SearchSemiTestList(semiTestEntity);
- }
-
- public System.Data.DataSet SearchSemiTestInfo(int semitestID) {
- return base.Channel.SearchSemiTestInfo(semitestID);
- }
-
- public System.Data.DataSet GetDutyStaffByUserJobsID(int jobs, int userID) {
- return base.Channel.GetDutyStaffByUserJobsID(jobs, userID);
- }
-
- public System.Data.DataSet SearchSemiTestDetailInfo(int semitestDetailID) {
- return base.Channel.SearchSemiTestDetailInfo(semitestDetailID);
- }
-
- public System.Data.DataSet GetSubstandardInfo(string barcode) {
- return base.Channel.GetSubstandardInfo(barcode);
- }
-
- public System.Data.DataSet GetReFine(string barcode) {
- return base.Channel.GetReFine(barcode);
- }
-
- public int AddBarCodeMissing(string barcode, int produceid) {
- return base.Channel.AddBarCodeMissing(barcode, produceid);
- }
-
- public System.Data.DataSet CheckDryRepairBarcode(int procedureid, string barcode) {
- return base.Channel.CheckDryRepairBarcode(procedureid, barcode);
- }
-
- public int GetSpecialRepairflagByBarcode(string barcode) {
- return base.Channel.GetSpecialRepairflagByBarcode(barcode);
- }
-
- public System.Data.DataSet GetKilnCarGoodsByKilnCarID(int KilnCarID) {
- return base.Channel.GetKilnCarGoodsByKilnCarID(KilnCarID);
- }
- }
- }
|