project.pbxproj 182 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724
  1. // !$*UTF8*$!
  2. {
  3. archiveVersion = 1;
  4. classes = {
  5. };
  6. objectVersion = 46;
  7. objects = {
  8. /* Begin PBXBuildFile section */
  9. 27089EC51F0E7BC7001B81E2 /* CarouselView.m in Sources */ = {isa = PBXBuildFile; fileRef = 27089EC41F0E7BC7001B81E2 /* CarouselView.m */; };
  10. 27089EC91F0E8974001B81E2 /* NoticeCell.m in Sources */ = {isa = PBXBuildFile; fileRef = 27089EC71F0E8974001B81E2 /* NoticeCell.m */; };
  11. 27089ECA1F0E8974001B81E2 /* NoticeCell.xib in Resources */ = {isa = PBXBuildFile; fileRef = 27089EC81F0E8974001B81E2 /* NoticeCell.xib */; };
  12. 271D89611F0F25690094090E /* NoPermissionCell.m in Sources */ = {isa = PBXBuildFile; fileRef = 271D895F1F0F25690094090E /* NoPermissionCell.m */; };
  13. 271D89621F0F25690094090E /* NoPermissionCell.xib in Resources */ = {isa = PBXBuildFile; fileRef = 271D89601F0F25690094090E /* NoPermissionCell.xib */; };
  14. 271D89661F0F62360094090E /* SupplyDataViewModel.m in Sources */ = {isa = PBXBuildFile; fileRef = 271D89651F0F62360094090E /* SupplyDataViewModel.m */; };
  15. 271D896A1F0F77810094090E /* CylinderModel.m in Sources */ = {isa = PBXBuildFile; fileRef = 271D89691F0F77810094090E /* CylinderModel.m */; };
  16. 271D896D1F0F87BD0094090E /* ValidationCodeImputView.m in Sources */ = {isa = PBXBuildFile; fileRef = 271D896C1F0F87BD0094090E /* ValidationCodeImputView.m */; };
  17. 271FCAFA1F0A41F80024E9DE /* NoticeManangerVC.m in Sources */ = {isa = PBXBuildFile; fileRef = 271FCAED1F0A41F80024E9DE /* NoticeManangerVC.m */; };
  18. 271FCAFC1F0A41F80024E9DE /* Notice.m in Sources */ = {isa = PBXBuildFile; fileRef = 271FCAF21F0A41F80024E9DE /* Notice.m */; };
  19. 271FCB121F0A4DE70024E9DE /* RechargeViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 271FCB111F0A4DE70024E9DE /* RechargeViewController.m */; };
  20. 271FCB161F0A4E650024E9DE /* PayTypeView.m in Sources */ = {isa = PBXBuildFile; fileRef = 271FCB151F0A4E650024E9DE /* PayTypeView.m */; };
  21. 271FCB301F0A4F310024E9DE /* BalanceTopCell.m in Sources */ = {isa = PBXBuildFile; fileRef = 271FCB2E1F0A4F310024E9DE /* BalanceTopCell.m */; };
  22. 271FCB311F0A4F310024E9DE /* BalanceTopCell.xib in Resources */ = {isa = PBXBuildFile; fileRef = 271FCB2F1F0A4F310024E9DE /* BalanceTopCell.xib */; };
  23. 271FCB351F0A504E0024E9DE /* MyBalanceModel.m in Sources */ = {isa = PBXBuildFile; fileRef = 271FCB341F0A504E0024E9DE /* MyBalanceModel.m */; };
  24. 2737A6891F203BF800D4F881 /* libGeTuiSdk-1.6.4.0.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 2737A6871F203BF800D4F881 /* libGeTuiSdk-1.6.4.0.a */; };
  25. 2737A68A1F203BF800D4F881 /* libGtExtensionSdk-1.3.0.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 2737A6881F203BF800D4F881 /* libGtExtensionSdk-1.3.0.a */; };
  26. 273BE4901F13099D00ECA57F /* PZXVerificationCodeView.m in Sources */ = {isa = PBXBuildFile; fileRef = 273BE48D1F13099D00ECA57F /* PZXVerificationCodeView.m */; };
  27. 273BE4911F13099D00ECA57F /* PZXVerificationTextField.m in Sources */ = {isa = PBXBuildFile; fileRef = 273BE48F1F13099D00ECA57F /* PZXVerificationTextField.m */; };
  28. 273BE4931F130C7300ECA57F /* ValidationCodeImputView.xib in Resources */ = {isa = PBXBuildFile; fileRef = 273BE4921F130C7300ECA57F /* ValidationCodeImputView.xib */; };
  29. 273BE4971F1326D400ECA57F /* DataBottomView.m in Sources */ = {isa = PBXBuildFile; fileRef = 273BE4951F1326D400ECA57F /* DataBottomView.m */; };
  30. 273BE4981F1326D400ECA57F /* DataBottomView.xib in Resources */ = {isa = PBXBuildFile; fileRef = 273BE4961F1326D400ECA57F /* DataBottomView.xib */; };
  31. 273BE49C1F1358E300ECA57F /* WKWebBaseVC.m in Sources */ = {isa = PBXBuildFile; fileRef = 273BE49B1F1358E300ECA57F /* WKWebBaseVC.m */; };
  32. 273BE49F1F13590600ECA57F /* NoticeDetialVC.m in Sources */ = {isa = PBXBuildFile; fileRef = 273BE49E1F13590600ECA57F /* NoticeDetialVC.m */; };
  33. 274DE2A81F14A49500E0294E /* CylinderInfoStatusView.m in Sources */ = {isa = PBXBuildFile; fileRef = 274DE2A61F14A49500E0294E /* CylinderInfoStatusView.m */; };
  34. 274DE2A91F14A49500E0294E /* CylinderInfoStatusView.xib in Resources */ = {isa = PBXBuildFile; fileRef = 274DE2A71F14A49500E0294E /* CylinderInfoStatusView.xib */; };
  35. 274DE2AC1F14A65400E0294E /* UITableViewHeaderFooterView+Extension.m in Sources */ = {isa = PBXBuildFile; fileRef = 274DE2AB1F14A65400E0294E /* UITableViewHeaderFooterView+Extension.m */; };
  36. 276639B81F19A991002CB26D /* BalanceHeaderView.m in Sources */ = {isa = PBXBuildFile; fileRef = 276639B71F19A991002CB26D /* BalanceHeaderView.m */; };
  37. 276639BB1F19ABC8002CB26D /* RechargeRecordVC.m in Sources */ = {isa = PBXBuildFile; fileRef = 276639BA1F19ABC8002CB26D /* RechargeRecordVC.m */; };
  38. 276639BF1F19AD61002CB26D /* RecordListCell.m in Sources */ = {isa = PBXBuildFile; fileRef = 276639BD1F19AD61002CB26D /* RecordListCell.m */; };
  39. 276639C01F19AD61002CB26D /* RecordListCell.xib in Resources */ = {isa = PBXBuildFile; fileRef = 276639BE1F19AD61002CB26D /* RecordListCell.xib */; };
  40. 27689CF51F0B205100BB6D1C /* libsqlite3.0.tbd in Frameworks */ = {isa = PBXBuildFile; fileRef = 27689CF41F0B205100BB6D1C /* libsqlite3.0.tbd */; };
  41. 27689CF71F0B205600BB6D1C /* libsqlite3.tbd in Frameworks */ = {isa = PBXBuildFile; fileRef = 27689CF61F0B205600BB6D1C /* libsqlite3.tbd */; };
  42. 27689CF91F0B217100BB6D1C /* SystemConfiguration.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 27689CF81F0B217100BB6D1C /* SystemConfiguration.framework */; };
  43. 27689CFB1F0B217800BB6D1C /* libz.tbd in Frameworks */ = {isa = PBXBuildFile; fileRef = 27689CFA1F0B217800BB6D1C /* libz.tbd */; };
  44. 27689CFD1F0B218100BB6D1C /* CoreTelephony.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 27689CFC1F0B218100BB6D1C /* CoreTelephony.framework */; };
  45. 27689CFF1F0B218A00BB6D1C /* QuartzCore.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 27689CFE1F0B218A00BB6D1C /* QuartzCore.framework */; };
  46. 27689D011F0B21BF00BB6D1C /* CoreText.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 27689D001F0B21BF00BB6D1C /* CoreText.framework */; };
  47. 27689D031F0B21CB00BB6D1C /* CoreGraphics.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 27689D021F0B21CB00BB6D1C /* CoreGraphics.framework */; };
  48. 27689D051F0B21D100BB6D1C /* UIKit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 27689D041F0B21D100BB6D1C /* UIKit.framework */; };
  49. 27689D071F0B21E000BB6D1C /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 27689D061F0B21E000BB6D1C /* Foundation.framework */; };
  50. 27689D091F0B225800BB6D1C /* CoreMotion.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 27689D081F0B225800BB6D1C /* CoreMotion.framework */; };
  51. 27689D0B1F0B2B0300BB6D1C /* Info.plist in Resources */ = {isa = PBXBuildFile; fileRef = 27689D0A1F0B2B0300BB6D1C /* Info.plist */; };
  52. 276D1F961F0DCD7900A5D562 /* OrderListVC.m in Sources */ = {isa = PBXBuildFile; fileRef = 276D1F941F0DCD7900A5D562 /* OrderListVC.m */; };
  53. 276D1FB51F0DE2A600A5D562 /* OrderListCell.m in Sources */ = {isa = PBXBuildFile; fileRef = 276D1FB31F0DE2A600A5D562 /* OrderListCell.m */; };
  54. 276D1FB61F0DE2A600A5D562 /* OrderListCell.xib in Resources */ = {isa = PBXBuildFile; fileRef = 276D1FB41F0DE2A600A5D562 /* OrderListCell.xib */; };
  55. 276D1FBC1F0DEA3100A5D562 /* libWeChatSDK.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 276D1FB71F0DEA3100A5D562 /* libWeChatSDK.a */; };
  56. 276D1FBD1F0DEA3100A5D562 /* README.txt in Resources */ = {isa = PBXBuildFile; fileRef = 276D1FB81F0DEA3100A5D562 /* README.txt */; };
  57. 276D20311F0E086800A5D562 /* CylinderActivationVC.m in Sources */ = {isa = PBXBuildFile; fileRef = 276D20141F0E086800A5D562 /* CylinderActivationVC.m */; };
  58. 276D20321F0E086800A5D562 /* CylinderInformationVC.m in Sources */ = {isa = PBXBuildFile; fileRef = 276D20161F0E086800A5D562 /* CylinderInformationVC.m */; };
  59. 276D20331F0E086800A5D562 /* EditCodeVC.m in Sources */ = {isa = PBXBuildFile; fileRef = 276D20181F0E086800A5D562 /* EditCodeVC.m */; };
  60. 276D20341F0E086800A5D562 /* ScanQRcodeVC.m in Sources */ = {isa = PBXBuildFile; fileRef = 276D201A1F0E086800A5D562 /* ScanQRcodeVC.m */; };
  61. 276D20391F0E086800A5D562 /* CylinderInformationCell.m in Sources */ = {isa = PBXBuildFile; fileRef = 276D20251F0E086800A5D562 /* CylinderInformationCell.m */; };
  62. 276D203A1F0E086800A5D562 /* CylinderInformationCell.xib in Resources */ = {isa = PBXBuildFile; fileRef = 276D20261F0E086800A5D562 /* CylinderInformationCell.xib */; };
  63. 276D203B1F0E086800A5D562 /* CylinderOperationView.m in Sources */ = {isa = PBXBuildFile; fileRef = 276D20281F0E086800A5D562 /* CylinderOperationView.m */; };
  64. 276D203C1F0E086800A5D562 /* CylinderOperationView.xib in Resources */ = {isa = PBXBuildFile; fileRef = 276D20291F0E086800A5D562 /* CylinderOperationView.xib */; };
  65. 276D203F1F0E086800A5D562 /* EditCodeView.m in Sources */ = {isa = PBXBuildFile; fileRef = 276D202F1F0E086800A5D562 /* EditCodeView.m */; };
  66. 276D20401F0E086800A5D562 /* EditCodeView.xib in Resources */ = {isa = PBXBuildFile; fileRef = 276D20301F0E086800A5D562 /* EditCodeView.xib */; };
  67. 276D204D1F0E098700A5D562 /* NSObject+SGHelper.m in Sources */ = {isa = PBXBuildFile; fileRef = 276D20441F0E098700A5D562 /* NSObject+SGHelper.m */; };
  68. 276D204E1F0E098700A5D562 /* UIImage+SGHelper.m in Sources */ = {isa = PBXBuildFile; fileRef = 276D20461F0E098700A5D562 /* UIImage+SGHelper.m */; };
  69. 276D204F1F0E098700A5D562 /* SGQRCode.bundle in Resources */ = {isa = PBXBuildFile; fileRef = 276D20471F0E098700A5D562 /* SGQRCode.bundle */; };
  70. 276D20501F0E098700A5D562 /* SGQRCodeScanManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 276D204A1F0E098700A5D562 /* SGQRCodeScanManager.m */; };
  71. 276D20511F0E098700A5D562 /* SGQRCodeScanningView.m in Sources */ = {isa = PBXBuildFile; fileRef = 276D204C1F0E098700A5D562 /* SGQRCodeScanningView.m */; };
  72. 276D20531F0E0C8300A5D562 /* AVFoundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 276D20521F0E0C8300A5D562 /* AVFoundation.framework */; };
  73. 276D20551F0E0CB100A5D562 /* AVKit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 276D20541F0E0CB100A5D562 /* AVKit.framework */; };
  74. 276D205D1F0E197D00A5D562 /* CylinderAbnormalTopView.m in Sources */ = {isa = PBXBuildFile; fileRef = 276D20581F0E197D00A5D562 /* CylinderAbnormalTopView.m */; };
  75. 276D205E1F0E197D00A5D562 /* CylinderAbnormalTopView.xib in Resources */ = {isa = PBXBuildFile; fileRef = 276D20591F0E197D00A5D562 /* CylinderAbnormalTopView.xib */; };
  76. 276D205F1F0E197D00A5D562 /* CylinderActivationSelectView.m in Sources */ = {isa = PBXBuildFile; fileRef = 276D205B1F0E197D00A5D562 /* CylinderActivationSelectView.m */; };
  77. 276D20601F0E197D00A5D562 /* CylinderActivationSelectView.xib in Resources */ = {isa = PBXBuildFile; fileRef = 276D205C1F0E197D00A5D562 /* CylinderActivationSelectView.xib */; };
  78. 276D20641F0E19D100A5D562 /* CylinderTopView.m in Sources */ = {isa = PBXBuildFile; fileRef = 276D20621F0E19D100A5D562 /* CylinderTopView.m */; };
  79. 276D20651F0E19D100A5D562 /* CylinderTopView.xib in Resources */ = {isa = PBXBuildFile; fileRef = 276D20631F0E19D100A5D562 /* CylinderTopView.xib */; };
  80. 276D20731F0E1A5E00A5D562 /* DataViewVC.m in Sources */ = {isa = PBXBuildFile; fileRef = 276D20681F0E1A5E00A5D562 /* DataViewVC.m */; };
  81. 276D20741F0E1A5E00A5D562 /* DataTopView.m in Sources */ = {isa = PBXBuildFile; fileRef = 276D206B1F0E1A5E00A5D562 /* DataTopView.m */; };
  82. 276D20751F0E1A5E00A5D562 /* DataTopView.xib in Resources */ = {isa = PBXBuildFile; fileRef = 276D206C1F0E1A5E00A5D562 /* DataTopView.xib */; };
  83. 276D20761F0E1A5E00A5D562 /* DataViewCell.m in Sources */ = {isa = PBXBuildFile; fileRef = 276D206E1F0E1A5E00A5D562 /* DataViewCell.m */; };
  84. 276D20771F0E1A5E00A5D562 /* DataViewCell.xib in Resources */ = {isa = PBXBuildFile; fileRef = 276D206F1F0E1A5E00A5D562 /* DataViewCell.xib */; };
  85. 276D20781F0E1A5E00A5D562 /* DateSelectView.m in Sources */ = {isa = PBXBuildFile; fileRef = 276D20711F0E1A5E00A5D562 /* DateSelectView.m */; };
  86. 276D20791F0E1A5E00A5D562 /* DateSelectView.xib in Resources */ = {isa = PBXBuildFile; fileRef = 276D20721F0E1A5E00A5D562 /* DateSelectView.xib */; };
  87. 276D207F1F0E1B3C00A5D562 /* KSDatePicker.m in Sources */ = {isa = PBXBuildFile; fileRef = 276D207C1F0E1B3C00A5D562 /* KSDatePicker.m */; };
  88. 276D20801F0E1B3C00A5D562 /* KSDatePickerAppearance.m in Sources */ = {isa = PBXBuildFile; fileRef = 276D207E1F0E1B3C00A5D562 /* KSDatePickerAppearance.m */; };
  89. 276D20AB1F0E254900A5D562 /* BasePageVC.m in Sources */ = {isa = PBXBuildFile; fileRef = 276D20AA1F0E254900A5D562 /* BasePageVC.m */; };
  90. 276D20BD1F0E25DE00A5D562 /* AbnormalCylinderVC.m in Sources */ = {isa = PBXBuildFile; fileRef = 276D20AE1F0E25DE00A5D562 /* AbnormalCylinderVC.m */; };
  91. 276D20BE1F0E25DE00A5D562 /* AllCylinderVC.m in Sources */ = {isa = PBXBuildFile; fileRef = 276D20B01F0E25DE00A5D562 /* AllCylinderVC.m */; };
  92. 276D20BF1F0E25DE00A5D562 /* CylinderManageBaseVC.m in Sources */ = {isa = PBXBuildFile; fileRef = 276D20B21F0E25DE00A5D562 /* CylinderManageBaseVC.m */; };
  93. 276D20C01F0E25DE00A5D562 /* CylinderManageVC.m in Sources */ = {isa = PBXBuildFile; fileRef = 276D20B41F0E25DE00A5D562 /* CylinderManageVC.m */; };
  94. 276D20C11F0E25DE00A5D562 /* DisableCylinderVC.m in Sources */ = {isa = PBXBuildFile; fileRef = 276D20B61F0E25DE00A5D562 /* DisableCylinderVC.m */; };
  95. 276D20C21F0E25DE00A5D562 /* NormalCylinderVC.m in Sources */ = {isa = PBXBuildFile; fileRef = 276D20B81F0E25DE00A5D562 /* NormalCylinderVC.m */; };
  96. 276D20C31F0E25DE00A5D562 /* CylinderCell.m in Sources */ = {isa = PBXBuildFile; fileRef = 276D20BB1F0E25DE00A5D562 /* CylinderCell.m */; };
  97. 276D20C41F0E25DE00A5D562 /* CylinderCell.xib in Resources */ = {isa = PBXBuildFile; fileRef = 276D20BC1F0E25DE00A5D562 /* CylinderCell.xib */; };
  98. 276D20D21F0E26A500A5D562 /* TransferRecordVC.m in Sources */ = {isa = PBXBuildFile; fileRef = 276D20C71F0E26A500A5D562 /* TransferRecordVC.m */; };
  99. 276D20D31F0E26A500A5D562 /* TransferRecord.m in Sources */ = {isa = PBXBuildFile; fileRef = 276D20CA1F0E26A500A5D562 /* TransferRecord.m */; };
  100. 276D20D41F0E26A500A5D562 /* TransferRecordCell.m in Sources */ = {isa = PBXBuildFile; fileRef = 276D20CD1F0E26A500A5D562 /* TransferRecordCell.m */; };
  101. 276D20D51F0E26A500A5D562 /* TransferRecordCell.xib in Resources */ = {isa = PBXBuildFile; fileRef = 276D20CE1F0E26A500A5D562 /* TransferRecordCell.xib */; };
  102. 276D20D61F0E26A500A5D562 /* TransferSectionView.m in Sources */ = {isa = PBXBuildFile; fileRef = 276D20D01F0E26A500A5D562 /* TransferSectionView.m */; };
  103. 276D20D71F0E26A500A5D562 /* TransferSectionView.xib in Resources */ = {isa = PBXBuildFile; fileRef = 276D20D11F0E26A500A5D562 /* TransferSectionView.xib */; };
  104. 276DDDD61F174CC500F8CD71 /* BalanceMoneyCell.m in Sources */ = {isa = PBXBuildFile; fileRef = 276DDDD41F174CC500F8CD71 /* BalanceMoneyCell.m */; };
  105. 276DDDD71F174CC500F8CD71 /* BalanceMoneyCell.xib in Resources */ = {isa = PBXBuildFile; fileRef = 276DDDD51F174CC500F8CD71 /* BalanceMoneyCell.xib */; };
  106. 279585511F06515D00F37D30 /* MapKit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 279585501F06515D00F37D30 /* MapKit.framework */; };
  107. 279585541F06547400F37D30 /* AppDelegate.m in Sources */ = {isa = PBXBuildFile; fileRef = 279585531F06547400F37D30 /* AppDelegate.m */; };
  108. 2797CA671F203F0700667446 /* MobileCoreServices.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 2797CA661F203F0700667446 /* MobileCoreServices.framework */; };
  109. 2797CA691F203F4F00667446 /* UserNotifications.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 2797CA681F203F4F00667446 /* UserNotifications.framework */; settings = {ATTRIBUTES = (Weak, ); }; };
  110. 2797CA6B1F203F5B00667446 /* AdSupport.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 2797CA6A1F203F5B00667446 /* AdSupport.framework */; };
  111. 27B882B41F0CC2EE00271940 /* BaiduMapAPI_Base.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 27B8824B1F0CC2EE00271940 /* BaiduMapAPI_Base.framework */; };
  112. 27B882B51F0CC2EE00271940 /* BaiduMapAPI_Cloud.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 27B8824C1F0CC2EE00271940 /* BaiduMapAPI_Cloud.framework */; };
  113. 27B882B61F0CC2EE00271940 /* BaiduMapAPI_Location.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 27B8824D1F0CC2EE00271940 /* BaiduMapAPI_Location.framework */; };
  114. 27B882B81F0CC2EE00271940 /* BaiduMapAPI_Radar.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 27B8824F1F0CC2EE00271940 /* BaiduMapAPI_Radar.framework */; };
  115. 27B882B91F0CC2EE00271940 /* BaiduMapAPI_Search.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 27B882501F0CC2EE00271940 /* BaiduMapAPI_Search.framework */; };
  116. 27B882BA1F0CC2EE00271940 /* BaiduMapAPI_Utils.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 27B882511F0CC2EE00271940 /* BaiduMapAPI_Utils.framework */; };
  117. 27B882BB1F0CC2EE00271940 /* CustomDatePicker.m in Sources */ = {isa = PBXBuildFile; fileRef = 27B8825B1F0CC2EE00271940 /* CustomDatePicker.m */; };
  118. 27B882BC1F0CC2EE00271940 /* JZLocationConverter.m in Sources */ = {isa = PBXBuildFile; fileRef = 27B8825E1F0CC2EE00271940 /* JZLocationConverter.m */; };
  119. 27B882BD1F0CC2EE00271940 /* KNActionSheet.m in Sources */ = {isa = PBXBuildFile; fileRef = 27B882611F0CC2EE00271940 /* KNActionSheet.m */; };
  120. 27B882BE1F0CC2EE00271940 /* KNActionSheetView.m in Sources */ = {isa = PBXBuildFile; fileRef = 27B882631F0CC2EE00271940 /* KNActionSheetView.m */; };
  121. 27B882BF1F0CC2EE00271940 /* MBProgressHUD+LAI.m in Sources */ = {isa = PBXBuildFile; fileRef = 27B882661F0CC2EE00271940 /* MBProgressHUD+LAI.m */; };
  122. 27B882C01F0CC2EE00271940 /* MBProgressHUD.bundle in Resources */ = {isa = PBXBuildFile; fileRef = 27B882671F0CC2EE00271940 /* MBProgressHUD.bundle */; };
  123. 27B882C11F0CC2EE00271940 /* MMVideoPreviewPlay@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = 27B8826A1F0CC2EE00271940 /* MMVideoPreviewPlay@2x.png */; };
  124. 27B882C21F0CC2EE00271940 /* MMVideoPreviewPlayHL@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = 27B8826B1F0CC2EE00271940 /* MMVideoPreviewPlayHL@2x.png */; };
  125. 27B882C31F0CC2EE00271940 /* navi_back@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = 27B8826C1F0CC2EE00271940 /* navi_back@2x.png */; };
  126. 27B882C41F0CC2EE00271940 /* photo_def_photoPickerVc@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = 27B8826D1F0CC2EE00271940 /* photo_def_photoPickerVc@2x.png */; };
  127. 27B882C51F0CC2EE00271940 /* photo_def_previewVc@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = 27B8826E1F0CC2EE00271940 /* photo_def_previewVc@2x.png */; };
  128. 27B882C61F0CC2EE00271940 /* photo_number_icon@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = 27B8826F1F0CC2EE00271940 /* photo_number_icon@2x.png */; };
  129. 27B882C71F0CC2EE00271940 /* photo_original_def@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = 27B882701F0CC2EE00271940 /* photo_original_def@2x.png */; };
  130. 27B882C81F0CC2EE00271940 /* photo_original_sel@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = 27B882711F0CC2EE00271940 /* photo_original_sel@2x.png */; };
  131. 27B882C91F0CC2EE00271940 /* photo_sel_photoPickerVc@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = 27B882721F0CC2EE00271940 /* photo_sel_photoPickerVc@2x.png */; };
  132. 27B882CA1F0CC2EE00271940 /* photo_sel_previewVc@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = 27B882731F0CC2EE00271940 /* photo_sel_previewVc@2x.png */; };
  133. 27B882CB1F0CC2EE00271940 /* preview_number_icon@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = 27B882741F0CC2EE00271940 /* preview_number_icon@2x.png */; };
  134. 27B882CC1F0CC2EE00271940 /* preview_original_def@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = 27B882751F0CC2EE00271940 /* preview_original_def@2x.png */; };
  135. 27B882CD1F0CC2EE00271940 /* TableViewArrow@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = 27B882761F0CC2EE00271940 /* TableViewArrow@2x.png */; };
  136. 27B882CE1F0CC2EE00271940 /* VideoSendIcon@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = 27B882771F0CC2EE00271940 /* VideoSendIcon@2x.png */; };
  137. 27B882CF1F0CC2EE00271940 /* PhotosDataHandle.m in Sources */ = {isa = PBXBuildFile; fileRef = 27B8827B1F0CC2EE00271940 /* PhotosDataHandle.m */; };
  138. 27B882D01F0CC2EE00271940 /* PhotosDataModel.m in Sources */ = {isa = PBXBuildFile; fileRef = 27B8827D1F0CC2EE00271940 /* PhotosDataModel.m */; };
  139. 27B882D11F0CC2EE00271940 /* PhotosNavigationController.m in Sources */ = {isa = PBXBuildFile; fileRef = 27B8827F1F0CC2EE00271940 /* PhotosNavigationController.m */; };
  140. 27B882D21F0CC2EE00271940 /* PhotosTableViewCell.m in Sources */ = {isa = PBXBuildFile; fileRef = 27B882821F0CC2EE00271940 /* PhotosTableViewCell.m */; };
  141. 27B882D31F0CC2EE00271940 /* PhotosViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 27B882841F0CC2EE00271940 /* PhotosViewController.m */; };
  142. 27B882D41F0CC2EE00271940 /* PhotoPickerCell.m in Sources */ = {isa = PBXBuildFile; fileRef = 27B882871F0CC2EE00271940 /* PhotoPickerCell.m */; };
  143. 27B882D51F0CC2EE00271940 /* PhotoPickerCell.xib in Resources */ = {isa = PBXBuildFile; fileRef = 27B882881F0CC2EE00271940 /* PhotoPickerCell.xib */; };
  144. 27B882D61F0CC2EE00271940 /* PhotoPickerController.m in Sources */ = {isa = PBXBuildFile; fileRef = 27B8828A1F0CC2EE00271940 /* PhotoPickerController.m */; };
  145. 27B882D71F0CC2EE00271940 /* PhotoPickerModel.m in Sources */ = {isa = PBXBuildFile; fileRef = 27B8828C1F0CC2EE00271940 /* PhotoPickerModel.m */; };
  146. 27B882D81F0CC2EE00271940 /* PhotoPreviewCell.m in Sources */ = {isa = PBXBuildFile; fileRef = 27B8828F1F0CC2EE00271940 /* PhotoPreviewCell.m */; };
  147. 27B882D91F0CC2EE00271940 /* PhotoPreviewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 27B882911F0CC2EE00271940 /* PhotoPreviewController.m */; };
  148. 27B882DA1F0CC2EE00271940 /* VideoPlayerController.m in Sources */ = {isa = PBXBuildFile; fileRef = 27B882931F0CC2EE00271940 /* VideoPlayerController.m */; };
  149. 27B882E91F0CC2EE00271940 /* ApiXml.mm in Sources */ = {isa = PBXBuildFile; fileRef = 27B882A81F0CC2EE00271940 /* ApiXml.mm */; settings = {COMPILER_FLAGS = "-fno-objc-arc"; }; };
  150. 27B882EA1F0CC2EE00271940 /* payRequsestHandler.mm in Sources */ = {isa = PBXBuildFile; fileRef = 27B882AA1F0CC2EE00271940 /* payRequsestHandler.mm */; settings = {COMPILER_FLAGS = "-fno-objc-arc"; }; };
  151. 27B882EB1F0CC2EE00271940 /* WXUtil.mm in Sources */ = {isa = PBXBuildFile; fileRef = 27B882AC1F0CC2EE00271940 /* WXUtil.mm */; };
  152. 27B882EC1F0CC2EE00271940 /* MyImageViewer.m in Sources */ = {isa = PBXBuildFile; fileRef = 27B882B11F0CC2EE00271940 /* MyImageViewer.m */; };
  153. 27B882F01F0CC4EA00271940 /* libcrypto.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 27B882EE1F0CC4EA00271940 /* libcrypto.a */; };
  154. 27B882F11F0CC4EA00271940 /* libssl.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 27B882EF1F0CC4EA00271940 /* libssl.a */; };
  155. 27B882F81F0CC61600271940 /* BaiduMapAPI_Map.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 27B882F71F0CC61600271940 /* BaiduMapAPI_Map.framework */; };
  156. 27B882FA1F0CC72700271940 /* mapapi.bundle in Resources */ = {isa = PBXBuildFile; fileRef = 27B882F91F0CC72700271940 /* mapapi.bundle */; };
  157. 27B883071F0CEFF600271940 /* AddEmployVC.m in Sources */ = {isa = PBXBuildFile; fileRef = 27B882FD1F0CEFF600271940 /* AddEmployVC.m */; };
  158. 27B883081F0CEFF600271940 /* EmployeeManageVC.m in Sources */ = {isa = PBXBuildFile; fileRef = 27B882FF1F0CEFF600271940 /* EmployeeManageVC.m */; };
  159. 27B883091F0CEFF600271940 /* Employee.m in Sources */ = {isa = PBXBuildFile; fileRef = 27B883021F0CEFF600271940 /* Employee.m */; };
  160. 27B8830A1F0CEFF600271940 /* EmployeeCell.m in Sources */ = {isa = PBXBuildFile; fileRef = 27B883051F0CEFF600271940 /* EmployeeCell.m */; };
  161. 27B8830B1F0CEFF600271940 /* EmployeeCell.xib in Resources */ = {isa = PBXBuildFile; fileRef = 27B883061F0CEFF600271940 /* EmployeeCell.xib */; };
  162. 27B9F2371F074FAC007A9DD2 /* HomeHeaderView.m in Sources */ = {isa = PBXBuildFile; fileRef = 27B9F2361F074FAC007A9DD2 /* HomeHeaderView.m */; };
  163. 27B9F2391F074FCD007A9DD2 /* HomeHeaderView.xib in Resources */ = {isa = PBXBuildFile; fileRef = 27B9F2381F074FCD007A9DD2 /* HomeHeaderView.xib */; };
  164. 27CCC8DE1F17915000926E96 /* StaffListVC.m in Sources */ = {isa = PBXBuildFile; fileRef = 27CCC8DD1F17915000926E96 /* StaffListVC.m */; };
  165. 27CCC8E31F1796AE00926E96 /* StaffListCell.m in Sources */ = {isa = PBXBuildFile; fileRef = 27CCC8E11F1796AE00926E96 /* StaffListCell.m */; };
  166. 27CCC8E41F1796AE00926E96 /* StaffListCell.xib in Resources */ = {isa = PBXBuildFile; fileRef = 27CCC8E21F1796AE00926E96 /* StaffListCell.xib */; };
  167. 27CCC8E71F17985600926E96 /* StaffTopView.m in Sources */ = {isa = PBXBuildFile; fileRef = 27CCC8E61F17985600926E96 /* StaffTopView.m */; };
  168. 27CCC8E91F17987F00926E96 /* StaffTopView.xib in Resources */ = {isa = PBXBuildFile; fileRef = 27CCC8E81F17987F00926E96 /* StaffTopView.xib */; };
  169. 27CCC8ED1F17B57100926E96 /* StaffModel.m in Sources */ = {isa = PBXBuildFile; fileRef = 27CCC8EC1F17B57100926E96 /* StaffModel.m */; };
  170. 27CE709C1F25C2F800BA034B /* ItemTextFiledCell.m in Sources */ = {isa = PBXBuildFile; fileRef = 27CE709A1F25C2F800BA034B /* ItemTextFiledCell.m */; };
  171. 27CE709D1F25C2F800BA034B /* ItemTextFiledCell.xib in Resources */ = {isa = PBXBuildFile; fileRef = 27CE709B1F25C2F800BA034B /* ItemTextFiledCell.xib */; };
  172. 27DC05E71F1260AF004FCB48 /* OrderManagerModel.m in Sources */ = {isa = PBXBuildFile; fileRef = 27DC05E61F1260AF004FCB48 /* OrderManagerModel.m */; };
  173. 27ED2BD01F0C8E35001E6268 /* BalanceMoneyView.m in Sources */ = {isa = PBXBuildFile; fileRef = 27ED2BCF1F0C8E34001E6268 /* BalanceMoneyView.m */; };
  174. 27ED2BEA1F0CB911001E6268 /* PeopleLocationVC.mm in Sources */ = {isa = PBXBuildFile; fileRef = 27ED2BE91F0CB911001E6268 /* PeopleLocationVC.mm */; };
  175. 27ED2BF01F0CBA5F001E6268 /* libstdc++.6.0.9.tbd in Frameworks */ = {isa = PBXBuildFile; fileRef = 27ED2BEF1F0CBA5F001E6268 /* libstdc++.6.0.9.tbd */; };
  176. 27ED2BF21F0CBA76001E6268 /* CoreLocation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 27ED2BF11F0CBA76001E6268 /* CoreLocation.framework */; };
  177. 27ED2BF41F0CBA84001E6268 /* OpenGLES.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 27ED2BF31F0CBA84001E6268 /* OpenGLES.framework */; };
  178. 27ED2BF61F0CBA9A001E6268 /* Security.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 27ED2BF51F0CBA9A001E6268 /* Security.framework */; };
  179. 27ED2CA61F0CBB8E001E6268 /* NSDate+Extension.m in Sources */ = {isa = PBXBuildFile; fileRef = 27ED2BFA1F0CBB8E001E6268 /* NSDate+Extension.m */; };
  180. 27ED2CA71F0CBB8E001E6268 /* NSString+Extension.m in Sources */ = {isa = PBXBuildFile; fileRef = 27ED2BFC1F0CBB8E001E6268 /* NSString+Extension.m */; };
  181. 27ED2CA81F0CBB8E001E6268 /* UIBarButtonItem+Extension.m in Sources */ = {isa = PBXBuildFile; fileRef = 27ED2BFE1F0CBB8E001E6268 /* UIBarButtonItem+Extension.m */; };
  182. 27ED2CA91F0CBB8E001E6268 /* UIColor+Extension.m in Sources */ = {isa = PBXBuildFile; fileRef = 27ED2C001F0CBB8E001E6268 /* UIColor+Extension.m */; };
  183. 27ED2CAA1F0CBB8E001E6268 /* UIImage+Color.m in Sources */ = {isa = PBXBuildFile; fileRef = 27ED2C021F0CBB8E001E6268 /* UIImage+Color.m */; };
  184. 27ED2CAB1F0CBB8E001E6268 /* UITableViewCell+Extension.m in Sources */ = {isa = PBXBuildFile; fileRef = 27ED2C041F0CBB8E001E6268 /* UITableViewCell+Extension.m */; };
  185. 27ED2CAC1F0CBB8E001E6268 /* UIView+Extension.m in Sources */ = {isa = PBXBuildFile; fileRef = 27ED2C061F0CBB8E001E6268 /* UIView+Extension.m */; };
  186. 27ED2CAD1F0CBB8E001E6268 /* BaseViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 27ED2C0A1F0CBB8E001E6268 /* BaseViewController.m */; };
  187. 27ED2CAE1F0CBB8E001E6268 /* NavigationController.m in Sources */ = {isa = PBXBuildFile; fileRef = 27ED2C0D1F0CBB8E001E6268 /* NavigationController.m */; };
  188. 27ED2CEA1F0CBB8F001E6268 /* Const.m in Sources */ = {isa = PBXBuildFile; fileRef = 27ED2C811F0CBB8E001E6268 /* Const.m */; };
  189. 27ED2CEB1F0CBB8F001E6268 /* Foundation+Log.m in Sources */ = {isa = PBXBuildFile; fileRef = 27ED2C821F0CBB8E001E6268 /* Foundation+Log.m */; };
  190. 27ED2CEC1F0CBB8F001E6268 /* main.m in Sources */ = {isa = PBXBuildFile; fileRef = 27ED2C831F0CBB8E001E6268 /* main.m */; };
  191. 27ED2CED1F0CBB8F001E6268 /* ZHRQ_GYZ.xcdatamodeld in Sources */ = {isa = PBXBuildFile; fileRef = 27ED2C851F0CBB8E001E6268 /* ZHRQ_GYZ.xcdatamodeld */; };
  192. 27ED2CEE1F0CBB8F001E6268 /* HttpTool.m in Sources */ = {isa = PBXBuildFile; fileRef = 27ED2C8A1F0CBB8E001E6268 /* HttpTool.m */; };
  193. 27ED2CEF1F0CBB8F001E6268 /* LaiMethod.m in Sources */ = {isa = PBXBuildFile; fileRef = 27ED2C8D1F0CBB8E001E6268 /* LaiMethod.m */; };
  194. 27ED2CF01F0CBB8F001E6268 /* SaveTool.m in Sources */ = {isa = PBXBuildFile; fileRef = 27ED2C901F0CBB8E001E6268 /* SaveTool.m */; };
  195. 27ED2CF11F0CBB8F001E6268 /* VerificationTool.m in Sources */ = {isa = PBXBuildFile; fileRef = 27ED2C931F0CBB8E001E6268 /* VerificationTool.m */; };
  196. 27ED2D281F0CBBD0001E6268 /* ItemTextCell.m in Sources */ = {isa = PBXBuildFile; fileRef = 27ED2D191F0CBBD0001E6268 /* ItemTextCell.m */; };
  197. 27ED2D291F0CBBD0001E6268 /* ItemTextCell.xib in Resources */ = {isa = PBXBuildFile; fileRef = 27ED2D1A1F0CBBD0001E6268 /* ItemTextCell.xib */; };
  198. 27ED2D2C1F0CBBD0001E6268 /* NormalBottomView.m in Sources */ = {isa = PBXBuildFile; fileRef = 27ED2D211F0CBBD0001E6268 /* NormalBottomView.m */; };
  199. 27ED2D2D1F0CBBD0001E6268 /* NormalBottomView.xib in Resources */ = {isa = PBXBuildFile; fileRef = 27ED2D221F0CBBD0001E6268 /* NormalBottomView.xib */; };
  200. 27ED2D2E1F0CBBD0001E6268 /* PubSubmitBtnView.m in Sources */ = {isa = PBXBuildFile; fileRef = 27ED2D241F0CBBD0001E6268 /* PubSubmitBtnView.m */; };
  201. 27ED2D2F1F0CBBD0001E6268 /* TextView.m in Sources */ = {isa = PBXBuildFile; fileRef = 27ED2D271F0CBBD0001E6268 /* TextView.m */; };
  202. AF2DB0F0FDB825FF4B2FB63A /* libPods-ZTXWY.a in Frameworks */ = {isa = PBXBuildFile; fileRef = EA187A154A427FDC9D241B71 /* libPods-ZTXWY.a */; };
  203. F51A226A1F185C0C00C6D038 /* InputPhoneNOView.m in Sources */ = {isa = PBXBuildFile; fileRef = F51A22691F185C0C00C6D038 /* InputPhoneNOView.m */; };
  204. F51A226C1F185D4B00C6D038 /* InputPhoneNOView.xib in Resources */ = {isa = PBXBuildFile; fileRef = F51A226B1F185D4B00C6D038 /* InputPhoneNOView.xib */; };
  205. F51A227C1F18950600C6D038 /* AlertPopViewTool.m in Sources */ = {isa = PBXBuildFile; fileRef = F51A227B1F18950600C6D038 /* AlertPopViewTool.m */; };
  206. F521B87F1EEE90D900E56DB5 /* HomeViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = F521B8661EEE90D900E56DB5 /* HomeViewController.m */; };
  207. F521B8801EEE90D900E56DB5 /* HomeCollectionViewCell.m in Sources */ = {isa = PBXBuildFile; fileRef = F521B8691EEE90D900E56DB5 /* HomeCollectionViewCell.m */; };
  208. F521B8811EEE90D900E56DB5 /* HomeCollectionViewCell.xib in Resources */ = {isa = PBXBuildFile; fileRef = F521B86A1EEE90D900E56DB5 /* HomeCollectionViewCell.xib */; };
  209. F521B8821EEE90D900E56DB5 /* HomeTopView.m in Sources */ = {isa = PBXBuildFile; fileRef = F521B86C1EEE90D900E56DB5 /* HomeTopView.m */; };
  210. F521B8831EEE90D900E56DB5 /* HomeTopView.xib in Resources */ = {isa = PBXBuildFile; fileRef = F521B86D1EEE90D900E56DB5 /* HomeTopView.xib */; };
  211. F52AF5FB1F51667B007EA94E /* CylinderYearlynspectionView.xib in Resources */ = {isa = PBXBuildFile; fileRef = F52AF5F81F51667B007EA94E /* CylinderYearlynspectionView.xib */; };
  212. F52AF5FC1F51667B007EA94E /* CylinderYearlynspectionView.m in Sources */ = {isa = PBXBuildFile; fileRef = F52AF5F91F51667B007EA94E /* CylinderYearlynspectionView.m */; };
  213. F55819361EE4F890005EBBE2 /* UserInfo.m in Sources */ = {isa = PBXBuildFile; fileRef = F55819351EE4F890005EBBE2 /* UserInfo.m */; };
  214. F55AF7271EE643C70060073E /* LoginView.m in Sources */ = {isa = PBXBuildFile; fileRef = F55AF7261EE643C70060073E /* LoginView.m */; };
  215. F55AF7291EE643CF0060073E /* LoginView.xib in Resources */ = {isa = PBXBuildFile; fileRef = F55AF7281EE643CF0060073E /* LoginView.xib */; };
  216. F55DAC5D1EE7CBF3003A88BE /* Assets.xcassets in Resources */ = {isa = PBXBuildFile; fileRef = F55DAC5B1EE7CBF3003A88BE /* Assets.xcassets */; };
  217. F55DAC5E1EE7CBF3003A88BE /* IconLaunch.xcassets in Resources */ = {isa = PBXBuildFile; fileRef = F55DAC5C1EE7CBF3003A88BE /* IconLaunch.xcassets */; };
  218. F59EA9CD1EE5373C004B3101 /* LoginVC.m in Sources */ = {isa = PBXBuildFile; fileRef = F59EA9CC1EE5373C004B3101 /* LoginVC.m */; };
  219. F5AD671C1F1702E1001C3003 /* AlipaySDK.bundle in Resources */ = {isa = PBXBuildFile; fileRef = F5AD671A1F1702E1001C3003 /* AlipaySDK.bundle */; };
  220. F5AD671F1F17073C001C3003 /* libc++.tbd in Frameworks */ = {isa = PBXBuildFile; fileRef = F5AD671E1F17073C001C3003 /* libc++.tbd */; };
  221. F5AD67221F170A31001C3003 /* AlipaySDK.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = F5AD67211F170A31001C3003 /* AlipaySDK.framework */; };
  222. F5BF2A1A1F2B11B90037A5B4 /* WithholdCylinderVC.m in Sources */ = {isa = PBXBuildFile; fileRef = F5BF2A191F2B11B90037A5B4 /* WithholdCylinderVC.m */; };
  223. F5BF2A1E1F2B12A20037A5B4 /* CylinderTotalView.xib in Resources */ = {isa = PBXBuildFile; fileRef = F5BF2A1B1F2B12A20037A5B4 /* CylinderTotalView.xib */; };
  224. F5BF2A1F1F2B12A20037A5B4 /* CylinderTotalView.m in Sources */ = {isa = PBXBuildFile; fileRef = F5BF2A1C1F2B12A20037A5B4 /* CylinderTotalView.m */; };
  225. F5BF2A261F2B1A370037A5B4 /* ItemAddPhotoCell.m in Sources */ = {isa = PBXBuildFile; fileRef = F5BF2A221F2B1A370037A5B4 /* ItemAddPhotoCell.m */; };
  226. F5BF2A271F2B1A370037A5B4 /* ItemAddPhotoCell.xib in Resources */ = {isa = PBXBuildFile; fileRef = F5BF2A231F2B1A370037A5B4 /* ItemAddPhotoCell.xib */; };
  227. F5BF2A281F2B1A370037A5B4 /* ItemCell.m in Sources */ = {isa = PBXBuildFile; fileRef = F5BF2A251F2B1A370037A5B4 /* ItemCell.m */; };
  228. F5BF2A2D1F2B1A630037A5B4 /* ItemArrowCell.m in Sources */ = {isa = PBXBuildFile; fileRef = F5BF2A2B1F2B1A630037A5B4 /* ItemArrowCell.m */; };
  229. F5BF2A2E1F2B1A630037A5B4 /* ItemArrowCell.xib in Resources */ = {isa = PBXBuildFile; fileRef = F5BF2A2C1F2B1A630037A5B4 /* ItemArrowCell.xib */; };
  230. F5BF2A4F1F2B210E0037A5B4 /* demo_fontclass.html in Resources */ = {isa = PBXBuildFile; fileRef = F5BF2A451F2B210E0037A5B4 /* demo_fontclass.html */; };
  231. F5BF2A501F2B210E0037A5B4 /* demo_symbol.html in Resources */ = {isa = PBXBuildFile; fileRef = F5BF2A461F2B210E0037A5B4 /* demo_symbol.html */; };
  232. F5BF2A511F2B210E0037A5B4 /* demo_unicode.html in Resources */ = {isa = PBXBuildFile; fileRef = F5BF2A471F2B210E0037A5B4 /* demo_unicode.html */; };
  233. F5BF2A521F2B210E0037A5B4 /* demo.css in Resources */ = {isa = PBXBuildFile; fileRef = F5BF2A481F2B210E0037A5B4 /* demo.css */; };
  234. F5BF2A531F2B210E0037A5B4 /* iconfont.css in Resources */ = {isa = PBXBuildFile; fileRef = F5BF2A491F2B210E0037A5B4 /* iconfont.css */; };
  235. F5BF2A541F2B210E0037A5B4 /* iconfont.eot in Resources */ = {isa = PBXBuildFile; fileRef = F5BF2A4A1F2B210E0037A5B4 /* iconfont.eot */; };
  236. F5BF2A551F2B210E0037A5B4 /* iconfont.js in Resources */ = {isa = PBXBuildFile; fileRef = F5BF2A4B1F2B210E0037A5B4 /* iconfont.js */; };
  237. F5BF2A561F2B210E0037A5B4 /* iconfont.svg in Resources */ = {isa = PBXBuildFile; fileRef = F5BF2A4C1F2B210E0037A5B4 /* iconfont.svg */; };
  238. F5BF2A571F2B210E0037A5B4 /* iconfont.ttf in Resources */ = {isa = PBXBuildFile; fileRef = F5BF2A4D1F2B210E0037A5B4 /* iconfont.ttf */; };
  239. F5BF2A581F2B210E0037A5B4 /* iconfont.woff in Resources */ = {isa = PBXBuildFile; fileRef = F5BF2A4E1F2B210E0037A5B4 /* iconfont.woff */; };
  240. F5BF2A5C1F2B21AD0037A5B4 /* IDPhotoInstructionView.xib in Resources */ = {isa = PBXBuildFile; fileRef = F5BF2A591F2B21AD0037A5B4 /* IDPhotoInstructionView.xib */; };
  241. F5BF2A5D1F2B21AD0037A5B4 /* IDPhotoInstructionView.m in Sources */ = {isa = PBXBuildFile; fileRef = F5BF2A5A1F2B21AD0037A5B4 /* IDPhotoInstructionView.m */; };
  242. F5BF2A601F2B23C90037A5B4 /* ReExaminationEmployeeVC.m in Sources */ = {isa = PBXBuildFile; fileRef = F5BF2A5E1F2B23C90037A5B4 /* ReExaminationEmployeeVC.m */; };
  243. F5C34CDA1EE166E30030E924 /* ZHRQ_GYZTests.m in Sources */ = {isa = PBXBuildFile; fileRef = F5C34CD91EE166E30030E924 /* ZHRQ_GYZTests.m */; };
  244. F5C34CE51EE166E40030E924 /* ZHRQ_GYZUITests.m in Sources */ = {isa = PBXBuildFile; fileRef = F5C34CE41EE166E40030E924 /* ZHRQ_GYZUITests.m */; };
  245. /* End PBXBuildFile section */
  246. /* Begin PBXContainerItemProxy section */
  247. F5C34CD61EE166E30030E924 /* PBXContainerItemProxy */ = {
  248. isa = PBXContainerItemProxy;
  249. containerPortal = F5C34CB11EE166E30030E924 /* Project object */;
  250. proxyType = 1;
  251. remoteGlobalIDString = F5C34CB81EE166E30030E924;
  252. remoteInfo = ZTXWY;
  253. };
  254. F5C34CE11EE166E30030E924 /* PBXContainerItemProxy */ = {
  255. isa = PBXContainerItemProxy;
  256. containerPortal = F5C34CB11EE166E30030E924 /* Project object */;
  257. proxyType = 1;
  258. remoteGlobalIDString = F5C34CB81EE166E30030E924;
  259. remoteInfo = ZTXWY;
  260. };
  261. /* End PBXContainerItemProxy section */
  262. /* Begin PBXFileReference section */
  263. 27089EC31F0E7BC7001B81E2 /* CarouselView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CarouselView.h; sourceTree = "<group>"; };
  264. 27089EC41F0E7BC7001B81E2 /* CarouselView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = CarouselView.m; sourceTree = "<group>"; };
  265. 27089EC61F0E8974001B81E2 /* NoticeCell.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = NoticeCell.h; sourceTree = "<group>"; };
  266. 27089EC71F0E8974001B81E2 /* NoticeCell.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = NoticeCell.m; sourceTree = "<group>"; };
  267. 27089EC81F0E8974001B81E2 /* NoticeCell.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; path = NoticeCell.xib; sourceTree = "<group>"; };
  268. 271D895E1F0F25690094090E /* NoPermissionCell.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = NoPermissionCell.h; sourceTree = "<group>"; };
  269. 271D895F1F0F25690094090E /* NoPermissionCell.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = NoPermissionCell.m; sourceTree = "<group>"; };
  270. 271D89601F0F25690094090E /* NoPermissionCell.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; path = NoPermissionCell.xib; sourceTree = "<group>"; };
  271. 271D89641F0F62360094090E /* SupplyDataViewModel.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SupplyDataViewModel.h; sourceTree = "<group>"; };
  272. 271D89651F0F62360094090E /* SupplyDataViewModel.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = SupplyDataViewModel.m; sourceTree = "<group>"; };
  273. 271D89681F0F77810094090E /* CylinderModel.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CylinderModel.h; sourceTree = "<group>"; };
  274. 271D89691F0F77810094090E /* CylinderModel.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = CylinderModel.m; sourceTree = "<group>"; };
  275. 271D896B1F0F87BD0094090E /* ValidationCodeImputView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ValidationCodeImputView.h; sourceTree = "<group>"; };
  276. 271D896C1F0F87BD0094090E /* ValidationCodeImputView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = ValidationCodeImputView.m; sourceTree = "<group>"; };
  277. 271FCAEC1F0A41F80024E9DE /* NoticeManangerVC.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = NoticeManangerVC.h; sourceTree = "<group>"; };
  278. 271FCAED1F0A41F80024E9DE /* NoticeManangerVC.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; lineEnding = 0; path = NoticeManangerVC.m; sourceTree = "<group>"; xcLanguageSpecificationIdentifier = xcode.lang.objc; };
  279. 271FCAF11F0A41F80024E9DE /* Notice.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = Notice.h; sourceTree = "<group>"; };
  280. 271FCAF21F0A41F80024E9DE /* Notice.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = Notice.m; sourceTree = "<group>"; };
  281. 271FCB101F0A4DE70024E9DE /* RechargeViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = RechargeViewController.h; sourceTree = "<group>"; };
  282. 271FCB111F0A4DE70024E9DE /* RechargeViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; lineEnding = 0; path = RechargeViewController.m; sourceTree = "<group>"; xcLanguageSpecificationIdentifier = xcode.lang.objc; };
  283. 271FCB141F0A4E650024E9DE /* PayTypeView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = PayTypeView.h; sourceTree = "<group>"; };
  284. 271FCB151F0A4E650024E9DE /* PayTypeView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = PayTypeView.m; sourceTree = "<group>"; };
  285. 271FCB2D1F0A4F310024E9DE /* BalanceTopCell.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = BalanceTopCell.h; path = ../BalanceTopCell.h; sourceTree = "<group>"; };
  286. 271FCB2E1F0A4F310024E9DE /* BalanceTopCell.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = BalanceTopCell.m; path = ../BalanceTopCell.m; sourceTree = "<group>"; };
  287. 271FCB2F1F0A4F310024E9DE /* BalanceTopCell.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; name = BalanceTopCell.xib; path = ../BalanceTopCell.xib; sourceTree = "<group>"; };
  288. 271FCB331F0A504E0024E9DE /* MyBalanceModel.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = MyBalanceModel.h; sourceTree = "<group>"; };
  289. 271FCB341F0A504E0024E9DE /* MyBalanceModel.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = MyBalanceModel.m; sourceTree = "<group>"; };
  290. 2737A6851F203BF800D4F881 /* GeTuiExtSdk.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = GeTuiExtSdk.h; sourceTree = "<group>"; };
  291. 2737A6861F203BF800D4F881 /* GeTuiSdk.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = GeTuiSdk.h; sourceTree = "<group>"; };
  292. 2737A6871F203BF800D4F881 /* libGeTuiSdk-1.6.4.0.a */ = {isa = PBXFileReference; lastKnownFileType = archive.ar; path = "libGeTuiSdk-1.6.4.0.a"; sourceTree = "<group>"; };
  293. 2737A6881F203BF800D4F881 /* libGtExtensionSdk-1.3.0.a */ = {isa = PBXFileReference; lastKnownFileType = archive.ar; path = "libGtExtensionSdk-1.3.0.a"; sourceTree = "<group>"; };
  294. 273BE48C1F13099D00ECA57F /* PZXVerificationCodeView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = PZXVerificationCodeView.h; sourceTree = "<group>"; };
  295. 273BE48D1F13099D00ECA57F /* PZXVerificationCodeView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = PZXVerificationCodeView.m; sourceTree = "<group>"; };
  296. 273BE48E1F13099D00ECA57F /* PZXVerificationTextField.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = PZXVerificationTextField.h; sourceTree = "<group>"; };
  297. 273BE48F1F13099D00ECA57F /* PZXVerificationTextField.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = PZXVerificationTextField.m; sourceTree = "<group>"; };
  298. 273BE4921F130C7300ECA57F /* ValidationCodeImputView.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; path = ValidationCodeImputView.xib; sourceTree = "<group>"; };
  299. 273BE4941F1326D400ECA57F /* DataBottomView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = DataBottomView.h; sourceTree = "<group>"; };
  300. 273BE4951F1326D400ECA57F /* DataBottomView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = DataBottomView.m; sourceTree = "<group>"; };
  301. 273BE4961F1326D400ECA57F /* DataBottomView.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; path = DataBottomView.xib; sourceTree = "<group>"; };
  302. 273BE49A1F1358E300ECA57F /* WKWebBaseVC.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = WKWebBaseVC.h; sourceTree = "<group>"; };
  303. 273BE49B1F1358E300ECA57F /* WKWebBaseVC.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = WKWebBaseVC.m; sourceTree = "<group>"; };
  304. 273BE49D1F13590600ECA57F /* NoticeDetialVC.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = NoticeDetialVC.h; sourceTree = "<group>"; };
  305. 273BE49E1F13590600ECA57F /* NoticeDetialVC.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = NoticeDetialVC.m; sourceTree = "<group>"; };
  306. 274DE2A51F14A49500E0294E /* CylinderInfoStatusView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CylinderInfoStatusView.h; sourceTree = "<group>"; };
  307. 274DE2A61F14A49500E0294E /* CylinderInfoStatusView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = CylinderInfoStatusView.m; sourceTree = "<group>"; };
  308. 274DE2A71F14A49500E0294E /* CylinderInfoStatusView.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; path = CylinderInfoStatusView.xib; sourceTree = "<group>"; };
  309. 274DE2AA1F14A65400E0294E /* UITableViewHeaderFooterView+Extension.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "UITableViewHeaderFooterView+Extension.h"; sourceTree = "<group>"; };
  310. 274DE2AB1F14A65400E0294E /* UITableViewHeaderFooterView+Extension.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "UITableViewHeaderFooterView+Extension.m"; sourceTree = "<group>"; };
  311. 276639B61F19A991002CB26D /* BalanceHeaderView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = BalanceHeaderView.h; sourceTree = "<group>"; };
  312. 276639B71F19A991002CB26D /* BalanceHeaderView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = BalanceHeaderView.m; sourceTree = "<group>"; };
  313. 276639B91F19ABC8002CB26D /* RechargeRecordVC.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = RechargeRecordVC.h; sourceTree = "<group>"; };
  314. 276639BA1F19ABC8002CB26D /* RechargeRecordVC.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = RechargeRecordVC.m; sourceTree = "<group>"; };
  315. 276639BC1F19AD61002CB26D /* RecordListCell.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = RecordListCell.h; sourceTree = "<group>"; };
  316. 276639BD1F19AD61002CB26D /* RecordListCell.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = RecordListCell.m; sourceTree = "<group>"; };
  317. 276639BE1F19AD61002CB26D /* RecordListCell.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; path = RecordListCell.xib; sourceTree = "<group>"; };
  318. 27689CF41F0B205100BB6D1C /* libsqlite3.0.tbd */ = {isa = PBXFileReference; lastKnownFileType = "sourcecode.text-based-dylib-definition"; name = libsqlite3.0.tbd; path = usr/lib/libsqlite3.0.tbd; sourceTree = SDKROOT; };
  319. 27689CF61F0B205600BB6D1C /* libsqlite3.tbd */ = {isa = PBXFileReference; lastKnownFileType = "sourcecode.text-based-dylib-definition"; name = libsqlite3.tbd; path = usr/lib/libsqlite3.tbd; sourceTree = SDKROOT; };
  320. 27689CF81F0B217100BB6D1C /* SystemConfiguration.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = SystemConfiguration.framework; path = System/Library/Frameworks/SystemConfiguration.framework; sourceTree = SDKROOT; };
  321. 27689CFA1F0B217800BB6D1C /* libz.tbd */ = {isa = PBXFileReference; lastKnownFileType = "sourcecode.text-based-dylib-definition"; name = libz.tbd; path = usr/lib/libz.tbd; sourceTree = SDKROOT; };
  322. 27689CFC1F0B218100BB6D1C /* CoreTelephony.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = CoreTelephony.framework; path = System/Library/Frameworks/CoreTelephony.framework; sourceTree = SDKROOT; };
  323. 27689CFE1F0B218A00BB6D1C /* QuartzCore.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = QuartzCore.framework; path = System/Library/Frameworks/QuartzCore.framework; sourceTree = SDKROOT; };
  324. 27689D001F0B21BF00BB6D1C /* CoreText.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = CoreText.framework; path = System/Library/Frameworks/CoreText.framework; sourceTree = SDKROOT; };
  325. 27689D021F0B21CB00BB6D1C /* CoreGraphics.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = CoreGraphics.framework; path = System/Library/Frameworks/CoreGraphics.framework; sourceTree = SDKROOT; };
  326. 27689D041F0B21D100BB6D1C /* UIKit.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = UIKit.framework; path = System/Library/Frameworks/UIKit.framework; sourceTree = SDKROOT; };
  327. 27689D061F0B21E000BB6D1C /* Foundation.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = Foundation.framework; path = System/Library/Frameworks/Foundation.framework; sourceTree = SDKROOT; };
  328. 27689D081F0B225800BB6D1C /* CoreMotion.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = CoreMotion.framework; path = System/Library/Frameworks/CoreMotion.framework; sourceTree = SDKROOT; };
  329. 27689D0A1F0B2B0300BB6D1C /* Info.plist */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = "<group>"; };
  330. 276D1F941F0DCD7900A5D562 /* OrderListVC.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; lineEnding = 0; path = OrderListVC.m; sourceTree = "<group>"; xcLanguageSpecificationIdentifier = xcode.lang.objc; };
  331. 276D1F951F0DCD7900A5D562 /* OrderListVC.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = OrderListVC.h; sourceTree = "<group>"; };
  332. 276D1FB21F0DE2A600A5D562 /* OrderListCell.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = OrderListCell.h; sourceTree = "<group>"; };
  333. 276D1FB31F0DE2A600A5D562 /* OrderListCell.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = OrderListCell.m; sourceTree = "<group>"; };
  334. 276D1FB41F0DE2A600A5D562 /* OrderListCell.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; path = OrderListCell.xib; sourceTree = "<group>"; };
  335. 276D1FB71F0DEA3100A5D562 /* libWeChatSDK.a */ = {isa = PBXFileReference; lastKnownFileType = archive.ar; path = libWeChatSDK.a; sourceTree = "<group>"; };
  336. 276D1FB81F0DEA3100A5D562 /* README.txt */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = README.txt; sourceTree = "<group>"; };
  337. 276D1FB91F0DEA3100A5D562 /* WechatAuthSDK.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = WechatAuthSDK.h; sourceTree = "<group>"; };
  338. 276D1FBA1F0DEA3100A5D562 /* WXApi.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = WXApi.h; sourceTree = "<group>"; };
  339. 276D1FBB1F0DEA3100A5D562 /* WXApiObject.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = WXApiObject.h; sourceTree = "<group>"; };
  340. 276D20131F0E086800A5D562 /* CylinderActivationVC.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CylinderActivationVC.h; sourceTree = "<group>"; };
  341. 276D20141F0E086800A5D562 /* CylinderActivationVC.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = CylinderActivationVC.m; sourceTree = "<group>"; };
  342. 276D20151F0E086800A5D562 /* CylinderInformationVC.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CylinderInformationVC.h; sourceTree = "<group>"; };
  343. 276D20161F0E086800A5D562 /* CylinderInformationVC.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = CylinderInformationVC.m; sourceTree = "<group>"; };
  344. 276D20171F0E086800A5D562 /* EditCodeVC.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = EditCodeVC.h; sourceTree = "<group>"; };
  345. 276D20181F0E086800A5D562 /* EditCodeVC.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = EditCodeVC.m; sourceTree = "<group>"; };
  346. 276D20191F0E086800A5D562 /* ScanQRcodeVC.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ScanQRcodeVC.h; sourceTree = "<group>"; };
  347. 276D201A1F0E086800A5D562 /* ScanQRcodeVC.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = ScanQRcodeVC.m; sourceTree = "<group>"; };
  348. 276D20241F0E086800A5D562 /* CylinderInformationCell.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CylinderInformationCell.h; sourceTree = "<group>"; };
  349. 276D20251F0E086800A5D562 /* CylinderInformationCell.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = CylinderInformationCell.m; sourceTree = "<group>"; };
  350. 276D20261F0E086800A5D562 /* CylinderInformationCell.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; path = CylinderInformationCell.xib; sourceTree = "<group>"; };
  351. 276D20271F0E086800A5D562 /* CylinderOperationView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CylinderOperationView.h; sourceTree = "<group>"; };
  352. 276D20281F0E086800A5D562 /* CylinderOperationView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = CylinderOperationView.m; sourceTree = "<group>"; };
  353. 276D20291F0E086800A5D562 /* CylinderOperationView.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; path = CylinderOperationView.xib; sourceTree = "<group>"; };
  354. 276D202E1F0E086800A5D562 /* EditCodeView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = EditCodeView.h; sourceTree = "<group>"; };
  355. 276D202F1F0E086800A5D562 /* EditCodeView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = EditCodeView.m; sourceTree = "<group>"; };
  356. 276D20301F0E086800A5D562 /* EditCodeView.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; path = EditCodeView.xib; sourceTree = "<group>"; };
  357. 276D20431F0E098700A5D562 /* NSObject+SGHelper.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "NSObject+SGHelper.h"; sourceTree = "<group>"; };
  358. 276D20441F0E098700A5D562 /* NSObject+SGHelper.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "NSObject+SGHelper.m"; sourceTree = "<group>"; };
  359. 276D20451F0E098700A5D562 /* UIImage+SGHelper.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "UIImage+SGHelper.h"; sourceTree = "<group>"; };
  360. 276D20461F0E098700A5D562 /* UIImage+SGHelper.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "UIImage+SGHelper.m"; sourceTree = "<group>"; };
  361. 276D20471F0E098700A5D562 /* SGQRCode.bundle */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.plug-in"; path = SGQRCode.bundle; sourceTree = "<group>"; };
  362. 276D20481F0E098700A5D562 /* SGQRCode.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SGQRCode.h; sourceTree = "<group>"; };
  363. 276D20491F0E098700A5D562 /* SGQRCodeScanManager.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SGQRCodeScanManager.h; sourceTree = "<group>"; };
  364. 276D204A1F0E098700A5D562 /* SGQRCodeScanManager.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = SGQRCodeScanManager.m; sourceTree = "<group>"; };
  365. 276D204B1F0E098700A5D562 /* SGQRCodeScanningView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SGQRCodeScanningView.h; sourceTree = "<group>"; };
  366. 276D204C1F0E098700A5D562 /* SGQRCodeScanningView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = SGQRCodeScanningView.m; sourceTree = "<group>"; };
  367. 276D20521F0E0C8300A5D562 /* AVFoundation.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = AVFoundation.framework; path = System/Library/Frameworks/AVFoundation.framework; sourceTree = SDKROOT; };
  368. 276D20541F0E0CB100A5D562 /* AVKit.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = AVKit.framework; path = System/Library/Frameworks/AVKit.framework; sourceTree = SDKROOT; };
  369. 276D20571F0E197D00A5D562 /* CylinderAbnormalTopView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = CylinderAbnormalTopView.h; path = "../钢瓶激活/CylinderAbnormalTopView.h"; sourceTree = "<group>"; };
  370. 276D20581F0E197D00A5D562 /* CylinderAbnormalTopView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = CylinderAbnormalTopView.m; path = "../钢瓶激活/CylinderAbnormalTopView.m"; sourceTree = "<group>"; };
  371. 276D20591F0E197D00A5D562 /* CylinderAbnormalTopView.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; name = CylinderAbnormalTopView.xib; path = "../钢瓶激活/CylinderAbnormalTopView.xib"; sourceTree = "<group>"; };
  372. 276D205A1F0E197D00A5D562 /* CylinderActivationSelectView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CylinderActivationSelectView.h; sourceTree = "<group>"; };
  373. 276D205B1F0E197D00A5D562 /* CylinderActivationSelectView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = CylinderActivationSelectView.m; sourceTree = "<group>"; };
  374. 276D205C1F0E197D00A5D562 /* CylinderActivationSelectView.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; path = CylinderActivationSelectView.xib; sourceTree = "<group>"; };
  375. 276D20611F0E19D100A5D562 /* CylinderTopView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CylinderTopView.h; sourceTree = "<group>"; };
  376. 276D20621F0E19D100A5D562 /* CylinderTopView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = CylinderTopView.m; sourceTree = "<group>"; };
  377. 276D20631F0E19D100A5D562 /* CylinderTopView.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; path = CylinderTopView.xib; sourceTree = "<group>"; };
  378. 276D20671F0E1A5E00A5D562 /* DataViewVC.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = DataViewVC.h; sourceTree = "<group>"; };
  379. 276D20681F0E1A5E00A5D562 /* DataViewVC.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; lineEnding = 0; path = DataViewVC.m; sourceTree = "<group>"; xcLanguageSpecificationIdentifier = xcode.lang.objc; };
  380. 276D206A1F0E1A5E00A5D562 /* DataTopView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = DataTopView.h; sourceTree = "<group>"; };
  381. 276D206B1F0E1A5E00A5D562 /* DataTopView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = DataTopView.m; sourceTree = "<group>"; };
  382. 276D206C1F0E1A5E00A5D562 /* DataTopView.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; path = DataTopView.xib; sourceTree = "<group>"; };
  383. 276D206D1F0E1A5E00A5D562 /* DataViewCell.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = DataViewCell.h; sourceTree = "<group>"; };
  384. 276D206E1F0E1A5E00A5D562 /* DataViewCell.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = DataViewCell.m; sourceTree = "<group>"; };
  385. 276D206F1F0E1A5E00A5D562 /* DataViewCell.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; path = DataViewCell.xib; sourceTree = "<group>"; };
  386. 276D20701F0E1A5E00A5D562 /* DateSelectView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = DateSelectView.h; sourceTree = "<group>"; };
  387. 276D20711F0E1A5E00A5D562 /* DateSelectView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = DateSelectView.m; sourceTree = "<group>"; };
  388. 276D20721F0E1A5E00A5D562 /* DateSelectView.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; path = DateSelectView.xib; sourceTree = "<group>"; };
  389. 276D207B1F0E1B3C00A5D562 /* KSDatePicker.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = KSDatePicker.h; sourceTree = "<group>"; };
  390. 276D207C1F0E1B3C00A5D562 /* KSDatePicker.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = KSDatePicker.m; sourceTree = "<group>"; };
  391. 276D207D1F0E1B3C00A5D562 /* KSDatePickerAppearance.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = KSDatePickerAppearance.h; sourceTree = "<group>"; };
  392. 276D207E1F0E1B3C00A5D562 /* KSDatePickerAppearance.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = KSDatePickerAppearance.m; sourceTree = "<group>"; };
  393. 276D20A91F0E254900A5D562 /* BasePageVC.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = BasePageVC.h; sourceTree = "<group>"; };
  394. 276D20AA1F0E254900A5D562 /* BasePageVC.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = BasePageVC.m; sourceTree = "<group>"; };
  395. 276D20AD1F0E25DE00A5D562 /* AbnormalCylinderVC.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = AbnormalCylinderVC.h; sourceTree = "<group>"; };
  396. 276D20AE1F0E25DE00A5D562 /* AbnormalCylinderVC.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = AbnormalCylinderVC.m; sourceTree = "<group>"; };
  397. 276D20AF1F0E25DE00A5D562 /* AllCylinderVC.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = AllCylinderVC.h; sourceTree = "<group>"; };
  398. 276D20B01F0E25DE00A5D562 /* AllCylinderVC.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = AllCylinderVC.m; sourceTree = "<group>"; };
  399. 276D20B11F0E25DE00A5D562 /* CylinderManageBaseVC.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CylinderManageBaseVC.h; sourceTree = "<group>"; };
  400. 276D20B21F0E25DE00A5D562 /* CylinderManageBaseVC.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; lineEnding = 0; path = CylinderManageBaseVC.m; sourceTree = "<group>"; xcLanguageSpecificationIdentifier = xcode.lang.objc; };
  401. 276D20B31F0E25DE00A5D562 /* CylinderManageVC.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CylinderManageVC.h; sourceTree = "<group>"; };
  402. 276D20B41F0E25DE00A5D562 /* CylinderManageVC.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = CylinderManageVC.m; sourceTree = "<group>"; };
  403. 276D20B51F0E25DE00A5D562 /* DisableCylinderVC.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = DisableCylinderVC.h; sourceTree = "<group>"; };
  404. 276D20B61F0E25DE00A5D562 /* DisableCylinderVC.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = DisableCylinderVC.m; sourceTree = "<group>"; };
  405. 276D20B71F0E25DE00A5D562 /* NormalCylinderVC.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = NormalCylinderVC.h; sourceTree = "<group>"; };
  406. 276D20B81F0E25DE00A5D562 /* NormalCylinderVC.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = NormalCylinderVC.m; sourceTree = "<group>"; };
  407. 276D20BA1F0E25DE00A5D562 /* CylinderCell.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CylinderCell.h; sourceTree = "<group>"; };
  408. 276D20BB1F0E25DE00A5D562 /* CylinderCell.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = CylinderCell.m; sourceTree = "<group>"; };
  409. 276D20BC1F0E25DE00A5D562 /* CylinderCell.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; path = CylinderCell.xib; sourceTree = "<group>"; };
  410. 276D20C61F0E26A500A5D562 /* TransferRecordVC.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = TransferRecordVC.h; sourceTree = "<group>"; };
  411. 276D20C71F0E26A500A5D562 /* TransferRecordVC.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = TransferRecordVC.m; sourceTree = "<group>"; };
  412. 276D20C91F0E26A500A5D562 /* TransferRecord.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = TransferRecord.h; sourceTree = "<group>"; };
  413. 276D20CA1F0E26A500A5D562 /* TransferRecord.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = TransferRecord.m; sourceTree = "<group>"; };
  414. 276D20CC1F0E26A500A5D562 /* TransferRecordCell.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = TransferRecordCell.h; sourceTree = "<group>"; };
  415. 276D20CD1F0E26A500A5D562 /* TransferRecordCell.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = TransferRecordCell.m; sourceTree = "<group>"; };
  416. 276D20CE1F0E26A500A5D562 /* TransferRecordCell.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; path = TransferRecordCell.xib; sourceTree = "<group>"; };
  417. 276D20CF1F0E26A500A5D562 /* TransferSectionView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = TransferSectionView.h; sourceTree = "<group>"; };
  418. 276D20D01F0E26A500A5D562 /* TransferSectionView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = TransferSectionView.m; sourceTree = "<group>"; };
  419. 276D20D11F0E26A500A5D562 /* TransferSectionView.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; path = TransferSectionView.xib; sourceTree = "<group>"; };
  420. 276DDDD31F174CC500F8CD71 /* BalanceMoneyCell.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = BalanceMoneyCell.h; sourceTree = "<group>"; };
  421. 276DDDD41F174CC500F8CD71 /* BalanceMoneyCell.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = BalanceMoneyCell.m; sourceTree = "<group>"; };
  422. 276DDDD51F174CC500F8CD71 /* BalanceMoneyCell.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; path = BalanceMoneyCell.xib; sourceTree = "<group>"; };
  423. 2795854F1F06515900F37D30 /* ZHRQ_GYZ.entitlements */ = {isa = PBXFileReference; lastKnownFileType = text.plist.entitlements; path = ZHRQ_GYZ.entitlements; sourceTree = "<group>"; };
  424. 279585501F06515D00F37D30 /* MapKit.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = MapKit.framework; path = System/Library/Frameworks/MapKit.framework; sourceTree = SDKROOT; };
  425. 279585521F06547400F37D30 /* AppDelegate.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = AppDelegate.h; sourceTree = "<group>"; };
  426. 279585531F06547400F37D30 /* AppDelegate.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = AppDelegate.m; sourceTree = "<group>"; };
  427. 2797CA661F203F0700667446 /* MobileCoreServices.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = MobileCoreServices.framework; path = System/Library/Frameworks/MobileCoreServices.framework; sourceTree = SDKROOT; };
  428. 2797CA681F203F4F00667446 /* UserNotifications.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = UserNotifications.framework; path = System/Library/Frameworks/UserNotifications.framework; sourceTree = SDKROOT; };
  429. 2797CA6A1F203F5B00667446 /* AdSupport.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = AdSupport.framework; path = System/Library/Frameworks/AdSupport.framework; sourceTree = SDKROOT; };
  430. 27B8824B1F0CC2EE00271940 /* BaiduMapAPI_Base.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; path = BaiduMapAPI_Base.framework; sourceTree = "<group>"; };
  431. 27B8824C1F0CC2EE00271940 /* BaiduMapAPI_Cloud.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; path = BaiduMapAPI_Cloud.framework; sourceTree = "<group>"; };
  432. 27B8824D1F0CC2EE00271940 /* BaiduMapAPI_Location.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; path = BaiduMapAPI_Location.framework; sourceTree = "<group>"; };
  433. 27B8824F1F0CC2EE00271940 /* BaiduMapAPI_Radar.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; path = BaiduMapAPI_Radar.framework; sourceTree = "<group>"; };
  434. 27B882501F0CC2EE00271940 /* BaiduMapAPI_Search.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; path = BaiduMapAPI_Search.framework; sourceTree = "<group>"; };
  435. 27B882511F0CC2EE00271940 /* BaiduMapAPI_Utils.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; path = BaiduMapAPI_Utils.framework; sourceTree = "<group>"; };
  436. 27B8825A1F0CC2EE00271940 /* CustomDatePicker.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CustomDatePicker.h; sourceTree = "<group>"; };
  437. 27B8825B1F0CC2EE00271940 /* CustomDatePicker.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = CustomDatePicker.m; sourceTree = "<group>"; };
  438. 27B8825D1F0CC2EE00271940 /* JZLocationConverter.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = JZLocationConverter.h; sourceTree = "<group>"; };
  439. 27B8825E1F0CC2EE00271940 /* JZLocationConverter.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = JZLocationConverter.m; sourceTree = "<group>"; };
  440. 27B882601F0CC2EE00271940 /* KNActionSheet.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = KNActionSheet.h; sourceTree = "<group>"; };
  441. 27B882611F0CC2EE00271940 /* KNActionSheet.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = KNActionSheet.m; sourceTree = "<group>"; };
  442. 27B882621F0CC2EE00271940 /* KNActionSheetView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = KNActionSheetView.h; sourceTree = "<group>"; };
  443. 27B882631F0CC2EE00271940 /* KNActionSheetView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = KNActionSheetView.m; sourceTree = "<group>"; };
  444. 27B882651F0CC2EE00271940 /* MBProgressHUD+LAI.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "MBProgressHUD+LAI.h"; sourceTree = "<group>"; };
  445. 27B882661F0CC2EE00271940 /* MBProgressHUD+LAI.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "MBProgressHUD+LAI.m"; sourceTree = "<group>"; };
  446. 27B882671F0CC2EE00271940 /* MBProgressHUD.bundle */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.plug-in"; path = MBProgressHUD.bundle; sourceTree = "<group>"; };
  447. 27B8826A1F0CC2EE00271940 /* MMVideoPreviewPlay@2x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "MMVideoPreviewPlay@2x.png"; sourceTree = "<group>"; };
  448. 27B8826B1F0CC2EE00271940 /* MMVideoPreviewPlayHL@2x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "MMVideoPreviewPlayHL@2x.png"; sourceTree = "<group>"; };
  449. 27B8826C1F0CC2EE00271940 /* navi_back@2x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "navi_back@2x.png"; sourceTree = "<group>"; };
  450. 27B8826D1F0CC2EE00271940 /* photo_def_photoPickerVc@2x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "photo_def_photoPickerVc@2x.png"; sourceTree = "<group>"; };
  451. 27B8826E1F0CC2EE00271940 /* photo_def_previewVc@2x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "photo_def_previewVc@2x.png"; sourceTree = "<group>"; };
  452. 27B8826F1F0CC2EE00271940 /* photo_number_icon@2x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "photo_number_icon@2x.png"; sourceTree = "<group>"; };
  453. 27B882701F0CC2EE00271940 /* photo_original_def@2x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "photo_original_def@2x.png"; sourceTree = "<group>"; };
  454. 27B882711F0CC2EE00271940 /* photo_original_sel@2x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "photo_original_sel@2x.png"; sourceTree = "<group>"; };
  455. 27B882721F0CC2EE00271940 /* photo_sel_photoPickerVc@2x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "photo_sel_photoPickerVc@2x.png"; sourceTree = "<group>"; };
  456. 27B882731F0CC2EE00271940 /* photo_sel_previewVc@2x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "photo_sel_previewVc@2x.png"; sourceTree = "<group>"; };
  457. 27B882741F0CC2EE00271940 /* preview_number_icon@2x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "preview_number_icon@2x.png"; sourceTree = "<group>"; };
  458. 27B882751F0CC2EE00271940 /* preview_original_def@2x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "preview_original_def@2x.png"; sourceTree = "<group>"; };
  459. 27B882761F0CC2EE00271940 /* TableViewArrow@2x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "TableViewArrow@2x.png"; sourceTree = "<group>"; };
  460. 27B882771F0CC2EE00271940 /* VideoSendIcon@2x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "VideoSendIcon@2x.png"; sourceTree = "<group>"; };
  461. 27B882781F0CC2EE00271940 /* MediaType.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = MediaType.h; sourceTree = "<group>"; };
  462. 27B8827A1F0CC2EE00271940 /* PhotosDataHandle.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = PhotosDataHandle.h; sourceTree = "<group>"; };
  463. 27B8827B1F0CC2EE00271940 /* PhotosDataHandle.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = PhotosDataHandle.m; sourceTree = "<group>"; };
  464. 27B8827C1F0CC2EE00271940 /* PhotosDataModel.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = PhotosDataModel.h; sourceTree = "<group>"; };
  465. 27B8827D1F0CC2EE00271940 /* PhotosDataModel.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = PhotosDataModel.m; sourceTree = "<group>"; };
  466. 27B8827E1F0CC2EE00271940 /* PhotosNavigationController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = PhotosNavigationController.h; sourceTree = "<group>"; };
  467. 27B8827F1F0CC2EE00271940 /* PhotosNavigationController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = PhotosNavigationController.m; sourceTree = "<group>"; };
  468. 27B882811F0CC2EE00271940 /* PhotosTableViewCell.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = PhotosTableViewCell.h; sourceTree = "<group>"; };
  469. 27B882821F0CC2EE00271940 /* PhotosTableViewCell.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = PhotosTableViewCell.m; sourceTree = "<group>"; };
  470. 27B882831F0CC2EE00271940 /* PhotosViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = PhotosViewController.h; sourceTree = "<group>"; };
  471. 27B882841F0CC2EE00271940 /* PhotosViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = PhotosViewController.m; sourceTree = "<group>"; };
  472. 27B882861F0CC2EE00271940 /* PhotoPickerCell.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = PhotoPickerCell.h; sourceTree = "<group>"; };
  473. 27B882871F0CC2EE00271940 /* PhotoPickerCell.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = PhotoPickerCell.m; sourceTree = "<group>"; };
  474. 27B882881F0CC2EE00271940 /* PhotoPickerCell.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; path = PhotoPickerCell.xib; sourceTree = "<group>"; };
  475. 27B882891F0CC2EE00271940 /* PhotoPickerController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = PhotoPickerController.h; sourceTree = "<group>"; };
  476. 27B8828A1F0CC2EE00271940 /* PhotoPickerController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = PhotoPickerController.m; sourceTree = "<group>"; };
  477. 27B8828B1F0CC2EE00271940 /* PhotoPickerModel.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = PhotoPickerModel.h; sourceTree = "<group>"; };
  478. 27B8828C1F0CC2EE00271940 /* PhotoPickerModel.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = PhotoPickerModel.m; sourceTree = "<group>"; };
  479. 27B8828E1F0CC2EE00271940 /* PhotoPreviewCell.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = PhotoPreviewCell.h; sourceTree = "<group>"; };
  480. 27B8828F1F0CC2EE00271940 /* PhotoPreviewCell.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = PhotoPreviewCell.m; sourceTree = "<group>"; };
  481. 27B882901F0CC2EE00271940 /* PhotoPreviewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = PhotoPreviewController.h; sourceTree = "<group>"; };
  482. 27B882911F0CC2EE00271940 /* PhotoPreviewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = PhotoPreviewController.m; sourceTree = "<group>"; };
  483. 27B882921F0CC2EE00271940 /* VideoPlayerController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = VideoPlayerController.h; sourceTree = "<group>"; };
  484. 27B882931F0CC2EE00271940 /* VideoPlayerController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = VideoPlayerController.m; sourceTree = "<group>"; };
  485. 27B882A71F0CC2EE00271940 /* ApiXml.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ApiXml.h; sourceTree = "<group>"; };
  486. 27B882A81F0CC2EE00271940 /* ApiXml.mm */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.objcpp; path = ApiXml.mm; sourceTree = "<group>"; };
  487. 27B882A91F0CC2EE00271940 /* payRequsestHandler.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = payRequsestHandler.h; sourceTree = "<group>"; };
  488. 27B882AA1F0CC2EE00271940 /* payRequsestHandler.mm */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.objcpp; path = payRequsestHandler.mm; sourceTree = "<group>"; };
  489. 27B882AB1F0CC2EE00271940 /* WXUtil.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = WXUtil.h; sourceTree = "<group>"; };
  490. 27B882AC1F0CC2EE00271940 /* WXUtil.mm */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.objcpp; path = WXUtil.mm; sourceTree = "<group>"; };
  491. 27B882B01F0CC2EE00271940 /* MyImageViewer.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = MyImageViewer.h; sourceTree = "<group>"; };
  492. 27B882B11F0CC2EE00271940 /* MyImageViewer.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = MyImageViewer.m; sourceTree = "<group>"; };
  493. 27B882EE1F0CC4EA00271940 /* libcrypto.a */ = {isa = PBXFileReference; lastKnownFileType = archive.ar; path = libcrypto.a; sourceTree = "<group>"; };
  494. 27B882EF1F0CC4EA00271940 /* libssl.a */ = {isa = PBXFileReference; lastKnownFileType = archive.ar; path = libssl.a; sourceTree = "<group>"; };
  495. 27B882F71F0CC61600271940 /* BaiduMapAPI_Map.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; path = BaiduMapAPI_Map.framework; sourceTree = "<group>"; };
  496. 27B882F91F0CC72700271940 /* mapapi.bundle */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.plug-in"; name = mapapi.bundle; path = ZHRQ_GYZ/Others/ThirdPart/baiduMap/BaiduMapAPI_Map.framework/Resources/mapapi.bundle; sourceTree = "<group>"; };
  497. 27B882FC1F0CEFF600271940 /* AddEmployVC.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = AddEmployVC.h; sourceTree = "<group>"; };
  498. 27B882FD1F0CEFF600271940 /* AddEmployVC.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = AddEmployVC.m; sourceTree = "<group>"; };
  499. 27B882FE1F0CEFF600271940 /* EmployeeManageVC.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = EmployeeManageVC.h; sourceTree = "<group>"; };
  500. 27B882FF1F0CEFF600271940 /* EmployeeManageVC.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; lineEnding = 0; path = EmployeeManageVC.m; sourceTree = "<group>"; xcLanguageSpecificationIdentifier = xcode.lang.objc; };
  501. 27B883011F0CEFF600271940 /* Employee.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = Employee.h; sourceTree = "<group>"; };
  502. 27B883021F0CEFF600271940 /* Employee.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = Employee.m; sourceTree = "<group>"; };
  503. 27B883041F0CEFF600271940 /* EmployeeCell.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = EmployeeCell.h; sourceTree = "<group>"; };
  504. 27B883051F0CEFF600271940 /* EmployeeCell.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = EmployeeCell.m; sourceTree = "<group>"; };
  505. 27B883061F0CEFF600271940 /* EmployeeCell.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; path = EmployeeCell.xib; sourceTree = "<group>"; };
  506. 27B9F2311F073915007A9DD2 /* Macros.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = Macros.h; sourceTree = "<group>"; };
  507. 27B9F2351F074FAC007A9DD2 /* HomeHeaderView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = HomeHeaderView.h; sourceTree = "<group>"; };
  508. 27B9F2361F074FAC007A9DD2 /* HomeHeaderView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = HomeHeaderView.m; sourceTree = "<group>"; };
  509. 27B9F2381F074FCD007A9DD2 /* HomeHeaderView.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; path = HomeHeaderView.xib; sourceTree = "<group>"; };
  510. 27CCC8DC1F17914F00926E96 /* StaffListVC.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = StaffListVC.h; sourceTree = "<group>"; };
  511. 27CCC8DD1F17915000926E96 /* StaffListVC.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = StaffListVC.m; sourceTree = "<group>"; };
  512. 27CCC8E01F1796AE00926E96 /* StaffListCell.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = StaffListCell.h; sourceTree = "<group>"; };
  513. 27CCC8E11F1796AE00926E96 /* StaffListCell.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = StaffListCell.m; sourceTree = "<group>"; };
  514. 27CCC8E21F1796AE00926E96 /* StaffListCell.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; path = StaffListCell.xib; sourceTree = "<group>"; };
  515. 27CCC8E51F17985600926E96 /* StaffTopView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = StaffTopView.h; sourceTree = "<group>"; };
  516. 27CCC8E61F17985600926E96 /* StaffTopView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = StaffTopView.m; sourceTree = "<group>"; };
  517. 27CCC8E81F17987F00926E96 /* StaffTopView.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; path = StaffTopView.xib; sourceTree = "<group>"; };
  518. 27CCC8EB1F17B57100926E96 /* StaffModel.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = StaffModel.h; sourceTree = "<group>"; };
  519. 27CCC8EC1F17B57100926E96 /* StaffModel.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = StaffModel.m; sourceTree = "<group>"; };
  520. 27CE70991F25C2F800BA034B /* ItemTextFiledCell.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ItemTextFiledCell.h; sourceTree = "<group>"; };
  521. 27CE709A1F25C2F800BA034B /* ItemTextFiledCell.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = ItemTextFiledCell.m; sourceTree = "<group>"; };
  522. 27CE709B1F25C2F800BA034B /* ItemTextFiledCell.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; path = ItemTextFiledCell.xib; sourceTree = "<group>"; };
  523. 27DC05E51F1260AF004FCB48 /* OrderManagerModel.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = OrderManagerModel.h; sourceTree = "<group>"; };
  524. 27DC05E61F1260AF004FCB48 /* OrderManagerModel.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = OrderManagerModel.m; sourceTree = "<group>"; };
  525. 27ED2BCE1F0C8E34001E6268 /* BalanceMoneyView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = BalanceMoneyView.h; sourceTree = "<group>"; };
  526. 27ED2BCF1F0C8E34001E6268 /* BalanceMoneyView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = BalanceMoneyView.m; sourceTree = "<group>"; };
  527. 27ED2BE81F0CB911001E6268 /* PeopleLocationVC.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = PeopleLocationVC.h; sourceTree = "<group>"; };
  528. 27ED2BE91F0CB911001E6268 /* PeopleLocationVC.mm */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.objcpp; path = PeopleLocationVC.mm; sourceTree = "<group>"; };
  529. 27ED2BEF1F0CBA5F001E6268 /* libstdc++.6.0.9.tbd */ = {isa = PBXFileReference; lastKnownFileType = "sourcecode.text-based-dylib-definition"; name = "libstdc++.6.0.9.tbd"; path = "usr/lib/libstdc++.6.0.9.tbd"; sourceTree = SDKROOT; };
  530. 27ED2BF11F0CBA76001E6268 /* CoreLocation.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = CoreLocation.framework; path = System/Library/Frameworks/CoreLocation.framework; sourceTree = SDKROOT; };
  531. 27ED2BF31F0CBA84001E6268 /* OpenGLES.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = OpenGLES.framework; path = System/Library/Frameworks/OpenGLES.framework; sourceTree = SDKROOT; };
  532. 27ED2BF51F0CBA9A001E6268 /* Security.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = Security.framework; path = System/Library/Frameworks/Security.framework; sourceTree = SDKROOT; };
  533. 27ED2BF91F0CBB8E001E6268 /* NSDate+Extension.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "NSDate+Extension.h"; sourceTree = "<group>"; };
  534. 27ED2BFA1F0CBB8E001E6268 /* NSDate+Extension.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "NSDate+Extension.m"; sourceTree = "<group>"; };
  535. 27ED2BFB1F0CBB8E001E6268 /* NSString+Extension.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "NSString+Extension.h"; sourceTree = "<group>"; };
  536. 27ED2BFC1F0CBB8E001E6268 /* NSString+Extension.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "NSString+Extension.m"; sourceTree = "<group>"; };
  537. 27ED2BFD1F0CBB8E001E6268 /* UIBarButtonItem+Extension.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "UIBarButtonItem+Extension.h"; sourceTree = "<group>"; };
  538. 27ED2BFE1F0CBB8E001E6268 /* UIBarButtonItem+Extension.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "UIBarButtonItem+Extension.m"; sourceTree = "<group>"; };
  539. 27ED2BFF1F0CBB8E001E6268 /* UIColor+Extension.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "UIColor+Extension.h"; sourceTree = "<group>"; };
  540. 27ED2C001F0CBB8E001E6268 /* UIColor+Extension.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "UIColor+Extension.m"; sourceTree = "<group>"; };
  541. 27ED2C011F0CBB8E001E6268 /* UIImage+Color.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "UIImage+Color.h"; sourceTree = "<group>"; };
  542. 27ED2C021F0CBB8E001E6268 /* UIImage+Color.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "UIImage+Color.m"; sourceTree = "<group>"; };
  543. 27ED2C031F0CBB8E001E6268 /* UITableViewCell+Extension.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "UITableViewCell+Extension.h"; sourceTree = "<group>"; };
  544. 27ED2C041F0CBB8E001E6268 /* UITableViewCell+Extension.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "UITableViewCell+Extension.m"; sourceTree = "<group>"; };
  545. 27ED2C051F0CBB8E001E6268 /* UIView+Extension.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "UIView+Extension.h"; sourceTree = "<group>"; };
  546. 27ED2C061F0CBB8E001E6268 /* UIView+Extension.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "UIView+Extension.m"; sourceTree = "<group>"; };
  547. 27ED2C091F0CBB8E001E6268 /* BaseViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = BaseViewController.h; sourceTree = "<group>"; };
  548. 27ED2C0A1F0CBB8E001E6268 /* BaseViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = BaseViewController.m; sourceTree = "<group>"; };
  549. 27ED2C0C1F0CBB8E001E6268 /* NavigationController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = NavigationController.h; sourceTree = "<group>"; };
  550. 27ED2C0D1F0CBB8E001E6268 /* NavigationController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = NavigationController.m; sourceTree = "<group>"; };
  551. 27ED2C801F0CBB8E001E6268 /* Const.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; lineEnding = 0; path = Const.h; sourceTree = "<group>"; xcLanguageSpecificationIdentifier = xcode.lang.objcpp; };
  552. 27ED2C811F0CBB8E001E6268 /* Const.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; lineEnding = 0; path = Const.m; sourceTree = "<group>"; xcLanguageSpecificationIdentifier = xcode.lang.objc; };
  553. 27ED2C821F0CBB8E001E6268 /* Foundation+Log.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "Foundation+Log.m"; sourceTree = "<group>"; };
  554. 27ED2C831F0CBB8E001E6268 /* main.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = main.m; sourceTree = "<group>"; };
  555. 27ED2C841F0CBB8E001E6268 /* PrefixHeader.pch */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = PrefixHeader.pch; sourceTree = "<group>"; };
  556. 27ED2C861F0CBB8E001E6268 /* ZHRQ_GYZ.xcdatamodel */ = {isa = PBXFileReference; lastKnownFileType = wrapper.xcdatamodel; path = ZHRQ_GYZ.xcdatamodel; sourceTree = "<group>"; };
  557. 27ED2C891F0CBB8E001E6268 /* HttpTool.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = HttpTool.h; sourceTree = "<group>"; };
  558. 27ED2C8A1F0CBB8E001E6268 /* HttpTool.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = HttpTool.m; sourceTree = "<group>"; };
  559. 27ED2C8C1F0CBB8E001E6268 /* LaiMethod.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = LaiMethod.h; sourceTree = "<group>"; };
  560. 27ED2C8D1F0CBB8E001E6268 /* LaiMethod.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = LaiMethod.m; sourceTree = "<group>"; };
  561. 27ED2C8F1F0CBB8E001E6268 /* SaveTool.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SaveTool.h; sourceTree = "<group>"; };
  562. 27ED2C901F0CBB8E001E6268 /* SaveTool.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = SaveTool.m; sourceTree = "<group>"; };
  563. 27ED2C921F0CBB8E001E6268 /* VerificationTool.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = VerificationTool.h; sourceTree = "<group>"; };
  564. 27ED2C931F0CBB8E001E6268 /* VerificationTool.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = VerificationTool.m; sourceTree = "<group>"; };
  565. 27ED2D181F0CBBD0001E6268 /* ItemTextCell.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ItemTextCell.h; sourceTree = "<group>"; };
  566. 27ED2D191F0CBBD0001E6268 /* ItemTextCell.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = ItemTextCell.m; sourceTree = "<group>"; };
  567. 27ED2D1A1F0CBBD0001E6268 /* ItemTextCell.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; path = ItemTextCell.xib; sourceTree = "<group>"; };
  568. 27ED2D201F0CBBD0001E6268 /* NormalBottomView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = NormalBottomView.h; sourceTree = "<group>"; };
  569. 27ED2D211F0CBBD0001E6268 /* NormalBottomView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = NormalBottomView.m; sourceTree = "<group>"; };
  570. 27ED2D221F0CBBD0001E6268 /* NormalBottomView.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; path = NormalBottomView.xib; sourceTree = "<group>"; };
  571. 27ED2D231F0CBBD0001E6268 /* PubSubmitBtnView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = PubSubmitBtnView.h; sourceTree = "<group>"; };
  572. 27ED2D241F0CBBD0001E6268 /* PubSubmitBtnView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = PubSubmitBtnView.m; sourceTree = "<group>"; };
  573. 27ED2D261F0CBBD0001E6268 /* TextView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = TextView.h; sourceTree = "<group>"; };
  574. 27ED2D271F0CBBD0001E6268 /* TextView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = TextView.m; sourceTree = "<group>"; };
  575. 79C127EFEDD1038FBD48AF43 /* Pods-ZTXWY.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-ZTXWY.release.xcconfig"; path = "Pods/Target Support Files/Pods-ZTXWY/Pods-ZTXWY.release.xcconfig"; sourceTree = "<group>"; };
  576. E55AB1BDDF818C13EC9B3C9B /* Pods-ZTXWY.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-ZTXWY.debug.xcconfig"; path = "Pods/Target Support Files/Pods-ZTXWY/Pods-ZTXWY.debug.xcconfig"; sourceTree = "<group>"; };
  577. EA187A154A427FDC9D241B71 /* libPods-ZTXWY.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; path = "libPods-ZTXWY.a"; sourceTree = BUILT_PRODUCTS_DIR; };
  578. F51A22681F185C0C00C6D038 /* InputPhoneNOView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = InputPhoneNOView.h; sourceTree = "<group>"; };
  579. F51A22691F185C0C00C6D038 /* InputPhoneNOView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = InputPhoneNOView.m; sourceTree = "<group>"; };
  580. F51A226B1F185D4B00C6D038 /* InputPhoneNOView.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; path = InputPhoneNOView.xib; sourceTree = "<group>"; };
  581. F51A227A1F18950600C6D038 /* AlertPopViewTool.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = AlertPopViewTool.h; sourceTree = "<group>"; };
  582. F51A227B1F18950600C6D038 /* AlertPopViewTool.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = AlertPopViewTool.m; sourceTree = "<group>"; };
  583. F521B8651EEE90D900E56DB5 /* HomeViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = HomeViewController.h; sourceTree = "<group>"; };
  584. F521B8661EEE90D900E56DB5 /* HomeViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = HomeViewController.m; sourceTree = "<group>"; };
  585. F521B8681EEE90D900E56DB5 /* HomeCollectionViewCell.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = HomeCollectionViewCell.h; sourceTree = "<group>"; };
  586. F521B8691EEE90D900E56DB5 /* HomeCollectionViewCell.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = HomeCollectionViewCell.m; sourceTree = "<group>"; };
  587. F521B86A1EEE90D900E56DB5 /* HomeCollectionViewCell.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; path = HomeCollectionViewCell.xib; sourceTree = "<group>"; };
  588. F521B86B1EEE90D900E56DB5 /* HomeTopView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = HomeTopView.h; sourceTree = "<group>"; };
  589. F521B86C1EEE90D900E56DB5 /* HomeTopView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = HomeTopView.m; sourceTree = "<group>"; };
  590. F521B86D1EEE90D900E56DB5 /* HomeTopView.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; path = HomeTopView.xib; sourceTree = "<group>"; };
  591. F52AF5F81F51667B007EA94E /* CylinderYearlynspectionView.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; path = CylinderYearlynspectionView.xib; sourceTree = "<group>"; };
  592. F52AF5F91F51667B007EA94E /* CylinderYearlynspectionView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = CylinderYearlynspectionView.m; sourceTree = "<group>"; };
  593. F52AF5FA1F51667B007EA94E /* CylinderYearlynspectionView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CylinderYearlynspectionView.h; sourceTree = "<group>"; };
  594. F55819341EE4F890005EBBE2 /* UserInfo.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = UserInfo.h; sourceTree = "<group>"; };
  595. F55819351EE4F890005EBBE2 /* UserInfo.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = UserInfo.m; sourceTree = "<group>"; };
  596. F55AF7251EE643C70060073E /* LoginView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = LoginView.h; sourceTree = "<group>"; };
  597. F55AF7261EE643C70060073E /* LoginView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = LoginView.m; sourceTree = "<group>"; };
  598. F55AF7281EE643CF0060073E /* LoginView.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; path = LoginView.xib; sourceTree = "<group>"; };
  599. F55DAC5B1EE7CBF3003A88BE /* Assets.xcassets */ = {isa = PBXFileReference; lastKnownFileType = folder.assetcatalog; path = Assets.xcassets; sourceTree = "<group>"; };
  600. F55DAC5C1EE7CBF3003A88BE /* IconLaunch.xcassets */ = {isa = PBXFileReference; lastKnownFileType = folder.assetcatalog; path = IconLaunch.xcassets; sourceTree = "<group>"; };
  601. F59EA9CB1EE5373C004B3101 /* LoginVC.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = LoginVC.h; sourceTree = "<group>"; };
  602. F59EA9CC1EE5373C004B3101 /* LoginVC.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; lineEnding = 0; path = LoginVC.m; sourceTree = "<group>"; xcLanguageSpecificationIdentifier = xcode.lang.objc; };
  603. F5AD671A1F1702E1001C3003 /* AlipaySDK.bundle */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.plug-in"; path = AlipaySDK.bundle; sourceTree = "<group>"; };
  604. F5AD671E1F17073C001C3003 /* libc++.tbd */ = {isa = PBXFileReference; lastKnownFileType = "sourcecode.text-based-dylib-definition"; name = "libc++.tbd"; path = "usr/lib/libc++.tbd"; sourceTree = SDKROOT; };
  605. F5AD67211F170A31001C3003 /* AlipaySDK.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; path = AlipaySDK.framework; sourceTree = "<group>"; };
  606. F5BF2A181F2B11B90037A5B4 /* WithholdCylinderVC.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = WithholdCylinderVC.h; sourceTree = "<group>"; };
  607. F5BF2A191F2B11B90037A5B4 /* WithholdCylinderVC.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = WithholdCylinderVC.m; sourceTree = "<group>"; };
  608. F5BF2A1B1F2B12A20037A5B4 /* CylinderTotalView.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; path = CylinderTotalView.xib; sourceTree = "<group>"; };
  609. F5BF2A1C1F2B12A20037A5B4 /* CylinderTotalView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = CylinderTotalView.m; sourceTree = "<group>"; };
  610. F5BF2A1D1F2B12A20037A5B4 /* CylinderTotalView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CylinderTotalView.h; sourceTree = "<group>"; };
  611. F5BF2A211F2B1A370037A5B4 /* ItemAddPhotoCell.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ItemAddPhotoCell.h; sourceTree = "<group>"; };
  612. F5BF2A221F2B1A370037A5B4 /* ItemAddPhotoCell.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = ItemAddPhotoCell.m; sourceTree = "<group>"; };
  613. F5BF2A231F2B1A370037A5B4 /* ItemAddPhotoCell.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; path = ItemAddPhotoCell.xib; sourceTree = "<group>"; };
  614. F5BF2A241F2B1A370037A5B4 /* ItemCell.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ItemCell.h; sourceTree = "<group>"; };
  615. F5BF2A251F2B1A370037A5B4 /* ItemCell.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = ItemCell.m; sourceTree = "<group>"; };
  616. F5BF2A2A1F2B1A630037A5B4 /* ItemArrowCell.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ItemArrowCell.h; sourceTree = "<group>"; };
  617. F5BF2A2B1F2B1A630037A5B4 /* ItemArrowCell.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = ItemArrowCell.m; sourceTree = "<group>"; };
  618. F5BF2A2C1F2B1A630037A5B4 /* ItemArrowCell.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; path = ItemArrowCell.xib; sourceTree = "<group>"; };
  619. F5BF2A451F2B210E0037A5B4 /* demo_fontclass.html */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.html; path = demo_fontclass.html; sourceTree = "<group>"; };
  620. F5BF2A461F2B210E0037A5B4 /* demo_symbol.html */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.html; path = demo_symbol.html; sourceTree = "<group>"; };
  621. F5BF2A471F2B210E0037A5B4 /* demo_unicode.html */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.html; path = demo_unicode.html; sourceTree = "<group>"; };
  622. F5BF2A481F2B210E0037A5B4 /* demo.css */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.css; path = demo.css; sourceTree = "<group>"; };
  623. F5BF2A491F2B210E0037A5B4 /* iconfont.css */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.css; path = iconfont.css; sourceTree = "<group>"; };
  624. F5BF2A4A1F2B210E0037A5B4 /* iconfont.eot */ = {isa = PBXFileReference; lastKnownFileType = file; path = iconfont.eot; sourceTree = "<group>"; };
  625. F5BF2A4B1F2B210E0037A5B4 /* iconfont.js */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.javascript; path = iconfont.js; sourceTree = "<group>"; };
  626. F5BF2A4C1F2B210E0037A5B4 /* iconfont.svg */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.xml; path = iconfont.svg; sourceTree = "<group>"; };
  627. F5BF2A4D1F2B210E0037A5B4 /* iconfont.ttf */ = {isa = PBXFileReference; lastKnownFileType = file; path = iconfont.ttf; sourceTree = "<group>"; };
  628. F5BF2A4E1F2B210E0037A5B4 /* iconfont.woff */ = {isa = PBXFileReference; lastKnownFileType = file; path = iconfont.woff; sourceTree = "<group>"; };
  629. F5BF2A591F2B21AD0037A5B4 /* IDPhotoInstructionView.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; path = IDPhotoInstructionView.xib; sourceTree = "<group>"; };
  630. F5BF2A5A1F2B21AD0037A5B4 /* IDPhotoInstructionView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = IDPhotoInstructionView.m; sourceTree = "<group>"; };
  631. F5BF2A5B1F2B21AD0037A5B4 /* IDPhotoInstructionView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = IDPhotoInstructionView.h; sourceTree = "<group>"; };
  632. F5BF2A5E1F2B23C90037A5B4 /* ReExaminationEmployeeVC.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = ReExaminationEmployeeVC.m; sourceTree = "<group>"; };
  633. F5BF2A5F1F2B23C90037A5B4 /* ReExaminationEmployeeVC.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ReExaminationEmployeeVC.h; sourceTree = "<group>"; };
  634. F5C34CB91EE166E30030E924 /* ZHRQ_GYZ.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = ZHRQ_GYZ.app; sourceTree = BUILT_PRODUCTS_DIR; };
  635. F5C34CD51EE166E30030E924 /* ZHRQ_GYZTests.xctest */ = {isa = PBXFileReference; explicitFileType = wrapper.cfbundle; includeInIndex = 0; path = ZHRQ_GYZTests.xctest; sourceTree = BUILT_PRODUCTS_DIR; };
  636. F5C34CD91EE166E30030E924 /* ZHRQ_GYZTests.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = ZHRQ_GYZTests.m; sourceTree = "<group>"; };
  637. F5C34CDB1EE166E30030E924 /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = "<group>"; };
  638. F5C34CE01EE166E30030E924 /* ZHRQ_GYZUITests.xctest */ = {isa = PBXFileReference; explicitFileType = wrapper.cfbundle; includeInIndex = 0; path = ZHRQ_GYZUITests.xctest; sourceTree = BUILT_PRODUCTS_DIR; };
  639. F5C34CE41EE166E40030E924 /* ZHRQ_GYZUITests.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = ZHRQ_GYZUITests.m; sourceTree = "<group>"; };
  640. F5C34CE61EE166E40030E924 /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = "<group>"; };
  641. /* End PBXFileReference section */
  642. /* Begin PBXFrameworksBuildPhase section */
  643. F5C34CB61EE166E30030E924 /* Frameworks */ = {
  644. isa = PBXFrameworksBuildPhase;
  645. buildActionMask = 2147483647;
  646. files = (
  647. 2797CA6B1F203F5B00667446 /* AdSupport.framework in Frameworks */,
  648. 2797CA691F203F4F00667446 /* UserNotifications.framework in Frameworks */,
  649. 27ED2BF21F0CBA76001E6268 /* CoreLocation.framework in Frameworks */,
  650. 276D20531F0E0C8300A5D562 /* AVFoundation.framework in Frameworks */,
  651. 27689CFD1F0B218100BB6D1C /* CoreTelephony.framework in Frameworks */,
  652. 27689CF91F0B217100BB6D1C /* SystemConfiguration.framework in Frameworks */,
  653. 2797CA671F203F0700667446 /* MobileCoreServices.framework in Frameworks */,
  654. 27ED2BF61F0CBA9A001E6268 /* Security.framework in Frameworks */,
  655. 27689CF71F0B205600BB6D1C /* libsqlite3.tbd in Frameworks */,
  656. 27689CFB1F0B217800BB6D1C /* libz.tbd in Frameworks */,
  657. F5AD671F1F17073C001C3003 /* libc++.tbd in Frameworks */,
  658. 276D20551F0E0CB100A5D562 /* AVKit.framework in Frameworks */,
  659. 2737A68A1F203BF800D4F881 /* libGtExtensionSdk-1.3.0.a in Frameworks */,
  660. 27B882B81F0CC2EE00271940 /* BaiduMapAPI_Radar.framework in Frameworks */,
  661. 27B882B91F0CC2EE00271940 /* BaiduMapAPI_Search.framework in Frameworks */,
  662. 27689D031F0B21CB00BB6D1C /* CoreGraphics.framework in Frameworks */,
  663. 27B882B51F0CC2EE00271940 /* BaiduMapAPI_Cloud.framework in Frameworks */,
  664. 27B882B41F0CC2EE00271940 /* BaiduMapAPI_Base.framework in Frameworks */,
  665. 27ED2BF41F0CBA84001E6268 /* OpenGLES.framework in Frameworks */,
  666. 27B882F01F0CC4EA00271940 /* libcrypto.a in Frameworks */,
  667. 27689CFF1F0B218A00BB6D1C /* QuartzCore.framework in Frameworks */,
  668. 27689CF51F0B205100BB6D1C /* libsqlite3.0.tbd in Frameworks */,
  669. 27ED2BF01F0CBA5F001E6268 /* libstdc++.6.0.9.tbd in Frameworks */,
  670. 276D1FBC1F0DEA3100A5D562 /* libWeChatSDK.a in Frameworks */,
  671. 27B882F81F0CC61600271940 /* BaiduMapAPI_Map.framework in Frameworks */,
  672. 27B882F11F0CC4EA00271940 /* libssl.a in Frameworks */,
  673. 27689D091F0B225800BB6D1C /* CoreMotion.framework in Frameworks */,
  674. 27689D071F0B21E000BB6D1C /* Foundation.framework in Frameworks */,
  675. 27689D051F0B21D100BB6D1C /* UIKit.framework in Frameworks */,
  676. F5AD67221F170A31001C3003 /* AlipaySDK.framework in Frameworks */,
  677. 27689D011F0B21BF00BB6D1C /* CoreText.framework in Frameworks */,
  678. 27B882BA1F0CC2EE00271940 /* BaiduMapAPI_Utils.framework in Frameworks */,
  679. 279585511F06515D00F37D30 /* MapKit.framework in Frameworks */,
  680. 2737A6891F203BF800D4F881 /* libGeTuiSdk-1.6.4.0.a in Frameworks */,
  681. AF2DB0F0FDB825FF4B2FB63A /* libPods-ZTXWY.a in Frameworks */,
  682. 27B882B61F0CC2EE00271940 /* BaiduMapAPI_Location.framework in Frameworks */,
  683. );
  684. runOnlyForDeploymentPostprocessing = 0;
  685. };
  686. F5C34CD21EE166E30030E924 /* Frameworks */ = {
  687. isa = PBXFrameworksBuildPhase;
  688. buildActionMask = 2147483647;
  689. files = (
  690. );
  691. runOnlyForDeploymentPostprocessing = 0;
  692. };
  693. F5C34CDD1EE166E30030E924 /* Frameworks */ = {
  694. isa = PBXFrameworksBuildPhase;
  695. buildActionMask = 2147483647;
  696. files = (
  697. );
  698. runOnlyForDeploymentPostprocessing = 0;
  699. };
  700. /* End PBXFrameworksBuildPhase section */
  701. /* Begin PBXGroup section */
  702. 271D895D1F0F25690094090E /* NoPermissionCell */ = {
  703. isa = PBXGroup;
  704. children = (
  705. 271D895E1F0F25690094090E /* NoPermissionCell.h */,
  706. 271D895F1F0F25690094090E /* NoPermissionCell.m */,
  707. 271D89601F0F25690094090E /* NoPermissionCell.xib */,
  708. );
  709. path = NoPermissionCell;
  710. sourceTree = "<group>";
  711. };
  712. 271D89631F0F61CA0094090E /* model */ = {
  713. isa = PBXGroup;
  714. children = (
  715. 271D89641F0F62360094090E /* SupplyDataViewModel.h */,
  716. 271D89651F0F62360094090E /* SupplyDataViewModel.m */,
  717. );
  718. name = model;
  719. sourceTree = "<group>";
  720. };
  721. 271D89671F0F775F0094090E /* model */ = {
  722. isa = PBXGroup;
  723. children = (
  724. 271D89681F0F77810094090E /* CylinderModel.h */,
  725. 271D89691F0F77810094090E /* CylinderModel.m */,
  726. );
  727. path = model;
  728. sourceTree = "<group>";
  729. };
  730. 271FCAE31F0A419C0024E9DE /* 订单管理 */ = {
  731. isa = PBXGroup;
  732. children = (
  733. 27DC05E41F126083004FCB48 /* model */,
  734. 276D1F801F0DBEC600A5D562 /* controller */,
  735. 276D1F811F0DBEC600A5D562 /* view */,
  736. );
  737. path = "订单管理";
  738. sourceTree = "<group>";
  739. };
  740. 271FCAE41F0A419C0024E9DE /* 短信储值 */ = {
  741. isa = PBXGroup;
  742. children = (
  743. 271FCB321F0A50140024E9DE /* model */,
  744. 271FCB131F0A4E4E0024E9DE /* view */,
  745. 271FCB0F1F0A4DCB0024E9DE /* controller */,
  746. );
  747. path = "短信储值";
  748. sourceTree = "<group>";
  749. };
  750. 271FCAE51F0A419C0024E9DE /* 钢瓶管理 */ = {
  751. isa = PBXGroup;
  752. children = (
  753. 271D89671F0F775F0094090E /* model */,
  754. 276D20AC1F0E25DE00A5D562 /* Controller */,
  755. 276D20B91F0E25DE00A5D562 /* View */,
  756. );
  757. path = "钢瓶管理";
  758. sourceTree = "<group>";
  759. };
  760. 271FCAE61F0A419C0024E9DE /* 数据查看 */ = {
  761. isa = PBXGroup;
  762. children = (
  763. 271D89631F0F61CA0094090E /* model */,
  764. 276D20661F0E1A5E00A5D562 /* Controller */,
  765. 276D20691F0E1A5E00A5D562 /* View */,
  766. );
  767. path = "数据查看";
  768. sourceTree = "<group>";
  769. };
  770. 271FCAE71F0A419C0024E9DE /* 通知公告 */ = {
  771. isa = PBXGroup;
  772. children = (
  773. 271FCAEB1F0A41F80024E9DE /* Controller */,
  774. 271FCAF01F0A41F80024E9DE /* Model */,
  775. 271FCAF31F0A41F80024E9DE /* View */,
  776. );
  777. path = "通知公告";
  778. sourceTree = "<group>";
  779. };
  780. 271FCAE81F0A419C0024E9DE /* 员工管理 */ = {
  781. isa = PBXGroup;
  782. children = (
  783. 27B882FB1F0CEFF600271940 /* Controller */,
  784. 27B883001F0CEFF600271940 /* Model */,
  785. 27B883031F0CEFF600271940 /* View */,
  786. );
  787. path = "员工管理";
  788. sourceTree = "<group>";
  789. };
  790. 271FCAE91F0A419C0024E9DE /* 员工轨迹 */ = {
  791. isa = PBXGroup;
  792. children = (
  793. 27CCC8EA1F17B54C00926E96 /* model */,
  794. 27CCC8DF1F17969200926E96 /* view */,
  795. 27ED2BE81F0CB911001E6268 /* PeopleLocationVC.h */,
  796. 27ED2BE91F0CB911001E6268 /* PeopleLocationVC.mm */,
  797. 27CCC8DC1F17914F00926E96 /* StaffListVC.h */,
  798. 27CCC8DD1F17915000926E96 /* StaffListVC.m */,
  799. );
  800. path = "员工轨迹";
  801. sourceTree = "<group>";
  802. };
  803. 271FCAEA1F0A419C0024E9DE /* 转移记录 */ = {
  804. isa = PBXGroup;
  805. children = (
  806. 276D20C81F0E26A500A5D562 /* Model */,
  807. 276D20C51F0E26A500A5D562 /* Controller */,
  808. 276D20CB1F0E26A500A5D562 /* View */,
  809. );
  810. path = "转移记录";
  811. sourceTree = "<group>";
  812. };
  813. 271FCAEB1F0A41F80024E9DE /* Controller */ = {
  814. isa = PBXGroup;
  815. children = (
  816. 271FCAEC1F0A41F80024E9DE /* NoticeManangerVC.h */,
  817. 271FCAED1F0A41F80024E9DE /* NoticeManangerVC.m */,
  818. 273BE49D1F13590600ECA57F /* NoticeDetialVC.h */,
  819. 273BE49E1F13590600ECA57F /* NoticeDetialVC.m */,
  820. );
  821. path = Controller;
  822. sourceTree = "<group>";
  823. };
  824. 271FCAF01F0A41F80024E9DE /* Model */ = {
  825. isa = PBXGroup;
  826. children = (
  827. 271FCAF11F0A41F80024E9DE /* Notice.h */,
  828. 271FCAF21F0A41F80024E9DE /* Notice.m */,
  829. );
  830. path = Model;
  831. sourceTree = "<group>";
  832. };
  833. 271FCAF31F0A41F80024E9DE /* View */ = {
  834. isa = PBXGroup;
  835. children = (
  836. 27089EC61F0E8974001B81E2 /* NoticeCell.h */,
  837. 27089EC71F0E8974001B81E2 /* NoticeCell.m */,
  838. 27089EC81F0E8974001B81E2 /* NoticeCell.xib */,
  839. );
  840. path = View;
  841. sourceTree = "<group>";
  842. };
  843. 271FCB0F1F0A4DCB0024E9DE /* controller */ = {
  844. isa = PBXGroup;
  845. children = (
  846. 271FCB101F0A4DE70024E9DE /* RechargeViewController.h */,
  847. 271FCB111F0A4DE70024E9DE /* RechargeViewController.m */,
  848. 276639B91F19ABC8002CB26D /* RechargeRecordVC.h */,
  849. 276639BA1F19ABC8002CB26D /* RechargeRecordVC.m */,
  850. );
  851. path = controller;
  852. sourceTree = "<group>";
  853. };
  854. 271FCB131F0A4E4E0024E9DE /* view */ = {
  855. isa = PBXGroup;
  856. children = (
  857. 271FCB2D1F0A4F310024E9DE /* BalanceTopCell.h */,
  858. 271FCB2E1F0A4F310024E9DE /* BalanceTopCell.m */,
  859. 271FCB2F1F0A4F310024E9DE /* BalanceTopCell.xib */,
  860. 271FCB141F0A4E650024E9DE /* PayTypeView.h */,
  861. 271FCB151F0A4E650024E9DE /* PayTypeView.m */,
  862. 27ED2BCE1F0C8E34001E6268 /* BalanceMoneyView.h */,
  863. 27ED2BCF1F0C8E34001E6268 /* BalanceMoneyView.m */,
  864. 276DDDD31F174CC500F8CD71 /* BalanceMoneyCell.h */,
  865. 276DDDD41F174CC500F8CD71 /* BalanceMoneyCell.m */,
  866. 276DDDD51F174CC500F8CD71 /* BalanceMoneyCell.xib */,
  867. 276639B61F19A991002CB26D /* BalanceHeaderView.h */,
  868. 276639B71F19A991002CB26D /* BalanceHeaderView.m */,
  869. 276639BC1F19AD61002CB26D /* RecordListCell.h */,
  870. 276639BD1F19AD61002CB26D /* RecordListCell.m */,
  871. 276639BE1F19AD61002CB26D /* RecordListCell.xib */,
  872. );
  873. path = view;
  874. sourceTree = "<group>";
  875. };
  876. 271FCB321F0A50140024E9DE /* model */ = {
  877. isa = PBXGroup;
  878. children = (
  879. 271FCB331F0A504E0024E9DE /* MyBalanceModel.h */,
  880. 271FCB341F0A504E0024E9DE /* MyBalanceModel.m */,
  881. );
  882. path = model;
  883. sourceTree = "<group>";
  884. };
  885. 2737A6841F203BF800D4F881 /* GtSdkLib */ = {
  886. isa = PBXGroup;
  887. children = (
  888. 2737A6851F203BF800D4F881 /* GeTuiExtSdk.h */,
  889. 2737A6861F203BF800D4F881 /* GeTuiSdk.h */,
  890. 2737A6871F203BF800D4F881 /* libGeTuiSdk-1.6.4.0.a */,
  891. 2737A6881F203BF800D4F881 /* libGtExtensionSdk-1.3.0.a */,
  892. );
  893. path = GtSdkLib;
  894. sourceTree = "<group>";
  895. };
  896. 273BE48B1F13099D00ECA57F /* PZXVerificationCodeTextField */ = {
  897. isa = PBXGroup;
  898. children = (
  899. 273BE48C1F13099D00ECA57F /* PZXVerificationCodeView.h */,
  900. 273BE48D1F13099D00ECA57F /* PZXVerificationCodeView.m */,
  901. 273BE48E1F13099D00ECA57F /* PZXVerificationTextField.h */,
  902. 273BE48F1F13099D00ECA57F /* PZXVerificationTextField.m */,
  903. );
  904. path = PZXVerificationCodeTextField;
  905. sourceTree = "<group>";
  906. };
  907. 273BE4991F1358E300ECA57F /* BaseWKWebVC */ = {
  908. isa = PBXGroup;
  909. children = (
  910. 273BE49A1F1358E300ECA57F /* WKWebBaseVC.h */,
  911. 273BE49B1F1358E300ECA57F /* WKWebBaseVC.m */,
  912. );
  913. path = BaseWKWebVC;
  914. sourceTree = "<group>";
  915. };
  916. 276D1F801F0DBEC600A5D562 /* controller */ = {
  917. isa = PBXGroup;
  918. children = (
  919. 276D1F951F0DCD7900A5D562 /* OrderListVC.h */,
  920. 276D1F941F0DCD7900A5D562 /* OrderListVC.m */,
  921. );
  922. path = controller;
  923. sourceTree = "<group>";
  924. };
  925. 276D1F811F0DBEC600A5D562 /* view */ = {
  926. isa = PBXGroup;
  927. children = (
  928. 276D1FB21F0DE2A600A5D562 /* OrderListCell.h */,
  929. 276D1FB31F0DE2A600A5D562 /* OrderListCell.m */,
  930. 276D1FB41F0DE2A600A5D562 /* OrderListCell.xib */,
  931. 271D896B1F0F87BD0094090E /* ValidationCodeImputView.h */,
  932. 271D896C1F0F87BD0094090E /* ValidationCodeImputView.m */,
  933. 273BE4921F130C7300ECA57F /* ValidationCodeImputView.xib */,
  934. );
  935. path = view;
  936. sourceTree = "<group>";
  937. };
  938. 276D20111F0E086800A5D562 /* 扫一扫 */ = {
  939. isa = PBXGroup;
  940. children = (
  941. 276D20121F0E086800A5D562 /* Controller */,
  942. 276D201B1F0E086800A5D562 /* View */,
  943. );
  944. path = "扫一扫";
  945. sourceTree = "<group>";
  946. };
  947. 276D20121F0E086800A5D562 /* Controller */ = {
  948. isa = PBXGroup;
  949. children = (
  950. 276D20191F0E086800A5D562 /* ScanQRcodeVC.h */,
  951. 276D201A1F0E086800A5D562 /* ScanQRcodeVC.m */,
  952. 276D20171F0E086800A5D562 /* EditCodeVC.h */,
  953. 276D20181F0E086800A5D562 /* EditCodeVC.m */,
  954. 276D20131F0E086800A5D562 /* CylinderActivationVC.h */,
  955. 276D20141F0E086800A5D562 /* CylinderActivationVC.m */,
  956. 276D20151F0E086800A5D562 /* CylinderInformationVC.h */,
  957. 276D20161F0E086800A5D562 /* CylinderInformationVC.m */,
  958. );
  959. path = Controller;
  960. sourceTree = "<group>";
  961. };
  962. 276D201B1F0E086800A5D562 /* View */ = {
  963. isa = PBXGroup;
  964. children = (
  965. 276D20561F0E197D00A5D562 /* 钢瓶激活 */,
  966. 276D20231F0E086800A5D562 /* CylinderInformation */,
  967. 276D202D1F0E086800A5D562 /* EditCodeView */,
  968. );
  969. path = View;
  970. sourceTree = "<group>";
  971. };
  972. 276D20231F0E086800A5D562 /* CylinderInformation */ = {
  973. isa = PBXGroup;
  974. children = (
  975. 274DE2A51F14A49500E0294E /* CylinderInfoStatusView.h */,
  976. 274DE2A61F14A49500E0294E /* CylinderInfoStatusView.m */,
  977. 274DE2A71F14A49500E0294E /* CylinderInfoStatusView.xib */,
  978. 276D20571F0E197D00A5D562 /* CylinderAbnormalTopView.h */,
  979. 276D20581F0E197D00A5D562 /* CylinderAbnormalTopView.m */,
  980. 276D20591F0E197D00A5D562 /* CylinderAbnormalTopView.xib */,
  981. 276D20241F0E086800A5D562 /* CylinderInformationCell.h */,
  982. 276D20251F0E086800A5D562 /* CylinderInformationCell.m */,
  983. 276D20261F0E086800A5D562 /* CylinderInformationCell.xib */,
  984. 276D20271F0E086800A5D562 /* CylinderOperationView.h */,
  985. 276D20281F0E086800A5D562 /* CylinderOperationView.m */,
  986. 276D20291F0E086800A5D562 /* CylinderOperationView.xib */,
  987. F51A22681F185C0C00C6D038 /* InputPhoneNOView.h */,
  988. F51A22691F185C0C00C6D038 /* InputPhoneNOView.m */,
  989. F51A226B1F185D4B00C6D038 /* InputPhoneNOView.xib */,
  990. );
  991. path = CylinderInformation;
  992. sourceTree = "<group>";
  993. };
  994. 276D202D1F0E086800A5D562 /* EditCodeView */ = {
  995. isa = PBXGroup;
  996. children = (
  997. 276D202E1F0E086800A5D562 /* EditCodeView.h */,
  998. 276D202F1F0E086800A5D562 /* EditCodeView.m */,
  999. 276D20301F0E086800A5D562 /* EditCodeView.xib */,
  1000. );
  1001. path = EditCodeView;
  1002. sourceTree = "<group>";
  1003. };
  1004. 276D20411F0E098700A5D562 /* SGQRCode */ = {
  1005. isa = PBXGroup;
  1006. children = (
  1007. 276D20421F0E098700A5D562 /* Category */,
  1008. 276D20471F0E098700A5D562 /* SGQRCode.bundle */,
  1009. 276D20481F0E098700A5D562 /* SGQRCode.h */,
  1010. 276D20491F0E098700A5D562 /* SGQRCodeScanManager.h */,
  1011. 276D204A1F0E098700A5D562 /* SGQRCodeScanManager.m */,
  1012. 276D204B1F0E098700A5D562 /* SGQRCodeScanningView.h */,
  1013. 276D204C1F0E098700A5D562 /* SGQRCodeScanningView.m */,
  1014. );
  1015. path = SGQRCode;
  1016. sourceTree = "<group>";
  1017. };
  1018. 276D20421F0E098700A5D562 /* Category */ = {
  1019. isa = PBXGroup;
  1020. children = (
  1021. 276D20431F0E098700A5D562 /* NSObject+SGHelper.h */,
  1022. 276D20441F0E098700A5D562 /* NSObject+SGHelper.m */,
  1023. 276D20451F0E098700A5D562 /* UIImage+SGHelper.h */,
  1024. 276D20461F0E098700A5D562 /* UIImage+SGHelper.m */,
  1025. );
  1026. path = Category;
  1027. sourceTree = "<group>";
  1028. };
  1029. 276D20561F0E197D00A5D562 /* 钢瓶激活 */ = {
  1030. isa = PBXGroup;
  1031. children = (
  1032. F52AF5F81F51667B007EA94E /* CylinderYearlynspectionView.xib */,
  1033. F52AF5F91F51667B007EA94E /* CylinderYearlynspectionView.m */,
  1034. F52AF5FA1F51667B007EA94E /* CylinderYearlynspectionView.h */,
  1035. 276D20611F0E19D100A5D562 /* CylinderTopView.h */,
  1036. 276D20621F0E19D100A5D562 /* CylinderTopView.m */,
  1037. 276D20631F0E19D100A5D562 /* CylinderTopView.xib */,
  1038. 276D205A1F0E197D00A5D562 /* CylinderActivationSelectView.h */,
  1039. 276D205B1F0E197D00A5D562 /* CylinderActivationSelectView.m */,
  1040. 276D205C1F0E197D00A5D562 /* CylinderActivationSelectView.xib */,
  1041. );
  1042. path = "钢瓶激活";
  1043. sourceTree = "<group>";
  1044. };
  1045. 276D20661F0E1A5E00A5D562 /* Controller */ = {
  1046. isa = PBXGroup;
  1047. children = (
  1048. 276D20671F0E1A5E00A5D562 /* DataViewVC.h */,
  1049. 276D20681F0E1A5E00A5D562 /* DataViewVC.m */,
  1050. );
  1051. path = Controller;
  1052. sourceTree = "<group>";
  1053. };
  1054. 276D20691F0E1A5E00A5D562 /* View */ = {
  1055. isa = PBXGroup;
  1056. children = (
  1057. 276D206D1F0E1A5E00A5D562 /* DataViewCell.h */,
  1058. 276D206E1F0E1A5E00A5D562 /* DataViewCell.m */,
  1059. 276D206F1F0E1A5E00A5D562 /* DataViewCell.xib */,
  1060. 276D206A1F0E1A5E00A5D562 /* DataTopView.h */,
  1061. 276D206B1F0E1A5E00A5D562 /* DataTopView.m */,
  1062. 276D206C1F0E1A5E00A5D562 /* DataTopView.xib */,
  1063. 276D20701F0E1A5E00A5D562 /* DateSelectView.h */,
  1064. 276D20711F0E1A5E00A5D562 /* DateSelectView.m */,
  1065. 276D20721F0E1A5E00A5D562 /* DateSelectView.xib */,
  1066. 273BE4941F1326D400ECA57F /* DataBottomView.h */,
  1067. 273BE4951F1326D400ECA57F /* DataBottomView.m */,
  1068. 273BE4961F1326D400ECA57F /* DataBottomView.xib */,
  1069. );
  1070. path = View;
  1071. sourceTree = "<group>";
  1072. };
  1073. 276D207A1F0E1B3C00A5D562 /* KSDatePicker */ = {
  1074. isa = PBXGroup;
  1075. children = (
  1076. 276D207B1F0E1B3C00A5D562 /* KSDatePicker.h */,
  1077. 276D207C1F0E1B3C00A5D562 /* KSDatePicker.m */,
  1078. 276D207D1F0E1B3C00A5D562 /* KSDatePickerAppearance.h */,
  1079. 276D207E1F0E1B3C00A5D562 /* KSDatePickerAppearance.m */,
  1080. );
  1081. path = KSDatePicker;
  1082. sourceTree = "<group>";
  1083. };
  1084. 276D20A81F0E254900A5D562 /* BasePageVC */ = {
  1085. isa = PBXGroup;
  1086. children = (
  1087. 276D20A91F0E254900A5D562 /* BasePageVC.h */,
  1088. 276D20AA1F0E254900A5D562 /* BasePageVC.m */,
  1089. );
  1090. path = BasePageVC;
  1091. sourceTree = "<group>";
  1092. };
  1093. 276D20AC1F0E25DE00A5D562 /* Controller */ = {
  1094. isa = PBXGroup;
  1095. children = (
  1096. 276D20B31F0E25DE00A5D562 /* CylinderManageVC.h */,
  1097. 276D20B41F0E25DE00A5D562 /* CylinderManageVC.m */,
  1098. 276D20B11F0E25DE00A5D562 /* CylinderManageBaseVC.h */,
  1099. 276D20B21F0E25DE00A5D562 /* CylinderManageBaseVC.m */,
  1100. 276D20AF1F0E25DE00A5D562 /* AllCylinderVC.h */,
  1101. 276D20B01F0E25DE00A5D562 /* AllCylinderVC.m */,
  1102. 276D20B71F0E25DE00A5D562 /* NormalCylinderVC.h */,
  1103. 276D20B81F0E25DE00A5D562 /* NormalCylinderVC.m */,
  1104. 276D20AD1F0E25DE00A5D562 /* AbnormalCylinderVC.h */,
  1105. 276D20AE1F0E25DE00A5D562 /* AbnormalCylinderVC.m */,
  1106. 276D20B51F0E25DE00A5D562 /* DisableCylinderVC.h */,
  1107. 276D20B61F0E25DE00A5D562 /* DisableCylinderVC.m */,
  1108. F5BF2A181F2B11B90037A5B4 /* WithholdCylinderVC.h */,
  1109. F5BF2A191F2B11B90037A5B4 /* WithholdCylinderVC.m */,
  1110. );
  1111. path = Controller;
  1112. sourceTree = "<group>";
  1113. };
  1114. 276D20B91F0E25DE00A5D562 /* View */ = {
  1115. isa = PBXGroup;
  1116. children = (
  1117. F5BF2A1B1F2B12A20037A5B4 /* CylinderTotalView.xib */,
  1118. F5BF2A1C1F2B12A20037A5B4 /* CylinderTotalView.m */,
  1119. F5BF2A1D1F2B12A20037A5B4 /* CylinderTotalView.h */,
  1120. 276D20BA1F0E25DE00A5D562 /* CylinderCell.h */,
  1121. 276D20BB1F0E25DE00A5D562 /* CylinderCell.m */,
  1122. 276D20BC1F0E25DE00A5D562 /* CylinderCell.xib */,
  1123. );
  1124. path = View;
  1125. sourceTree = "<group>";
  1126. };
  1127. 276D20C51F0E26A500A5D562 /* Controller */ = {
  1128. isa = PBXGroup;
  1129. children = (
  1130. 276D20C61F0E26A500A5D562 /* TransferRecordVC.h */,
  1131. 276D20C71F0E26A500A5D562 /* TransferRecordVC.m */,
  1132. );
  1133. path = Controller;
  1134. sourceTree = "<group>";
  1135. };
  1136. 276D20C81F0E26A500A5D562 /* Model */ = {
  1137. isa = PBXGroup;
  1138. children = (
  1139. 276D20C91F0E26A500A5D562 /* TransferRecord.h */,
  1140. 276D20CA1F0E26A500A5D562 /* TransferRecord.m */,
  1141. );
  1142. path = Model;
  1143. sourceTree = "<group>";
  1144. };
  1145. 276D20CB1F0E26A500A5D562 /* View */ = {
  1146. isa = PBXGroup;
  1147. children = (
  1148. 276D20CC1F0E26A500A5D562 /* TransferRecordCell.h */,
  1149. 276D20CD1F0E26A500A5D562 /* TransferRecordCell.m */,
  1150. 276D20CE1F0E26A500A5D562 /* TransferRecordCell.xib */,
  1151. 276D20CF1F0E26A500A5D562 /* TransferSectionView.h */,
  1152. 276D20D01F0E26A500A5D562 /* TransferSectionView.m */,
  1153. 276D20D11F0E26A500A5D562 /* TransferSectionView.xib */,
  1154. );
  1155. path = View;
  1156. sourceTree = "<group>";
  1157. };
  1158. 27B882461F0CC2EE00271940 /* ThirdPart */ = {
  1159. isa = PBXGroup;
  1160. children = (
  1161. 2737A6841F203BF800D4F881 /* GtSdkLib */,
  1162. 273BE48B1F13099D00ECA57F /* PZXVerificationCodeTextField */,
  1163. 276D207A1F0E1B3C00A5D562 /* KSDatePicker */,
  1164. 276D20411F0E098700A5D562 /* SGQRCode */,
  1165. 27B882471F0CC2EE00271940 /* Alipay */,
  1166. 27B8824A1F0CC2EE00271940 /* baiduMap */,
  1167. 27B882521F0CC2EE00271940 /* blockskit */,
  1168. 27B882591F0CC2EE00271940 /* CustomPicker */,
  1169. 27B8825C1F0CC2EE00271940 /* JZLocationConverter */,
  1170. 27B8825F1F0CC2EE00271940 /* KNActionSheet */,
  1171. 27B882641F0CC2EE00271940 /* MBProgressHUD+LAI */,
  1172. 27B882681F0CC2EE00271940 /* Photos */,
  1173. 27B882971F0CC2EE00271940 /* UIKit */,
  1174. 27B882981F0CC2EE00271940 /* weatherTTF */,
  1175. 27B882A31F0CC2EE00271940 /* WeChatSDK */,
  1176. 27B882AF1F0CC2EE00271940 /* XWScanImage */,
  1177. );
  1178. path = ThirdPart;
  1179. sourceTree = "<group>";
  1180. };
  1181. 27B882471F0CC2EE00271940 /* Alipay */ = {
  1182. isa = PBXGroup;
  1183. children = (
  1184. F5AD67211F170A31001C3003 /* AlipaySDK.framework */,
  1185. F5AD671A1F1702E1001C3003 /* AlipaySDK.bundle */,
  1186. );
  1187. path = Alipay;
  1188. sourceTree = "<group>";
  1189. };
  1190. 27B8824A1F0CC2EE00271940 /* baiduMap */ = {
  1191. isa = PBXGroup;
  1192. children = (
  1193. 27B882ED1F0CC4EA00271940 /* thirdlibs */,
  1194. 27B8824B1F0CC2EE00271940 /* BaiduMapAPI_Base.framework */,
  1195. 27B8824C1F0CC2EE00271940 /* BaiduMapAPI_Cloud.framework */,
  1196. 27B8824D1F0CC2EE00271940 /* BaiduMapAPI_Location.framework */,
  1197. 27B882F71F0CC61600271940 /* BaiduMapAPI_Map.framework */,
  1198. 27B8824F1F0CC2EE00271940 /* BaiduMapAPI_Radar.framework */,
  1199. 27B882501F0CC2EE00271940 /* BaiduMapAPI_Search.framework */,
  1200. 27B882511F0CC2EE00271940 /* BaiduMapAPI_Utils.framework */,
  1201. );
  1202. path = baiduMap;
  1203. sourceTree = "<group>";
  1204. };
  1205. 27B882521F0CC2EE00271940 /* blockskit */ = {
  1206. isa = PBXGroup;
  1207. children = (
  1208. 27B882531F0CC2EE00271940 /* Core */,
  1209. 27B882541F0CC2EE00271940 /* DynamicDelegate */,
  1210. 27B882561F0CC2EE00271940 /* MessageUI */,
  1211. 27B882571F0CC2EE00271940 /* QuickLook */,
  1212. 27B882581F0CC2EE00271940 /* UIKit */,
  1213. );
  1214. path = blockskit;
  1215. sourceTree = "<group>";
  1216. };
  1217. 27B882531F0CC2EE00271940 /* Core */ = {
  1218. isa = PBXGroup;
  1219. children = (
  1220. );
  1221. path = Core;
  1222. sourceTree = "<group>";
  1223. };
  1224. 27B882541F0CC2EE00271940 /* DynamicDelegate */ = {
  1225. isa = PBXGroup;
  1226. children = (
  1227. 27B882551F0CC2EE00271940 /* Foundation */,
  1228. );
  1229. path = DynamicDelegate;
  1230. sourceTree = "<group>";
  1231. };
  1232. 27B882551F0CC2EE00271940 /* Foundation */ = {
  1233. isa = PBXGroup;
  1234. children = (
  1235. );
  1236. path = Foundation;
  1237. sourceTree = "<group>";
  1238. };
  1239. 27B882561F0CC2EE00271940 /* MessageUI */ = {
  1240. isa = PBXGroup;
  1241. children = (
  1242. );
  1243. path = MessageUI;
  1244. sourceTree = "<group>";
  1245. };
  1246. 27B882571F0CC2EE00271940 /* QuickLook */ = {
  1247. isa = PBXGroup;
  1248. children = (
  1249. );
  1250. path = QuickLook;
  1251. sourceTree = "<group>";
  1252. };
  1253. 27B882581F0CC2EE00271940 /* UIKit */ = {
  1254. isa = PBXGroup;
  1255. children = (
  1256. );
  1257. path = UIKit;
  1258. sourceTree = "<group>";
  1259. };
  1260. 27B882591F0CC2EE00271940 /* CustomPicker */ = {
  1261. isa = PBXGroup;
  1262. children = (
  1263. 27B8825A1F0CC2EE00271940 /* CustomDatePicker.h */,
  1264. 27B8825B1F0CC2EE00271940 /* CustomDatePicker.m */,
  1265. );
  1266. path = CustomPicker;
  1267. sourceTree = "<group>";
  1268. };
  1269. 27B8825C1F0CC2EE00271940 /* JZLocationConverter */ = {
  1270. isa = PBXGroup;
  1271. children = (
  1272. 27B8825D1F0CC2EE00271940 /* JZLocationConverter.h */,
  1273. 27B8825E1F0CC2EE00271940 /* JZLocationConverter.m */,
  1274. );
  1275. path = JZLocationConverter;
  1276. sourceTree = "<group>";
  1277. };
  1278. 27B8825F1F0CC2EE00271940 /* KNActionSheet */ = {
  1279. isa = PBXGroup;
  1280. children = (
  1281. 27B882601F0CC2EE00271940 /* KNActionSheet.h */,
  1282. 27B882611F0CC2EE00271940 /* KNActionSheet.m */,
  1283. 27B882621F0CC2EE00271940 /* KNActionSheetView.h */,
  1284. 27B882631F0CC2EE00271940 /* KNActionSheetView.m */,
  1285. );
  1286. path = KNActionSheet;
  1287. sourceTree = "<group>";
  1288. };
  1289. 27B882641F0CC2EE00271940 /* MBProgressHUD+LAI */ = {
  1290. isa = PBXGroup;
  1291. children = (
  1292. 27B882651F0CC2EE00271940 /* MBProgressHUD+LAI.h */,
  1293. 27B882661F0CC2EE00271940 /* MBProgressHUD+LAI.m */,
  1294. 27B882671F0CC2EE00271940 /* MBProgressHUD.bundle */,
  1295. );
  1296. path = "MBProgressHUD+LAI";
  1297. sourceTree = "<group>";
  1298. };
  1299. 27B882681F0CC2EE00271940 /* Photos */ = {
  1300. isa = PBXGroup;
  1301. children = (
  1302. 27B882691F0CC2EE00271940 /* Images */,
  1303. 27B882781F0CC2EE00271940 /* MediaType.h */,
  1304. 27B882791F0CC2EE00271940 /* Navigation */,
  1305. 27B882801F0CC2EE00271940 /* PhotosList */,
  1306. 27B882851F0CC2EE00271940 /* Picker */,
  1307. 27B8828D1F0CC2EE00271940 /* Preview */,
  1308. );
  1309. path = Photos;
  1310. sourceTree = "<group>";
  1311. };
  1312. 27B882691F0CC2EE00271940 /* Images */ = {
  1313. isa = PBXGroup;
  1314. children = (
  1315. 27B8826A1F0CC2EE00271940 /* MMVideoPreviewPlay@2x.png */,
  1316. 27B8826B1F0CC2EE00271940 /* MMVideoPreviewPlayHL@2x.png */,
  1317. 27B8826C1F0CC2EE00271940 /* navi_back@2x.png */,
  1318. 27B8826D1F0CC2EE00271940 /* photo_def_photoPickerVc@2x.png */,
  1319. 27B8826E1F0CC2EE00271940 /* photo_def_previewVc@2x.png */,
  1320. 27B8826F1F0CC2EE00271940 /* photo_number_icon@2x.png */,
  1321. 27B882701F0CC2EE00271940 /* photo_original_def@2x.png */,
  1322. 27B882711F0CC2EE00271940 /* photo_original_sel@2x.png */,
  1323. 27B882721F0CC2EE00271940 /* photo_sel_photoPickerVc@2x.png */,
  1324. 27B882731F0CC2EE00271940 /* photo_sel_previewVc@2x.png */,
  1325. 27B882741F0CC2EE00271940 /* preview_number_icon@2x.png */,
  1326. 27B882751F0CC2EE00271940 /* preview_original_def@2x.png */,
  1327. 27B882761F0CC2EE00271940 /* TableViewArrow@2x.png */,
  1328. 27B882771F0CC2EE00271940 /* VideoSendIcon@2x.png */,
  1329. );
  1330. path = Images;
  1331. sourceTree = "<group>";
  1332. };
  1333. 27B882791F0CC2EE00271940 /* Navigation */ = {
  1334. isa = PBXGroup;
  1335. children = (
  1336. 27B8827A1F0CC2EE00271940 /* PhotosDataHandle.h */,
  1337. 27B8827B1F0CC2EE00271940 /* PhotosDataHandle.m */,
  1338. 27B8827C1F0CC2EE00271940 /* PhotosDataModel.h */,
  1339. 27B8827D1F0CC2EE00271940 /* PhotosDataModel.m */,
  1340. 27B8827E1F0CC2EE00271940 /* PhotosNavigationController.h */,
  1341. 27B8827F1F0CC2EE00271940 /* PhotosNavigationController.m */,
  1342. );
  1343. path = Navigation;
  1344. sourceTree = "<group>";
  1345. };
  1346. 27B882801F0CC2EE00271940 /* PhotosList */ = {
  1347. isa = PBXGroup;
  1348. children = (
  1349. 27B882811F0CC2EE00271940 /* PhotosTableViewCell.h */,
  1350. 27B882821F0CC2EE00271940 /* PhotosTableViewCell.m */,
  1351. 27B882831F0CC2EE00271940 /* PhotosViewController.h */,
  1352. 27B882841F0CC2EE00271940 /* PhotosViewController.m */,
  1353. );
  1354. path = PhotosList;
  1355. sourceTree = "<group>";
  1356. };
  1357. 27B882851F0CC2EE00271940 /* Picker */ = {
  1358. isa = PBXGroup;
  1359. children = (
  1360. 27B882861F0CC2EE00271940 /* PhotoPickerCell.h */,
  1361. 27B882871F0CC2EE00271940 /* PhotoPickerCell.m */,
  1362. 27B882881F0CC2EE00271940 /* PhotoPickerCell.xib */,
  1363. 27B882891F0CC2EE00271940 /* PhotoPickerController.h */,
  1364. 27B8828A1F0CC2EE00271940 /* PhotoPickerController.m */,
  1365. 27B8828B1F0CC2EE00271940 /* PhotoPickerModel.h */,
  1366. 27B8828C1F0CC2EE00271940 /* PhotoPickerModel.m */,
  1367. );
  1368. path = Picker;
  1369. sourceTree = "<group>";
  1370. };
  1371. 27B8828D1F0CC2EE00271940 /* Preview */ = {
  1372. isa = PBXGroup;
  1373. children = (
  1374. 27B8828E1F0CC2EE00271940 /* PhotoPreviewCell.h */,
  1375. 27B8828F1F0CC2EE00271940 /* PhotoPreviewCell.m */,
  1376. 27B882901F0CC2EE00271940 /* PhotoPreviewController.h */,
  1377. 27B882911F0CC2EE00271940 /* PhotoPreviewController.m */,
  1378. 27B882921F0CC2EE00271940 /* VideoPlayerController.h */,
  1379. 27B882931F0CC2EE00271940 /* VideoPlayerController.m */,
  1380. );
  1381. path = Preview;
  1382. sourceTree = "<group>";
  1383. };
  1384. 27B882971F0CC2EE00271940 /* UIKit */ = {
  1385. isa = PBXGroup;
  1386. children = (
  1387. );
  1388. path = UIKit;
  1389. sourceTree = "<group>";
  1390. };
  1391. 27B882981F0CC2EE00271940 /* weatherTTF */ = {
  1392. isa = PBXGroup;
  1393. children = (
  1394. F5BF2A451F2B210E0037A5B4 /* demo_fontclass.html */,
  1395. F5BF2A461F2B210E0037A5B4 /* demo_symbol.html */,
  1396. F5BF2A471F2B210E0037A5B4 /* demo_unicode.html */,
  1397. F5BF2A481F2B210E0037A5B4 /* demo.css */,
  1398. F5BF2A491F2B210E0037A5B4 /* iconfont.css */,
  1399. F5BF2A4A1F2B210E0037A5B4 /* iconfont.eot */,
  1400. F5BF2A4B1F2B210E0037A5B4 /* iconfont.js */,
  1401. F5BF2A4C1F2B210E0037A5B4 /* iconfont.svg */,
  1402. F5BF2A4D1F2B210E0037A5B4 /* iconfont.ttf */,
  1403. F5BF2A4E1F2B210E0037A5B4 /* iconfont.woff */,
  1404. );
  1405. path = weatherTTF;
  1406. sourceTree = "<group>";
  1407. };
  1408. 27B882A31F0CC2EE00271940 /* WeChatSDK */ = {
  1409. isa = PBXGroup;
  1410. children = (
  1411. 276D1FB71F0DEA3100A5D562 /* libWeChatSDK.a */,
  1412. 276D1FB81F0DEA3100A5D562 /* README.txt */,
  1413. 276D1FB91F0DEA3100A5D562 /* WechatAuthSDK.h */,
  1414. 276D1FBA1F0DEA3100A5D562 /* WXApi.h */,
  1415. 276D1FBB1F0DEA3100A5D562 /* WXApiObject.h */,
  1416. 27B882A61F0CC2EE00271940 /* Util */,
  1417. );
  1418. path = WeChatSDK;
  1419. sourceTree = "<group>";
  1420. };
  1421. 27B882A61F0CC2EE00271940 /* Util */ = {
  1422. isa = PBXGroup;
  1423. children = (
  1424. 27B882A71F0CC2EE00271940 /* ApiXml.h */,
  1425. 27B882A81F0CC2EE00271940 /* ApiXml.mm */,
  1426. 27B882A91F0CC2EE00271940 /* payRequsestHandler.h */,
  1427. 27B882AA1F0CC2EE00271940 /* payRequsestHandler.mm */,
  1428. 27B882AB1F0CC2EE00271940 /* WXUtil.h */,
  1429. 27B882AC1F0CC2EE00271940 /* WXUtil.mm */,
  1430. );
  1431. path = Util;
  1432. sourceTree = "<group>";
  1433. };
  1434. 27B882AF1F0CC2EE00271940 /* XWScanImage */ = {
  1435. isa = PBXGroup;
  1436. children = (
  1437. 27B882B01F0CC2EE00271940 /* MyImageViewer.h */,
  1438. 27B882B11F0CC2EE00271940 /* MyImageViewer.m */,
  1439. );
  1440. path = XWScanImage;
  1441. sourceTree = "<group>";
  1442. };
  1443. 27B882ED1F0CC4EA00271940 /* thirdlibs */ = {
  1444. isa = PBXGroup;
  1445. children = (
  1446. 27B882EE1F0CC4EA00271940 /* libcrypto.a */,
  1447. 27B882EF1F0CC4EA00271940 /* libssl.a */,
  1448. );
  1449. path = thirdlibs;
  1450. sourceTree = "<group>";
  1451. };
  1452. 27B882FB1F0CEFF600271940 /* Controller */ = {
  1453. isa = PBXGroup;
  1454. children = (
  1455. 27B882FE1F0CEFF600271940 /* EmployeeManageVC.h */,
  1456. 27B882FF1F0CEFF600271940 /* EmployeeManageVC.m */,
  1457. 27B882FC1F0CEFF600271940 /* AddEmployVC.h */,
  1458. 27B882FD1F0CEFF600271940 /* AddEmployVC.m */,
  1459. F5BF2A5E1F2B23C90037A5B4 /* ReExaminationEmployeeVC.m */,
  1460. F5BF2A5F1F2B23C90037A5B4 /* ReExaminationEmployeeVC.h */,
  1461. );
  1462. path = Controller;
  1463. sourceTree = "<group>";
  1464. };
  1465. 27B883001F0CEFF600271940 /* Model */ = {
  1466. isa = PBXGroup;
  1467. children = (
  1468. 27B883011F0CEFF600271940 /* Employee.h */,
  1469. 27B883021F0CEFF600271940 /* Employee.m */,
  1470. );
  1471. path = Model;
  1472. sourceTree = "<group>";
  1473. };
  1474. 27B883031F0CEFF600271940 /* View */ = {
  1475. isa = PBXGroup;
  1476. children = (
  1477. F5BF2A591F2B21AD0037A5B4 /* IDPhotoInstructionView.xib */,
  1478. F5BF2A5A1F2B21AD0037A5B4 /* IDPhotoInstructionView.m */,
  1479. F5BF2A5B1F2B21AD0037A5B4 /* IDPhotoInstructionView.h */,
  1480. 27B883041F0CEFF600271940 /* EmployeeCell.h */,
  1481. 27B883051F0CEFF600271940 /* EmployeeCell.m */,
  1482. 27B883061F0CEFF600271940 /* EmployeeCell.xib */,
  1483. );
  1484. path = View;
  1485. sourceTree = "<group>";
  1486. };
  1487. 27CCC8DF1F17969200926E96 /* view */ = {
  1488. isa = PBXGroup;
  1489. children = (
  1490. 27CCC8E01F1796AE00926E96 /* StaffListCell.h */,
  1491. 27CCC8E11F1796AE00926E96 /* StaffListCell.m */,
  1492. 27CCC8E21F1796AE00926E96 /* StaffListCell.xib */,
  1493. 27CCC8E51F17985600926E96 /* StaffTopView.h */,
  1494. 27CCC8E61F17985600926E96 /* StaffTopView.m */,
  1495. 27CCC8E81F17987F00926E96 /* StaffTopView.xib */,
  1496. );
  1497. path = view;
  1498. sourceTree = "<group>";
  1499. };
  1500. 27CCC8EA1F17B54C00926E96 /* model */ = {
  1501. isa = PBXGroup;
  1502. children = (
  1503. 27CCC8EB1F17B57100926E96 /* StaffModel.h */,
  1504. 27CCC8EC1F17B57100926E96 /* StaffModel.m */,
  1505. );
  1506. name = model;
  1507. sourceTree = "<group>";
  1508. };
  1509. 27DC05E41F126083004FCB48 /* model */ = {
  1510. isa = PBXGroup;
  1511. children = (
  1512. 27DC05E51F1260AF004FCB48 /* OrderManagerModel.h */,
  1513. 27DC05E61F1260AF004FCB48 /* OrderManagerModel.m */,
  1514. );
  1515. path = model;
  1516. sourceTree = "<group>";
  1517. };
  1518. 27ED2BF71F0CBB8E001E6268 /* Others */ = {
  1519. isa = PBXGroup;
  1520. children = (
  1521. 27B882461F0CC2EE00271940 /* ThirdPart */,
  1522. 27ED2BF81F0CBB8E001E6268 /* Category */,
  1523. 27ED2C071F0CBB8E001E6268 /* Controller */,
  1524. 27ED2C7F1F0CBB8E001E6268 /* Other */,
  1525. 27ED2C871F0CBB8E001E6268 /* Tool */,
  1526. );
  1527. path = Others;
  1528. sourceTree = "<group>";
  1529. };
  1530. 27ED2BF81F0CBB8E001E6268 /* Category */ = {
  1531. isa = PBXGroup;
  1532. children = (
  1533. 27ED2BF91F0CBB8E001E6268 /* NSDate+Extension.h */,
  1534. 27ED2BFA1F0CBB8E001E6268 /* NSDate+Extension.m */,
  1535. 27ED2BFB1F0CBB8E001E6268 /* NSString+Extension.h */,
  1536. 27ED2BFC1F0CBB8E001E6268 /* NSString+Extension.m */,
  1537. 27ED2BFD1F0CBB8E001E6268 /* UIBarButtonItem+Extension.h */,
  1538. 27ED2BFE1F0CBB8E001E6268 /* UIBarButtonItem+Extension.m */,
  1539. 27ED2BFF1F0CBB8E001E6268 /* UIColor+Extension.h */,
  1540. 27ED2C001F0CBB8E001E6268 /* UIColor+Extension.m */,
  1541. 27ED2C011F0CBB8E001E6268 /* UIImage+Color.h */,
  1542. 27ED2C021F0CBB8E001E6268 /* UIImage+Color.m */,
  1543. 27ED2C031F0CBB8E001E6268 /* UITableViewCell+Extension.h */,
  1544. 27ED2C041F0CBB8E001E6268 /* UITableViewCell+Extension.m */,
  1545. 27ED2C051F0CBB8E001E6268 /* UIView+Extension.h */,
  1546. 27ED2C061F0CBB8E001E6268 /* UIView+Extension.m */,
  1547. 274DE2AA1F14A65400E0294E /* UITableViewHeaderFooterView+Extension.h */,
  1548. 274DE2AB1F14A65400E0294E /* UITableViewHeaderFooterView+Extension.m */,
  1549. );
  1550. path = Category;
  1551. sourceTree = "<group>";
  1552. };
  1553. 27ED2C071F0CBB8E001E6268 /* Controller */ = {
  1554. isa = PBXGroup;
  1555. children = (
  1556. 273BE4991F1358E300ECA57F /* BaseWKWebVC */,
  1557. 276D20A81F0E254900A5D562 /* BasePageVC */,
  1558. 27ED2C081F0CBB8E001E6268 /* BaseVC */,
  1559. 27ED2C0B1F0CBB8E001E6268 /* NavVC */,
  1560. 27ED2C0E1F0CBB8E001E6268 /* TabBarVC */,
  1561. );
  1562. path = Controller;
  1563. sourceTree = "<group>";
  1564. };
  1565. 27ED2C081F0CBB8E001E6268 /* BaseVC */ = {
  1566. isa = PBXGroup;
  1567. children = (
  1568. 27ED2C091F0CBB8E001E6268 /* BaseViewController.h */,
  1569. 27ED2C0A1F0CBB8E001E6268 /* BaseViewController.m */,
  1570. );
  1571. path = BaseVC;
  1572. sourceTree = "<group>";
  1573. };
  1574. 27ED2C0B1F0CBB8E001E6268 /* NavVC */ = {
  1575. isa = PBXGroup;
  1576. children = (
  1577. 27ED2C0C1F0CBB8E001E6268 /* NavigationController.h */,
  1578. 27ED2C0D1F0CBB8E001E6268 /* NavigationController.m */,
  1579. );
  1580. path = NavVC;
  1581. sourceTree = "<group>";
  1582. };
  1583. 27ED2C0E1F0CBB8E001E6268 /* TabBarVC */ = {
  1584. isa = PBXGroup;
  1585. children = (
  1586. );
  1587. path = TabBarVC;
  1588. sourceTree = "<group>";
  1589. };
  1590. 27ED2C7F1F0CBB8E001E6268 /* Other */ = {
  1591. isa = PBXGroup;
  1592. children = (
  1593. 27ED2C801F0CBB8E001E6268 /* Const.h */,
  1594. 27ED2C811F0CBB8E001E6268 /* Const.m */,
  1595. 27ED2C821F0CBB8E001E6268 /* Foundation+Log.m */,
  1596. 27ED2C831F0CBB8E001E6268 /* main.m */,
  1597. 27ED2C841F0CBB8E001E6268 /* PrefixHeader.pch */,
  1598. 27ED2C851F0CBB8E001E6268 /* ZHRQ_GYZ.xcdatamodeld */,
  1599. );
  1600. path = Other;
  1601. sourceTree = "<group>";
  1602. };
  1603. 27ED2C871F0CBB8E001E6268 /* Tool */ = {
  1604. isa = PBXGroup;
  1605. children = (
  1606. F51A22791F18950600C6D038 /* AlertPopViewTool */,
  1607. 27ED2C881F0CBB8E001E6268 /* HttpTool */,
  1608. 27ED2C8B1F0CBB8E001E6268 /* LaiMethod */,
  1609. 27ED2C8E1F0CBB8E001E6268 /* SaveTool */,
  1610. 27ED2C911F0CBB8E001E6268 /* VerificationTool */,
  1611. );
  1612. path = Tool;
  1613. sourceTree = "<group>";
  1614. };
  1615. 27ED2C881F0CBB8E001E6268 /* HttpTool */ = {
  1616. isa = PBXGroup;
  1617. children = (
  1618. 27ED2C891F0CBB8E001E6268 /* HttpTool.h */,
  1619. 27ED2C8A1F0CBB8E001E6268 /* HttpTool.m */,
  1620. );
  1621. path = HttpTool;
  1622. sourceTree = "<group>";
  1623. };
  1624. 27ED2C8B1F0CBB8E001E6268 /* LaiMethod */ = {
  1625. isa = PBXGroup;
  1626. children = (
  1627. 27ED2C8C1F0CBB8E001E6268 /* LaiMethod.h */,
  1628. 27ED2C8D1F0CBB8E001E6268 /* LaiMethod.m */,
  1629. );
  1630. path = LaiMethod;
  1631. sourceTree = "<group>";
  1632. };
  1633. 27ED2C8E1F0CBB8E001E6268 /* SaveTool */ = {
  1634. isa = PBXGroup;
  1635. children = (
  1636. 27ED2C8F1F0CBB8E001E6268 /* SaveTool.h */,
  1637. 27ED2C901F0CBB8E001E6268 /* SaveTool.m */,
  1638. );
  1639. path = SaveTool;
  1640. sourceTree = "<group>";
  1641. };
  1642. 27ED2C911F0CBB8E001E6268 /* VerificationTool */ = {
  1643. isa = PBXGroup;
  1644. children = (
  1645. 27ED2C921F0CBB8E001E6268 /* VerificationTool.h */,
  1646. 27ED2C931F0CBB8E001E6268 /* VerificationTool.m */,
  1647. );
  1648. path = VerificationTool;
  1649. sourceTree = "<group>";
  1650. };
  1651. 27ED2D151F0CBBD0001E6268 /* Others */ = {
  1652. isa = PBXGroup;
  1653. children = (
  1654. 27ED2D161F0CBBD0001E6268 /* View */,
  1655. );
  1656. path = Others;
  1657. sourceTree = "<group>";
  1658. };
  1659. 27ED2D161F0CBBD0001E6268 /* View */ = {
  1660. isa = PBXGroup;
  1661. children = (
  1662. F5BF2A291F2B1A630037A5B4 /* ItemArrowCell */,
  1663. F5BF2A201F2B1A370037A5B4 /* ItemAddPhotoCell */,
  1664. 271D895D1F0F25690094090E /* NoPermissionCell */,
  1665. 27ED2D171F0CBBD0001E6268 /* ItemTextCell */,
  1666. 27ED2D1B1F0CBBD0001E6268 /* ItemTextFiledCell */,
  1667. 27ED2D1F1F0CBBD0001E6268 /* NormalBottomView */,
  1668. 27ED2D231F0CBBD0001E6268 /* PubSubmitBtnView.h */,
  1669. 27ED2D241F0CBBD0001E6268 /* PubSubmitBtnView.m */,
  1670. 27ED2D251F0CBBD0001E6268 /* TextView */,
  1671. );
  1672. path = View;
  1673. sourceTree = "<group>";
  1674. };
  1675. 27ED2D171F0CBBD0001E6268 /* ItemTextCell */ = {
  1676. isa = PBXGroup;
  1677. children = (
  1678. 27ED2D181F0CBBD0001E6268 /* ItemTextCell.h */,
  1679. 27ED2D191F0CBBD0001E6268 /* ItemTextCell.m */,
  1680. 27ED2D1A1F0CBBD0001E6268 /* ItemTextCell.xib */,
  1681. );
  1682. path = ItemTextCell;
  1683. sourceTree = "<group>";
  1684. };
  1685. 27ED2D1B1F0CBBD0001E6268 /* ItemTextFiledCell */ = {
  1686. isa = PBXGroup;
  1687. children = (
  1688. 27CE70991F25C2F800BA034B /* ItemTextFiledCell.h */,
  1689. 27CE709A1F25C2F800BA034B /* ItemTextFiledCell.m */,
  1690. 27CE709B1F25C2F800BA034B /* ItemTextFiledCell.xib */,
  1691. );
  1692. path = ItemTextFiledCell;
  1693. sourceTree = "<group>";
  1694. };
  1695. 27ED2D1F1F0CBBD0001E6268 /* NormalBottomView */ = {
  1696. isa = PBXGroup;
  1697. children = (
  1698. 27ED2D201F0CBBD0001E6268 /* NormalBottomView.h */,
  1699. 27ED2D211F0CBBD0001E6268 /* NormalBottomView.m */,
  1700. 27ED2D221F0CBBD0001E6268 /* NormalBottomView.xib */,
  1701. );
  1702. path = NormalBottomView;
  1703. sourceTree = "<group>";
  1704. };
  1705. 27ED2D251F0CBBD0001E6268 /* TextView */ = {
  1706. isa = PBXGroup;
  1707. children = (
  1708. 27ED2D261F0CBBD0001E6268 /* TextView.h */,
  1709. 27ED2D271F0CBBD0001E6268 /* TextView.m */,
  1710. );
  1711. path = TextView;
  1712. sourceTree = "<group>";
  1713. };
  1714. BE39BA3C658E30281DE2B966 /* Frameworks */ = {
  1715. isa = PBXGroup;
  1716. children = (
  1717. 2797CA6A1F203F5B00667446 /* AdSupport.framework */,
  1718. 2797CA681F203F4F00667446 /* UserNotifications.framework */,
  1719. 2797CA661F203F0700667446 /* MobileCoreServices.framework */,
  1720. F5AD671E1F17073C001C3003 /* libc++.tbd */,
  1721. 276D20541F0E0CB100A5D562 /* AVKit.framework */,
  1722. 276D20521F0E0C8300A5D562 /* AVFoundation.framework */,
  1723. 27ED2BF51F0CBA9A001E6268 /* Security.framework */,
  1724. 27ED2BF31F0CBA84001E6268 /* OpenGLES.framework */,
  1725. 27ED2BF11F0CBA76001E6268 /* CoreLocation.framework */,
  1726. 27ED2BEF1F0CBA5F001E6268 /* libstdc++.6.0.9.tbd */,
  1727. 27689D081F0B225800BB6D1C /* CoreMotion.framework */,
  1728. 27689D061F0B21E000BB6D1C /* Foundation.framework */,
  1729. 27689D041F0B21D100BB6D1C /* UIKit.framework */,
  1730. 27689D021F0B21CB00BB6D1C /* CoreGraphics.framework */,
  1731. 27689D001F0B21BF00BB6D1C /* CoreText.framework */,
  1732. 27689CFE1F0B218A00BB6D1C /* QuartzCore.framework */,
  1733. 27689CFC1F0B218100BB6D1C /* CoreTelephony.framework */,
  1734. 27689CFA1F0B217800BB6D1C /* libz.tbd */,
  1735. 27689CF81F0B217100BB6D1C /* SystemConfiguration.framework */,
  1736. 27689CF61F0B205600BB6D1C /* libsqlite3.tbd */,
  1737. 27689CF41F0B205100BB6D1C /* libsqlite3.0.tbd */,
  1738. 279585501F06515D00F37D30 /* MapKit.framework */,
  1739. EA187A154A427FDC9D241B71 /* libPods-ZTXWY.a */,
  1740. );
  1741. name = Frameworks;
  1742. sourceTree = "<group>";
  1743. };
  1744. C4CF0DC4125DC6B361D3947A /* Pods */ = {
  1745. isa = PBXGroup;
  1746. children = (
  1747. E55AB1BDDF818C13EC9B3C9B /* Pods-ZTXWY.debug.xcconfig */,
  1748. 79C127EFEDD1038FBD48AF43 /* Pods-ZTXWY.release.xcconfig */,
  1749. );
  1750. name = Pods;
  1751. sourceTree = "<group>";
  1752. };
  1753. F51A22791F18950600C6D038 /* AlertPopViewTool */ = {
  1754. isa = PBXGroup;
  1755. children = (
  1756. F51A227A1F18950600C6D038 /* AlertPopViewTool.h */,
  1757. F51A227B1F18950600C6D038 /* AlertPopViewTool.m */,
  1758. );
  1759. path = AlertPopViewTool;
  1760. sourceTree = "<group>";
  1761. };
  1762. F521B8641EEE90D900E56DB5 /* Home(首页) */ = {
  1763. isa = PBXGroup;
  1764. children = (
  1765. F554C7BF1EF0C1310064603E /* Controller */,
  1766. F521B8671EEE90D900E56DB5 /* view */,
  1767. );
  1768. path = "Home(首页)";
  1769. sourceTree = "<group>";
  1770. };
  1771. F521B8671EEE90D900E56DB5 /* view */ = {
  1772. isa = PBXGroup;
  1773. children = (
  1774. 27089EC31F0E7BC7001B81E2 /* CarouselView.h */,
  1775. 27089EC41F0E7BC7001B81E2 /* CarouselView.m */,
  1776. F521B8681EEE90D900E56DB5 /* HomeCollectionViewCell.h */,
  1777. F521B8691EEE90D900E56DB5 /* HomeCollectionViewCell.m */,
  1778. F521B86A1EEE90D900E56DB5 /* HomeCollectionViewCell.xib */,
  1779. F521B86B1EEE90D900E56DB5 /* HomeTopView.h */,
  1780. F521B86C1EEE90D900E56DB5 /* HomeTopView.m */,
  1781. F521B86D1EEE90D900E56DB5 /* HomeTopView.xib */,
  1782. 27B9F2351F074FAC007A9DD2 /* HomeHeaderView.h */,
  1783. 27B9F2361F074FAC007A9DD2 /* HomeHeaderView.m */,
  1784. 27B9F2381F074FCD007A9DD2 /* HomeHeaderView.xib */,
  1785. );
  1786. path = view;
  1787. sourceTree = "<group>";
  1788. };
  1789. F554C7BF1EF0C1310064603E /* Controller */ = {
  1790. isa = PBXGroup;
  1791. children = (
  1792. F521B8651EEE90D900E56DB5 /* HomeViewController.h */,
  1793. F521B8661EEE90D900E56DB5 /* HomeViewController.m */,
  1794. );
  1795. name = Controller;
  1796. sourceTree = "<group>";
  1797. };
  1798. F55819131EE4EDAA005EBBE2 /* Login(登录) */ = {
  1799. isa = PBXGroup;
  1800. children = (
  1801. F55819301EE4F83D005EBBE2 /* Model */,
  1802. F55819141EE4EDAA005EBBE2 /* Controller */,
  1803. F55819171EE4EDAA005EBBE2 /* View */,
  1804. );
  1805. path = "Login(登录)";
  1806. sourceTree = "<group>";
  1807. };
  1808. F55819141EE4EDAA005EBBE2 /* Controller */ = {
  1809. isa = PBXGroup;
  1810. children = (
  1811. F59EA9CB1EE5373C004B3101 /* LoginVC.h */,
  1812. F59EA9CC1EE5373C004B3101 /* LoginVC.m */,
  1813. );
  1814. path = Controller;
  1815. sourceTree = "<group>";
  1816. };
  1817. F55819171EE4EDAA005EBBE2 /* View */ = {
  1818. isa = PBXGroup;
  1819. children = (
  1820. F55AF7251EE643C70060073E /* LoginView.h */,
  1821. F55AF7261EE643C70060073E /* LoginView.m */,
  1822. F55AF7281EE643CF0060073E /* LoginView.xib */,
  1823. );
  1824. path = View;
  1825. sourceTree = "<group>";
  1826. };
  1827. F55819301EE4F83D005EBBE2 /* Model */ = {
  1828. isa = PBXGroup;
  1829. children = (
  1830. F55819341EE4F890005EBBE2 /* UserInfo.h */,
  1831. F55819351EE4F890005EBBE2 /* UserInfo.m */,
  1832. );
  1833. path = Model;
  1834. sourceTree = "<group>";
  1835. };
  1836. F55DAC5A1EE7CBF3003A88BE /* Source */ = {
  1837. isa = PBXGroup;
  1838. children = (
  1839. F55DAC5B1EE7CBF3003A88BE /* Assets.xcassets */,
  1840. F55DAC5C1EE7CBF3003A88BE /* IconLaunch.xcassets */,
  1841. );
  1842. path = Source;
  1843. sourceTree = "<group>";
  1844. };
  1845. F5BF2A201F2B1A370037A5B4 /* ItemAddPhotoCell */ = {
  1846. isa = PBXGroup;
  1847. children = (
  1848. F5BF2A211F2B1A370037A5B4 /* ItemAddPhotoCell.h */,
  1849. F5BF2A221F2B1A370037A5B4 /* ItemAddPhotoCell.m */,
  1850. F5BF2A231F2B1A370037A5B4 /* ItemAddPhotoCell.xib */,
  1851. F5BF2A241F2B1A370037A5B4 /* ItemCell.h */,
  1852. F5BF2A251F2B1A370037A5B4 /* ItemCell.m */,
  1853. );
  1854. path = ItemAddPhotoCell;
  1855. sourceTree = "<group>";
  1856. };
  1857. F5BF2A291F2B1A630037A5B4 /* ItemArrowCell */ = {
  1858. isa = PBXGroup;
  1859. children = (
  1860. F5BF2A2A1F2B1A630037A5B4 /* ItemArrowCell.h */,
  1861. F5BF2A2B1F2B1A630037A5B4 /* ItemArrowCell.m */,
  1862. F5BF2A2C1F2B1A630037A5B4 /* ItemArrowCell.xib */,
  1863. );
  1864. path = ItemArrowCell;
  1865. sourceTree = "<group>";
  1866. };
  1867. F5C34CB01EE166E30030E924 = {
  1868. isa = PBXGroup;
  1869. children = (
  1870. 27B882F91F0CC72700271940 /* mapapi.bundle */,
  1871. F5C34CBB1EE166E30030E924 /* ZHRQ_GYZ */,
  1872. F5C34CD81EE166E30030E924 /* ZHRQ_GYZTests */,
  1873. F5C34CE31EE166E40030E924 /* ZHRQ_GYZUITests */,
  1874. F5C34CBA1EE166E30030E924 /* Products */,
  1875. C4CF0DC4125DC6B361D3947A /* Pods */,
  1876. BE39BA3C658E30281DE2B966 /* Frameworks */,
  1877. );
  1878. sourceTree = "<group>";
  1879. };
  1880. F5C34CBA1EE166E30030E924 /* Products */ = {
  1881. isa = PBXGroup;
  1882. children = (
  1883. F5C34CB91EE166E30030E924 /* ZHRQ_GYZ.app */,
  1884. F5C34CD51EE166E30030E924 /* ZHRQ_GYZTests.xctest */,
  1885. F5C34CE01EE166E30030E924 /* ZHRQ_GYZUITests.xctest */,
  1886. );
  1887. name = Products;
  1888. sourceTree = "<group>";
  1889. };
  1890. F5C34CBB1EE166E30030E924 /* ZHRQ_GYZ */ = {
  1891. isa = PBXGroup;
  1892. children = (
  1893. 2795854F1F06515900F37D30 /* ZHRQ_GYZ.entitlements */,
  1894. F5C34CF21EE1674F0030E924 /* Classes */,
  1895. 27ED2BF71F0CBB8E001E6268 /* Others */,
  1896. F55DAC5A1EE7CBF3003A88BE /* Source */,
  1897. F5C34D501EE1674F0030E924 /* Plist */,
  1898. F5C34CBC1EE166E30030E924 /* Supporting Files */,
  1899. );
  1900. path = ZHRQ_GYZ;
  1901. sourceTree = "<group>";
  1902. };
  1903. F5C34CBC1EE166E30030E924 /* Supporting Files */ = {
  1904. isa = PBXGroup;
  1905. children = (
  1906. );
  1907. name = "Supporting Files";
  1908. sourceTree = "<group>";
  1909. };
  1910. F5C34CD81EE166E30030E924 /* ZHRQ_GYZTests */ = {
  1911. isa = PBXGroup;
  1912. children = (
  1913. F5C34CD91EE166E30030E924 /* ZHRQ_GYZTests.m */,
  1914. F5C34CDB1EE166E30030E924 /* Info.plist */,
  1915. );
  1916. path = ZHRQ_GYZTests;
  1917. sourceTree = "<group>";
  1918. };
  1919. F5C34CE31EE166E40030E924 /* ZHRQ_GYZUITests */ = {
  1920. isa = PBXGroup;
  1921. children = (
  1922. F5C34CE41EE166E40030E924 /* ZHRQ_GYZUITests.m */,
  1923. F5C34CE61EE166E40030E924 /* Info.plist */,
  1924. );
  1925. path = ZHRQ_GYZUITests;
  1926. sourceTree = "<group>";
  1927. };
  1928. F5C34CF21EE1674F0030E924 /* Classes */ = {
  1929. isa = PBXGroup;
  1930. children = (
  1931. 279585521F06547400F37D30 /* AppDelegate.h */,
  1932. 279585531F06547400F37D30 /* AppDelegate.m */,
  1933. 27B9F2311F073915007A9DD2 /* Macros.h */,
  1934. F55819131EE4EDAA005EBBE2 /* Login(登录) */,
  1935. F521B8641EEE90D900E56DB5 /* Home(首页) */,
  1936. 276D20111F0E086800A5D562 /* 扫一扫 */,
  1937. 271FCAE81F0A419C0024E9DE /* 员工管理 */,
  1938. 271FCAE61F0A419C0024E9DE /* 数据查看 */,
  1939. 271FCAE71F0A419C0024E9DE /* 通知公告 */,
  1940. 271FCAE51F0A419C0024E9DE /* 钢瓶管理 */,
  1941. 271FCAEA1F0A419C0024E9DE /* 转移记录 */,
  1942. 271FCAE31F0A419C0024E9DE /* 订单管理 */,
  1943. 271FCAE41F0A419C0024E9DE /* 短信储值 */,
  1944. 271FCAE91F0A419C0024E9DE /* 员工轨迹 */,
  1945. 27ED2D151F0CBBD0001E6268 /* Others */,
  1946. );
  1947. path = Classes;
  1948. sourceTree = "<group>";
  1949. };
  1950. F5C34D501EE1674F0030E924 /* Plist */ = {
  1951. isa = PBXGroup;
  1952. children = (
  1953. 27689D0A1F0B2B0300BB6D1C /* Info.plist */,
  1954. );
  1955. path = Plist;
  1956. sourceTree = "<group>";
  1957. };
  1958. /* End PBXGroup section */
  1959. /* Begin PBXNativeTarget section */
  1960. F5C34CB81EE166E30030E924 /* ZHRQ_GYZ */ = {
  1961. isa = PBXNativeTarget;
  1962. buildConfigurationList = F5C34CE91EE166E40030E924 /* Build configuration list for PBXNativeTarget "ZHRQ_GYZ" */;
  1963. buildPhases = (
  1964. BD609BA764391EA4BA09DFCF /* [CP] Check Pods Manifest.lock */,
  1965. F5C34CB51EE166E30030E924 /* Sources */,
  1966. F5C34CB61EE166E30030E924 /* Frameworks */,
  1967. F5C34CB71EE166E30030E924 /* Resources */,
  1968. 77C658F4F58E1E44FD59BF3B /* [CP] Embed Pods Frameworks */,
  1969. DD1533827380FF502AEA6933 /* [CP] Copy Pods Resources */,
  1970. );
  1971. buildRules = (
  1972. );
  1973. dependencies = (
  1974. );
  1975. name = ZHRQ_GYZ;
  1976. productName = ZTXWY;
  1977. productReference = F5C34CB91EE166E30030E924 /* ZHRQ_GYZ.app */;
  1978. productType = "com.apple.product-type.application";
  1979. };
  1980. F5C34CD41EE166E30030E924 /* ZHRQ_GYZTests */ = {
  1981. isa = PBXNativeTarget;
  1982. buildConfigurationList = F5C34CEC1EE166E40030E924 /* Build configuration list for PBXNativeTarget "ZHRQ_GYZTests" */;
  1983. buildPhases = (
  1984. F5C34CD11EE166E30030E924 /* Sources */,
  1985. F5C34CD21EE166E30030E924 /* Frameworks */,
  1986. F5C34CD31EE166E30030E924 /* Resources */,
  1987. );
  1988. buildRules = (
  1989. );
  1990. dependencies = (
  1991. F5C34CD71EE166E30030E924 /* PBXTargetDependency */,
  1992. );
  1993. name = ZHRQ_GYZTests;
  1994. productName = ZTXWYTests;
  1995. productReference = F5C34CD51EE166E30030E924 /* ZHRQ_GYZTests.xctest */;
  1996. productType = "com.apple.product-type.bundle.unit-test";
  1997. };
  1998. F5C34CDF1EE166E30030E924 /* ZHRQ_GYZUITests */ = {
  1999. isa = PBXNativeTarget;
  2000. buildConfigurationList = F5C34CEF1EE166E40030E924 /* Build configuration list for PBXNativeTarget "ZHRQ_GYZUITests" */;
  2001. buildPhases = (
  2002. F5C34CDC1EE166E30030E924 /* Sources */,
  2003. F5C34CDD1EE166E30030E924 /* Frameworks */,
  2004. F5C34CDE1EE166E30030E924 /* Resources */,
  2005. );
  2006. buildRules = (
  2007. );
  2008. dependencies = (
  2009. F5C34CE21EE166E30030E924 /* PBXTargetDependency */,
  2010. );
  2011. name = ZHRQ_GYZUITests;
  2012. productName = ZTXWYUITests;
  2013. productReference = F5C34CE01EE166E30030E924 /* ZHRQ_GYZUITests.xctest */;
  2014. productType = "com.apple.product-type.bundle.ui-testing";
  2015. };
  2016. /* End PBXNativeTarget section */
  2017. /* Begin PBXProject section */
  2018. F5C34CB11EE166E30030E924 /* Project object */ = {
  2019. isa = PBXProject;
  2020. attributes = {
  2021. LastUpgradeCheck = 0830;
  2022. ORGANIZATIONNAME = Xu;
  2023. TargetAttributes = {
  2024. F5C34CB81EE166E30030E924 = {
  2025. CreatedOnToolsVersion = 8.3.2;
  2026. DevelopmentTeam = AJR7E7Z293;
  2027. ProvisioningStyle = Automatic;
  2028. SystemCapabilities = {
  2029. com.apple.BackgroundModes = {
  2030. enabled = 1;
  2031. };
  2032. com.apple.Maps.iOS = {
  2033. enabled = 1;
  2034. };
  2035. com.apple.Push = {
  2036. enabled = 1;
  2037. };
  2038. };
  2039. };
  2040. F5C34CD41EE166E30030E924 = {
  2041. CreatedOnToolsVersion = 8.3.2;
  2042. DevelopmentTeam = AJR7E7Z293;
  2043. ProvisioningStyle = Automatic;
  2044. TestTargetID = F5C34CB81EE166E30030E924;
  2045. };
  2046. F5C34CDF1EE166E30030E924 = {
  2047. CreatedOnToolsVersion = 8.3.2;
  2048. DevelopmentTeam = AJR7E7Z293;
  2049. ProvisioningStyle = Automatic;
  2050. TestTargetID = F5C34CB81EE166E30030E924;
  2051. };
  2052. };
  2053. };
  2054. buildConfigurationList = F5C34CB41EE166E30030E924 /* Build configuration list for PBXProject "ZHRQ_GYZ" */;
  2055. compatibilityVersion = "Xcode 3.2";
  2056. developmentRegion = English;
  2057. hasScannedForEncodings = 0;
  2058. knownRegions = (
  2059. en,
  2060. Base,
  2061. );
  2062. mainGroup = F5C34CB01EE166E30030E924;
  2063. productRefGroup = F5C34CBA1EE166E30030E924 /* Products */;
  2064. projectDirPath = "";
  2065. projectRoot = "";
  2066. targets = (
  2067. F5C34CB81EE166E30030E924 /* ZHRQ_GYZ */,
  2068. F5C34CD41EE166E30030E924 /* ZHRQ_GYZTests */,
  2069. F5C34CDF1EE166E30030E924 /* ZHRQ_GYZUITests */,
  2070. );
  2071. };
  2072. /* End PBXProject section */
  2073. /* Begin PBXResourcesBuildPhase section */
  2074. F5C34CB71EE166E30030E924 /* Resources */ = {
  2075. isa = PBXResourcesBuildPhase;
  2076. buildActionMask = 2147483647;
  2077. files = (
  2078. 271D89621F0F25690094090E /* NoPermissionCell.xib in Resources */,
  2079. F5BF2A5C1F2B21AD0037A5B4 /* IDPhotoInstructionView.xib in Resources */,
  2080. 27689D0B1F0B2B0300BB6D1C /* Info.plist in Resources */,
  2081. 273BE4931F130C7300ECA57F /* ValidationCodeImputView.xib in Resources */,
  2082. 276D20601F0E197D00A5D562 /* CylinderActivationSelectView.xib in Resources */,
  2083. 276D203A1F0E086800A5D562 /* CylinderInformationCell.xib in Resources */,
  2084. 27B882FA1F0CC72700271940 /* mapapi.bundle in Resources */,
  2085. 276639C01F19AD61002CB26D /* RecordListCell.xib in Resources */,
  2086. 276D1FB61F0DE2A600A5D562 /* OrderListCell.xib in Resources */,
  2087. 27B882C61F0CC2EE00271940 /* photo_number_icon@2x.png in Resources */,
  2088. 27B882C01F0CC2EE00271940 /* MBProgressHUD.bundle in Resources */,
  2089. F51A226C1F185D4B00C6D038 /* InputPhoneNOView.xib in Resources */,
  2090. F5AD671C1F1702E1001C3003 /* AlipaySDK.bundle in Resources */,
  2091. 274DE2A91F14A49500E0294E /* CylinderInfoStatusView.xib in Resources */,
  2092. F5BF2A511F2B210E0037A5B4 /* demo_unicode.html in Resources */,
  2093. 27B882CD1F0CC2EE00271940 /* TableViewArrow@2x.png in Resources */,
  2094. 27089ECA1F0E8974001B81E2 /* NoticeCell.xib in Resources */,
  2095. F5BF2A561F2B210E0037A5B4 /* iconfont.svg in Resources */,
  2096. 27B882CC1F0CC2EE00271940 /* preview_original_def@2x.png in Resources */,
  2097. 271FCB311F0A4F310024E9DE /* BalanceTopCell.xib in Resources */,
  2098. 276DDDD71F174CC500F8CD71 /* BalanceMoneyCell.xib in Resources */,
  2099. F521B8831EEE90D900E56DB5 /* HomeTopView.xib in Resources */,
  2100. 27CCC8E41F1796AE00926E96 /* StaffListCell.xib in Resources */,
  2101. 27B882C91F0CC2EE00271940 /* photo_sel_photoPickerVc@2x.png in Resources */,
  2102. F55DAC5D1EE7CBF3003A88BE /* Assets.xcassets in Resources */,
  2103. 27ED2D2D1F0CBBD0001E6268 /* NormalBottomView.xib in Resources */,
  2104. 27B882D51F0CC2EE00271940 /* PhotoPickerCell.xib in Resources */,
  2105. F55AF7291EE643CF0060073E /* LoginView.xib in Resources */,
  2106. 27CE709D1F25C2F800BA034B /* ItemTextFiledCell.xib in Resources */,
  2107. F5BF2A1E1F2B12A20037A5B4 /* CylinderTotalView.xib in Resources */,
  2108. 276D20751F0E1A5E00A5D562 /* DataTopView.xib in Resources */,
  2109. 276D203C1F0E086800A5D562 /* CylinderOperationView.xib in Resources */,
  2110. 27B882C71F0CC2EE00271940 /* photo_original_def@2x.png in Resources */,
  2111. 276D204F1F0E098700A5D562 /* SGQRCode.bundle in Resources */,
  2112. F5BF2A521F2B210E0037A5B4 /* demo.css in Resources */,
  2113. 27B882C51F0CC2EE00271940 /* photo_def_previewVc@2x.png in Resources */,
  2114. F5BF2A541F2B210E0037A5B4 /* iconfont.eot in Resources */,
  2115. 27B882CB1F0CC2EE00271940 /* preview_number_icon@2x.png in Resources */,
  2116. 276D20401F0E086800A5D562 /* EditCodeView.xib in Resources */,
  2117. 27B882C81F0CC2EE00271940 /* photo_original_sel@2x.png in Resources */,
  2118. F5BF2A551F2B210E0037A5B4 /* iconfont.js in Resources */,
  2119. 27B882CA1F0CC2EE00271940 /* photo_sel_previewVc@2x.png in Resources */,
  2120. F5BF2A2E1F2B1A630037A5B4 /* ItemArrowCell.xib in Resources */,
  2121. 276D20651F0E19D100A5D562 /* CylinderTopView.xib in Resources */,
  2122. F52AF5FB1F51667B007EA94E /* CylinderYearlynspectionView.xib in Resources */,
  2123. F55DAC5E1EE7CBF3003A88BE /* IconLaunch.xcassets in Resources */,
  2124. 27B882C31F0CC2EE00271940 /* navi_back@2x.png in Resources */,
  2125. 273BE4981F1326D400ECA57F /* DataBottomView.xib in Resources */,
  2126. 27B882C21F0CC2EE00271940 /* MMVideoPreviewPlayHL@2x.png in Resources */,
  2127. 276D20D71F0E26A500A5D562 /* TransferSectionView.xib in Resources */,
  2128. F5BF2A271F2B1A370037A5B4 /* ItemAddPhotoCell.xib in Resources */,
  2129. 27CCC8E91F17987F00926E96 /* StaffTopView.xib in Resources */,
  2130. F5BF2A501F2B210E0037A5B4 /* demo_symbol.html in Resources */,
  2131. 27B9F2391F074FCD007A9DD2 /* HomeHeaderView.xib in Resources */,
  2132. 276D1FBD1F0DEA3100A5D562 /* README.txt in Resources */,
  2133. F5BF2A531F2B210E0037A5B4 /* iconfont.css in Resources */,
  2134. F5BF2A571F2B210E0037A5B4 /* iconfont.ttf in Resources */,
  2135. 276D20791F0E1A5E00A5D562 /* DateSelectView.xib in Resources */,
  2136. F5BF2A4F1F2B210E0037A5B4 /* demo_fontclass.html in Resources */,
  2137. F5BF2A581F2B210E0037A5B4 /* iconfont.woff in Resources */,
  2138. 27B882C41F0CC2EE00271940 /* photo_def_photoPickerVc@2x.png in Resources */,
  2139. F521B8811EEE90D900E56DB5 /* HomeCollectionViewCell.xib in Resources */,
  2140. 27ED2D291F0CBBD0001E6268 /* ItemTextCell.xib in Resources */,
  2141. 276D205E1F0E197D00A5D562 /* CylinderAbnormalTopView.xib in Resources */,
  2142. 27B8830B1F0CEFF600271940 /* EmployeeCell.xib in Resources */,
  2143. 276D20D51F0E26A500A5D562 /* TransferRecordCell.xib in Resources */,
  2144. 27B882C11F0CC2EE00271940 /* MMVideoPreviewPlay@2x.png in Resources */,
  2145. 276D20C41F0E25DE00A5D562 /* CylinderCell.xib in Resources */,
  2146. 276D20771F0E1A5E00A5D562 /* DataViewCell.xib in Resources */,
  2147. 27B882CE1F0CC2EE00271940 /* VideoSendIcon@2x.png in Resources */,
  2148. );
  2149. runOnlyForDeploymentPostprocessing = 0;
  2150. };
  2151. F5C34CD31EE166E30030E924 /* Resources */ = {
  2152. isa = PBXResourcesBuildPhase;
  2153. buildActionMask = 2147483647;
  2154. files = (
  2155. );
  2156. runOnlyForDeploymentPostprocessing = 0;
  2157. };
  2158. F5C34CDE1EE166E30030E924 /* Resources */ = {
  2159. isa = PBXResourcesBuildPhase;
  2160. buildActionMask = 2147483647;
  2161. files = (
  2162. );
  2163. runOnlyForDeploymentPostprocessing = 0;
  2164. };
  2165. /* End PBXResourcesBuildPhase section */
  2166. /* Begin PBXShellScriptBuildPhase section */
  2167. 77C658F4F58E1E44FD59BF3B /* [CP] Embed Pods Frameworks */ = {
  2168. isa = PBXShellScriptBuildPhase;
  2169. buildActionMask = 2147483647;
  2170. files = (
  2171. );
  2172. inputPaths = (
  2173. );
  2174. name = "[CP] Embed Pods Frameworks";
  2175. outputPaths = (
  2176. );
  2177. runOnlyForDeploymentPostprocessing = 0;
  2178. shellPath = /bin/sh;
  2179. shellScript = "\"${SRCROOT}/Pods/Target Support Files/Pods-ZTXWY/Pods-ZTXWY-frameworks.sh\"\n";
  2180. showEnvVarsInLog = 0;
  2181. };
  2182. BD609BA764391EA4BA09DFCF /* [CP] Check Pods Manifest.lock */ = {
  2183. isa = PBXShellScriptBuildPhase;
  2184. buildActionMask = 2147483647;
  2185. files = (
  2186. );
  2187. inputPaths = (
  2188. );
  2189. name = "[CP] Check Pods Manifest.lock";
  2190. outputPaths = (
  2191. );
  2192. runOnlyForDeploymentPostprocessing = 0;
  2193. shellPath = /bin/sh;
  2194. shellScript = "diff \"${PODS_PODFILE_DIR_PATH}/Podfile.lock\" \"${PODS_ROOT}/Manifest.lock\" > /dev/null\nif [ $? != 0 ] ; then\n # print error to STDERR\n echo \"error: The sandbox is not in sync with the Podfile.lock. Run 'pod install' or update your CocoaPods installation.\" >&2\n exit 1\nfi\n";
  2195. showEnvVarsInLog = 0;
  2196. };
  2197. DD1533827380FF502AEA6933 /* [CP] Copy Pods Resources */ = {
  2198. isa = PBXShellScriptBuildPhase;
  2199. buildActionMask = 2147483647;
  2200. files = (
  2201. );
  2202. inputPaths = (
  2203. );
  2204. name = "[CP] Copy Pods Resources";
  2205. outputPaths = (
  2206. );
  2207. runOnlyForDeploymentPostprocessing = 0;
  2208. shellPath = /bin/sh;
  2209. shellScript = "\"${SRCROOT}/Pods/Target Support Files/Pods-ZTXWY/Pods-ZTXWY-resources.sh\"\n";
  2210. showEnvVarsInLog = 0;
  2211. };
  2212. /* End PBXShellScriptBuildPhase section */
  2213. /* Begin PBXSourcesBuildPhase section */
  2214. F5C34CB51EE166E30030E924 /* Sources */ = {
  2215. isa = PBXSourcesBuildPhase;
  2216. buildActionMask = 2147483647;
  2217. files = (
  2218. 276D20731F0E1A5E00A5D562 /* DataViewVC.m in Sources */,
  2219. 276D20C01F0E25DE00A5D562 /* CylinderManageVC.m in Sources */,
  2220. 27CCC8E71F17985600926E96 /* StaffTopView.m in Sources */,
  2221. 27B882E91F0CC2EE00271940 /* ApiXml.mm in Sources */,
  2222. 27B882EA1F0CC2EE00271940 /* payRequsestHandler.mm in Sources */,
  2223. 271D896A1F0F77810094090E /* CylinderModel.m in Sources */,
  2224. 271FCAFA1F0A41F80024E9DE /* NoticeManangerVC.m in Sources */,
  2225. 27CCC8ED1F17B57100926E96 /* StaffModel.m in Sources */,
  2226. 276D204D1F0E098700A5D562 /* NSObject+SGHelper.m in Sources */,
  2227. 27ED2CEF1F0CBB8F001E6268 /* LaiMethod.m in Sources */,
  2228. 27B9F2371F074FAC007A9DD2 /* HomeHeaderView.m in Sources */,
  2229. 276D20BF1F0E25DE00A5D562 /* CylinderManageBaseVC.m in Sources */,
  2230. 271FCB301F0A4F310024E9DE /* BalanceTopCell.m in Sources */,
  2231. 276D20D61F0E26A500A5D562 /* TransferSectionView.m in Sources */,
  2232. 27ED2CA91F0CBB8E001E6268 /* UIColor+Extension.m in Sources */,
  2233. 27B883081F0CEFF600271940 /* EmployeeManageVC.m in Sources */,
  2234. 27B882D81F0CC2EE00271940 /* PhotoPreviewCell.m in Sources */,
  2235. 27DC05E71F1260AF004FCB48 /* OrderManagerModel.m in Sources */,
  2236. 273BE49C1F1358E300ECA57F /* WKWebBaseVC.m in Sources */,
  2237. 27B882D91F0CC2EE00271940 /* PhotoPreviewController.m in Sources */,
  2238. 27B882BC1F0CC2EE00271940 /* JZLocationConverter.m in Sources */,
  2239. F5BF2A1A1F2B11B90037A5B4 /* WithholdCylinderVC.m in Sources */,
  2240. 27B882DA1F0CC2EE00271940 /* VideoPlayerController.m in Sources */,
  2241. 271D89661F0F62360094090E /* SupplyDataViewModel.m in Sources */,
  2242. F521B8821EEE90D900E56DB5 /* HomeTopView.m in Sources */,
  2243. 276D205D1F0E197D00A5D562 /* CylinderAbnormalTopView.m in Sources */,
  2244. 27B8830A1F0CEFF600271940 /* EmployeeCell.m in Sources */,
  2245. 27CCC8DE1F17915000926E96 /* StaffListVC.m in Sources */,
  2246. 27B882EB1F0CC2EE00271940 /* WXUtil.mm in Sources */,
  2247. 27B882EC1F0CC2EE00271940 /* MyImageViewer.m in Sources */,
  2248. F521B87F1EEE90D900E56DB5 /* HomeViewController.m in Sources */,
  2249. F55AF7271EE643C70060073E /* LoginView.m in Sources */,
  2250. 271FCB121F0A4DE70024E9DE /* RechargeViewController.m in Sources */,
  2251. 27ED2CEB1F0CBB8F001E6268 /* Foundation+Log.m in Sources */,
  2252. 276D20D21F0E26A500A5D562 /* TransferRecordVC.m in Sources */,
  2253. F5BF2A261F2B1A370037A5B4 /* ItemAddPhotoCell.m in Sources */,
  2254. 27B882D11F0CC2EE00271940 /* PhotosNavigationController.m in Sources */,
  2255. 27ED2CAD1F0CBB8E001E6268 /* BaseViewController.m in Sources */,
  2256. 27B882D71F0CC2EE00271940 /* PhotoPickerModel.m in Sources */,
  2257. F51A227C1F18950600C6D038 /* AlertPopViewTool.m in Sources */,
  2258. 271FCB351F0A504E0024E9DE /* MyBalanceModel.m in Sources */,
  2259. 27ED2D2F1F0CBBD0001E6268 /* TextView.m in Sources */,
  2260. 27ED2CEA1F0CBB8F001E6268 /* Const.m in Sources */,
  2261. 274DE2AC1F14A65400E0294E /* UITableViewHeaderFooterView+Extension.m in Sources */,
  2262. 27ED2BEA1F0CB911001E6268 /* PeopleLocationVC.mm in Sources */,
  2263. 271FCB161F0A4E650024E9DE /* PayTypeView.m in Sources */,
  2264. 276D20781F0E1A5E00A5D562 /* DateSelectView.m in Sources */,
  2265. 27B882D41F0CC2EE00271940 /* PhotoPickerCell.m in Sources */,
  2266. 27B882BF1F0CC2EE00271940 /* MBProgressHUD+LAI.m in Sources */,
  2267. 27ED2CAB1F0CBB8E001E6268 /* UITableViewCell+Extension.m in Sources */,
  2268. 27ED2CF11F0CBB8F001E6268 /* VerificationTool.m in Sources */,
  2269. 27B883091F0CEFF600271940 /* Employee.m in Sources */,
  2270. 273BE4901F13099D00ECA57F /* PZXVerificationCodeView.m in Sources */,
  2271. 276D207F1F0E1B3C00A5D562 /* KSDatePicker.m in Sources */,
  2272. 27B882D61F0CC2EE00271940 /* PhotoPickerController.m in Sources */,
  2273. 27089EC51F0E7BC7001B81E2 /* CarouselView.m in Sources */,
  2274. 276D20311F0E086800A5D562 /* CylinderActivationVC.m in Sources */,
  2275. 273BE4971F1326D400ECA57F /* DataBottomView.m in Sources */,
  2276. 273BE4911F13099D00ECA57F /* PZXVerificationTextField.m in Sources */,
  2277. F5BF2A1F1F2B12A20037A5B4 /* CylinderTotalView.m in Sources */,
  2278. F59EA9CD1EE5373C004B3101 /* LoginVC.m in Sources */,
  2279. F521B8801EEE90D900E56DB5 /* HomeCollectionViewCell.m in Sources */,
  2280. 276639B81F19A991002CB26D /* BalanceHeaderView.m in Sources */,
  2281. 27ED2CEE1F0CBB8F001E6268 /* HttpTool.m in Sources */,
  2282. 276D20641F0E19D100A5D562 /* CylinderTopView.m in Sources */,
  2283. F5BF2A601F2B23C90037A5B4 /* ReExaminationEmployeeVC.m in Sources */,
  2284. 276D20BE1F0E25DE00A5D562 /* AllCylinderVC.m in Sources */,
  2285. 27B882BE1F0CC2EE00271940 /* KNActionSheetView.m in Sources */,
  2286. F51A226A1F185C0C00C6D038 /* InputPhoneNOView.m in Sources */,
  2287. 27ED2CA61F0CBB8E001E6268 /* NSDate+Extension.m in Sources */,
  2288. 276D20501F0E098700A5D562 /* SGQRCodeScanManager.m in Sources */,
  2289. 27ED2CAC1F0CBB8E001E6268 /* UIView+Extension.m in Sources */,
  2290. 27ED2CED1F0CBB8F001E6268 /* ZHRQ_GYZ.xcdatamodeld in Sources */,
  2291. F5BF2A2D1F2B1A630037A5B4 /* ItemArrowCell.m in Sources */,
  2292. 27B882BB1F0CC2EE00271940 /* CustomDatePicker.m in Sources */,
  2293. 27CE709C1F25C2F800BA034B /* ItemTextFiledCell.m in Sources */,
  2294. 27089EC91F0E8974001B81E2 /* NoticeCell.m in Sources */,
  2295. 27ED2D2C1F0CBBD0001E6268 /* NormalBottomView.m in Sources */,
  2296. 27ED2D281F0CBBD0001E6268 /* ItemTextCell.m in Sources */,
  2297. 276D20C31F0E25DE00A5D562 /* CylinderCell.m in Sources */,
  2298. 276D204E1F0E098700A5D562 /* UIImage+SGHelper.m in Sources */,
  2299. 279585541F06547400F37D30 /* AppDelegate.m in Sources */,
  2300. 276D20331F0E086800A5D562 /* EditCodeVC.m in Sources */,
  2301. 27ED2CA71F0CBB8E001E6268 /* NSString+Extension.m in Sources */,
  2302. 276D20511F0E098700A5D562 /* SGQRCodeScanningView.m in Sources */,
  2303. 276D1F961F0DCD7900A5D562 /* OrderListVC.m in Sources */,
  2304. F52AF5FC1F51667B007EA94E /* CylinderYearlynspectionView.m in Sources */,
  2305. 27ED2CF01F0CBB8F001E6268 /* SaveTool.m in Sources */,
  2306. 27B882D21F0CC2EE00271940 /* PhotosTableViewCell.m in Sources */,
  2307. 27B882BD1F0CC2EE00271940 /* KNActionSheet.m in Sources */,
  2308. 27B882CF1F0CC2EE00271940 /* PhotosDataHandle.m in Sources */,
  2309. 271FCAFC1F0A41F80024E9DE /* Notice.m in Sources */,
  2310. 276D20801F0E1B3C00A5D562 /* KSDatePickerAppearance.m in Sources */,
  2311. 276D20C11F0E25DE00A5D562 /* DisableCylinderVC.m in Sources */,
  2312. 276639BB1F19ABC8002CB26D /* RechargeRecordVC.m in Sources */,
  2313. 273BE49F1F13590600ECA57F /* NoticeDetialVC.m in Sources */,
  2314. 276639BF1F19AD61002CB26D /* RecordListCell.m in Sources */,
  2315. 276D20761F0E1A5E00A5D562 /* DataViewCell.m in Sources */,
  2316. 27B883071F0CEFF600271940 /* AddEmployVC.m in Sources */,
  2317. 27ED2BD01F0C8E35001E6268 /* BalanceMoneyView.m in Sources */,
  2318. 276D205F1F0E197D00A5D562 /* CylinderActivationSelectView.m in Sources */,
  2319. 276D20391F0E086800A5D562 /* CylinderInformationCell.m in Sources */,
  2320. 27B882D31F0CC2EE00271940 /* PhotosViewController.m in Sources */,
  2321. 276D20741F0E1A5E00A5D562 /* DataTopView.m in Sources */,
  2322. F55819361EE4F890005EBBE2 /* UserInfo.m in Sources */,
  2323. 27ED2CAA1F0CBB8E001E6268 /* UIImage+Color.m in Sources */,
  2324. 276D20321F0E086800A5D562 /* CylinderInformationVC.m in Sources */,
  2325. F5BF2A281F2B1A370037A5B4 /* ItemCell.m in Sources */,
  2326. 27ED2CA81F0CBB8E001E6268 /* UIBarButtonItem+Extension.m in Sources */,
  2327. F5BF2A5D1F2B21AD0037A5B4 /* IDPhotoInstructionView.m in Sources */,
  2328. 271D89611F0F25690094090E /* NoPermissionCell.m in Sources */,
  2329. 27ED2CAE1F0CBB8E001E6268 /* NavigationController.m in Sources */,
  2330. 276D203B1F0E086800A5D562 /* CylinderOperationView.m in Sources */,
  2331. 276D1FB51F0DE2A600A5D562 /* OrderListCell.m in Sources */,
  2332. 276D203F1F0E086800A5D562 /* EditCodeView.m in Sources */,
  2333. 276D20AB1F0E254900A5D562 /* BasePageVC.m in Sources */,
  2334. 274DE2A81F14A49500E0294E /* CylinderInfoStatusView.m in Sources */,
  2335. 27ED2D2E1F0CBBD0001E6268 /* PubSubmitBtnView.m in Sources */,
  2336. 276D20D31F0E26A500A5D562 /* TransferRecord.m in Sources */,
  2337. 27CCC8E31F1796AE00926E96 /* StaffListCell.m in Sources */,
  2338. 276D20BD1F0E25DE00A5D562 /* AbnormalCylinderVC.m in Sources */,
  2339. 27ED2CEC1F0CBB8F001E6268 /* main.m in Sources */,
  2340. 276D20C21F0E25DE00A5D562 /* NormalCylinderVC.m in Sources */,
  2341. 276DDDD61F174CC500F8CD71 /* BalanceMoneyCell.m in Sources */,
  2342. 27B882D01F0CC2EE00271940 /* PhotosDataModel.m in Sources */,
  2343. 276D20341F0E086800A5D562 /* ScanQRcodeVC.m in Sources */,
  2344. 271D896D1F0F87BD0094090E /* ValidationCodeImputView.m in Sources */,
  2345. 276D20D41F0E26A500A5D562 /* TransferRecordCell.m in Sources */,
  2346. );
  2347. runOnlyForDeploymentPostprocessing = 0;
  2348. };
  2349. F5C34CD11EE166E30030E924 /* Sources */ = {
  2350. isa = PBXSourcesBuildPhase;
  2351. buildActionMask = 2147483647;
  2352. files = (
  2353. F5C34CDA1EE166E30030E924 /* ZHRQ_GYZTests.m in Sources */,
  2354. );
  2355. runOnlyForDeploymentPostprocessing = 0;
  2356. };
  2357. F5C34CDC1EE166E30030E924 /* Sources */ = {
  2358. isa = PBXSourcesBuildPhase;
  2359. buildActionMask = 2147483647;
  2360. files = (
  2361. F5C34CE51EE166E40030E924 /* ZHRQ_GYZUITests.m in Sources */,
  2362. );
  2363. runOnlyForDeploymentPostprocessing = 0;
  2364. };
  2365. /* End PBXSourcesBuildPhase section */
  2366. /* Begin PBXTargetDependency section */
  2367. F5C34CD71EE166E30030E924 /* PBXTargetDependency */ = {
  2368. isa = PBXTargetDependency;
  2369. target = F5C34CB81EE166E30030E924 /* ZHRQ_GYZ */;
  2370. targetProxy = F5C34CD61EE166E30030E924 /* PBXContainerItemProxy */;
  2371. };
  2372. F5C34CE21EE166E30030E924 /* PBXTargetDependency */ = {
  2373. isa = PBXTargetDependency;
  2374. target = F5C34CB81EE166E30030E924 /* ZHRQ_GYZ */;
  2375. targetProxy = F5C34CE11EE166E30030E924 /* PBXContainerItemProxy */;
  2376. };
  2377. /* End PBXTargetDependency section */
  2378. /* Begin XCBuildConfiguration section */
  2379. F5C34CE71EE166E40030E924 /* Debug */ = {
  2380. isa = XCBuildConfiguration;
  2381. buildSettings = {
  2382. ALWAYS_SEARCH_USER_PATHS = NO;
  2383. CLANG_ANALYZER_NONNULL = YES;
  2384. CLANG_ANALYZER_NUMBER_OBJECT_CONVERSION = YES_AGGRESSIVE;
  2385. CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x";
  2386. CLANG_CXX_LIBRARY = "libc++";
  2387. CLANG_ENABLE_MODULES = YES;
  2388. CLANG_ENABLE_OBJC_ARC = YES;
  2389. CLANG_WARN_BOOL_CONVERSION = YES;
  2390. CLANG_WARN_CONSTANT_CONVERSION = YES;
  2391. CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR;
  2392. CLANG_WARN_DOCUMENTATION_COMMENTS = YES;
  2393. CLANG_WARN_EMPTY_BODY = YES;
  2394. CLANG_WARN_ENUM_CONVERSION = YES;
  2395. CLANG_WARN_INFINITE_RECURSION = YES;
  2396. CLANG_WARN_INT_CONVERSION = YES;
  2397. CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR;
  2398. CLANG_WARN_SUSPICIOUS_MOVE = YES;
  2399. CLANG_WARN_UNREACHABLE_CODE = YES;
  2400. CLANG_WARN__DUPLICATE_METHOD_MATCH = YES;
  2401. "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer";
  2402. COPY_PHASE_STRIP = NO;
  2403. DEBUG_INFORMATION_FORMAT = dwarf;
  2404. ENABLE_STRICT_OBJC_MSGSEND = YES;
  2405. ENABLE_TESTABILITY = YES;
  2406. GCC_C_LANGUAGE_STANDARD = gnu99;
  2407. GCC_DYNAMIC_NO_PIC = NO;
  2408. GCC_NO_COMMON_BLOCKS = YES;
  2409. GCC_OPTIMIZATION_LEVEL = 0;
  2410. GCC_PREPROCESSOR_DEFINITIONS = (
  2411. "DEBUG=1",
  2412. "$(inherited)",
  2413. );
  2414. GCC_WARN_64_TO_32_BIT_CONVERSION = YES;
  2415. GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR;
  2416. GCC_WARN_UNDECLARED_SELECTOR = YES;
  2417. GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;
  2418. GCC_WARN_UNUSED_FUNCTION = YES;
  2419. GCC_WARN_UNUSED_VARIABLE = YES;
  2420. IPHONEOS_DEPLOYMENT_TARGET = 10.3;
  2421. MTL_ENABLE_DEBUG_INFO = YES;
  2422. ONLY_ACTIVE_ARCH = YES;
  2423. SDKROOT = iphoneos;
  2424. };
  2425. name = Debug;
  2426. };
  2427. F5C34CE81EE166E40030E924 /* Release */ = {
  2428. isa = XCBuildConfiguration;
  2429. buildSettings = {
  2430. ALWAYS_SEARCH_USER_PATHS = NO;
  2431. CLANG_ANALYZER_NONNULL = YES;
  2432. CLANG_ANALYZER_NUMBER_OBJECT_CONVERSION = YES_AGGRESSIVE;
  2433. CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x";
  2434. CLANG_CXX_LIBRARY = "libc++";
  2435. CLANG_ENABLE_MODULES = YES;
  2436. CLANG_ENABLE_OBJC_ARC = YES;
  2437. CLANG_WARN_BOOL_CONVERSION = YES;
  2438. CLANG_WARN_CONSTANT_CONVERSION = YES;
  2439. CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR;
  2440. CLANG_WARN_DOCUMENTATION_COMMENTS = YES;
  2441. CLANG_WARN_EMPTY_BODY = YES;
  2442. CLANG_WARN_ENUM_CONVERSION = YES;
  2443. CLANG_WARN_INFINITE_RECURSION = YES;
  2444. CLANG_WARN_INT_CONVERSION = YES;
  2445. CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR;
  2446. CLANG_WARN_SUSPICIOUS_MOVE = YES;
  2447. CLANG_WARN_UNREACHABLE_CODE = YES;
  2448. CLANG_WARN__DUPLICATE_METHOD_MATCH = YES;
  2449. "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer";
  2450. COPY_PHASE_STRIP = NO;
  2451. DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym";
  2452. ENABLE_NS_ASSERTIONS = NO;
  2453. ENABLE_STRICT_OBJC_MSGSEND = YES;
  2454. GCC_C_LANGUAGE_STANDARD = gnu99;
  2455. GCC_NO_COMMON_BLOCKS = YES;
  2456. GCC_WARN_64_TO_32_BIT_CONVERSION = YES;
  2457. GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR;
  2458. GCC_WARN_UNDECLARED_SELECTOR = YES;
  2459. GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;
  2460. GCC_WARN_UNUSED_FUNCTION = YES;
  2461. GCC_WARN_UNUSED_VARIABLE = YES;
  2462. IPHONEOS_DEPLOYMENT_TARGET = 10.3;
  2463. MTL_ENABLE_DEBUG_INFO = NO;
  2464. SDKROOT = iphoneos;
  2465. VALIDATE_PRODUCT = YES;
  2466. };
  2467. name = Release;
  2468. };
  2469. F5C34CEA1EE166E40030E924 /* Debug */ = {
  2470. isa = XCBuildConfiguration;
  2471. baseConfigurationReference = E55AB1BDDF818C13EC9B3C9B /* Pods-ZTXWY.debug.xcconfig */;
  2472. buildSettings = {
  2473. ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
  2474. ASSETCATALOG_COMPILER_LAUNCHIMAGE_NAME = LaunchImage;
  2475. CLANG_ENABLE_OBJC_ARC = YES;
  2476. CLANG_ENABLE_OBJC_WEAK = YES;
  2477. CODE_SIGN_ENTITLEMENTS = ZHRQ_GYZ/ZHRQ_GYZ.entitlements;
  2478. CODE_SIGN_IDENTITY = "iPhone Distribution: JiangSu Wisdom World Network Technology Co. Ltd. (U4VASASFAB)";
  2479. "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer";
  2480. DEVELOPMENT_TEAM = AJR7E7Z293;
  2481. ENABLE_BITCODE = NO;
  2482. FRAMEWORK_SEARCH_PATHS = (
  2483. "$(inherited)",
  2484. "$(PROJECT_DIR)/ZHRQ_GYZ/Classes/Main/Lib/Alipay",
  2485. "$(PROJECT_DIR)/ZHRQ_GYZ/Classes/Main/Lib/baiduMap",
  2486. "$(PROJECT_DIR)/ZHRQ_GYZ/Other/Lib/Alipay",
  2487. "$(PROJECT_DIR)/ZHRQ_GYZ/Other/Lib/baiduMap",
  2488. "$(PROJECT_DIR)/ZHRQ_GYZ/Others/ThirdPart/Alipay",
  2489. "$(PROJECT_DIR)/ZHRQ_GYZ/Others/ThirdPart/baiduMap",
  2490. );
  2491. GCC_INPUT_FILETYPE = automatic;
  2492. GCC_PRECOMPILE_PREFIX_HEADER = YES;
  2493. GCC_PREFIX_HEADER = "$(SRCROOT)/ZHRQ_GYZ/Others/Other/PrefixHeader.pch";
  2494. INFOPLIST_FILE = ZHRQ_GYZ/Plist/Info.plist;
  2495. IPHONEOS_DEPLOYMENT_TARGET = 8.0;
  2496. LD_MAP_FILE_PATH = "$(TARGET_TEMP_DIR)/$(PRODUCT_NAME)-LinkMap-$(CURRENT_VARIANT)-$(CURRENT_ARCH).txt";
  2497. LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks";
  2498. LIBRARY_SEARCH_PATHS = (
  2499. "$(inherited)",
  2500. "$(PROJECT_DIR)/ZHRQ_GYZ/Classes/Main/Lib/WeChatSDK",
  2501. "$(PROJECT_DIR)/ZHRQ_GYZ/Classes/Main/Lib/thirdlibs",
  2502. "$(PROJECT_DIR)/ZHRQ_GYZ/Other/Lib/thirdlibs",
  2503. "$(PROJECT_DIR)/ZHRQ_GYZ/Other/Lib/WeChatSDK",
  2504. "$(PROJECT_DIR)/ZHRQ_GYZ/Others/ThirdPart/thirdlibs",
  2505. "$(PROJECT_DIR)/ZHRQ_GYZ/Others/ThirdPart/WeChatSDK",
  2506. "$(PROJECT_DIR)/ZHRQ_GYZ/Others/ThirdPart/baiduMap/thirdlibs",
  2507. "$(PROJECT_DIR)/ZHRQ_GYZ/Others/ThirdPart/GtSdkLib",
  2508. );
  2509. OTHER_LDFLAGS = (
  2510. "$(inherited)",
  2511. "-ObjC",
  2512. "-l\"AFNetworking\"",
  2513. "-l\"MBProgressHUD\"",
  2514. "-l\"MJExtension\"",
  2515. "-l\"MJRefresh\"",
  2516. "-l\"SDWebImage\"",
  2517. "-l\"SVProgressHUD\"",
  2518. "-framework",
  2519. "\"CoreGraphics\"",
  2520. "-framework",
  2521. "\"ImageIO\"",
  2522. "-framework",
  2523. "\"MobileCoreServices\"",
  2524. "-framework",
  2525. "\"QuartzCore\"",
  2526. "-framework",
  2527. "\"Security\"",
  2528. "-framework",
  2529. "\"SystemConfiguration\"",
  2530. );
  2531. PRODUCT_BUNDLE_IDENTIFIER = com.ztx.www.ed.ZHRQGYZ;
  2532. PRODUCT_NAME = "$(TARGET_NAME)";
  2533. PROVISIONING_PROFILE = "";
  2534. PROVISIONING_PROFILE_SPECIFIER = "";
  2535. };
  2536. name = Debug;
  2537. };
  2538. F5C34CEB1EE166E40030E924 /* Release */ = {
  2539. isa = XCBuildConfiguration;
  2540. baseConfigurationReference = 79C127EFEDD1038FBD48AF43 /* Pods-ZTXWY.release.xcconfig */;
  2541. buildSettings = {
  2542. ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
  2543. ASSETCATALOG_COMPILER_LAUNCHIMAGE_NAME = LaunchImage;
  2544. CLANG_ENABLE_OBJC_ARC = YES;
  2545. CLANG_ENABLE_OBJC_WEAK = YES;
  2546. CODE_SIGN_ENTITLEMENTS = ZHRQ_GYZ/ZHRQ_GYZ.entitlements;
  2547. CODE_SIGN_IDENTITY = "iPhone Distribution: JiangSu Wisdom World Network Technology Co. Ltd. (U4VASASFAB)";
  2548. "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer";
  2549. DEVELOPMENT_TEAM = AJR7E7Z293;
  2550. ENABLE_BITCODE = NO;
  2551. FRAMEWORK_SEARCH_PATHS = (
  2552. "$(inherited)",
  2553. "$(PROJECT_DIR)/ZHRQ_GYZ/Classes/Main/Lib/Alipay",
  2554. "$(PROJECT_DIR)/ZHRQ_GYZ/Classes/Main/Lib/baiduMap",
  2555. "$(PROJECT_DIR)/ZHRQ_GYZ/Other/Lib/Alipay",
  2556. "$(PROJECT_DIR)/ZHRQ_GYZ/Other/Lib/baiduMap",
  2557. "$(PROJECT_DIR)/ZHRQ_GYZ/Others/ThirdPart/Alipay",
  2558. "$(PROJECT_DIR)/ZHRQ_GYZ/Others/ThirdPart/baiduMap",
  2559. );
  2560. GCC_INPUT_FILETYPE = automatic;
  2561. GCC_PRECOMPILE_PREFIX_HEADER = YES;
  2562. GCC_PREFIX_HEADER = "$(SRCROOT)/ZHRQ_GYZ/Others/Other/PrefixHeader.pch";
  2563. INFOPLIST_FILE = ZHRQ_GYZ/Plist/Info.plist;
  2564. IPHONEOS_DEPLOYMENT_TARGET = 8.0;
  2565. LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks";
  2566. LIBRARY_SEARCH_PATHS = (
  2567. "$(inherited)",
  2568. "$(PROJECT_DIR)/ZHRQ_GYZ/Classes/Main/Lib/WeChatSDK",
  2569. "$(PROJECT_DIR)/ZHRQ_GYZ/Classes/Main/Lib/thirdlibs",
  2570. "$(PROJECT_DIR)/ZHRQ_GYZ/Other/Lib/thirdlibs",
  2571. "$(PROJECT_DIR)/ZHRQ_GYZ/Other/Lib/WeChatSDK",
  2572. "$(PROJECT_DIR)/ZHRQ_GYZ/Others/ThirdPart/thirdlibs",
  2573. "$(PROJECT_DIR)/ZHRQ_GYZ/Others/ThirdPart/WeChatSDK",
  2574. "$(PROJECT_DIR)/ZHRQ_GYZ/Others/ThirdPart/baiduMap/thirdlibs",
  2575. "$(PROJECT_DIR)/ZHRQ_GYZ/Others/ThirdPart/GtSdkLib",
  2576. );
  2577. OTHER_LDFLAGS = (
  2578. "$(inherited)",
  2579. "-ObjC",
  2580. "-l\"AFNetworking\"",
  2581. "-l\"MBProgressHUD\"",
  2582. "-l\"MJExtension\"",
  2583. "-l\"MJRefresh\"",
  2584. "-l\"SDWebImage\"",
  2585. "-l\"SVProgressHUD\"",
  2586. "-framework",
  2587. "\"CoreGraphics\"",
  2588. "-framework",
  2589. "\"ImageIO\"",
  2590. "-framework",
  2591. "\"MobileCoreServices\"",
  2592. "-framework",
  2593. "\"QuartzCore\"",
  2594. "-framework",
  2595. "\"Security\"",
  2596. "-framework",
  2597. "\"SystemConfiguration\"",
  2598. );
  2599. OTHER_LIBTOOLFLAGS = "";
  2600. PRODUCT_BUNDLE_IDENTIFIER = com.ztx.www.ed.ZHRQGYZ;
  2601. PRODUCT_NAME = "$(TARGET_NAME)";
  2602. PROVISIONING_PROFILE = "";
  2603. PROVISIONING_PROFILE_SPECIFIER = "";
  2604. };
  2605. name = Release;
  2606. };
  2607. F5C34CED1EE166E40030E924 /* Debug */ = {
  2608. isa = XCBuildConfiguration;
  2609. buildSettings = {
  2610. BUNDLE_LOADER = "$(TEST_HOST)";
  2611. DEVELOPMENT_TEAM = AJR7E7Z293;
  2612. INFOPLIST_FILE = ZTXWYTests/Info.plist;
  2613. LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks";
  2614. PRODUCT_BUNDLE_IDENTIFIER = com.jsztx.www.ed.ZHRQGYZ.ZHRQ_GYZTests;
  2615. PRODUCT_NAME = "$(TARGET_NAME)";
  2616. TEST_HOST = "$(BUILT_PRODUCTS_DIR)/ZHRQ_GYZ.app/ZHRQ_GYZ";
  2617. };
  2618. name = Debug;
  2619. };
  2620. F5C34CEE1EE166E40030E924 /* Release */ = {
  2621. isa = XCBuildConfiguration;
  2622. buildSettings = {
  2623. BUNDLE_LOADER = "$(TEST_HOST)";
  2624. DEVELOPMENT_TEAM = AJR7E7Z293;
  2625. INFOPLIST_FILE = ZTXWYTests/Info.plist;
  2626. LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks";
  2627. PRODUCT_BUNDLE_IDENTIFIER = com.jsztx.www.ed.ZHRQGYZ.ZHRQ_GYZTests;
  2628. PRODUCT_NAME = "$(TARGET_NAME)";
  2629. TEST_HOST = "$(BUILT_PRODUCTS_DIR)/ZHRQ_GYZ.app/ZHRQ_GYZ";
  2630. };
  2631. name = Release;
  2632. };
  2633. F5C34CF01EE166E40030E924 /* Debug */ = {
  2634. isa = XCBuildConfiguration;
  2635. buildSettings = {
  2636. DEVELOPMENT_TEAM = AJR7E7Z293;
  2637. INFOPLIST_FILE = ZTXWYUITests/Info.plist;
  2638. LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks";
  2639. PRODUCT_BUNDLE_IDENTIFIER = com.jsztx.www.ed.ZHRQGYZ.ZHRQ_GYZUITests;
  2640. PRODUCT_NAME = "$(TARGET_NAME)";
  2641. TEST_TARGET_NAME = ZTXWY;
  2642. };
  2643. name = Debug;
  2644. };
  2645. F5C34CF11EE166E40030E924 /* Release */ = {
  2646. isa = XCBuildConfiguration;
  2647. buildSettings = {
  2648. DEVELOPMENT_TEAM = AJR7E7Z293;
  2649. INFOPLIST_FILE = ZTXWYUITests/Info.plist;
  2650. LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks";
  2651. PRODUCT_BUNDLE_IDENTIFIER = com.jsztx.www.ed.ZHRQGYZ.ZHRQ_GYZUITests;
  2652. PRODUCT_NAME = "$(TARGET_NAME)";
  2653. TEST_TARGET_NAME = ZTXWY;
  2654. };
  2655. name = Release;
  2656. };
  2657. /* End XCBuildConfiguration section */
  2658. /* Begin XCConfigurationList section */
  2659. F5C34CB41EE166E30030E924 /* Build configuration list for PBXProject "ZHRQ_GYZ" */ = {
  2660. isa = XCConfigurationList;
  2661. buildConfigurations = (
  2662. F5C34CE71EE166E40030E924 /* Debug */,
  2663. F5C34CE81EE166E40030E924 /* Release */,
  2664. );
  2665. defaultConfigurationIsVisible = 0;
  2666. defaultConfigurationName = Release;
  2667. };
  2668. F5C34CE91EE166E40030E924 /* Build configuration list for PBXNativeTarget "ZHRQ_GYZ" */ = {
  2669. isa = XCConfigurationList;
  2670. buildConfigurations = (
  2671. F5C34CEA1EE166E40030E924 /* Debug */,
  2672. F5C34CEB1EE166E40030E924 /* Release */,
  2673. );
  2674. defaultConfigurationIsVisible = 0;
  2675. defaultConfigurationName = Release;
  2676. };
  2677. F5C34CEC1EE166E40030E924 /* Build configuration list for PBXNativeTarget "ZHRQ_GYZTests" */ = {
  2678. isa = XCConfigurationList;
  2679. buildConfigurations = (
  2680. F5C34CED1EE166E40030E924 /* Debug */,
  2681. F5C34CEE1EE166E40030E924 /* Release */,
  2682. );
  2683. defaultConfigurationIsVisible = 0;
  2684. defaultConfigurationName = Release;
  2685. };
  2686. F5C34CEF1EE166E40030E924 /* Build configuration list for PBXNativeTarget "ZHRQ_GYZUITests" */ = {
  2687. isa = XCConfigurationList;
  2688. buildConfigurations = (
  2689. F5C34CF01EE166E40030E924 /* Debug */,
  2690. F5C34CF11EE166E40030E924 /* Release */,
  2691. );
  2692. defaultConfigurationIsVisible = 0;
  2693. defaultConfigurationName = Release;
  2694. };
  2695. /* End XCConfigurationList section */
  2696. /* Begin XCVersionGroup section */
  2697. 27ED2C851F0CBB8E001E6268 /* ZHRQ_GYZ.xcdatamodeld */ = {
  2698. isa = XCVersionGroup;
  2699. children = (
  2700. 27ED2C861F0CBB8E001E6268 /* ZHRQ_GYZ.xcdatamodel */,
  2701. );
  2702. currentVersion = 27ED2C861F0CBB8E001E6268 /* ZHRQ_GYZ.xcdatamodel */;
  2703. path = ZHRQ_GYZ.xcdatamodeld;
  2704. sourceTree = "<group>";
  2705. versionGroupType = wrapper.xcdatamodel;
  2706. };
  2707. /* End XCVersionGroup section */
  2708. };
  2709. rootObject = F5C34CB11EE166E30030E924 /* Project object */;
  2710. }