| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701470247034704470547064707470847094710471147124713471447154716471747184719472047214722472347244725472647274728472947304731473247334734473547364737473847394740474147424743474447454746474747484749475047514752475347544755475647574758475947604761476247634764476547664767476847694770477147724773477447754776477747784779478047814782478347844785478647874788478947904791479247934794479547964797479847994800480148024803480448054806480748084809481048114812481348144815481648174818481948204821482248234824482548264827482848294830483148324833483448354836483748384839484048414842484348444845484648474848484948504851485248534854485548564857485848594860486148624863486448654866486748684869487048714872487348744875487648774878487948804881488248834884488548864887488848894890489148924893489448954896489748984899490049014902490349044905490649074908490949104911491249134914491549164917491849194920492149224923492449254926492749284929493049314932493349344935493649374938493949404941494249434944494549464947494849494950495149524953495449554956495749584959496049614962496349644965496649674968496949704971497249734974497549764977497849794980498149824983498449854986498749884989499049914992499349944995499649974998499950005001500250035004500550065007500850095010501150125013501450155016501750185019502050215022502350245025502650275028502950305031503250335034503550365037503850395040504150425043504450455046504750485049505050515052505350545055505650575058505950605061506250635064506550665067506850695070507150725073507450755076507750785079508050815082508350845085508650875088508950905091509250935094509550965097509850995100510151025103510451055106510751085109511051115112511351145115511651175118511951205121512251235124512551265127512851295130513151325133513451355136 | 
							- using Aspose.Cells;
 
- using Aspose.Words;
 
- using EyeSoft.Extensions;
 
- using Microsoft.IdentityModel.Tokens;
 
- using OASystem.API.OAMethodLib;
 
- using OASystem.API.OAMethodLib.QiYeWeChatAPI.AppNotice;
 
- using OASystem.Domain.AesEncryption;
 
- using OASystem.Domain.Dtos.Groups;
 
- using OASystem.Domain.Entities.Groups;
 
- using OASystem.Domain.ViewModels.Groups;
 
- using OASystem.Infrastructure.Repositories.Groups;
 
- using System.ComponentModel.DataAnnotations;
 
- using System.Data;
 
- using System.Diagnostics;
 
- using static OASystem.API.OAMethodLib.JWTHelper;
 
- namespace OASystem.API.Controllers
 
- {
 
-     /// <summary>
 
-     /// 资料相关
 
-     /// </summary>
 
-     //[Authorize]
 
-     [Route("api/[controller]/[action]")]
 
-     public class ResourceController : ControllerBase
 
-     {
 
-         private readonly IMapper _mapper;
 
-         private readonly SqlSugarClient _sqlSugar;
 
-         private readonly IConfiguration _config;
 
-         private readonly CarDataRepository _carDataRep;
 
-         private readonly LocalGuideDataRepository _localGuideDataRep;
 
-         private readonly ThreeCodeRepository _ThreeCodeRep;
 
-         private readonly HotelDataRepository _hotelDataRep;
 
-         private readonly ResItemInfoRepository _resItemInfoRep;
 
-         private readonly SetDataRepository _setDataRepository;
 
-         private readonly CountryFeeRepository _countryFeeRep;
 
-         private readonly SetDataTypeRepository _setDataTypeRep;
 
-         private readonly AirTicketAgentRepository _airTicketAgentRep;
 
-         private readonly InvitationOfficialActivityDataRepository _InvitationOfficialActivityDataRep;
 
-         private readonly OfficialActivitiesRepository _officialActivitiesRep;
 
-         private readonly AskDataRepository _askDataRep;
 
-         private readonly TicketBlackCodeRepository _ticketBlackCodeRep;
 
-         private readonly TourClientListRepository _tourClientListRep;
 
-         private readonly DelegationInfoRepository _delegationInfoRep;
 
-         private readonly TranslatorLibraryRepository _translatorRep;
 
-         private readonly MediaSuppliersRepository _mediaSupplierRep;
 
-         private readonly List<int> _portIds;
 
-         private readonly BasicInsuranceCostRepository _insuranceCostRep;
 
-         private readonly GamesBudgetMasterRepository _gamesBudgetMasterRep;
 
-         /// <summary>
 
-         /// 签证费用归属省份静态数据
 
-         /// </summary>
 
-         private static readonly List<KeyValuePair<int, string>> _provinceData = new()
 
-         {
 
-             new(122, "四川"),
 
-             new(132, "云南"),
 
-             new(103, "重庆"),
 
-             new(108, "贵州")
 
-         };
 
-         public ResourceController(
 
-             IMapper mapper,
 
-             IConfiguration config,
 
-             SqlSugarClient sqlSugar,
 
-             CarDataRepository carDataRep,
 
-             LocalGuideDataRepository localGuideDataRep,
 
-             ThreeCodeRepository threeCodeRep,
 
-             HotelDataRepository hotelDataRep,
 
-             ResItemInfoRepository resItemInfoRep,
 
-             SetDataRepository setDataRepository,
 
-             CountryFeeRepository countryFeeRep,
 
-             SetDataTypeRepository setDataTypeRep,
 
-             AirTicketAgentRepository airTicketAgentRep,
 
-             InvitationOfficialActivityDataRepository invitationOfficialActivityDataRep,
 
-             OfficialActivitiesRepository officialActivitiesRep,
 
-             AskDataRepository askDataRep,
 
-             TicketBlackCodeRepository ticketBlackCodeRep,
 
-             TourClientListRepository tourClientListRep,
 
-             DelegationInfoRepository delegationInfoRep,
 
-             TranslatorLibraryRepository translatorRep,
 
-             MediaSuppliersRepository mediaSupplierRep,
 
-             BasicInsuranceCostRepository insuranceCostRep,
 
-             GamesBudgetMasterRepository gamesBudgetMasterRep
 
-             )
 
-         {
 
-             _mapper = mapper;
 
-             _config = config;
 
-             _sqlSugar = sqlSugar;
 
-             _carDataRep = carDataRep;
 
-             _localGuideDataRep = localGuideDataRep;
 
-             _ThreeCodeRep = threeCodeRep;
 
-             _hotelDataRep = hotelDataRep;
 
-             _resItemInfoRep = resItemInfoRep;
 
-             _setDataRepository = setDataRepository;
 
-             _countryFeeRep = countryFeeRep;
 
-             _setDataTypeRep = setDataTypeRep;
 
-             _airTicketAgentRep = airTicketAgentRep;
 
-             _InvitationOfficialActivityDataRep = invitationOfficialActivityDataRep;
 
-             _officialActivitiesRep = officialActivitiesRep;
 
-             _askDataRep = askDataRep;
 
-             _ticketBlackCodeRep = ticketBlackCodeRep;
 
-             _tourClientListRep = tourClientListRep;
 
-             _delegationInfoRep = delegationInfoRep;
 
-             _translatorRep = translatorRep;
 
-             _mediaSupplierRep = mediaSupplierRep;
 
-             _portIds = new List<int> { 1, 2, 3 };
 
-             _insuranceCostRep = insuranceCostRep;
 
-             _gamesBudgetMasterRep = gamesBudgetMasterRep;
 
-         }
 
-         #region 车公司资料板块
 
-         /// <summary>
 
-         /// 车公司信息查询
 
-         /// </summary>
 
-         /// <returns></returns>
 
-         [HttpPost]
 
-         [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
 
-         public async Task<IActionResult> QueryCarData(QueryCarDataDto dto)
 
-         {
 
-             Result LocalGuide = await _carDataRep.QueryCarData(dto);
 
-             if (LocalGuide.Code == 0)
 
-             {
 
-                 return Ok(JsonView(true, "查询成功", LocalGuide.Data));
 
-             }
 
-             else
 
-             {
 
-                 return Ok(JsonView(false, LocalGuide.Msg));
 
-             }
 
-         }
 
-         /// <summary>
 
-         /// 车公司资料下拉框数据
 
-         /// </summary>
 
-         /// <returns></returns>
 
-         [HttpPost]
 
-         [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
 
-         public async Task<IActionResult> QueryCarSelect()
 
-         {
 
-             var carData = _carDataRep.QueryDto<Res_CarData, CarDataSelectView>().ToList();
 
-             if (carData.Count == 0)
 
-             {
 
-                 return Ok(JsonView(false, "暂无数据!"));
 
-             }
 
-             foreach (var item in carData) EncryptionProcessor.DecryptProperties(item);
 
-             carData.Add(new CarDataSelectView { Id = 0, UnitArea = "全部" });
 
-             carData = carData.Where((x, i) => carData.FindIndex(z => z.UnitArea == x.UnitArea) == i).ToList();
 
-             carData = carData.OrderBy(x => x.Id).ToList();
 
-             var data = new List<CarDataSelectView>();
 
-             foreach (CarDataSelectView car in carData)
 
-             {
 
-                 if (!string.IsNullOrWhiteSpace(car.UnitArea))
 
-                 {
 
-                     data.Add(car);
 
-                 }
 
-             }
 
-             return Ok(JsonView(true, "查询成功", data));
 
-         }
 
-         /// <summary>
 
-         /// 根据Id查询车公司详细数据
 
-         /// </summary>
 
-         /// <returns></returns>
 
-         [HttpPost]
 
-         [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
 
-         public async Task<IActionResult> QuerCarDataDetailById(QueryCarDataDetailDto dto)
 
-         {
 
-             string sql = string.Format(@" Select * From Res_CarData With(Nolock) Where Id = {0} ", dto.Id);
 
-             var info = _resItemInfoRep._sqlSugar.SqlQueryable<CarDataDetailDataView>(sql).First();
 
-             if (info == null)
 
-             {
 
-                 return Ok(JsonView(false, "未找到相关数据!"));
 
-             }
 
-             EncryptionProcessor.DecryptProperties(info);
 
-             return Ok(JsonView(true, "查询成功", info));
 
-         }
 
-         /// <summary>
 
-         /// 车公司信息添加
 
-         /// </summary>
 
-         /// <returns></returns>
 
-         [HttpPost]
 
-         [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
 
-         public async Task<IActionResult> AddCarData(AddCarDataDto dto)
 
-         {
 
-             if (string.IsNullOrEmpty(dto.UnitArea)) return Ok(JsonView(false, "请检查单位区域是否填写!"));
 
-             if (string.IsNullOrEmpty(dto.UnitName)) return Ok(JsonView(false, "请检查单位名称是否填写!"));
 
-             if (string.IsNullOrEmpty(dto.Contact)) return Ok(JsonView(false, "请检查单位联系人是否填写!"));
 
-             if (string.IsNullOrEmpty(dto.ContactTel)) return Ok(JsonView(false, "请检查联系方式是否填写正确!"));
 
-             var carDadaInfo = _carDataRep
 
-                 .QueryDto<Res_CarData, CarDataView>(a => a.UnitArea == dto.UnitArea &&
 
-                                                          a.UnitName == dto.UnitName &&
 
-                                                          a.Contact == dto.Contact &&
 
-                                                          a.ContactTel == dto.ContactTel
 
-                                                     )
 
-                 .First();
 
-             if (carDadaInfo != null) return Ok(JsonView(false, "该信息已存在,请勿重复添加!"));
 
-             var carData = _mapper.Map<Res_CarData>(dto);
 
-             carData.LastUpdateUserId = dto.CreateUserId;
 
-             carData.LastUpdateTime = DateTime.Now;
 
-             EncryptionProcessor.EncryptProperties(carData);
 
-             int id = await _carDataRep.AddAsyncReturnId(carData);
 
-             if (id < 1) return Ok(JsonView(false, "添加失败!"));
 
-             return Ok(JsonView(true, "添加成功", new { Id = id }));
 
-         }
 
-         /// <summary>
 
-         /// 车公司信息修改
 
-         /// </summary>
 
-         /// <returns></returns>
 
-         [HttpPost]
 
-         [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
 
-         public async Task<IActionResult> UpCarData(UpCarDataDto dto)
 
-         {
 
-             if (string.IsNullOrEmpty(dto.UnitArea)) return Ok(JsonView(false, "请检查单位区域是否填写!"));
 
-             if (string.IsNullOrEmpty(dto.UnitName)) return Ok(JsonView(false, "请检查单位名称是否填写!"));
 
-             if (string.IsNullOrEmpty(dto.Contact)) return Ok(JsonView(false, "请检查单位联系人是否填写!"));
 
-             if (string.IsNullOrEmpty(dto.ContactTel)) return Ok(JsonView(false, "请检查联系方式是否填写正确!"));
 
-             var carData = _mapper.Map<Res_CarData>(dto);
 
-             carData.LastUpdateTime = DateTime.Now;
 
-             EncryptionProcessor.EncryptProperties(carData);
 
-             var res = await _sqlSugar.Updateable(carData)
 
-                 .IgnoreColumns(x => new { x.CreateUserId, x.CreateTime, x.DeleteTime, x.DeleteUserId, x.IsDel })
 
-                 .ExecuteCommandAsync();
 
-             if (res < 1) { return Ok(JsonView(false, "修改失败!")); }
 
-             return Ok(JsonView(true, "修改成功"));
 
-         }
 
-         /// <summary>
 
-         /// 车公司信息删除
 
-         /// </summary>
 
-         /// <returns></returns>
 
-         [HttpPost]
 
-         [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
 
-         public async Task<IActionResult> DelCarData(DelCarDataDto dto)
 
-         {
 
-             bool res = await _carDataRep.SoftDeleteByIdAsync<Res_CarData>(dto.Id.ToString(), dto.DeleteUserId);
 
-             if (!res) { return Ok(JsonView(false, "删除失败!")); }
 
-             return Ok(JsonView(true, "删除成功"));
 
-         }
 
-         #endregion
 
-         #region 导游地接资料板块
 
-         [HttpPost]
 
-         [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
 
-         public async Task<IActionResult> LocalGuideBatchEncryption()
 
-         {
 
-             var infos = await _sqlSugar.Queryable<Res_LocalGuideData>().ToListAsync();
 
-             foreach (var item in infos) EncryptionProcessor.EncryptProperties(item);
 
-             await _sqlSugar.Updateable(infos).ExecuteCommandAsync();
 
-             return Ok(JsonView(true));
 
-         }
 
-         /// <summary>
 
-         /// 导游地接资料查询
 
-         /// </summary>
 
-         /// <param name="dto"></param>
 
-         /// <returns></returns>
 
-         [HttpPost]
 
-         [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
 
-         public async Task<IActionResult> QueryLocalGuide(QueryLocalGuide dto)
 
-         {
 
-             Stopwatch stopwatch = Stopwatch.StartNew();
 
-             Result LocalGuide = await _localGuideDataRep.QueryLocalGuide(dto);
 
-             if (LocalGuide.Code == 0)
 
-             {
 
-                 stopwatch.Stop();
 
-                 return Ok(JsonView(true, $"查询成功!耗时:{stopwatch.ElapsedMilliseconds} 毫秒", LocalGuide.Data));
 
-             }
 
-             stopwatch.Stop();
 
-             return Ok(JsonView(false, LocalGuide.Msg + $"  耗时:{stopwatch.ElapsedMilliseconds} 毫秒"));
 
-         }
 
-         /// <summary>
 
-         /// 导游地接资料下拉框数据
 
-         /// </summary>
 
-         /// <returns></returns>
 
-         [HttpPost]
 
-         [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
 
-         public async Task<IActionResult> QueryLocalGuideSelect()
 
-         {
 
-             var localGuides = _carDataRep.QueryDto<Res_LocalGuideData, QueryLocalGuideSelectView>().ToList();
 
-             if (localGuides.Count == 0)
 
-             {
 
-                 return Ok(JsonView(false, "暂无数据!"));
 
-             }
 
-             foreach (var item in localGuides) EncryptionProcessor.DecryptProperties(item);
 
-             localGuides.Add(new QueryLocalGuideSelectView { Id = 0, UnitArea = "全部" });
 
-             localGuides = localGuides.Where((x, i) => localGuides.FindIndex(z => z.UnitArea == x.UnitArea && !string.IsNullOrEmpty(z.UnitArea)) == i).ToList();
 
-             localGuides = localGuides.OrderBy(x => x.Id).ToList();
 
-             var data = new List<QueryLocalGuideSelectView>();
 
-             foreach (QueryLocalGuideSelectView Local in localGuides)
 
-             {
 
-                 if (!string.IsNullOrWhiteSpace(Local.UnitArea))
 
-                 {
 
-                     data.Add(Local);
 
-                 }
 
-             }
 
-             return Ok(JsonView(true, "查询成功", data));
 
-         }
 
-         /// <summary>
 
-         /// 根据Id查询地接详细数据
 
-         /// </summary>
 
-         /// <returns></returns>
 
-         [HttpPost]
 
-         [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
 
-         public async Task<IActionResult> QueryLocalGuideDetailById(QueryLocalGuideDetailDto dto)
 
-         {
 
-             string sql = string.Format(@" Select * From Res_LocalGuideData With(Nolock) Where Id = {0} ", dto.Id);
 
-             var info = _resItemInfoRep._sqlSugar.SqlQueryable<LocalGuideDetailDataView>(sql).First();
 
-             if (info == null)
 
-             {
 
-                 return Ok(JsonView(false, "未找到相关数据!"));
 
-             }
 
-             EncryptionProcessor.DecryptProperties(info);
 
-             return Ok(JsonView(true, "查询成功", info));
 
-         }
 
-         /// <summary>
 
-         /// 导游地接信息操作(Status:1.新增,2.修改)
 
-         /// </summary>
 
-         /// <returns></returns>
 
-         [HttpPost]
 
-         [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
 
-         public async Task<IActionResult> OperationLocalGuide(LocalGuideOperationDto dto)
 
-         {
 
-             if (string.IsNullOrEmpty(dto.UnitArea)) return Ok(JsonView(false, "请检查单位区域是否填写!"));
 
-             if (string.IsNullOrEmpty(dto.UnitName)) return Ok(JsonView(false, "请检查单位名称是否填写!"));
 
-             if (string.IsNullOrEmpty(dto.Contact)) return Ok(JsonView(false, "请检查单位联系人是否填写!"));
 
-             if (string.IsNullOrEmpty(dto.ContactTel)) return Ok(JsonView(false, "请检查联系方式是否填写正确!"));
 
-             Result result = await _localGuideDataRep.LocalGuideOperation(dto);
 
-             if (result.Code != 0)
 
-             {
 
-                 return Ok(JsonView(false, result.Msg));
 
-             }
 
-             return Ok(JsonView(true, result.Msg));
 
-         }
 
-         /// <summary>
 
-         /// 导游地接信息操作(删除)
 
-         /// </summary>
 
-         /// <returns></returns>
 
-         [HttpPost]
 
-         [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
 
-         public async Task<IActionResult> DelLocalGuide(LocalGuideDelDto dto)
 
-         {
 
-             var res = await _localGuideDataRep.SoftDeleteByIdAsync<Res_LocalGuideData>(dto.Id.ToString(), dto.DeleteUserId);
 
-             if (!res)
 
-             {
 
-                 return Ok(JsonView(false, "删除失败"));
 
-             }
 
-             return Ok(JsonView(true, "删除成功!"));
 
-         }
 
-         #endregion
 
-         #region 机场三字码信息
 
-         /// <summary>
 
-         /// 机场三字码查询
 
-         /// </summary>
 
-         /// <param name="dto"></param>
 
-         /// <returns></returns>
 
-         [HttpPost]
 
-         [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
 
-         public async Task<IActionResult> QueryThreeCode(QueryThreeCodeDto dto)
 
-         {
 
-             try
 
-             {
 
-                 Result LocalGuide = await _ThreeCodeRep.QueryThreeCode(dto);
 
-                 if (LocalGuide.Code == 0)
 
-                 {
 
-                     return Ok(JsonView(true, "查询成功", LocalGuide.Data));
 
-                 }
 
-                 else
 
-                 {
 
-                     return Ok(JsonView(false, LocalGuide.Msg));
 
-                 }
 
-             }
 
-             catch (Exception ex)
 
-             {
 
-                 return Ok(JsonView(false, "程序错误!"));
 
-                 throw;
 
-             }
 
-         }
 
-         /// <summary>
 
-         /// 机场三字码数据城市下拉框数据
 
-         /// </summary>
 
-         /// <returns></returns>
 
-         [HttpPost]
 
-         [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
 
-         public async Task<IActionResult> QueryThreeCodeSelect()
 
-         {
 
-             try
 
-             {
 
-                 var ThreeCode = _carDataRep.QueryDto<Res_ThreeCode, ThreeCodeSelectView>().ToList();
 
-                 if (ThreeCode.Count == 0)
 
-                 {
 
-                     return Ok(JsonView(false, "暂无数据!"));
 
-                 }
 
-                 ThreeCode.Add(new ThreeCodeSelectView { Id = 0, City = "全部" });
 
-                 ThreeCode = ThreeCode.Where((x, i) => ThreeCode.FindIndex(z => z.City == x.City && z.City != "") == i).ToList();
 
-                 ThreeCode = ThreeCode.OrderBy(x => x.Id).ToList();
 
-                 List<ThreeCodeSelectView> data = new List<ThreeCodeSelectView>();
 
-                 foreach (ThreeCodeSelectView _ThreeCode in ThreeCode)
 
-                 {
 
-                     if (!string.IsNullOrWhiteSpace(_ThreeCode.City))
 
-                     {
 
-                         data.Add(_ThreeCode);
 
-                     }
 
-                 }
 
-                 return Ok(JsonView(true, "查询成功", data));
 
-             }
 
-             catch (Exception)
 
-             {
 
-                 return Ok(JsonView(false, "程序错误!"));
 
-                 throw;
 
-             }
 
-         }
 
-         /// <summary>
 
-         /// 机场三字码资料操作(Status:1.新增,2.修改)
 
-         /// </summary>
 
-         /// <param name="dto"></param>
 
-         /// <returns></returns>
 
-         [HttpPost]
 
-         [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
 
-         public async Task<IActionResult> OperationThreeCode(ThreeCodeOperationDto dto)
 
-         {
 
-             try
 
-             {
 
-                 if (dto.Three == "")
 
-                 {
 
-                     return Ok(JsonView(false, "请检查三字码是否填写!"));
 
-                 }
 
-                 if (dto.Country == "")
 
-                 {
 
-                     return Ok(JsonView(false, "请检查国家是否填写!"));
 
-                 }
 
-                 if (dto.City == "")
 
-                 {
 
-                     return Ok(JsonView(false, "请检查城市是否填写正确!"));
 
-                 }
 
-                 if (dto.AirPort == "")
 
-                 {
 
-                     return Ok(JsonView(false, "请检查机场是否填写正确!"));
 
-                 }
 
-                 Result result = await _ThreeCodeRep.ThreeCodeOperation(dto);
 
-                 if (result.Code != 0)
 
-                 {
 
-                     return Ok(JsonView(false, result.Msg));
 
-                 }
 
-                 return Ok(JsonView(true, result.Msg));
 
-             }
 
-             catch (Exception ex)
 
-             {
 
-                 return Ok(JsonView(false, "程序错误!"));
 
-                 throw;
 
-             }
 
-         }
 
-         /// <summary>
 
-         /// 机场三字码资料操作(删除)
 
-         /// </summary>
 
-         /// <returns></returns>
 
-         [HttpPost]
 
-         [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
 
-         public async Task<IActionResult> DelThreeCode(ThreeCodeDelDto dto)
 
-         {
 
-             try
 
-             {
 
-                 var res = await _ThreeCodeRep.SoftDeleteByIdAsync<Res_ThreeCode>(dto.Id.ToString(), dto.DeleteUserId);
 
-                 if (!res)
 
-                 {
 
-                     return Ok(JsonView(false, "删除失败"));
 
-                 }
 
-                 return Ok(JsonView(true, "删除成功!"));
 
-             }
 
-             catch (Exception ex)
 
-             {
 
-                 return Ok(JsonView(false, "程序错误!"));
 
-                 throw;
 
-             }
 
-         }
 
-         /// <summary>
 
-         ///根据ID查询三字码信息
 
-         /// </summary>
 
-         /// <returns></returns>
 
-         [HttpPost]
 
-         public IActionResult QuerySingleThreeCode(QuerySingleThreeCode dto)
 
-         {
 
-             var jw = JsonView(false);
 
-             var single = _sqlSugar.Queryable<Res_ThreeCode>().First(x => x.Id == dto.ID && x.IsDel == 0);
 
-             if (single != null)
 
-             {
 
-                 jw = JsonView(true, "获取成功!", new
 
-                 {
 
-                     single.Three,
 
-                     Four = single.Four?.Trim(),
 
-                     single.AirPort,
 
-                     single.AirPort_En,
 
-                     single.City,
 
-                     single.Country,
 
-                     single.Remark
 
-                 });
 
-             }
 
-             else
 
-             {
 
-                 jw.Msg = "暂无!";
 
-             }
 
-             return Ok(jw);
 
-         }
 
-         #endregion
 
-         #region 代理出票合作方资料
 
-         /// <summary>
 
-         /// 代理出票合作方资料
 
-         /// </summary>
 
-         /// <param name="dto"></param>
 
-         /// <returns></returns>
 
-         [HttpPost]
 
-         [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
 
-         public async Task<IActionResult> QueryAirTicketAgent(DtoBase dto)
 
-         {
 
-             var res_AirTicketAgents = _airTicketAgentRep.Query<Res_AirTicketAgent>(a => a.IsDel == 0).ToList();
 
-             if (res_AirTicketAgents.Count > 1)
 
-             {
 
-                 res_AirTicketAgents = res_AirTicketAgents.OrderByDescending(a => a.CreateTime).ToList();
 
-                 if (dto.PageSize == 0 && dto.PageIndex == 0)
 
-                 {
 
-                     foreach (var item in res_AirTicketAgents) EncryptionProcessor.DecryptProperties(item);
 
-                     return Ok(JsonView(true, "查询成功!", res_AirTicketAgents));
 
-                 }
 
-                 else
 
-                 {
 
-                     int count = res_AirTicketAgents.Count;
 
-                     float totalPage = (float)count / dto.PageSize;//总页数
 
-                     if (totalPage == 0) totalPage = 1;
 
-                     else totalPage = (int)Math.Ceiling((double)totalPage);
 
-                     var _AirTicketAgent = new List<Res_AirTicketAgent>();
 
-                     for (int i = 0; i < dto.PageSize; i++)
 
-                     {
 
-                         var RowIndex = i + (dto.PageIndex - 1) * dto.PageSize;
 
-                         if (RowIndex < res_AirTicketAgents.Count)
 
-                         {
 
-                             EncryptionProcessor.DecryptProperties(res_AirTicketAgents[RowIndex]);
 
-                             _AirTicketAgent.Add(res_AirTicketAgents[RowIndex]);
 
-                         }
 
-                         else break;
 
-                     }
 
-                     return Ok(JsonView(true, "查询成功!", new { pageCount = count, totalPage = (int)totalPage, pageIndex = dto.PageIndex, pageSize = dto.PageSize, pageSource = _AirTicketAgent }));
 
-                 }
 
-             }
 
-             return Ok(JsonView(false, "暂无数据!"));
 
-         }
 
-         /// <summary>
 
-         /// 代理出票合作方资料操作(Status:1.新增,2.修改)
 
-         /// </summary>
 
-         /// <param name="dto"></param>
 
-         /// <returns></returns>
 
-         [HttpPost]
 
-         [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
 
-         public async Task<IActionResult> OpAirTicketAgent(OpAirTicketAgentDto dto)
 
-         {
 
-             if (string.IsNullOrEmpty(dto.Account)) return Ok(JsonView(false, "请检查代理商账户是否填写!"));
 
-             if (string.IsNullOrEmpty(dto.Bank)) return Ok(JsonView(false, "请检查代理商银行是否填写!"));
 
-             if (string.IsNullOrEmpty(dto.Name)) return Ok(JsonView(false, "请检查代理商名称是否填写正确!"));
 
-             Result result = await _airTicketAgentRep.OpAirTicketAgent(dto);
 
-             if (result.Code != 0) return Ok(JsonView(false, result.Msg));
 
-             return Ok(JsonView(true, result.Msg));
 
-         }
 
-         /// <summary>
 
-         /// 代理出票合作方资料操作(删除)
 
-         /// </summary>
 
-         /// <returns></returns>
 
-         [HttpPost]
 
-         [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
 
-         public async Task<IActionResult> DelAirTicketAgent(DelBaseDto dto)
 
-         {
 
-             var res = await _airTicketAgentRep.SoftDeleteByIdAsync<Res_AirTicketAgent>(dto.Id.ToString(), dto.DeleteUserId);
 
-             if (!res) return Ok(JsonView(false, "删除失败"));
 
-             return Ok(JsonView(true, "删除成功!"));
 
-         }
 
-         #endregion
 
-         #region 酒店资料数据
 
-         /// <summary>
 
-         /// 酒店信息查询 Page
 
-         /// </summary>
 
-         /// <param name="dto"></param>
 
-         /// <returns></returns>
 
-         [HttpPost]
 
-         [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
 
-         public async Task<IActionResult> QueryHotelData(QueryHotelDataDto dto)
 
-         {
 
-             string sqlWhere = string.Empty;
 
-             if (!string.IsNullOrWhiteSpace(dto.Name))
 
-             {
 
-                 sqlWhere += string.Format(@" And hd.Name like '%{0}%'", AesEncryptionHelper.Encrypt(dto.Name));
 
-             }
 
-             if (!string.IsNullOrWhiteSpace(dto.City) && dto.City != "全部")
 
-             {
 
-                 sqlWhere += string.Format(@" And hd.City like '%{0}%'", AesEncryptionHelper.Encrypt(dto.City));
 
-             }
 
-             if (!string.IsNullOrWhiteSpace(dto.Contact))
 
-             {
 
-                 sqlWhere += string.Format(@" And hd.Contact like '%{0}%'", AesEncryptionHelper.Encrypt(dto.Contact));
 
-             }
 
-             if (!string.IsNullOrWhiteSpace(dto.ContactPhone))
 
-             {
 
-                 sqlWhere += string.Format(@" And hd.ContactPhone like '%{0}%'", AesEncryptionHelper.Encrypt(dto.ContactPhone));
 
-             }
 
-             sqlWhere += string.Format(@" And hd.IsDel={0}", 0);
 
-             if (!string.IsNullOrEmpty(sqlWhere.Trim()))
 
-             {
 
-                 Regex r = new Regex("And");
 
-                 sqlWhere = r.Replace(sqlWhere, "Where", 1);
 
-             }
 
-             string sql = string.Format(@"SELECT
 
-                                            *
 
-                                          FROM
 
-                                            (
 
-                                              SELECT
 
-                                                ROW_NUMBER() OVER (
 
-                                                  ORDER BY
 
-                                                    hd.CreateTime DESC
 
-                                                ) AS Row_Number,
 
-                                                hd.Id,
 
-                                                hd.City,
 
-                                                hd.[Name],
 
-                                                hd.Tel,
 
-                                                hd.Fax,
 
-                                                hd.Contact,
 
-                                                hd.ContactPhone,
 
-                                                u.CnName AS CreateUserName,
 
-                                                hd.CreateTime
 
-                                              FROM
 
-                                                Res_HotelData hd
 
-                                              WITH
 
-                                                (NoLock)
 
-                                                LEFT JOIN Sys_Users u
 
-                                              WITH
 
-                                                (NoLock) ON hd.CreateUserId = u.Id {0} 
 
-                                            ) Temp
 
-                                          ", sqlWhere);
 
-             if (dto.PortType == 1)
 
-             {
 
-                 var HotelDataData = await _sqlSugar.SqlQueryable<HotelDataItemView>(sql).ToListAsync();
 
-                 if (HotelDataData.Count == 0)
 
-                 {
 
-                     return Ok(JsonView(false, "暂无数据"));
 
-                 }
 
-                 foreach (var item in HotelDataData)
 
-                 {
 
-                     EncryptionProcessor.DecryptProperties(item);
 
-                 }
 
-                 return Ok(JsonView(true, "操作成功", HotelDataData));
 
-             }
 
-             else if (dto.PortType == 2 || dto.PortType == 3)
 
-             {
 
-                 RefAsync<int> total = 0;//REF和OUT不支持异步,想要真的异步这是最优解
 
-                 var data = await _sqlSugar.SqlQueryable<HotelDataItemView>(sql).ToPageListAsync(dto.PageIndex, dto.PageSize, total); //ToPageAsync
 
-                 foreach (var item in data) EncryptionProcessor.DecryptProperties(item);
 
-                 return Ok(JsonView(true, "操作成功", data, total));
 
-             }
 
-             else return Ok(JsonView(false, "请传入PortType参数!1:Web,2:Android,3:IOS"));
 
-         }
 
-         /// <summary>
 
-         /// 酒店资料
 
-         /// 详情
 
-         /// add time:2024-05-14 11:57:10
 
-         /// </summary>
 
-         /// <returns></returns>
 
-         [HttpPost]
 
-         [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
 
-         public async Task<IActionResult> QueryHotelDataInfo(QueryHotelDataInfoDto dto)
 
-         {
 
-             var _view = await _hotelDataRep._Info(dto.PortType, dto.Id);
 
-             if (_view.Code == 0)
 
-             {
 
-                 return Ok(JsonView(true, _view.Msg, _view.Data));
 
-             }
 
-             return Ok(JsonView(false, _view.Msg));
 
-         }
 
-         /// <summary>
 
-         /// 酒店资料下拉框数据
 
-         /// </summary>
 
-         /// <returns></returns>
 
-         [HttpPost]
 
-         [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
 
-         public async Task<IActionResult> QueryHotelDataSelect()
 
-         {
 
-             try
 
-             {
 
-                 var HotelData = _carDataRep.QueryDto<Res_HotelData, QueryHotelDataSelect>().ToList();
 
-                 if (HotelData.Count == 0)
 
-                 {
 
-                     return Ok(JsonView(false, "暂无数据!"));
 
-                 }
 
-                 //解密
 
-                 foreach (var item in HotelData)
 
-                 {
 
-                     EncryptionProcessor.DecryptProperties(item);
 
-                 }
 
-                 HotelData.Add(new QueryHotelDataSelect { Id = 0, City = "全部" });
 
-                 HotelData = HotelData.Where((x, i) => HotelData.FindIndex(z => z.City == x.City && z.City != "") == i).ToList();
 
-                 HotelData = HotelData.OrderBy(x => x.Id).ToList();
 
-                 var data = new List<QueryHotelDataSelect>();
 
-                 foreach (var Hotel in HotelData)
 
-                 {
 
-                     if (!string.IsNullOrWhiteSpace(Hotel.City))
 
-                     {
 
-                         data.Add(Hotel);
 
-                     }
 
-                 }
 
-                 return Ok(JsonView(true, "查询成功", data));
 
-             }
 
-             catch (Exception)
 
-             {
 
-                 return Ok(JsonView(false, "程序错误!"));
 
-                 throw;
 
-             }
 
-         }
 
-         /// <summary>
 
-         /// 酒店资料操作(Status:1.新增,2.修改)
 
-         /// </summary>
 
-         /// <param name="dto"></param>
 
-         /// <returns></returns>
 
-         [HttpPost]
 
-         [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
 
-         public async Task<IActionResult> OperationHotelData(OperationHotelDto dto)
 
-         {
 
-             if (string.IsNullOrEmpty(dto.City)) return Ok(JsonView(false, "请检查酒店所在城市是否填写!"));
 
-             if (string.IsNullOrEmpty(dto.Name)) return Ok(JsonView(false, "请检查酒店名称是否填写!"));
 
-             if (string.IsNullOrEmpty(dto.Address)) return Ok(JsonView(false, "请检查酒店地址是否填写正确!"));
 
-             if (string.IsNullOrEmpty(dto.Tel)) return Ok(JsonView(false, "请检查酒店联系方式是否填写正确!"));
 
-             Result result = await _hotelDataRep.OperationHotelData(dto);
 
-             if (result.Code != 0) return Ok(JsonView(false, result.Msg));
 
-             return Ok(JsonView(true, result.Msg));
 
-         }
 
-         /// <summary>
 
-         /// 酒店资料操作(删除)
 
-         /// </summary>
 
-         /// <returns></returns>
 
-         [HttpPost]
 
-         [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
 
-         public async Task<IActionResult> DelHotelData(DelHotelDataDto dto)
 
-         {
 
-             try
 
-             {
 
-                 var res = await _hotelDataRep.SoftDeleteByIdAsync<Res_HotelData>(dto.Id.ToString(), dto.DeleteUserId);
 
-                 if (!res)
 
-                 {
 
-                     return Ok(JsonView(false, "删除失败"));
 
-                 }
 
-                 return Ok(JsonView(true, "删除成功!"));
 
-             }
 
-             catch (Exception ex)
 
-             {
 
-                 return Ok(JsonView(false, "程序错误!"));
 
-                 throw;
 
-             }
 
-         }
 
-         #endregion
 
-         #region 签证费用资料
 
-         /// <summary>
 
-         /// 签证费用资料查询
 
-         /// </summary>
 
-         /// <param name="dto"></param>
 
-         /// <returns></returns>
 
-         [HttpPost]
 
-         [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
 
-         public async Task<IActionResult> QueryCountryFeeCost(DtoBase dto)
 
-         {
 
-             var portType = dto.PortType;
 
-             if (portType != 1 && portType != 2 && portType != 3)
 
-                 return Ok(JsonView(false, "请传入PortType参数!1:Web,2:Android,3:IOS"));
 
-             var countryVisaFees = await _countryFeeRep
 
-                 .QueryDto<Res_CountryFeeCost, CountryFeeCostView>()
 
-                 .OrderByDescending(x => x.CreateTime)
 
-                 .ToListAsync();
 
-             if (countryVisaFees == null || countryVisaFees.Count == 0)
 
-                 return Ok(JsonView(false, "暂无数据!"));
 
-             return Ok(JsonView(true, "查询成功", countryVisaFees));
 
-         }
 
-         /// <summary>
 
-         /// 签证费用资料查询 Page New
 
-         /// </summary>
 
-         /// <param name="dto"></param>
 
-         /// <returns></returns>
 
-         [HttpPost]
 
-         [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
 
-         public async Task<IActionResult> QueryVisaCountryFeeCosts(QueryVisaCountryFeeCostsDto dto)
 
-         {
 
-             // 校验端口类型
 
-             if (dto.PortType != 1 && dto.PortType != 2 && dto.PortType != 3)
 
-                 return Ok(JsonView(false, "请传入PortType参数!1:Web,2:Android,3:IOS"));
 
-             var portType = dto.PortType;
 
-             RefAsync<int> total = 0;
 
-             var query = _countryFeeRep._sqlSugar
 
-                 .Queryable<Res_CountryFeeCost>()
 
-                 .Where(x => x.IsDel == 0)
 
-                 .WhereIF(dto.VisaFeeType >= 0, x => x.VisaFeeType == dto.VisaFeeType)
 
-                 .WhereIF(!string.IsNullOrEmpty(dto.CountryName), x => x.VisaCountry.Contains(dto.CountryName))
 
-                 .OrderByDescending(x => x.CreateTime);
 
-             var countryVisaFees = await query.ToPageListAsync(dto.PageIndex, dto.PageSize, total);
 
-             if (!countryVisaFees.Any()) return Ok(JsonView(true, "暂无数据!"));
 
-             var view = _mapper.Map<List<CountryFeeCostView>>(countryVisaFees);
 
-             return Ok(JsonView(true, "查询成功", view, total));
 
-         }
 
-         /// <summary>
 
-         /// 签证费用资料操作(Status:1.新增,2.修改)
 
-         /// </summary>
 
-         /// <param name="dto"></param>
 
-         /// <returns></returns>
 
-         [HttpPost]
 
-         [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
 
-         public async Task<IActionResult> OperationCountryFeeCost(OperationCountryFeeCostDto dto)
 
-         {
 
-             if (string.IsNullOrWhiteSpace(dto.VisaContinent) || string.IsNullOrWhiteSpace(dto.VisaCountry))
 
-                 return Ok(JsonView(false, "请检查州名和国家名是否填写!"));
 
-             return Ok(await _countryFeeRep.OperationCountryFeeCost(dto));
 
-         }
 
-         /// <summary>
 
-         /// 签证费用资料操作(删除)
 
-         /// </summary>
 
-         /// <returns></returns>
 
-         [HttpPost]
 
-         [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
 
-         public async Task<IActionResult> DelCountryFeeCost(DelCountryFeeCostDto dto)
 
-         {
 
-             var res = await _countryFeeRep.SoftDeleteByIdAsync<Res_CountryFeeCost>(dto.Id.ToString(), dto.DeleteUserId);
 
-             if (!res) return Ok(JsonView(false, "删除失败"));
 
-             return Ok(JsonView(true, "删除成功!"));
 
-         }
 
-         #endregion
 
-         #region 签证费用资料 New
 
-         /// <summary>
 
-         /// 签证费用标准 Init 
 
-         /// </summary>
 
-         /// <returns></returns>
 
-         [HttpPost]
 
-         [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
 
-         public async Task<IActionResult> VisaFeeStandardInit()
 
-         {
 
-             //签证费用类型数据
 
-             var visaFeeTypeData = new List<KeyValuePair<int, string>>
 
-             {
 
-                 new(0, "因公"),
 
-                 new(1, "因私")
 
-             };
 
-             //签证费用归属省份
 
-             var data = new
 
-             {
 
-                 VisaFeeType = visaFeeTypeData.Select(x => new { Id = x.Key, Text = x.Value }),
 
-                 Province = _provinceData.Select(x => new { Id = x.Key, Text = x.Value })
 
-             };
 
-             return Ok(JsonView(data));
 
-         }
 
-         /// <summary>
 
-         /// 签证费用标准 Info 
 
-         /// </summary>
 
-         /// <param name="dto"></param>
 
-         /// <returns></returns>
 
-         [HttpPost]
 
-         [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
 
-         public async Task<IActionResult> VisaFeeStandardInfo(VisaFeeStandardInfoDto dto)
 
-         {
 
-             var portType = dto.PortType;
 
-             if (portType != 1 && portType != 2 && portType != 3)
 
-                 return Ok(JsonView(false, "请传入PortType参数!1:Web,2:Android,3:IOS"));
 
-             return Ok(await _countryFeeRep.InfoAsync(dto.Id));
 
-         }
 
-         /// <summary>
 
-         /// 签证费用标准 List 
 
-         /// </summary>
 
-         /// <param name="dto"></param>
 
-         /// <returns></returns>
 
-         [HttpPost]
 
-         [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
 
-         public async Task<IActionResult> VisaFeeStandardList(VisaFeeStandardListDto dto)
 
-         {
 
-             return Ok(await _countryFeeRep.PageListAsync(dto));
 
-         }
 
-         /// <summary>
 
-         /// 签证费用标准 Save 
 
-         /// </summary>
 
-         /// <param name="dto"></param>
 
-         /// <returns></returns>
 
-         [HttpPost]
 
-         [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
 
-         public async Task<IActionResult> VisaFeeStandardSave(VisaFeeStandardSaveDto dto)
 
-         {
 
-             return Ok(await _countryFeeRep.SaveAsync(dto));
 
-         }
 
-         /// <summary>
 
-         /// 签证费用标准 SoftDel 
 
-         /// </summary>
 
-         /// <param name="dto"></param>
 
-         /// <returns></returns>
 
-         [HttpPost]
 
-         [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
 
-         public async Task<IActionResult> VisaFeeStandardSoftDel(VisaFeeStandardSoftDelDto dto)
 
-         {
 
-             return Ok(await _countryFeeRep.SoftDelAsync(dto.CurrUserId, dto.Id));
 
-         }
 
-         /// <summary>
 
-         /// 根据省份获取签证费用报价
 
-         /// </summary>
 
-         /// <param name="dto"></param>
 
-         /// <returns></returns>
 
-         [HttpPost]
 
-         [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
 
-         public async Task<IActionResult> VisaFeeQuoteByProvince(VisaFeesByProvinceDto dto)
 
-         {
 
-             //省份验证
 
-             var provinceIds = _provinceData.Select(x => x.Key).ToList();
 
-             if (!provinceIds.Contains(dto.ProvinceId))
 
-             {
 
-                 return Ok(JsonView(false, "请选择有效的省份!"));
 
-             }
 
-             return Ok(await _countryFeeRep.VisaFeeQuoteAsync(dto.ProvinceId, dto.CountryName));
 
-         }
 
-         #endregion
 
-         #region 物料信息、供应商维护
 
-         #region 供应商
 
-         /// <summary>
 
-         /// 物料供应商查询
 
-         /// </summary>
 
-         /// <param name="_jsonDto">Json序列化</param>
 
-         /// <returns></returns>
 
-         [HttpPost]
 
-         [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
 
-         public async Task<IActionResult> PostSearchItemVendor(JsonDtoBase _jsonDto)
 
-         {
 
-             if (string.IsNullOrEmpty(_jsonDto.Paras))
 
-             {
 
-                 return Ok(JsonView(false, "参数为空"));
 
-             }
 
-             Search_ResItemVendorDto _ItemVendorDto = System.Text.Json.JsonSerializer.Deserialize<Search_ResItemVendorDto>(_jsonDto.Paras);
 
-             if (_ItemVendorDto != null)
 
-             {
 
-                 if (_ItemVendorDto.SearchType == 2) //获取列表
 
-                 {
 
-                     Res_ItemVendorListView rstList = _resItemInfoRep.GetVendorList(_ItemVendorDto);
 
-                     return Ok(rstList);
 
-                 }
 
-                 else
 
-                 {
 
-                     Res_ItemVendorView rstInfo = _resItemInfoRep.getVendorInfo(_ItemVendorDto);
 
-                     return Ok(rstInfo);
 
-                 }
 
-             }
 
-             else
 
-             {
 
-                 return Ok(JsonView(false, "参数反序列化失败"));
 
-             }
 
-             //return Ok(JsonView(false));
 
-         }
 
-         /// <summary>
 
-         /// 创建/编辑/删除供应商信息
 
-         /// </summary>
 
-         /// <param name="_dto"></param>
 
-         /// <returns></returns>
 
-         [HttpPost]
 
-         [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
 
-         public async Task<IActionResult> PostEditItemVendor(Edit_ResItemVendorDto _dto)
 
-         {
 
-             bool rst = false;
 
-             if (_dto.EditType >= 0)
 
-             {
 
-                 if (string.IsNullOrEmpty(_dto.VendorFullName))
 
-                 {
 
-                     return Ok(JsonView(false, "全称未填写"));
 
-                 }
 
-                 if (string.IsNullOrEmpty(_dto.VendorLinker))
 
-                 {
 
-                     return Ok(JsonView(false, "联系人未填写"));
 
-                 }
 
-                 if (string.IsNullOrEmpty(_dto.VendorMobile))
 
-                 {
 
-                     return Ok(JsonView(false, "联系人手机号未填写"));
 
-                 }
 
-                 if (string.IsNullOrEmpty(_dto.BusRange))
 
-                 {
 
-                     return Ok(JsonView(false, "经营范围未选择"));
 
-                 }
 
-                 if (_dto.EditType == 0)
 
-                 {
 
-                     var checkEmpty = _resItemInfoRep.Query<Res_ItemVendor>(s => s.FullName == _dto.VendorFullName).First();
 
-                     if (checkEmpty != null)
 
-                     {
 
-                         return Ok(JsonView(false, "已存在同名供应商"));
 
-                     }
 
-                     rst = await _resItemInfoRep.addVendorInfo(_dto);
 
-                 }
 
-                 else if (_dto.EditType == 1)
 
-                 {
 
-                     if (_dto.VendorId > 0)
 
-                     {
 
-                         Res_ItemVendor _entity = _mapper.Map<Res_ItemVendor>(_dto);
 
-                         rst = await _resItemInfoRep.updVendorInfo(_entity);
 
-                     }
 
-                     else
 
-                     {
 
-                         return Ok(JsonView(false, "供应商不存在"));
 
-                     }
 
-                 }
 
-             }
 
-             else
 
-             {
 
-                 if (_dto.VendorId < 1 || _dto.SysUserId < 1)
 
-                 {
 
-                     return Ok(JsonView(false, "用户Id或供应商Id不存在"));
 
-                 }
 
-                 Res_ItemVendor _entity = _mapper.Map<Res_ItemVendor>(_dto);
 
-                 rst = await _resItemInfoRep.delVendorInfo(_entity);
 
-             }
 
-             return Ok(JsonView(rst));
 
-         }
 
-         #endregion
 
-         #region 物料信息
 
-         /// <summary>
 
-         /// 物料信息查询
 
-         /// </summary>
 
-         /// <param name="paras">Json序列化</param>
 
-         /// <returns></returns>
 
-         [HttpPost]
 
-         [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
 
-         public async Task<IActionResult> PostSearchItemInfo(string paras)
 
-         {
 
-             if (string.IsNullOrEmpty(paras))
 
-             {
 
-                 return Ok(JsonView(false, "参数为空"));
 
-             }
 
-             Search_ItemInfoDto _ItemInfoDto = System.Text.Json.JsonSerializer.Deserialize<Search_ItemInfoDto>(paras);
 
-             if (_ItemInfoDto != null)
 
-             {
 
-                 if (_ItemInfoDto.SearchType == 2) //获取列表
 
-                 {
 
-                     Res_ItemInfoListView rstList = _resItemInfoRep.GetItemList(_ItemInfoDto);
 
-                     return Ok(rstList);
 
-                 }
 
-                 else
 
-                 {
 
-                     Res_ItemInfoView rstInfo = _resItemInfoRep.getItemInfo(_ItemInfoDto);
 
-                     return Ok(rstInfo);
 
-                 }
 
-             }
 
-             else
 
-             {
 
-                 return Ok(JsonView(false, "参数反序列化失败"));
 
-             }
 
-             //return Ok(JsonView(false));
 
-         }
 
-         /// <summary>
 
-         /// 创建/编辑/删除物料信息
 
-         /// </summary>
 
-         /// 
 
-         /// <returns></returns>
 
-         [HttpPost]
 
-         [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
 
-         public async Task<IActionResult> PostEditItemInfo(Edit_ResItemInfoDto _dto)
 
-         {
 
-             bool rst = false;
 
-             if (_dto.EditType >= 0)
 
-             {
 
-                 if (_dto.VendorId < 1)
 
-                 {
 
-                     return Ok(JsonView(false, "未选择供应商"));
 
-                 }
 
-                 if (string.IsNullOrEmpty(_dto.ItemName))
 
-                 {
 
-                     return Ok(JsonView(false, "物料名称为空"));
 
-                 }
 
-                 if (_dto.ItemTypeId < 1)
 
-                 {
 
-                     return Ok(JsonView(false, "未选择物料类型"));
 
-                 }
 
-                 if (_dto.SysUserId < 1)
 
-                 {
 
-                     return Ok(JsonView(false, "当前操作用户Id为空"));
 
-                 }
 
-                 if (_dto.CurrRate <= 0)
 
-                 {
 
-                     return Ok(JsonView(false, "物料录入价格不能小于等于0"));
 
-                 }
 
-                 if (_dto.EditType == 0)
 
-                 {
 
-                     //判断物料名称、类型、供应商全部重复
 
-                     var checkEmpty = _resItemInfoRep.Query<Res_ItemDetailInfo>(s => s.ItemName == _dto.ItemName && s.ItemTypeId == _dto.ItemTypeId && s.VendorId == _dto.VendorId).First();
 
-                     if (checkEmpty != null)
 
-                     {
 
-                         return Ok(JsonView(false, "已存在重复物料信息"));
 
-                     }
 
-                     Res_ItemDetailInfo _entity = _mapper.Map<Res_ItemDetailInfo>(_dto);
 
-                     DateTime dtNow = DateTime.Now;
 
-                     _entity.CreateUserId = _dto.SysUserId;
 
-                     _entity.IsDel = 0;
 
-                     _entity.MaxRate = _dto.CurrRate;
 
-                     _entity.MaxDt = dtNow;
 
-                     _entity.CurrRate = _dto.CurrRate;
 
-                     _entity.CurrDt = dtNow;
 
-                     _entity.MinRate = _dto.CurrRate;
 
-                     _entity.MinDt = dtNow;
 
-                     rst = await _resItemInfoRep.AddAsync<Res_ItemDetailInfo>(_entity) > 0;
 
-                 }
 
-                 else if (_dto.EditType == 1)
 
-                 {
 
-                     if (_dto.ItemId > 0)
 
-                     {
 
-                         Res_ItemDetailInfo _entity = _mapper.Map<Res_ItemDetailInfo>(_dto);
 
-                         _entity.Id = _dto.ItemId;
 
-                         rst = await _resItemInfoRep.updItemInfo(_entity);
 
-                     }
 
-                     else
 
-                     {
 
-                         return Ok(JsonView(false, "供应商不存在"));
 
-                     }
 
-                 }
 
-             }
 
-             else
 
-             {
 
-                 if (_dto.ItemId < 1 || _dto.SysUserId < 1)
 
-                 {
 
-                     return Ok(JsonView(false, "用户Id或物料信息Id不存在"));
 
-                 }
 
-                 Res_ItemDetailInfo _entity = _mapper.Map<Res_ItemDetailInfo>(_dto);
 
-                 rst = await _resItemInfoRep.delItemInfo(_entity);
 
-             }
 
-             return Ok(JsonView(rst));
 
-         }
 
-         #endregion
 
-         #region 物料类型获取
 
-         #endregion
 
-         #endregion
 
-         #region 备忘录
 
-         /// <summary>
 
-         /// 备忘录查询
 
-         /// </summary>
 
-         /// <param name="_jsonDto">Json序列化</param>
 
-         /// <returns></returns>
 
-         [HttpPost]
 
-         [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
 
-         public async Task<IActionResult> PostSearchMemo(JsonDtoBase _jsonDto)
 
-         {
 
-             if (string.IsNullOrEmpty(_jsonDto.Paras))
 
-             {
 
-                 return Ok(JsonView(false, "参数为空"));
 
-             }
 
-             Search_ResMemoDto _memoDto = JsonConvert.DeserializeObject<Search_ResMemoDto>(_jsonDto.Paras);
 
-             if (_memoDto != null)
 
-             {
 
-                 if (_memoDto.SearchType == 2)
 
-                 {
 
-                     //获取列表
 
-                     string sqlWhere = string.Format(" Where IsDel=0 ");
 
-                     #region SqlWhere
 
-                     if (!string.IsNullOrEmpty(_memoDto.Abstracts))
 
-                     {
 
-                         sqlWhere += string.Format(@" And m.Abstracts Like '%{0}%' ", _memoDto.Abstracts);
 
-                     }
 
-                     if (!string.IsNullOrEmpty(_memoDto.Title))
 
-                     {
 
-                         sqlWhere += string.Format(@" And m.Title Like '%{0}%' ", _memoDto.Title);
 
-                     }
 
-                     if (_memoDto.ReadLevel > 0)
 
-                     {
 
-                         sqlWhere += string.Format(@" And m.ReadLevel = {0} ", _memoDto.ReadLevel);
 
-                     }
 
-                     #endregion
 
-                     int currPIndex = (((_memoDto.PageIndex > 0) ? (_memoDto.PageIndex - 1) : 0) * _memoDto.PageSize) + 1;
 
-                     int currPSize = (((_memoDto.PageIndex > 0) ? (_memoDto.PageIndex - 1) : 0) + 1) * _memoDto.PageSize;
 
-                     string sql = string.Format(@" Select * From(Select ROW_NUMBER() Over(order By m.Id desc) as RowNumber,
 
- m.Id as MemoId,d.DepName as DepartmentName,m.ReadLevel,m.Title,m.Abstracts,
 
- m.LastedEditDt,m.LastedEditorId
 
- From Res_Memo as m With(Nolock) Inner Join Sys_Users as u With(Nolock) On m.CreateUserId=u.Id
 
- Inner Join Sys_Department as d With(Nolock) On u.DepId=d.Id {2}
 
- ) as tb Where tb.RowNumber Between {0} And {1} ", currPIndex, currPSize, sqlWhere);
 
-                     Res_MemoListView rst = new Res_MemoListView();
 
-                     rst.CurrPageIndex = currPIndex;
 
-                     rst.CurrPageSize = currPSize;
 
-                     List<Res_MemoView> dataSource = _carDataRep._sqlSugar.SqlQueryable<Res_MemoView>(sql).ToList();
 
-                     Dictionary<int, string> userDic = new Dictionary<int, string>();
 
-                     foreach (var item in dataSource)
 
-                     {
 
-                         if (userDic.ContainsKey(item.LastedEditorId))
 
-                         {
 
-                             item.LastedEditor = userDic[item.LastedEditorId];
 
-                         }
 
-                         else
 
-                         {
 
-                             var _sysUser = _carDataRep.Query<Sys_Users>(s => s.Id == item.LastedEditorId).First();
 
-                             userDic[item.LastedEditorId] = _sysUser.CnName;
 
-                             item.LastedEditor = _sysUser.CnName;
 
-                         }
 
-                     }
 
-                     rst.DataList = new List<Res_MemoView>(dataSource);
 
-                     if (rst.DataList.Count > 0)
 
-                     {
 
-                         string sqlCount = string.Format(@" Select Id From Res_Memo as m With(Nolock) {0} ", sqlWhere);
 
-                         int dataCount = _carDataRep._sqlSugar.SqlQueryable<Res_MemoInfo>(sqlCount).Count();
 
-                         rst.DataCount = dataCount;
 
-                     }
 
-                     return Ok(JsonView(rst));
 
-                 }
 
-                 else
 
-                 {
 
-                     //获取对象
 
-                     string sqlSingle = string.Format(@" Select 
 
- m.Id as MemoId,d.DepName as DepartmentName,m.ReadLevel,m.Title,m.Abstracts,
 
- m.LastedEditDt,m.LastedEditor,m.MDFilePath
 
- From Res_Memo as m With(Nolock) Inner Join Sys_Users as u With(Nolock) On m.CreateUserId=u.Id
 
- Inner Join Sys_Department as d With(Nolock) On u.DepId=d.Id Where m.Id={0} ", _memoDto.MemoId);
 
-                     Res_MemoView _result = _carDataRep._sqlSugar.SqlQueryable<Res_MemoView>(sqlSingle).First();
 
-                     if (_result != null)
 
-                     {
 
-                         var _sysUser = _carDataRep.Query<Sys_Users>(s => s.Id == _result.LastedEditorId).First();
 
-                         _result.LastedEditor = _sysUser.CnName;
 
-                         _result.MarkDownContent = new IOOperatorHelper().Read(_result.MDFilePath);
 
-                         return Ok(JsonView(_result));
 
-                     }
 
-                 }
 
-             }
 
-             else
 
-             {
 
-                 return Ok(JsonView(false, "参数反序列化失败"));
 
-             }
 
-             return Ok(JsonView(false));
 
-         }
 
-         /// <summary>
 
-         /// 创建/编辑/删除备忘录信息
 
-         /// </summary>
 
-         /// <param name="_dto"></param>
 
-         /// <returns></returns>
 
-         [HttpPost]
 
-         [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
 
-         public async Task<IActionResult> PostEditMemo(Edit_ResMemoDto _dto)
 
-         {
 
-             bool rst = false;
 
-             if (_dto.SysUserId < 1)
 
-             {
 
-                 return Ok(JsonView(false, "操作人失效"));
 
-             }
 
-             var _sysUser = _resItemInfoRep.Query<Sys_Users>(s => s.Id == _dto.SysUserId).First();
 
-             if (_sysUser == null)
 
-             {
 
-                 return Ok(JsonView(false, "操作人失效02"));
 
-             }
 
-             if (_dto.EditType >= 0)
 
-             {
 
-                 if (_dto.ReadLevel < 1)
 
-                 {
 
-                     return Ok(JsonView(false, "未知的阅读等级"));
 
-                 }
 
-                 if (string.IsNullOrEmpty(_dto.Title.Trim()))
 
-                 {
 
-                     return Ok(JsonView(false, "标题不能为空"));
 
-                 }
 
-                 if (string.IsNullOrEmpty(_dto.Content.Trim()))
 
-                 {
 
-                     return Ok(JsonView(false, "正文内容不能为空"));
 
-                 }
 
-                 //新增备忘录
 
-                 DateTime dtNow = DateTime.Now;
 
-                 string dir = AppSettingsHelper.Get("MemoCurrPath");
 
-                 string fileName = dtNow.ToString("yyyyMMddHHmmss") + _dto.Title + ".md";
 
-                 string content = JsonConvert.SerializeObject(_dto.Content);
 
-                 if (_dto.EditType == 0)//新增
 
-                 {
 
-                     string savePath = new IOOperatorHelper().Write_CoverFile(content, dir, fileName);
 
-                     if (savePath.Length > 0)
 
-                     {
 
-                         Res_MemoInfo _insert = new Res_MemoInfo();
 
-                         _insert.Abstracts = _dto.Abstracts;
 
-                         _insert.Title = _dto.Title;
 
-                         _insert.DepartmentId = _sysUser.DepId;
 
-                         _insert.CreateUserId = _sysUser.Id;
 
-                         _insert.LastedEditDt = dtNow;
 
-                         _insert.LastedEditor = _sysUser.Id;
 
-                         _insert.MDFilePath = savePath;
 
-                         _insert.ReadLevel = _dto.ReadLevel;
 
-                         _insert.Title = _dto.Title;
 
-                         int result = await _resItemInfoRep.AddAsync(_insert);
 
-                         return Ok(JsonView(result > 0));
 
-                     }
 
-                     else
 
-                     {
 
-                         return Ok(JsonView(false, "路径保存失败"));
 
-                     }
 
-                 }
 
-                 else//修改
 
-                 {
 
-                     if (_dto.MemoId < 1)
 
-                     {
 
-                         return Ok(JsonView(false, "MemoId不存在"));
 
-                     }
 
-                     Res_MemoInfo _source = _resItemInfoRep.Query<Res_MemoInfo>(s => s.Id == _dto.MemoId).First();
 
-                     if (_source == null)
 
-                     {
 
-                         return Ok(JsonView(false, "MemoInfo不存在"));
 
-                     }
 
-                     //修改
 
-                     string sourcePath = _source.MDFilePath;
 
-                     string recycDir = AppSettingsHelper.Get("MemoRecycleBinPath");
 
-                     new IOOperatorHelper().MoveFile(sourcePath, recycDir);
 
-                     string savePath = new IOOperatorHelper().Write_CoverFile(content, dir, fileName);
 
-                     if (savePath.Length > 0)
 
-                     {
 
-                         var result = await _resItemInfoRep._sqlSugar.Updateable<Res_MemoInfo>()
 
-                                                                     .SetColumns(it => it.LastedEditDt == DateTime.Now)
 
-                                                                     .SetColumns(it => it.LastedEditor == _sysUser.Id)
 
-                                                                     .SetColumns(it => it.Abstracts == _dto.Abstracts)
 
-                                                                     .SetColumns(it => it.MDFilePath == savePath)
 
-                                                                     .SetColumns(it => it.ReadLevel == _dto.ReadLevel)
 
-                                                                     .SetColumns(it => it.Title == _dto.Title)
 
-                                                                     .Where(s => s.Id == _source.Id)
 
-                                                                     .ExecuteCommandAsync();
 
-                         return Ok(JsonView(result > 0));
 
-                     }
 
-                 }
 
-             }
 
-             else
 
-             {
 
-                 //删除
 
-                 if (_dto.MemoId < 1)
 
-                 {
 
-                     return Ok(JsonView(false, "MemoId不存在"));
 
-                 }
 
-                 Res_MemoInfo _source = _resItemInfoRep.Query<Res_MemoInfo>(s => s.Id == _dto.MemoId).First();
 
-                 if (_source == null)
 
-                 {
 
-                     return Ok(JsonView(false, "MemoInfo不存在"));
 
-                 }
 
-                 //修改
 
-                 string sourcePath = _source.MDFilePath;
 
-                 string recycDir = AppSettingsHelper.Get("MemoRecycleBinPath");
 
-                 new IOOperatorHelper().MoveFile(sourcePath, recycDir);
 
-                 var result = await _resItemInfoRep._sqlSugar.Updateable<Res_MemoInfo>()
 
-                                                             .SetColumns(it => it.IsDel == 1)
 
-                                                             .SetColumns(it => it.DeleteUserId == _sysUser.Id)
 
-                                                             .SetColumns(it => it.DeleteTime == DateTime.Now.ToString("yyyy-MM-dd HH:mm:ss"))
 
-                                                             .Where(s => s.Id == _source.Id)
 
-                                                             .ExecuteCommandAsync();
 
-                 return Ok(JsonView(result > 0));
 
-             }
 
-             return Ok(JsonView(rst));
 
-         }
 
-         #endregion
 
-         #region 商邀资料
 
-         /// <summary>
 
-         /// 商邀资料 基础数据源
 
-         /// </summary>
 
-         /// <param name="dto"></param>
 
-         /// <returns></returns>
 
-         [HttpPost]
 
-         [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
 
-         public async Task<IActionResult> QueryIOAInitData(QueryIOAInitDataDto dto)
 
-         {
 
-             #region 参数验证
 
-             if (dto.PortType < 1) return Ok(JsonView(false, "请传入有效的PortType参数!"));
 
-             #endregion
 
-             var ExcludedKeyStr = new string[] { "快递费" };
 
-             var ClientKeyStr = new string[] { "邀请函翻译" };
 
-             List<Grp_DelegationInfo> _DelegationInfos = _sqlSugar.Queryable<Grp_DelegationInfo>().Where(it => it.IsDel == 0).OrderByDescending(it => it.JietuanTime).ToList();
 
-             List<Res_InvitationOfficialActivityData> _ioaDatas = _sqlSugar.Queryable<Res_InvitationOfficialActivityData>()
 
-                 .Where(it => it.IsDel == 0)
 
-                 .Select(x => new Res_InvitationOfficialActivityData
 
-                 {
 
-                     Country = x.Country,
 
-                     UnitName = x.UnitName,
 
-                     Contact = x.Contact,
 
-                     Field = x.Field,
 
-                 })
 
-                 .ToList();
 
-             foreach (var item in _ioaDatas)
 
-             {
 
-                 EncryptionProcessor.DecryptProperties(item);
 
-             }
 
-             foreach (var item in ExcludedKeyStr)
 
-             {
 
-                 _ioaDatas = _ioaDatas.Where(x => string.IsNullOrWhiteSpace(x.UnitName) || !x.UnitName.Contains(item)).ToList();
 
-             }
 
-             foreach (var item in ClientKeyStr)
 
-             {
 
-                 _ioaDatas = _ioaDatas.Where(x => string.IsNullOrWhiteSpace(x.Contact) || !x.Contact.Contains(item)).ToList();
 
-             }
 
-             List<Sys_Users> _Users = _sqlSugar.Queryable<Sys_Users>().Where(it => it.IsDel == 0).ToList();
 
-             var _countryData = _ioaDatas.Select(it => it.Country).Distinct().ToList(); _countryData.Remove("");
 
-             var _inviterData = _ioaDatas.Select(it => it.UnitName).Distinct().ToList(); _inviterData.Remove("");
 
-             var _contactData = _ioaDatas.Select(it => it.Contact).Distinct().ToList(); _contactData.Remove("");
 
-             var _domainData = _ioaDatas.Select(it => it.Field).Distinct().ToList(); _domainData.Remove("");
 
-             var _groupNameData = _DelegationInfos.Select(it => new { it.Id, it.TeamName }).ToList();
 
-             var _userNameData = _Users.Select(it => new { it.Id, it.CnName }).ToList();
 
-             var _data = new
 
-             {
 
-                 CountryData = _countryData,
 
-                 InviterData = _inviterData,
 
-                 DomainData = _domainData,
 
-                 ContactData = _contactData,
 
-                 GroupNameData = _groupNameData,
 
-                 UserNameData = _userNameData,
 
-             };
 
-             return Ok(JsonView(true, $"查询成功!", _data));
 
-         }
 
-         /// <summary>
 
-         /// 商邀资料查询
 
-         /// </summary>
 
-         /// <param name="dto"></param>
 
-         /// <returns></returns>
 
-         [HttpPost]
 
-         [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
 
-         public async Task<IActionResult> QueryInvitationOfficialActivityData(QueryInvitationOfficialActivityDataDto dto)
 
-         {
 
-             var ExcludedKeyStr = new string[] { "快递费" };
 
-             var ClientKeyStr = new string[] { "邀请函翻译" };
 
-             var columns = "Id,UnitName,Contact,City";
 
-             try
 
-             {
 
-                 #region 参数验证
 
-                 if (dto.PageIndex < 1) return Ok(JsonView(false, "请传入有效的PageIndex参数!"));
 
-                 if (dto.PageSize < 1) return Ok(JsonView(false, "请传入有效的PageSize参数!"));
 
-                 #endregion
 
-                 //string sqlWhere = string.Empty;
 
-                 if (!string.IsNullOrWhiteSpace(dto.Country)) { columns += ",Country"; }
 
-                 //if (!string.IsNullOrWhiteSpace(dto.UnitName)) { columns += ",UnitName"; }
 
-                 //if (!string.IsNullOrWhiteSpace(dto.Contact)) { columns += ",Contact"; }
 
-                 if (!string.IsNullOrWhiteSpace(dto.Delegation)) { columns += ",Delegation"; }
 
-                 if (!string.IsNullOrWhiteSpace(dto.Field)) { columns += ",Field"; }
 
-                 //if (dto.CreateUserId != 0 && !string.IsNullOrWhiteSpace(dto.CreateUserId.ToString())) { columns += ",CreateUserId"; }
 
-                 //if (!string.IsNullOrWhiteSpace(dto.StartCreateTime) && !string.IsNullOrWhiteSpace(dto.EndCreateTime))
 
-                 //{
 
-                 //    columns += ",CreateUserId";
 
-                 //}
 
-                 DateTime endTime = new DateTime();
 
-                 var InvitationOfficialActivityDataList = _sqlSugar.Queryable<Res_InvitationOfficialActivityData>()
 
-                     .Where(x => x.IsDel == 0)
 
-                     .WhereIF(dto.CreateUserId != 0 && !string.IsNullOrWhiteSpace(dto.CreateUserId.ToString()), x => x.CreateUserId == dto.CreateUserId)
 
-                     .WhereIF(DateTime.TryParse(dto.StartCreateTime, out DateTime startTime) && DateTime.TryParse(dto.EndCreateTime, out endTime), x => x.CreateTime >= startTime && x.CreateTime <= endTime)
 
-                     .Select(columns)
 
-                     .ToList();
 
-                 foreach (var item in InvitationOfficialActivityDataList)
 
-                 {
 
-                     EncryptionProcessor.DecryptProperties(item);
 
-                 }
 
-                 InvitationOfficialActivityDataList = InvitationOfficialActivityDataList
 
-                     .WhereIF(!string.IsNullOrWhiteSpace(dto.Country), x => (!string.IsNullOrWhiteSpace(x.Country) && x.Country.Contains(dto.Country)) || (!string.IsNullOrWhiteSpace(x.City) && x.City.Contains(dto.Country)))
 
-                     .WhereIF(!string.IsNullOrWhiteSpace(dto.UnitName), x => !string.IsNullOrWhiteSpace(x.UnitName) && x.UnitName.Contains(dto.UnitName))
 
-                     .WhereIF(!string.IsNullOrWhiteSpace(dto.Contact), x => !string.IsNullOrWhiteSpace(x.Contact) && x.Contact.Contains(dto.Contact))
 
-                     .WhereIF(!string.IsNullOrWhiteSpace(dto.Delegation), x => !string.IsNullOrWhiteSpace(x.Delegation) && x.Delegation.Contains(dto.Delegation))
 
-                     .WhereIF(!string.IsNullOrWhiteSpace(dto.Field), x => !string.IsNullOrWhiteSpace(x.Field) && x.Field.Contains(dto.Field))
 
-                     .ToList();
 
-                 foreach (var item in ExcludedKeyStr)
 
-                 {
 
-                     InvitationOfficialActivityDataList = InvitationOfficialActivityDataList.Where(x => string.IsNullOrWhiteSpace(x.UnitName) || !x.UnitName.Contains(item)).ToList();
 
-                     //sqlWhere += $" And i.UnitName not like '%{item}%' ";
 
-                 }
 
-                 foreach (var item in ClientKeyStr)
 
-                 {
 
-                     InvitationOfficialActivityDataList = InvitationOfficialActivityDataList.Where(x => string.IsNullOrWhiteSpace(x.Contact) || !x.Contact.Contains(item)).ToList();
 
-                     //sqlWhere += $" And i.Contact not like '%{item}%' ";
 
-                 }
 
-                 var ids = InvitationOfficialActivityDataList.Select(x => x.Id);
 
-                 RefAsync<int> totalCount = 0;
 
-                 var _ivitiesViews = await _sqlSugar.Queryable<Res_InvitationOfficialActivityData>()
 
-                     .LeftJoin<Sys_Users>((a, b) => b.IsDel == 0 && a.CreateUserId == b.Id)
 
-                     .Where((a, b) => ids.Contains(a.Id))
 
-                     .OrderByDescending((a, b) => a.CreateTime)
 
-                     .Select((a, b) => new InvitationOfficialActivityDataView
 
-                     {
 
-                         FaceBook = a.FaceBook,
 
-                         Id = a.Id,
 
-                         CreateUserId = a.CreateUserId,
 
-                         IsDel = 0,
 
-                         Address = a.Address,
 
-                         Background = a.Background,
 
-                         City = a.City,
 
-                         Contact = a.Contact,
 
-                         Country = a.Country,
 
-                         CreateTime = a.CreateTime,
 
-                         CreateUserName = b.CnName,
 
-                         Delegation = a.Delegation,
 
-                         Email = a.Email,
 
-                         Fax = a.Fax,
 
-                         Field = a.Field,
 
-                         FilePath = a.FilePath,
 
-                         Ins = a.Ins,
 
-                         WeChat = a.WeChat,
 
-                         UnitWeb = a.UnitWeb,
 
-                         UnitName = a.UnitName,
 
-                         UnitInfo = a.UnitInfo,
 
-                         Tel = a.Tel,
 
-                         SndFilePath = a.SndFilePath,
 
-                         SndFileName = a.SndFileName,
 
-                         Remark = a.Remark,
 
-                         OtherInfo = a.OtherInfo,
 
-                         Job = a.Job
 
-                     })
 
-                     .ToPageListAsync(dto.PageIndex, dto.PageSize, totalCount);
 
-                 var allGroupIds = new HashSet<int>();
 
-                 foreach (var item in _ivitiesViews)
 
-                 {
 
-                     EncryptionProcessor.DecryptProperties(item);
 
-                     if (!string.IsNullOrEmpty(item.Delegation))
 
-                     {
 
-                         allGroupIds.UnionWith(item.Delegation.Split(',').Select(x =>
 
-                         {
 
-                             int id;
 
-                             if (int.TryParse(x, out id)) return id;
 
-                             return 0;
 
-                         }).Where(id => id != 0));
 
-                     }
 
-                 }
 
-                 var _DelegationInfos = _sqlSugar.Queryable<Grp_DelegationInfo>()
 
-                     .Where(x => allGroupIds.Contains(x.Id) && x.IsDel == 0)
 
-                     .ToList()
 
-                     .GroupBy(x => x.Id)
 
-                     .ToDictionary(group => group.Key, group => group.Select(g => g.TeamName));
 
-                 foreach (var item in _ivitiesViews)
 
-                 {
 
-                     string groupNameStr = "";
 
-                     if (!string.IsNullOrEmpty(item.Delegation))
 
-                     {
 
-                         var groupIds = item.Delegation.Split(',').Select(x =>
 
-                         {
 
-                             int id;
 
-                             if (int.TryParse(x, out id)) return id;
 
-                             return 0;
 
-                         })
 
-                         .Where(id => id != 0)
 
-                         .ToArray();
 
-                         foreach (var id in groupIds)
 
-                         {
 
-                             if (_DelegationInfos.ContainsKey(id))
 
-                             {
 
-                                 groupNameStr += string.Join("", _DelegationInfos[id]) + ",";
 
-                             }
 
-                         }
 
-                         if (groupNameStr.Length > 1)
 
-                         {
 
-                             groupNameStr = groupNameStr.Substring(0, groupNameStr.Length - 1);
 
-                         }
 
-                     }
 
-                     item.DelegationStr = groupNameStr;
 
-                 }
 
-                 return Ok(JsonView(true, $"查询成功!", _ivitiesViews, totalCount));
 
-             }
 
-             catch (Exception ex)
 
-             {
 
-                 return Ok(JsonView(false, ex.Message));
 
-             }
 
-         }
 
-         /// <summary>
 
-         /// 商邀资料查询-欧洲
 
-         /// </summary>
 
-         /// <returns></returns>
 
-         [HttpPost]
 
-         [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
 
-         public async Task<IActionResult> QueryInvitationOfficialActivityData1()
 
-         {
 
-             try
 
-             {
 
-                 // 定义欧洲国家数组
 
-                 string[] europeanCountries = {
 
-                     // 北欧国家
 
-                     "瑞典", "芬兰", "挪威", "丹麦", "冰岛",
 
-                     // 西欧国家
 
-                     "英国", "爱尔兰", "法国", "荷兰", "比利时", "卢森堡", "摩纳哥",
 
-                     // 中欧国家
 
-                     "德国", "瑞士", "奥地利", "波兰", "捷克", "斯洛伐克", "匈牙利", "列支敦士登",
 
-                     // 南欧国家
 
-                     "意大利", "西班牙", "葡萄牙", "希腊", "马耳他", "圣马力诺", "梵蒂冈", "安道尔",
 
-                     "克罗地亚", "斯洛文尼亚", "波斯尼亚和黑塞哥维那", "黑山", "塞尔维亚", "北马其顿", "阿尔巴尼亚", "保加利亚", "罗马尼亚",
 
-                     // 东欧国家
 
-                     "俄罗斯", "乌克兰", "白俄罗斯", "摩尔多瓦", "爱沙尼亚", "拉脱维亚", "立陶宛"
 
-                 };
 
-                 var InvitationOfficialActivityDataList = _sqlSugar.Queryable<Res_InvitationOfficialActivityData>()
 
-                     .Where(x => x.IsDel == 0)
 
-                     .Select(x => new Res_InvitationOfficialActivityData() { Id = x.Id, Country = x.Country })
 
-                     .ToList();
 
-                 foreach (var item in InvitationOfficialActivityDataList)
 
-                 {
 
-                     EncryptionProcessor.DecryptProperties(item);
 
-                 }
 
-                 var ids = InvitationOfficialActivityDataList
 
-                     .WhereIF(europeanCountries.Any(), x => !string.IsNullOrWhiteSpace(x.Country) && europeanCountries.Contains(x.Country))
 
-                     .Select(x => x.Id)
 
-                     .ToList();
 
-                 RefAsync<int> totalCount = 0;
 
-                 var _ivitiesViews = await _sqlSugar.Queryable<Res_InvitationOfficialActivityData>()
 
-                     .LeftJoin<Sys_Users>((a, b) => b.IsDel == 0 && a.CreateUserId == b.Id)
 
-                     .Where((a, b) => ids.Contains(a.Id))
 
-                     .OrderByDescending((a, b) => a.CreateTime)
 
-                     .Select((a, b) => new InvitationOfficialActivityDataView1
 
-                     {
 
-                         Country = a.Country,
 
-                         City = a.City,
 
-                         UnitName = a.UnitName,
 
-                         Field = a.Field,
 
-                         Address = a.Address,
 
-                         UnitInfo = a.UnitInfo,
 
-                         Delegation = a.Delegation,
 
-                         OtherInfo = a.OtherInfo
 
-                     })
 
-                     .ToListAsync();
 
-                 var allGroupIds = new HashSet<int>();
 
-                 foreach (var item in _ivitiesViews)
 
-                 {
 
-                     EncryptionProcessor.DecryptProperties(item);
 
-                     if (!string.IsNullOrEmpty(item.Delegation))
 
-                     {
 
-                         allGroupIds.UnionWith(item.Delegation.Split(',').Select(x =>
 
-                         {
 
-                             int id;
 
-                             if (int.TryParse(x, out id)) return id;
 
-                             return 0;
 
-                         }).Where(id => id != 0));
 
-                     }
 
-                 }
 
-                 var _DelegationInfos = _sqlSugar.Queryable<Grp_DelegationInfo>()
 
-                     .Where(x => allGroupIds.Contains(x.Id) && x.IsDel == 0)
 
-                     .ToList()
 
-                     .GroupBy(x => x.Id)
 
-                     .ToDictionary(group => group.Key, group => group.Select(g => g.TeamName));
 
-                 foreach (var item in _ivitiesViews)
 
-                 {
 
-                     string groupNameStr = "";
 
-                     if (!string.IsNullOrEmpty(item.Delegation))
 
-                     {
 
-                         var groupIds = item.Delegation.Split(',').Select(x =>
 
-                         {
 
-                             int id;
 
-                             if (int.TryParse(x, out id)) return id;
 
-                             return 0;
 
-                         })
 
-                         .Where(id => id != 0)
 
-                         .ToArray();
 
-                         foreach (var id in groupIds)
 
-                         {
 
-                             if (_DelegationInfos.ContainsKey(id))
 
-                             {
 
-                                 groupNameStr += string.Join("", _DelegationInfos[id]) + ",";
 
-                             }
 
-                         }
 
-                         if (groupNameStr.Length > 1)
 
-                         {
 
-                             groupNameStr = groupNameStr.Substring(0, groupNameStr.Length - 1);
 
-                         }
 
-                     }
 
-                     item.DelegationStr = groupNameStr;
 
-                 }
 
-                 //获取模板
 
-                 string tempPath = (AppSettingsHelper.Get("ExcelBasePath") + "Template/商邀资料模板.xls");
 
-                 var designer = new WorkbookDesigner();
 
-                 designer.Workbook = new Workbook(tempPath);
 
-                 var dt = CommonFun.ToDataTableArray(_ivitiesViews);
 
-                 dt.TableName = $"OADataView";
 
-                 designer.SetDataSource(dt);
 
-                 designer.Process();
 
-                 //文件名
 
-                 string fileName = $"商邀资料{DateTime.Now.ToString("yyyyMMddHHmmss")}.xls";
 
-                 designer.Workbook.Save(AppSettingsHelper.Get("ExcelBasePath") + "InvitationOfficialActivityExport/" + fileName);
 
-                 string url = AppSettingsHelper.Get("ExcelBaseUrl") + "Office/Excel/InvitationOfficialActivityExport/" + fileName;
 
-                 return Ok(JsonView(true, "成功", url));
 
-             }
 
-             catch (Exception ex)
 
-             {
 
-                 return Ok(JsonView(false, ex.Message));
 
-             }
 
-         }
 
-         //[HttpPost]
 
-         //public  IActionResult EncipherInvitationOfficialActivityData()
 
-         //{
 
-         //    var jw = JsonView(false);
 
-         //    var List_DB = _sqlSugar.Queryable<Res_InvitationOfficialActivityData>().ToList();
 
-         //    try
 
-         //    {
 
-         //        //foreach (var item in List_DB)
 
-         //        //{
 
-         //        //    EncryptionProcessor.DecryptProperties(item);
 
-         //        //}
 
-         //        _sqlSugar.BeginTran();
 
-         //        foreach (var item in List_DB)
 
-         //        {
 
-         //            EncryptionProcessor.EncryptProperties(item);
 
-         //        }
 
-         //        var updateRow =  _sqlSugar.Updateable<Res_InvitationOfficialActivityData>(List_DB).ExecuteCommand();
 
-         //        jw = JsonView(true, "success", "修改行数:" + updateRow);
 
-         //        _sqlSugar.CommitTran();
 
-         //    }
 
-         //    catch (Exception ex)
 
-         //    {
 
-         //        _sqlSugar.RollbackTran();
 
-         //        jw.Msg = ex.Message;
 
-         //    }
 
-         //    return Ok(jw);
 
-         //}
 
-         /// <summary>
 
-         /// 根据商邀资料Id查询信息
 
-         /// </summary>
 
-         /// <param name="id"></param>
 
-         /// <returns></returns>
 
-         [HttpGet("{id}")]
 
-         [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
 
-         public async Task<IActionResult> QueryInvitationOfficialActivityById(int id)
 
-         {
 
-             if (id < 1) return Ok(JsonView(false, "Id参数错误!"));
 
-             return Ok(await _InvitationOfficialActivityDataRep.Info(id));
 
-         }
 
-         /// <summary>
 
-         /// 商邀资料操作(Status:1.新增,2.修改)
 
-         /// </summary>
 
-         /// <param name="dto"></param>
 
-         /// <returns></returns>
 
-         [HttpPost]
 
-         [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
 
-         public async Task<IActionResult> OpInvitationOfficialActivity([FromForm] OpInvitationOfficialActivityDto dto)
 
-         {
 
-             return Ok(await _InvitationOfficialActivityDataRep.IOA_OP(dto));
 
-         }
 
-         /// <summary>
 
-         /// 商邀资料 删除文件
 
-         /// </summary>
 
-         /// <param name="id"></param>
 
-         /// <param name="fileName"></param>
 
-         /// <returns></returns>
 
-         [HttpDelete("{id}")]
 
-         [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
 
-         public async Task<IActionResult> InvitationOfficialActivityDelFile(int id, string fileName)
 
-         {
 
-             if (id < 1) return Ok(JsonView(false, "请传入有效的Id"));
 
-             if (string.IsNullOrEmpty(fileName)) return Ok(JsonView(false, "文件名称不能为空!"));
 
-             var info = await _sqlSugar.Queryable<Res_InvitationOfficialActivityData>().FirstAsync(x => x.Id == id);
 
-             if (info == null) return Ok(JsonView(false, "该条数据不存在!"));
 
-             var files = new List<string>();
 
-             try
 
-             {
 
-                 files = JsonConvert.DeserializeObject<List<string>>(info.SndFileName);
 
-             }
 
-             catch (Exception) { }
 
-             if (files != null && files.Count > 0 && files.Contains(fileName))
 
-             {
 
-                 var filePath = $@"{AppSettingsHelper.Get("GrpFileBasePath")}/商邀相关文件/{fileName}";
 
-                 if (System.IO.File.Exists(filePath))
 
-                 {
 
-                     System.IO.File.Delete(filePath);
 
-                 }
 
-                 //更改文件值
 
-                 files.Remove(fileName);
 
-                 var fileUpd = await _sqlSugar.Updateable<Res_InvitationOfficialActivityData>()
 
-                                              .SetColumns(x => x.SndFileName == JsonConvert.SerializeObject(files))
 
-                                              .Where(x => x.Id == id)
 
-                                              .ExecuteCommandAsync();
 
-                 if (fileUpd > 0) return Ok(JsonView(true, "操作成功!"));
 
-             }
 
-             return Ok(JsonView(false, "操作失败!"));
 
-         }
 
-         /// <summary>
 
-         /// 删除商邀资料信息
 
-         /// </summary>
 
-         /// <param name="dto"></param>
 
-         /// <returns></returns>
 
-         [HttpPost]
 
-         [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
 
-         public async Task<IActionResult> DelInvitationOfficialActivity(DelBaseDto dto)
 
-         {
 
-             var res = await _InvitationOfficialActivityDataRep.SoftDeleteByIdAsync<Res_InvitationOfficialActivityData>(dto.Id.ToString(), dto.DeleteUserId);
 
-             if (!res) return Ok(JsonView(false, "删除失败"));
 
-             var info = await _sqlSugar.Queryable<Res_InvitationOfficialActivityData>().FirstAsync(x => x.Id == dto.Id);
 
-             if (info == null) return Ok(JsonView(false, "该条数据不存在!"));
 
-             var files = new List<string>();
 
-             try
 
-             {
 
-                 files = JsonConvert.DeserializeObject<List<string>>(info.SndFileName);
 
-             }
 
-             catch (Exception) { }
 
-             if (files != null && files.Count > 0)
 
-             {
 
-                 foreach (var fileName in files)
 
-                 {
 
-                     var filePath = $@"{AppSettingsHelper.Get("GrpFileBasePath")}/商邀相关文件/{fileName}";
 
-                     if (System.IO.File.Exists(filePath))
 
-                     {
 
-                         System.IO.File.Delete(filePath);
 
-                     }
 
-                 }
 
-             }
 
-             return Ok(JsonView(true, "删除成功!"));
 
-         }
 
-         /// <summary>
 
-         /// 商邀资料 ExcelExport
 
-         /// </summary>
 
-         /// <param name="dto"></param>
 
-         /// <returns></returns>
 
-         [HttpPost]
 
-         [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
 
-         public async Task<IActionResult> InvitationOfficialActivityExcelExport(QueryInvitationOfficialActivityDataDto dto)
 
-         {
 
-             var ExcludedKeyStr = new string[] { "快递费" };
 
-             var ClientKeyStr = new string[] { "邀请函翻译" };
 
-             var columns = "Id,UnitName,Contact";
 
-             #region 参数验证
 
-             if (dto.PageIndex < 1) return Ok(JsonView(false, "请传入有效的PageIndex参数!"));
 
-             if (dto.PageSize < 1) return Ok(JsonView(false, "请传入有效的PageSize参数!"));
 
-             #endregion
 
-             if (!string.IsNullOrWhiteSpace(dto.Country)) { columns += ",Country"; }
 
-             if (!string.IsNullOrWhiteSpace(dto.Delegation)) { columns += ",Delegation"; }
 
-             if (!string.IsNullOrWhiteSpace(dto.Field)) { columns += ",Field"; }
 
-             DateTime endTime = new DateTime();
 
-             var InvitationOfficialActivityDataList = _sqlSugar.Queryable<Res_InvitationOfficialActivityData>()
 
-                                                               .Where(x => x.IsDel == 0)
 
-                                                               .WhereIF(dto.CreateUserId != 0 && !string.IsNullOrWhiteSpace(dto.CreateUserId.ToString()), x => x.CreateUserId == dto.CreateUserId)
 
-                                                               .WhereIF(DateTime.TryParse(dto.StartCreateTime, out DateTime startTime) && DateTime.TryParse(dto.EndCreateTime, out endTime), x => x.CreateTime >= startTime && x.CreateTime <= endTime)
 
-                                                               .Select(columns)
 
-                                                               .ToList();
 
-             foreach (var item in InvitationOfficialActivityDataList)
 
-             {
 
-                 EncryptionProcessor.DecryptProperties(item);
 
-             }
 
-             InvitationOfficialActivityDataList = InvitationOfficialActivityDataList
 
-                 .WhereIF(!string.IsNullOrWhiteSpace(dto.Country), x => !string.IsNullOrWhiteSpace(x.Country) && x.Country.Contains(dto.Country))
 
-                 .WhereIF(!string.IsNullOrWhiteSpace(dto.UnitName), x => !string.IsNullOrWhiteSpace(x.UnitName) && x.UnitName.Contains(dto.UnitName))
 
-                 .WhereIF(!string.IsNullOrWhiteSpace(dto.Contact), x => !string.IsNullOrWhiteSpace(x.Contact) && x.Contact.Contains(dto.Contact))
 
-                 .WhereIF(!string.IsNullOrWhiteSpace(dto.Delegation), x => !string.IsNullOrWhiteSpace(x.Delegation) && x.Delegation.Contains(dto.Delegation))
 
-                 .WhereIF(!string.IsNullOrWhiteSpace(dto.Field), x => !string.IsNullOrWhiteSpace(x.Field) && x.Field.Contains(dto.Field))
 
-                 .ToList();
 
-             foreach (var item in ExcludedKeyStr)
 
-             {
 
-                 InvitationOfficialActivityDataList = InvitationOfficialActivityDataList.Where(x => string.IsNullOrWhiteSpace(x.UnitName) || !x.UnitName.Contains(item)).ToList();
 
-                 //sqlWhere += $" And i.UnitName not like '%{item}%' ";
 
-             }
 
-             foreach (var item in ClientKeyStr)
 
-             {
 
-                 InvitationOfficialActivityDataList = InvitationOfficialActivityDataList.Where(x => string.IsNullOrWhiteSpace(x.Contact) || !x.Contact.Contains(item)).ToList();
 
-                 //sqlWhere += $" And i.Contact not like '%{item}%' ";
 
-             }
 
-             var ids = InvitationOfficialActivityDataList.Select(x => x.Id);
 
-             var _ivitiesViews = await _sqlSugar.Queryable<Res_InvitationOfficialActivityData>()
 
-                 .LeftJoin<Sys_Users>((a, b) => b.IsDel == 0 && a.CreateUserId == b.Id)
 
-                 .Where((a, b) => ids.Contains(a.Id))
 
-                 .OrderByDescending((a, b) => a.CreateTime)
 
-                 .Select((a, b) => new IOAInfoView
 
-                 {
 
-                     FaceBook = a.FaceBook,
 
-                     Id = a.Id,
 
-                     Address = a.Address,
 
-                     Background = a.Background,
 
-                     City = a.City,
 
-                     Contact = a.Contact,
 
-                     Country = a.Country,
 
-                     Delegation = a.Delegation,
 
-                     Email = a.Email,
 
-                     Fax = a.Fax,
 
-                     Field = a.Field,
 
-                     Ins = a.Ins,
 
-                     WeChat = a.WeChat,
 
-                     UnitWeb = a.UnitWeb,
 
-                     UnitName = a.UnitName,
 
-                     UnitInfo = a.UnitInfo,
 
-                     Tel = a.Tel,
 
-                     SndFileName = a.SndFileName,
 
-                     Remark = a.Remark,
 
-                     OtherInfo = a.OtherInfo,
 
-                     Job = a.Job
 
-                 })
 
-                 .ToListAsync();
 
-             if (!_ivitiesViews.Any()) return Ok(JsonView(false, $"您查询的数据暂无内容,不可导出!"));
 
-             var allGroupIds = new HashSet<int>();
 
-             foreach (var item in _ivitiesViews)
 
-             {
 
-                 EncryptionProcessor.DecryptProperties(item);
 
-                 if (!string.IsNullOrEmpty(item.Delegation))
 
-                 {
 
-                     allGroupIds.UnionWith(
 
-                         item.Delegation.Split(',')
 
-                         .Select(x =>
 
-                         {
 
-                             int id;
 
-                             if (int.TryParse(x, out id)) return id;
 
-                             return 0;
 
-                         })
 
-                         .Where(id => id != 0)
 
-                     );
 
-                 }
 
-             }
 
-             var _DelegationInfos = _sqlSugar.Queryable<Grp_DelegationInfo>()
 
-                 .Where(x => allGroupIds.Contains(x.Id) && x.IsDel == 0)
 
-                 .ToList()
 
-                 .GroupBy(x => x.Id)
 
-                 .ToDictionary(group => group.Key, group => group.Select(g => g.TeamName));
 
-             foreach (var item in _ivitiesViews)
 
-             {
 
-                 string groupNameStr = "";
 
-                 if (!string.IsNullOrEmpty(item.Delegation))
 
-                 {
 
-                     var groupIds = item.Delegation.Split(',').Select(x =>
 
-                     {
 
-                         int id;
 
-                         if (int.TryParse(x, out id)) return id;
 
-                         return 0;
 
-                     })
 
-                     .Where(id => id != 0)
 
-                     .ToArray();
 
-                     foreach (var id in groupIds)
 
-                     {
 
-                         if (_DelegationInfos.ContainsKey(id))
 
-                         {
 
-                             groupNameStr += string.Join("", _DelegationInfos[id]) + ",";
 
-                         }
 
-                     }
 
-                     if (groupNameStr.Length > 1)
 
-                     {
 
-                         groupNameStr = groupNameStr.Substring(0, groupNameStr.Length - 1);
 
-                     }
 
-                 }
 
-                 item.DelegationStr = groupNameStr;
 
-             }
 
-             //获取模板
 
-             string tempPath = (AppSettingsHelper.Get("ExcelBasePath") + "Template/商邀资料模板.xls");
 
-             var designer = new WorkbookDesigner();
 
-             designer.Workbook = new Workbook(tempPath);
 
-             var dt = CommonFun.ToDataTableArray(_ivitiesViews);
 
-             dt.TableName = $"OADataView";
 
-             designer.SetDataSource(dt);
 
-             designer.Process();
 
-             //文件名
 
-             string fileName = $"商邀资料{DateTime.Now.ToString("yyyyMMddHHmmss")}.xls";
 
-             designer.Workbook.Save(AppSettingsHelper.Get("ExcelBasePath") + "InvitationOfficialActivityExport/" + fileName);
 
-             string url = AppSettingsHelper.Get("ExcelBaseUrl") + "Office/Excel/InvitationOfficialActivityExport/" + fileName;
 
-             return Ok(JsonView(true, "成功", url));
 
-         }
 
-         /// <summary>
 
-         /// 商邀资料 导入文件(Excel)模板下载 
 
-         /// </summary>
 
-         /// <returns></returns>
 
-         [HttpGet]
 
-         [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
 
-         public async Task<IActionResult> InvitationOfficialActivityExcelTemplateExport()
 
-         {
 
-             //获取模板
 
-             string fileName = $"商邀资料上传文件模板.xls";
 
-             string url = AppSettingsHelper.Get("ExcelBaseUrl") + "Office/Excel/Template/" + fileName;
 
-             return Ok(JsonView(true, "成功", url));
 
-         }
 
-         /// <summary>
 
-         /// 商邀资料 上传Excel文件添加 
 
-         /// </summary>
 
-         /// <param name="file"></param>
 
-         /// <param name="currUserId"></param>
 
-         /// <returns></returns>
 
-         [HttpPost]
 
-         [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
 
-         public async Task<IActionResult> InvitationOfficialActivityExcelUpload(IFormFile file, int currUserId)
 
-         {
 
-             var fileName = file.FileName;
 
-             var filePostfix = fileName.Split(".")[1].ToUpper();
 
-             if (!filePostfix.Contains("XLS")) return Ok(JsonView(false, $"请传入Excel文件"));
 
-             if (file.Length < 1) return Ok(JsonView(false, $"请传入有效的文件"));
 
-             if (currUserId < 1) return Ok(JsonView(false, $"请传入有效的UserId"));
 
-             //保存文件
 
-             string fileDirPath = string.Format(@"{0}InvitationOfficialActivityExcelUpload/", AppSettingsHelper.Get("ExcelBasePath"));
 
-             if (!Directory.Exists(fileDirPath))
 
-             {
 
-                 Directory.CreateDirectory(fileDirPath);
 
-             }
 
-             var filePath = Path.Combine(fileDirPath, fileName);
 
-             await using var stream = new FileStream(filePath, FileMode.Create);
 
-             await file.CopyToAsync(stream);
 
-             //读取保存的文件
 
-             Workbook workbook = new Workbook(filePath);
 
-             if (workbook == null) return Ok(JsonView(false, $"Excel文件不存在!"));
 
-             Worksheet worksheet = workbook.Worksheets[0];
 
-             if (worksheet == null) return Ok(JsonView(false, $"Excel文件工作簿不存在!"));
 
-             var infos = new List<Res_InvitationOfficialActivityData>();
 
-             var groupNames = await _sqlSugar.Queryable<Grp_DelegationInfo>().Where(x => x.IsDel == 0 && !string.IsNullOrEmpty(x.TeamName)).Select(x => new { x.Id, x.TeamName }).ToListAsync();
 
-             for (int row = 1; row < worksheet.Cells.MaxDataRow + 1; row++)
 
-             {
 
-                 var groupIdsLabel = string.Empty;
 
-                 var groupNames1 = worksheet.Cells[row, 14].StringValue ?? "-";
 
-                 if (!string.IsNullOrEmpty(groupNames1))
 
-                 {
 
-                     if (groupNames1.Contains(";"))
 
-                     {
 
-                         var groupNameArray = groupNames1.Split(";").Where(x => !string.IsNullOrEmpty(x)).ToList();
 
-                         var groupIds = groupNames.Where(x => groupNameArray.Contains(x.TeamName)).Select(x => x.Id).ToList();
 
-                         if (groupIds.Any()) groupIdsLabel = string.Join(',', groupIds);
 
-                     }
 
-                     else groupIdsLabel = groupNames.Where(x => groupNames1.Equals(x.TeamName)).FirstOrDefault()?.Id.ToString() ?? string.Empty;
 
-                 }
 
-                 infos.Add(new Res_InvitationOfficialActivityData()
 
-                 {
 
-                     Country = worksheet.Cells[row, 0].StringValue ?? "-",
 
-                     City = worksheet.Cells[row, 1].StringValue ?? "-",
 
-                     UnitName = worksheet.Cells[row, 2].StringValue ?? "-",
 
-                     Field = worksheet.Cells[row, 3].StringValue ?? "-",
 
-                     Address = worksheet.Cells[row, 4].StringValue ?? "-",
 
-                     UnitInfo = worksheet.Cells[row, 5].StringValue ?? "-",
 
-                     Contact = worksheet.Cells[row, 6].StringValue ?? "-",
 
-                     Job = worksheet.Cells[row, 7].StringValue ?? "-",
 
-                     Tel = worksheet.Cells[row, 8].StringValue ?? "-",
 
-                     Email = worksheet.Cells[row, 9].StringValue ?? "-",
 
-                     WeChat = worksheet.Cells[row, 10].StringValue ?? "-",
 
-                     FaceBook = worksheet.Cells[row, 11].StringValue ?? "-",
 
-                     Ins = worksheet.Cells[row, 12].StringValue ?? "-",
 
-                     Fax = worksheet.Cells[row, 13].StringValue ?? "-",
 
-                     Delegation = groupIdsLabel,
 
-                     SndFilePath = worksheet.Cells[row, 15].StringValue ?? "-",
 
-                     OtherInfo = worksheet.Cells[row, 16].StringValue ?? "-",
 
-                     Remark = $"[{DateTime.Now.ToString("yyyy-MM-dd HH:mm:ss")}] Excel上传文件添加! 文件存储地址[{filePath}]",
 
-                     CreateUserId = currUserId,
 
-                     IsDel = 0
 
-                 });
 
-             }
 
-             //加密
 
-             foreach (var item in infos) EncryptionProcessor.EncryptProperties(item);
 
-             var addCount = await _sqlSugar.Insertable(infos).ExecuteCommandAsync();
 
-             if (addCount < 1) return Ok(JsonView(false, "文件上传添加失败!"));
 
-             return Ok(JsonView(true, $"上传文件添加成功!共添加{addCount}条!"));
 
-         }
 
-         #endregion
 
-         #region 公务出访
 
-         /// <summary>
 
-         ///  获取团组所有信息,绑定下拉框
 
-         /// </summary>
 
-         /// <param name="dto"></param>
 
-         /// <returns></returns>
 
-         [HttpPost]
 
-         [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
 
-         public async Task<IActionResult> GetGroupAllList(OfficialActivitiesByDiIdDto dto)
 
-         {
 
-             //string groupSql = string.Format("Select * From Grp_DelegationInfo With(NoLock) Where IsDel = 0 Order By CreateTime Desc");
 
-             //List<Grp_DelegationInfo> _DelegationInfos = _sqlSugar.SqlQueryable< Grp_DelegationInfo >(groupSql).ToList();
 
-             var _groupData = await _delegationInfoRep.PostShareGroupInfos(1);
 
-             dynamic groupInfos = null;
 
-             if (_groupData.Code == 0) groupInfos = _groupData.Data;
 
-             var data = _sqlSugar.Queryable<Sys_SetData>().Where(a => a.IsDel == 0).ToList();
 
-             var data1 = data.Where(a => a.STid == 38).Select(x => new { x.Id, x.Name }).ToList();
 
-             var data2 = data.Where(a => a.STid == 101).Select(x => new { x.Id, x.Name }).ToList();
 
-             //张总安排未参与对接
 
-             if (data2.Any(x => x.Name.Equals("张总安排未参与对接")))
 
-             {
 
-                 var zhangZong = data2.FirstOrDefault(x => x.Name.Equals("张总安排未参与对接"));
 
-                 if (zhangZong != null) data2.Remove(zhangZong);
 
-                 data2.Insert(0, zhangZong);
 
-             }
 
-             var data3 = data.Where(a => a.STid == 66).Select(x => new { x.Id, x.Name, x.Remark }).ToList();
 
-             var _DeleFile = _sqlSugar.Queryable<Grp_DeleFile>().Where(a => a.Diid == dto.DiId && a.IsDel == 0 && a.Category == 970).ToList();
 
-             var translatorData = _sqlSugar.Queryable<Res_TranslatorLibrary>().Where(a => a.IsDel == 0).ToList();
 
-             var translatorData1 = _mapper.Map<List<TranslatorView>>(translatorData);
 
-             foreach (var item in translatorData1) EncryptionProcessor.DecryptProperties(item);
 
-             return Ok(JsonView(true,
 
-                 "查询成功!",
 
-                 new
 
-                 {
 
-                     Delegation = groupInfos,
 
-                     SetData = data1,
 
-                     DataSource = data2,
 
-                     currencyData = data3,
 
-                     DeleFile = _DeleFile,
 
-                     TranslatorData = translatorData1
 
-                 }));
 
-         }
 
-         /// <summary>
 
-         /// 公务 团组名称 Page List
 
-         /// </summary>
 
-         /// <param name="dto"></param>
 
-         /// <returns></returns>
 
-         [HttpPost]
 
-         [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
 
-         public async Task<IActionResult> OfficialActivitiesGroupNameList(OfficialActivitiesGroupNameListDto dto)
 
-         {
 
-             var sw = Stopwatch.StartNew();
 
-             if (!SharingStaticData.PortTypes.Contains(dto.PortType))
 
-             {
 
-                 return Ok(JsonView(false, MsgTips.Port));
 
-             }
 
-             dto.PageIndex = dto.PageIndex == 0 ? 1 : dto.PageIndex;
 
-             dto.PageSize = dto.PageSize == 0 ? 10 : dto.PageSize;
 
-             RefAsync<int> total = 0;
 
-             // 只查询需要的字段,避免Select后再赋值,减少内存占用
 
-             var groupInfos = await _officialActivitiesRep._sqlSugar
 
-                 .Queryable<Grp_DelegationInfo>()
 
-                 .Where(x => x.IsDel == 0)
 
-                 .WhereIF(!string.IsNullOrEmpty(dto.GroupName), x => x.TeamName.Contains(dto.GroupName))
 
-                 .OrderByDescending(x => x.VisitDate)
 
-                 .Select(x => new Web_ShareGroupInfoView()
 
-                 {
 
-                     Id = x.Id,
 
-                     TeamName = x.TeamName,
 
-                     TourCode = x.TourCode,
 
-                     ClientName = x.ClientName,
 
-                     VisitCountry = x.VisitCountry,
 
-                     VisitStartDate = x.VisitStartDate,
 
-                     VisitEndDate = x.VisitEndDate,
 
-                     VisitDays = x.VisitDays,
 
-                     VisitPNumber = x.VisitPNumber
 
-                 })
 
-                 .ToPageListAsync(dto.PageIndex, dto.PageSize, total);
 
-             if (groupInfos.Count > 0)
 
-             {
 
-                 for (int i = 0; i < groupInfos.Count; i++)
 
-                 {
 
-                     var visitCountry = groupInfos[i].VisitCountry;
 
-                     groupInfos[i].VisitCountry = !string.IsNullOrEmpty(visitCountry)
 
-                         ? _delegationInfoRep.FormartTeamName(visitCountry)
 
-                         : string.Empty;
 
-                 }
 
-             }
 
-             sw.Stop();
 
-             return Ok(JsonView(true, $"操作成功!耗时:{sw.ElapsedMilliseconds}ms", groupInfos, total));
 
-         }
 
-         /// <summary>
 
-         /// 公务 翻译人员 Page List
 
-         /// </summary>
 
-         /// <param name="dto"></param>
 
-         /// <returns></returns>
 
-         [HttpPost]
 
-         [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
 
-         public async Task<IActionResult> OfficialActivitiesTranslatorList(OfficialActivitiesTranslatorListDto dto)
 
-         {
 
-             var sw = Stopwatch.StartNew();
 
-             if (!SharingStaticData.PortTypes.Contains(dto.PortType))
 
-             {
 
-                 return Ok(JsonView(false, MsgTips.Port));
 
-             }
 
-             dto.PageIndex = dto.PageIndex == 0 ? 1 : dto.PageIndex;
 
-             dto.PageSize = dto.PageSize == 0 ? 10 : dto.PageSize;
 
-             var translatorIds = new List<int>();
 
-             if (!string.IsNullOrEmpty(dto.TranslatorName))
 
-             {
 
-                 var translators = await _sqlSugar.Queryable<Res_TranslatorLibrary>()
 
-                     .Where(x => x.IsDel == 0 && !string.IsNullOrEmpty(x.Name))
 
-                     .Select(x => new { x.Id,x.Name })
 
-                     .ToListAsync();
 
-                 if (translators.Any())
 
-                 {
 
-                     foreach (var item in translators)
 
-                     {
 
-                         var decryptedName = AesEncryptionHelper.Decrypt(item.Name);
 
-                         if (!string.IsNullOrEmpty(decryptedName) && decryptedName.Contains(dto.TranslatorName))
 
-                         {
 
-                             translatorIds.Add(item.Id);
 
-                         }
 
-                     }
 
-                 }
 
-                 if (translatorIds.Count == 0)
 
-                 {
 
-                     sw.Stop();
 
-                     return Ok(JsonView(true, $"暂无翻译人员信息!耗时: {sw.ElapsedMilliseconds}ms", Array.Empty<TranslatorView>(), 0));
 
-                 }
 
-             }
 
-             
 
-             RefAsync<int> total = 0;
 
-             var translatorInfos = await _officialActivitiesRep._sqlSugar
 
-                 .Queryable<Res_TranslatorLibrary>()
 
-                 .Where(x => x.IsDel == 0 && !string.IsNullOrEmpty(x.Name))
 
-                 .WhereIF(translatorIds != null && translatorIds.Count > 0, x => translatorIds.Contains(x.Id))
 
-                 .OrderByDescending(x => x.CreateTime)
 
-                 .Select(x => new TranslatorView()
 
-                 {
 
-                     Id = x.Id,
 
-                     Area = x.Area,
 
-                     Name = x.Name,
 
-                     Sex = x.Sex,
 
-                     Tel = x.Tel,
 
-                     Email = x.Email,
 
-                     WechatNo = x.WechatNo,
 
-                     OtherSocialAccounts = x.OtherSocialAccounts,
 
-                     Language = x.Language,
 
-                     Price = x.Price,
 
-                     Currency = x.Currency,
 
-                 })
 
-                 .ToPageListAsync(dto.PageIndex, dto.PageSize, total);
 
-             
 
-             for (int i = 0; i < translatorInfos.Count; i++)
 
-             {
 
-                 EncryptionProcessor.DecryptProperties(translatorInfos[i]);
 
-             }
 
-             sw.Stop();
 
-             string msg = translatorInfos.Count == 0 ? $"暂无您查询的翻译人员信息!耗时: {sw.ElapsedMilliseconds}ms" : $"操作成功!耗时: {sw.ElapsedMilliseconds}ms";
 
-             return Ok(JsonView(true, msg, translatorInfos, total));
 
-         }
 
-         /// <summary>
 
-         /// 公务 绑定下拉框
 
-         /// </summary>
 
-         /// <param name="dto"></param>
 
-         /// <returns></returns>
 
-         [HttpPost]
 
-         [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
 
-         public async Task<IActionResult> OfficialActivitiesInitDatabase(OfficialActivitiesByDiIdDto dto)
 
-         {
 
-             var data = _sqlSugar.Queryable<Sys_SetData>().Where(a => a.IsDel == 0).ToList();
 
-             var data1 = data.Where(a => a.STid == 38).Select(x => new { x.Id, x.Name }).ToList();
 
-             var data2 = data.Where(a => a.STid == 101).Select(x => new { x.Id, x.Name }).ToList();
 
-             //张总安排未参与对接
 
-             if (data2.Any(x => x.Name.Equals("张总安排未参与对接")))
 
-             {
 
-                 var zhangZong = data2.FirstOrDefault(x => x.Name.Equals("张总安排未参与对接"));
 
-                 if (zhangZong != null) data2.Remove(zhangZong);
 
-                 data2.Insert(0, zhangZong);
 
-             }
 
-             var data3 = data.Where(a => a.STid == 66).Select(x => new { x.Id, x.Name, x.Remark }).ToList();
 
-             var _DeleFile = _sqlSugar.Queryable<Grp_DeleFile>().Where(a => a.Diid == dto.DiId && a.IsDel == 0 && a.Category == 970).ToList();
 
-             return Ok(JsonView(true,
 
-                 "查询成功!",
 
-                 new
 
-                 {
 
-                     SetData = data1,
 
-                     DataSource = data2,
 
-                     currencyData = data3,
 
-                     DeleFile = _DeleFile
 
-                 }));
 
-         }
 
-         /// <summary>
 
-         /// 公务List
 
-         /// </summary>
 
-         /// <param name="dto"></param>
 
-         /// <returns></returns>
 
-         [HttpPost]
 
-         [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
 
-         public async Task<IActionResult> QueryOfficialActivitiesByDiId(OfficialActivitiesByDiIdDto dto)
 
-         {
 
-             return Ok(await _officialActivitiesRep.QueryOfficialActivitiesByDiId(dto));
 
-         }
 
-         /// <summary>
 
-         /// 根据公务出访数据Id查询数据
 
-         /// </summary>
 
-         /// <param name="dto"></param>
 
-         /// <returns></returns>
 
-         [HttpPost]
 
-         [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
 
-         public async Task<IActionResult> QueryOfficialActivitiesById(OfficialActivitiesDiIdDto dto)
 
-         {
 
-             Result groupData = await _officialActivitiesRep.QueryOfficialActivitiesById(dto);
 
-             if (groupData.Code != 0)
 
-             {
 
-                 return Ok(JsonView(false, groupData.Msg));
 
-             }
 
-             return Ok(JsonView(true, groupData.Msg, groupData.Data));
 
-         }
 
-         /// <summary>
 
-         /// 公务出访操作(Status:1.新增,2.修改)
 
-         /// </summary>
 
-         /// <param name="dto"></param>
 
-         /// <returns></returns>
 
-         [HttpPost]
 
-         [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
 
-         public async Task<IActionResult> OpOfficialActivities(OpOfficialActivitiesDto dto)
 
-         {
 
-             Result groupData = await _officialActivitiesRep.OpOfficialActivities(dto);
 
-             if (groupData.Code != 0)
 
-             {
 
-                 return Ok(JsonView(StatusCodes.Status400BadRequest, groupData.Msg, new { Id = 0 }));
 
-             }
 
-             try
 
-             {
 
-                 //公务出访变更发送通知
 
-                 await AppNoticeLibrary.SendUserMsg_GroupShare_ToOP(dto.DiId, dto.CreateUserId);
 
-             }
 
-             catch (Exception ex)
 
-             {
 
-                 //抄送日志
 
-             }
 
-             return Ok(JsonView(true, groupData.Msg, groupData.Data));
 
-         }
 
-         /// <summary>
 
-         /// 上传文件(邮件截图)
 
-         /// </summary>
 
-         /// <param name="dto"></param>
 
-         /// <returns></returns>
 
-         [HttpPost]
 
-         [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
 
-         public async Task<IActionResult> OfficialActivitiesUploadFiles([FromForm] OfficialActivitiesUploadFilesDto dto)
 
-         {
 
-             string networkPath = AppSettingsHelper.Get("GrpFileBaseUrl");
 
-             string localPath = AppSettingsHelper.Get("GrpFileBasePath");
 
-             string ptfPath = AppSettingsHelper.Get("GrpFileFtpPath");
 
-             if (dto.diId < 1 || dto.currUserId < 1)
 
-             {
 
-                 return Ok(JsonView(false, "参数有误,上传失败!"));
 
-             }
 
-             if (dto.files == null || dto.files.Count < 1)
 
-             {
 
-                 return Ok(JsonView(false, "文件为空,上传失败!"));
 
-             }
 
-             string localFileDir = $"{localPath}{ptfPath}";
 
-             List<string> fileUrls = new List<string>();
 
-             string[] failFiles = new string[] { };
 
-             foreach (var file in dto.files)
 
-             {
 
-                 //文件名称
 
-                 string[] fileNameArray = file.FileName.Split(".");
 
-                 string projectFileName = $"{fileNameArray[0].ToString().Replace("-", "_").Replace("/", "_")}{DateTime.UtcNow:yyyyMMddHHmmss}.{fileNameArray[1]}";
 
-                 //上传的文件的路径
 
-                 string filePath = $@"{localPath}公务相关文件";
 
-                 if (!Directory.Exists(filePath))
 
-                 {
 
-                     Directory.CreateDirectory(filePath);
 
-                 }
 
-                 var path = Path.Combine(filePath, projectFileName);
 
-                 //using var stream = new FileStream(path, FileMode.Create);
 
-                 //await file.CopyToAsync(stream);
 
-                 try
 
-                 {
 
-                     using (FileStream fs = System.IO.File.Create(path))
 
-                     {
 
-                         file.CopyTo(fs);
 
-                         fs.Flush();
 
-                     }
 
-                     fileUrls.Add($"/{ptfPath}公务相关文件/{projectFileName}");
 
-                 }
 
-                 catch (Exception ex)
 
-                 {
 
-                     failFiles.Append(file.FileName);
 
-                 }
 
-             }
 
-             var oaInfo = await _sqlSugar.Queryable<Res_OfficialActivities>().Where(x => x.Id == dto.id).FirstAsync();
 
-             List<string> files = new List<string>();
 
-             var status = false;
 
-             var _oaInfo = new Res_OfficialActivities()
 
-             {
 
-                 DiId = dto.diId,
 
-                 ScreenshotOfMailUrl = JsonConvert.SerializeObject(fileUrls),
 
-                 IsDel = 0,
 
-                 CreateUserId = dto.currUserId,
 
-                 CreateTime = DateTime.Now
 
-             };
 
-             if (oaInfo == null)
 
-             {
 
-                 var id = await _sqlSugar.Insertable<Res_OfficialActivities>(_oaInfo)
 
-                                         .ExecuteReturnIdentityAsync();
 
-                 if (id > 0)
 
-                 {
 
-                     status = true;
 
-                     dto.id = id;
 
-                 }
 
-             }
 
-             else
 
-             {
 
-                 var oldFiles = string.IsNullOrEmpty(oaInfo.ScreenshotOfMailUrl)
 
-                                ? new List<string>()
 
-                                : JsonConvert.DeserializeObject<List<string>>(oaInfo.ScreenshotOfMailUrl);
 
-                 if (oldFiles.Count > 0)
 
-                 {
 
-                     fileUrls.AddRange(oldFiles);
 
-                 }
 
-                 fileUrls = fileUrls.Distinct().ToList();
 
-                 if (fileUrls.Count > 0)
 
-                 {
 
-                     var upd = await _sqlSugar.Updateable<Res_OfficialActivities>()
 
-                                           .SetColumns(x => x.ScreenshotOfMailUrl == JsonConvert.SerializeObject(fileUrls))
 
-                                           .Where(x => x.Id == dto.id)
 
-                                           .ExecuteCommandAsync();
 
-                     if (upd > 0) status = true;
 
-                 }
 
-             }
 
-             List<string> returnFileUrls = new List<string>();
 
-             fileUrls.ForEach(x =>
 
-             {
 
-                 returnFileUrls.Add($"{networkPath}{x}");
 
-             });
 
-             if (status)
 
-             {
 
-                 string msg = "操作成功!";
 
-                 if (failFiles.Length > 1)
 
-                 {
 
-                     foreach (var item in failFiles)
 
-                     {
 
-                         msg += $"{failFiles}、";
 
-                     }
 
-                     msg = msg.Substring(0, msg.Length - 1);
 
-                     msg += "等文件保存失败!";
 
-                 }
 
-                 return Ok(JsonView(true, msg, new { id = dto.id, fileUrls = returnFileUrls }));
 
-             }
 
-             return Ok(JsonView(false, "操作失败!"));
 
-         }
 
-         /// <summary>
 
-         /// 删除文件(邮件截图)
 
-         /// </summary>
 
-         /// <param name="dto"></param>
 
-         /// <returns></returns>
 
-         [HttpPost]
 
-         [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
 
-         public async Task<IActionResult> OfficialActivitiesDelFile(OfficialActivitiesDelFileDto dto)
 
-         {
 
-             string networkPath = AppSettingsHelper.Get("GrpFileBaseUrl");
 
-             string localPath = AppSettingsHelper.Get("GrpFileBasePath");
 
-             string ptfPath = AppSettingsHelper.Get("GrpFileFtpPath");
 
-             if (dto.Id < 1 || string.IsNullOrEmpty(dto.FileName))
 
-             {
 
-                 return Ok(JsonView(false, "参数有误,上传失败!"));
 
-             }
 
-             string localFileDir = $"{localPath}{ptfPath}";
 
-             List<string> fileUrls = new List<string>();
 
-             var oaInfo = await _sqlSugar.Queryable<Res_OfficialActivities>().Where(x => x.Id == dto.Id).FirstAsync();
 
-             if (oaInfo != null)
 
-             {
 
-                 string urlJson = oaInfo.ScreenshotOfMailUrl ?? "";
 
-                 if (!string.IsNullOrEmpty(urlJson))
 
-                 {
 
-                     List<string> urls = JsonConvert.DeserializeObject<List<string>>(urlJson);
 
-                     var filePath = urls.Find(x => x.Contains(dto.FileName));
 
-                     if (string.IsNullOrEmpty(filePath)) return Ok(JsonView(false, "文件不存在!"));
 
-                     var updFile = urls.Remove(filePath);
 
-                     if (updFile)
 
-                     {
 
-                         //删除文件
 
-                         string fileUrl = AppSettingsHelper.Get("GrpFileBasePath").Replace(@"/Office/GrpFile", "") + filePath;
 
-                         if (System.IO.File.Exists(fileUrl))
 
-                         {
 
-                             System.IO.File.Delete(fileUrl);
 
-                         }
 
-                         string urlJsonstr = JsonConvert.SerializeObject(urls);
 
-                         var upd = await _sqlSugar.Updateable<Res_OfficialActivities>()
 
-                                                  .SetColumns(x => x.ScreenshotOfMailUrl == urlJsonstr)
 
-                                                  .Where(x => x.Id == dto.Id)
 
-                                                  .ExecuteCommandAsync();
 
-                         if (upd > 0) return Ok(JsonView(true, "操作成功!"));
 
-                     }
 
-                 }
 
-             }
 
-             return Ok(JsonView(false, "操作失败!"));
 
-         }
 
-         /// <summary>
 
-         /// 公务出访 确认、取消邀请
 
-         /// </summary>
 
-         /// <param name="dto"></param>
 
-         /// <returns></returns>
 
-         [HttpPost]
 
-         [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
 
-         public async Task<IActionResult> OfficialActivitiesInviteOperation(OfficialActivitiesInviteOperationDto dto)
 
-         {
 
-             if (dto.Id < 1) return Ok(JsonView(false, "Id参数有误!"));
 
-             if (dto.Type < 0 || dto.Type > 1) return Ok(JsonView(false, "Type参数有误!"));
 
-             var upd = await _sqlSugar.Updateable<Res_OfficialActivities>()
 
-                                      .SetColumns(x => x.ConfirmTheInvitation == dto.Type)
 
-                                      .Where(x => x.Id == dto.Id)
 
-                                      .ExecuteCommandAsync();
 
-             if (upd > 0) return Ok(JsonView(true, "操作成功!"));
 
-             return Ok(JsonView(false, "操作失败!"));
 
-         }
 
-         /// <summary>
 
-         /// 上传文件
 
-         /// </summary>
 
-         /// <param name="file"></param>
 
-         /// <returns></returns>
 
-         [HttpPost]
 
-         [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
 
-         public async Task<IActionResult> UploadOfficialActivities(IFormFile file)
 
-         {
 
-             try
 
-             {
 
-                 int Type = int.Parse(Request.Headers["Type"]);//1公务方简介,2公务活动图片,3发票
 
-                 int DiId = int.Parse(Request.Headers["DiId"]);
 
-                 int CreateUserId = int.Parse(Request.Headers["CreateUserId"]);
 
-                 if (file != null)
 
-                 {
 
-                     var fileDir = AppSettingsHelper.Get("GrpFileBasePath");
 
-                     //文件名称
 
-                     string projectFileName = file.FileName;
 
-                     //上传的文件的路径
 
-                     string filePath = "";
 
-                     if (!Directory.Exists(fileDir))
 
-                     {
 
-                         Directory.CreateDirectory(fileDir);
 
-                     }
 
-                     //上传的文件的路径
 
-                     filePath = fileDir + $@"\商邀相关文件\{projectFileName}";
 
-                     using (FileStream fs = System.IO.File.Create(filePath))
 
-                     {
 
-                         file.CopyTo(fs);
 
-                         fs.Flush();
 
-                     }
 
-                     Grp_DeleFile d = new Grp_DeleFile();
 
-                     d.Diid = DiId;
 
-                     d.Category = 970;
 
-                     if (Type == 1) d.Kind = 1;
 
-                     else if (Type == 2) d.Kind = 2;
 
-                     else if (Type == 3) d.Kind = 3;
 
-                     d.FileName = projectFileName;
 
-                     d.FilePath = "";
 
-                     d.CreateUserId = CreateUserId;
 
-                     int id = await _sqlSugar.Insertable(d).ExecuteReturnIdentityAsync();
 
-                     return Ok(JsonView(true, "上传成功!", projectFileName));
 
-                 }
 
-                 else
 
-                 {
 
-                     return Ok(JsonView(false, "上传失败!"));
 
-                 }
 
-             }
 
-             catch (Exception ex)
 
-             {
 
-                 return Ok(JsonView(false, "程序错误!"));
 
-                 throw;
 
-             }
 
-         }
 
-         /// <summary>
 
-         /// 删除文件
 
-         /// </summary>
 
-         /// <param name="dto"></param>
 
-         /// <returns></returns>
 
-         [HttpPost]
 
-         [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
 
-         public async Task<IActionResult> DelloadOfficialActivities(DelBaseDto dto)
 
-         {
 
-             try
 
-             {
 
-                 var fileDir = AppSettingsHelper.Get("GrpFileBasePath");
 
-                 Grp_DeleFile _DeleFile = await _sqlSugar.Queryable<Grp_DeleFile>().FirstAsync(a => a.Id == dto.Id);
 
-                 if (_DeleFile != null)
 
-                 {
 
-                     string fileName = _DeleFile.FileName;
 
-                     string filePath = fileDir + "/团组增减款项相关文件/" + fileName;
 
-                     // 删除该文件
 
-                     System.IO.File.Delete(filePath);
 
-                     int id = await _sqlSugar.Updateable<Grp_DeleFile>().Where(a => a.Id == dto.Id).SetColumns(a => new Grp_DeleFile { IsDel = 1, DeleteUserId = dto.DeleteUserId, DeleteTime = DateTime.Now.ToString("yyyy-MM-dd HH:mm:ss") }).ExecuteCommandAsync();
 
-                     return Ok(JsonView(true, "取消文件成功!"));
 
-                 }
 
-                 else
 
-                 {
 
-                     return Ok(JsonView(false, "取消文件失败!"));
 
-                 }
 
-             }
 
-             catch (Exception ex)
 
-             {
 
-                 return Ok(JsonView(false, "程序错误!"));
 
-                 throw;
 
-             }
 
-         }
 
-         /// <summary>
 
-         /// 删除公务出访信息
 
-         /// </summary>
 
-         /// <param name="dto"></param>
 
-         /// <returns></returns>
 
-         [HttpPost]
 
-         [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
 
-         public async Task<IActionResult> DelOfficialActivities(DelBaseDto dto)
 
-         {
 
-             _sqlSugar.BeginTran();
 
-             var res = await _officialActivitiesRep.SoftDeleteByIdAsync<Res_OfficialActivities>(dto.Id.ToString(), dto.DeleteUserId);
 
-             if (!res)
 
-             {
 
-                 _sqlSugar.RollbackTran();
 
-                 return Ok(JsonView(false, "删除失败"));
 
-             }
 
-             #region 删除公务出访
 
-             await _sqlSugar.Updateable<Grp_OfficialDutyLinkTranslator>()
 
-                            .SetColumns(x => new Grp_OfficialDutyLinkTranslator()
 
-                            {
 
-                                DeleteUserId = dto.DeleteUserId,
 
-                                DeleteTime = DateTime.Now.ToString("yyyy-MM-dd HH:mm:ss"),
 
-                                IsDel = 1,
 
-                                Remark = $"公务出访-->删除"
 
-                            })
 
-                            .Where(x => x.OfficialDutyId == dto.Id)
 
-                            .ExecuteCommandAsync();
 
-             #endregion
 
-             _sqlSugar.CommitTran();
 
-             return Ok(JsonView(true, "删除成功!"));
 
-         }
 
-         /// <summary>
 
-         /// 公务出访
 
-         /// 请示范例提示 
 
-         /// Add Time:2024-05-13 13:56:44
 
-         /// </summary>
 
-         /// <param name="dto"></param>
 
-         /// <returns></returns>
 
-         [HttpPost]
 
-         [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
 
-         public async Task<IActionResult> PostOfficialActivitiesReqReqSampleTips(PostOfficialActivitiesReqReqSampleTipsDto dto)
 
-         {
 
-             var res = await _officialActivitiesRep.PostReqReqSampleTips(dto.country, dto.area, dto.client);
 
-             if (res.Code == 0)
 
-             {
 
-                 return Ok(JsonView(true, "操作成功!", res.Data));
 
-             }
 
-             return Ok(JsonView(false, res.Msg));
 
-         }
 
-         /// <summary>
 
-         /// 公务出访 (省外办,市外办) File Downlaod
 
-         /// </summary>
 
-         /// <param name="dto"></param>
 
-         /// <returns></returns>
 
-         [HttpPost]
 
-         [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
 
-         public async Task<IActionResult> OfficialActivitiesFileDownload(OfficialActivitiesFileDownload dto)
 
-         {
 
-             #region 参数验证
 
-             if (dto.FileType < 1 || dto.FileType > 2) return Ok(JsonView(false, "请传入有效的FileType参数. 1 省外办出访请示 2 市外办出访请示", ""));
 
-             if (dto.DiId < 1) return Ok(JsonView(false, "请传入有效的DiId参数.", ""));
 
-             #endregion
 
-             //团组基础信息
 
-             var groupInfo = _sqlSugar.Queryable<Grp_DelegationInfo>().Where(it => it.IsDel == 0 && it.Id == dto.DiId).First();
 
-             if (groupInfo == null) return Ok(JsonView(false, "该团组基本信息不存在", ""));
 
-             groupInfo.VisitCountry = groupInfo.VisitCountry.Replace("|", "、");
 
-             //团组公务信息
 
-             var obDatas = _sqlSugar.Queryable<Res_OfficialActivities>().Where(it => it.IsDel == 0 && it.DiId == dto.DiId).OrderBy(it => it.Date).ToList();
 
-             //if (obDatas.Count < 1) return Ok(JsonView(false, "请先录入公务信息!"));
 
-             //团组客户名单
 
-             var guestResult = _tourClientListRep._ItemByDiId(1, dto.DiId);
 
-             List<TourClientListByDiIdView> guestInfos = new List<TourClientListByDiIdView>();
 
-             if (guestResult.Result.Code == 0) guestInfos = guestResult.Result.Data as List<TourClientListByDiIdView>;
 
-             string visitCountrys = ""; //××国家(或地区)×天,××国家(或地区)×天
 
-             string countryStayStr = ""; // xx、xx、xx
 
-             //出入境费用 住宿类型
 
-             var dayCostDatas = _sqlSugar.Queryable<Grp_DayAndCost>().Where(it => it.IsDel == 0 && it.DiId == dto.DiId && it.Type == 1).ToList();
 
-             if (dayCostDatas.Count > 0)
 
-             {
 
-                 List<int> nationalIds = dayCostDatas.Select(it => it.NationalTravelFeeId).ToList();
 
-                 var nationalDatas = _sqlSugar.Queryable<Grp_NationalTravelFee>().Where(it => nationalIds.Contains(it.Id)).ToList();
 
-                 var nationalDataGroupByCountry = nationalDatas.GroupBy(it => it.Country);
 
-                 foreach (var item in nationalDataGroupByCountry)
 
-                 {
 
-                     visitCountrys += $"{item.Key}、";
 
-                     int stayDays = nationalIds.Where(it => it == item.ToList()[0].Id).Count();
 
-                     countryStayStr += $"{item.Key}{stayDays}天,";
 
-                 }
 
-                 if (visitCountrys.Length > 0) visitCountrys = visitCountrys.Substring(0, visitCountrys.Length - 1);
 
-                 if (countryStayStr.Length > 0) countryStayStr = countryStayStr.Substring(0, countryStayStr.Length - 1);
 
-             }
 
-             else
 
-             {
 
-                 visitCountrys = groupInfo.VisitCountry;
 
-                 countryStayStr = GeneralMethod.GetCountryStandingTime(groupInfo.Id); //计算国家出访天数
 
-             }
 
-             //出访人数
 
-             int visitPeopleNum = groupInfo.VisitPNumber;
 
-             int visitDaysNum = groupInfo.VisitDays;
 
-             //出访单位
 
-             string obInfoStr = "";
 
-             foreach (var ob in obDatas) obInfoStr += @$"{ob.Client.Trim()}{ob.Job.Trim()}{ob.Contact.Trim()}、";
 
-             if (obInfoStr.Length > 0) obInfoStr = obInfoStr.Substring(0, obInfoStr.Length - 1);
 
-             obInfoStr = obInfoStr ?? "[公务出访未录入]";
 
-             //出访路线
 
-             string lineStr = GeneralMethod.GetGroupCityLine(groupInfo.Id, "—");
 
-             if (dto.FileType == 1)
 
-             {
 
-                 //载入模板
 
-                 string tempPath = AppSettingsHelper.Get("WordBasePath") + "Template/省外办出访请示 - 模板.docx";
 
-                 var doc = new Document(tempPath);
 
-                 DocumentBuilder builder = new DocumentBuilder(doc);
 
-                 //键值对存放数据
 
-                 Dictionary<string, string> dic = new Dictionary<string, string>();
 
-                 //××(组团单位):接团客户信息团组
 
-                 dic.Add("GroupClient", $"{groupInfo.ClientUnit}\r\n");
 
-                 //关于××(职务、姓名)等×人赴××(国家或地区)进行×××(出访目的)的请示
 
-                 string guestName = "";
 
-                 string guestJob = "";
 
-                 string guestInfoStr = "";
 
-                 var guestFirstInfo = guestInfos.FirstOrDefault();
 
-                 if (guestFirstInfo != null)
 
-                 {
 
-                     guestName = guestFirstInfo.LastName.Trim() + guestFirstInfo.FirstName.Trim();
 
-                     guestJob = guestFirstInfo.Job.Trim();
 
-                     guestInfoStr = $@"{guestJob}、{guestName}";
 
-                 }
 
-                 guestInfoStr = guestInfoStr ?? "[接团客户名单未录入]";
 
-                 string askTitle = $@"关于{guestInfoStr}等{visitPeopleNum}人赴{visitCountrys}进行{groupInfo.VisitPurpose}的请示";
 
-                 dic.Add("AskTitle", askTitle);
 
-                 //应×××(邀请方名称+邀请人职务和姓名)的邀请,我单位拟派×××(职务、姓名)等×人(人数)于×××年×××月×××日赴×××(国家或地区)进行×××(出访目的)。现请示如下。
 
-                 string visitDateStr = @$"{groupInfo.VisitDate.Year}年{groupInfo.VisitDate.Month}月{groupInfo.VisitDate.Day}日";
 
-                 string askSubTitle = $@"应{obInfoStr}的邀请,我单位拟派{guestInfoStr}等{visitPeopleNum}人于{visitDateStr}赴{visitCountrys}进行{groupInfo.VisitPurpose}。现请示如下。";
 
-                 dic.Add("AskSubTitle", askSubTitle);
 
-                 //出访目的
 
-                 dic.Add("VisitPurpose", groupInfo.VisitPurpose);
 
-                 //出访任务
 
-                 //(一)××(国家或地区)
 
-                 //1.拜访×××(机构名称)×××(姓名、职务)洽谈(或调研、推动等)×××(项目或机构名称等)。(例:拜会×××经济与发展司司长×××,商讨“×××活动”相关筹备工作。)
 
-                 //2.拜访×××(机构名称)×××(姓名、职务)洽谈(或调研、推动等)×××(项目或机构名称等)。(例:拜会×××经济与发展司司长×××,商讨“×××活动”相关筹备工作。)
 
-                 string obBackgroundStr = "";//出访背景
 
-                 string taskStr = ""; ; //出访任务
 
-                 var countrys = obDatas.GroupBy(it => it.Country);
 
-                 int countryIndex = 1;
 
-                 foreach (var item in countrys)
 
-                 {
 
-                     string taskTitle = $"({GetToUpperNumber(countryIndex)}){item.Key}\r\n";
 
-                     string taskContent = "";
 
-                     string obBackgroundContent = "";
 
-                     int obIndex = 1;
 
-                     foreach (var obInfo in item.ToList())
 
-                     {
 
-                         string reqSmaple = "";
 
-                         string settingStr = "";
 
-                         if (!string.IsNullOrEmpty(obInfo.ReqSample)) reqSmaple = obInfo.ReqSample;
 
-                         else reqSmaple = "[公务出访请示范例未录入]";
 
-                         if (!string.IsNullOrEmpty(obInfo.Setting)) settingStr = obInfo.Setting;
 
-                         else settingStr = "[公务方背景未录入]";
 
-                         taskContent += $"{obIndex}. {reqSmaple}\r\n";
 
-                         obBackgroundContent += $"{obIndex}. {obInfo.Client}:{settingStr}\r\n";
 
-                         obIndex++;
 
-                     }
 
-                     taskStr += $"{taskTitle}{taskContent}";
 
-                     obBackgroundStr += $"{taskTitle}{obBackgroundContent}";
 
-                     countryIndex++;
 
-                 }
 
-                 //出访背景
 
-                 if (obBackgroundStr.Length < 1) obBackgroundStr = "[公务出访背景未录入]";
 
-                 dic.Add("OBSetting", obBackgroundStr);
 
-                 //出访任务
 
-                 if (taskStr.Length < 1) taskStr = "[公务出访任务未录入]";
 
-                 dic.Add("TaskContent", taskStr);
 
-                 //出访时间
 
-                 //代表团拟于××年×月×日—×月×日出访,在外停留×天。其中,××国家(或地区)×天,××国家(或地区)×天。
 
-                 string visitTimeQuantumStr = $"代表团拟于{groupInfo.VisitStartDate.Year}年{groupInfo.VisitStartDate.Month}月{groupInfo.VisitStartDate.Day}日—{groupInfo.VisitEndDate.Month}月{groupInfo.VisitEndDate.Day}日出访,在外停留{visitDaysNum}天。其中,{countryStayStr}。";
 
-                 //出访时间
 
-                 dic.Add("TimeQuantum", visitTimeQuantumStr);
 
-                 //出访路线
 
-                 //成都—××(出境城市名称)—××(转机不出机场)—××(公务所在城市)……—××(入境城市名称)—成都。(例:成都—法兰克福<转机不出机场>—巴黎—巴塞罗那—阿姆斯特丹<转机不出机场>-成都)
 
-                 dic.Add("Line", lineStr);
 
-                 //scheduling //行程安排
 
-                 string schedulingStr = $"[OP行程单暂未生成]";
 
-                 #region op行程 根据黑屏代码录入
 
-                 var opTripView = GeneralMethod.GetBriefStroke(groupInfo.Id);
 
-                 if (opTripView.Code != 0) schedulingStr = $"[{opTripView.Msg}]";
 
-                 schedulingStr = "";
 
-                 List<Grp_TravelList> travelList = new List<Grp_TravelList>();
 
-                 travelList = opTripView.Data as List<Grp_TravelList>;
 
-                 if (travelList != null)
 
-                 {
 
-                     foreach (var item in travelList)
 
-                     {
 
-                         schedulingStr += $"{item.Date}({item.WeekDay})\r\n{item.Trip}\r\n";
 
-                     }
 
-                 }
 
-                 #endregion
 
-                 dic.Add("Scheduling", schedulingStr);
 
-                 #region 填充word模板书签内容
 
-                 foreach (var key in dic.Keys)
 
-                 {
 
-                     builder.MoveToBookmark(key);
 
-                     builder.Write(dic[key]);
 
-                 }
 
-                 #endregion
 
-                 //获取word里所有表格
 
-                 NodeCollection allTables = doc.GetChildNodes(NodeType.Table, true);
 
-                 //获取所填表格的序数
 
-                 Aspose.Words.Tables.Table tableOne = allTables[0] as Aspose.Words.Tables.Table;
 
-                 var rowStart = tableOne.Rows[0]; //获取第1行
 
-                 //循环赋值
 
-                 for (int i = 0; i < guestInfos.Count; i++)
 
-                 {
 
-                     var guestInfo = guestInfos[i];
 
-                     builder.MoveToCell(0, i + 1, 0, 0);
 
-                     builder.Write(guestInfo.LastName + guestInfo.FirstName);
 
-                     builder.MoveToCell(0, i + 1, 1, 0);
 
-                     int sex = guestInfo.Sex;
 
-                     string sexStr = string.Empty;
 
-                     if (sex == 0) sexStr = "男";
 
-                     else if (sex == 1) sexStr = "女";
 
-                     else sexStr = "-";
 
-                     builder.Write(sexStr);
 
-                     builder.MoveToCell(0, i + 1, 2, 0);
 
-                     builder.Write(guestInfo.CompanyFullName + guestInfo.Job);
 
-                     builder.MoveToCell(0, i + 1, 3, 0);
 
-                     //string birthDay = "";
 
-                     string birthDayStr = string.Empty;
 
-                     if (guestInfo.BirthDay != DateTime.MinValue)
 
-                     {
 
-                         birthDayStr = guestInfo.BirthDay.ToString("yyyy.MM");
 
-                     }
 
-                     builder.Write(birthDayStr);
 
-                 }
 
-                 //删除多余行
 
-                 while (tableOne.Rows.Count > guestInfos.Count + 1)
 
-                 {
 
-                     tableOne.Rows.RemoveAt(guestInfos.Count + 1);
 
-                 }
 
-                 var fileDir = AppSettingsHelper.Get("WordBasePath");
 
-                 string fileName = $"{groupInfo.TeamName}省外办出访请示{DateTime.Now.ToString("yyyyMMddHHmmss")}.docx";
 
-                 string filePath = fileDir + $@"OfficialActivities/{fileName}";
 
-                 doc.Save(filePath);
 
-                 string Url = $@"{AppSettingsHelper.Get("WordBaseUrl")}Office/Word/OfficialActivities/{fileName}";
 
-                 return Ok(JsonView(true, "操作成功!", Url));
 
-             }
 
-             else if (dto.FileType == 2)
 
-             {
 
-                 //载入模板
 
-                 string tempPath = AppSettingsHelper.Get("WordBasePath") + "Template/市外办出访请示 - 模板.docx";
 
-                 var doc = new Document(tempPath);
 
-                 DocumentBuilder builder = new DocumentBuilder(doc);
 
-                 //键值对存放数据
 
-                 var dic = new Dictionary<string, string>
 
-                 {
 
-                     //××(组团单位):接团客户信息团组
 
-                     { "GroupClient", $"{groupInfo.ClientUnit}" },
 
-                     { "GroupClient1", $"{groupInfo.ClientUnit}" }
 
-                 };
 
-                 //关于××(职务、姓名)等×人赴××(国家或地区)进行×××(出访目的)的请示
 
-                 string guestName = "";
 
-                 string guestJob = "";
 
-                 string guestInfoStr = "";
 
-                 var guestFirstInfo = guestInfos.FirstOrDefault();
 
-                 if (guestFirstInfo != null)
 
-                 {
 
-                     guestName = guestFirstInfo.LastName.Trim() + guestFirstInfo.FirstName.Trim();
 
-                     guestJob = guestFirstInfo.Job;
 
-                     guestInfoStr = $@"{guestJob}、{guestName.Trim()}";
 
-                 }
 
-                 string reqTitle = $@"关于{guestInfoStr}等{visitPeopleNum}人赴{visitCountrys}进行{groupInfo.VisitPurpose}的请示";
 
-                 dic.Add("ReqTitle", reqTitle);
 
-                 //应×××(邀请方名称+邀请人职务和姓名)的邀请,我单位拟派×××(职务、姓名)等×人(人数)于×××年×××月×××日赴×××(国家或地区)进行×××(出访目的)。
 
-                 string visitDateStr = @$"{groupInfo.VisitDate.Year}年{groupInfo.VisitDate.Month}月{groupInfo.VisitDate.Day}日";
 
-                 string reqSubTitle = $@"应{obInfoStr}的邀请,我单位拟派{guestInfoStr}等{visitPeopleNum}人于{visitDateStr}赴{visitCountrys}进行{groupInfo.VisitPurpose}。";
 
-                 dic.Add("ReqSubTitle", reqSubTitle);
 
-                 /*
 
-                  * 出访任务
 
-                  * (一)××(国家或地区)
 
-                  * 1.拜访×××(机构名称)×××(姓名、职务)洽谈(或调研、推动等)×××(项目或机构名称等)。(例:拜会×××经济与发展司司长×××,商讨“×××活动”相关筹备工作。)背景:拟拜访机构的优势、拟洽谈项目的前期进展情况等。(例:背景:由×××总领馆联合×××市政府共同举办的“×××活动”将于今年6月在×××举行。)
 
-                  * 2.拜访×××(机构名称)×××(姓名、职务)洽谈(或调研等)×××(项目或机构名称等)。(例:拜会友城×××市市长×××,巩固和发展两市传统友谊,商谈两市未来互动交流合作项目。)背景:拟拜访机构的优势、拟洽谈项目的前期进展情况等。(例:背景:×××年×月,×××市与×××市正式缔结友好城市关系。在此框架下,两市开展了一系列友好互访和商务交流。并于×××年×月共同举办了“×××活动”。)
 
-                  * 
 
-                  */
 
-                 string taskStr = string.Empty;
 
-                 List<string> countrys = obDatas.Where(it => !string.IsNullOrEmpty(it.Country)).Select(it => it.Country).ToList();
 
-                 int countryIndex = 1;
 
-                 foreach (var item in countrys)
 
-                 {
 
-                     string taskTitle = $"({GetToUpperNumber(countryIndex)}){item ?? "[公务出访国家未填写]"}\r\n";
 
-                     string taskContent = "";
 
-                     if (!string.IsNullOrEmpty(item))
 
-                     {
 
-                         var countryObDatas = obDatas.Where(it => !string.IsNullOrEmpty(it.Country) && it.Country.Contains(item)).OrderBy(it => it.Date).ToList();
 
-                         int obIndex = 1;
 
-                         if (countryObDatas.Count == 0) taskContent = "[公务出访未录入]\r\n";
 
-                         else
 
-                         {
 
-                             foreach (var obInfo in countryObDatas)
 
-                             {
 
-                                 taskContent += $"{obIndex}.{obInfo.ReqSample ?? "[公务出访请示范例未填写]"}\r\n背景:{obInfo.Setting ?? "[公务出访背景未填写]"}\r\n";
 
-                                 obIndex++;
 
-                             }
 
-                         }
 
-                     }
 
-                     taskStr += $"{taskTitle}{taskContent}";
 
-                     countryIndex++;
 
-                 }
 
-                 if (string.IsNullOrEmpty(taskStr)) taskStr = "××××××";
 
-                 //出访任务
 
-                 dic.Add("TaskContent", taskStr);
 
-                 //出访目的
 
-                 dic.Add("VisitPurpose", groupInfo.VisitPurpose);
 
-                 //出访信息
 
-                 //代表团拟于××年×月×日—×月×日出访,在外停留×天。其中,××国家(或地区)×天,××国家(或地区)×天。出访路线:成都—××(出境城市名称)—××(转机不出机场)—××(公务所在城市)……—××(入境城市名称)—成都。(例:成都—法兰克福<转机不出机场>—巴黎—巴塞罗那—阿姆斯特丹<转机不出机场>-成都)出访费用:由××承担(注明由外方或上级机关承担,还是由派员单位在年度安排的预算经费中列支)。
 
-                 string tripInfoStr = "";
 
-                 tripInfoStr = $"代表团拟于{groupInfo.VisitStartDate.Year}年{groupInfo.VisitStartDate.Month}月{groupInfo.VisitStartDate.Day}日—{groupInfo.VisitEndDate.Month}月{groupInfo.VisitEndDate.Day}日出访,在外停留{visitDaysNum}天。其中,{countryStayStr}。出访路线:{lineStr}。出访费用:由××承担(注明由外方或上级机关承担,还是由派员单位在年度安排的预算经费中列支)";
 
-                 dic.Add("TripInfo", tripInfoStr);
 
-                 #region 填充word模板书签内容
 
-                 foreach (var key in dic.Keys)
 
-                 {
 
-                     builder.MoveToBookmark(key);
 
-                     builder.Write(dic[key]);
 
-                 }
 
-                 #endregion
 
-                 //获取word里所有表格
 
-                 NodeCollection allTables = doc.GetChildNodes(NodeType.Table, true);
 
-                 //获取所填表格的序数
 
-                 Aspose.Words.Tables.Table tableOne = allTables[0] as Aspose.Words.Tables.Table;
 
-                 var rowStart = tableOne.Rows[0]; //获取第1行
 
-                 //循环赋值
 
-                 for (int i = 0; i < guestInfos.Count; i++)
 
-                 {
 
-                     var guestInfo = guestInfos[i];
 
-                     builder.MoveToCell(0, i + 1, 0, 0);
 
-                     builder.Write(guestInfo.LastName + guestInfo.FirstName);
 
-                     builder.MoveToCell(0, i + 1, 1, 0);
 
-                     int sex = guestInfo.Sex;
 
-                     string sexStr = string.Empty;
 
-                     if (sex == 0) sexStr = "男";
 
-                     else if (sex == 1) sexStr = "女";
 
-                     else sexStr = "未设置";
 
-                     builder.Write(sexStr);
 
-                     builder.MoveToCell(0, i + 1, 2, 0);
 
-                     builder.Write(guestInfo.CompanyFullName + guestInfo.Job);
 
-                     builder.MoveToCell(0, i + 1, 3, 0);
 
-                     DateTime birthDay = guestInfo.BirthDay;
 
-                     string birthDayStr = string.Empty;
 
-                     if (birthDay != DateTime.MinValue)
 
-                     {
 
-                         birthDayStr = birthDay.ToString("yyyy.MM");
 
-                     }
 
-                     builder.Write(birthDayStr);
 
-                 }
 
-                 //删除多余行
 
-                 while (tableOne.Rows.Count > guestInfos.Count + 1)
 
-                 {
 
-                     tableOne.Rows.RemoveAt(guestInfos.Count + 1);
 
-                 }
 
-                 var fileDir = AppSettingsHelper.Get("WordBasePath");
 
-                 var fileName = $"{groupInfo.TeamName}市外办出访请示{DateTime.Now:yyyyMMddHHmmss}.docx";
 
-                 var filePath = fileDir + $@"OfficialActivities/{fileName}";
 
-                 doc.Save(filePath);
 
-                 var url = $@"{AppSettingsHelper.Get("WordBaseUrl")}Office/Word/OfficialActivities/{fileName}";
 
-                 return Ok(JsonView(true, "操作成功!", url));
 
-             }
 
-             return Ok(JsonView(true, "操作失败!", ""));
 
-         }
 
-         private static string GetToUpperNumber(int num)
 
-         {
 
-             string numStr = "";
 
-             if (num == 1) numStr = "一";
 
-             else if (num == 2) numStr = "二";
 
-             else if (num == 3) numStr = "三";
 
-             else if (num == 4) numStr = "四";
 
-             else if (num == 5) numStr = "五";
 
-             else if (num == 6) numStr = "六";
 
-             else if (num == 7) numStr = "七";
 
-             else if (num == 8) numStr = "八";
 
-             else if (num == 9) numStr = "九";
 
-             else if (num == 10) numStr = "十";
 
-             return numStr;
 
-         }
 
-         [HttpPost]
 
-         public IActionResult ExportOfficialActivitiesInfo(ExportOfficialActivitiesInfoDto dto)
 
-         {
 
-             var jw = JsonView(false);
 
-             if (!ModelState.IsValid)
 
-             {
 
-                 jw.Data = ModelState;
 
-                 return Ok(jw);
 
-             }
 
-             var startTime_bool = DateTime.TryParse(dto.StartTime, out DateTime startTime_parse);
 
-             var endTime_bool = DateTime.TryParse(dto.EndTime, out DateTime endTime_parse);
 
-             if (startTime_parse > endTime_parse)
 
-             {
 
-                 jw.Msg = "开始实际不能大于结束时间!";
 
-                 return Ok(jw);
 
-             }
 
-             if (startTime_bool && endTime_bool)
 
-             {
 
-                 //处理时间模板
 
-                 var Query_DB = _sqlSugar.Queryable<Grp_DelegationInfo>()
 
-                                 .LeftJoin<Res_OfficialActivities>((a, b) => a.Id == b.DiId && b.IsDel == 0)
 
-                                 .LeftJoin<Sys_Users>((a, b, c) => b.CreateUserId == c.Id && c.IsDel == 0)
 
-                                 .Where((a, b, c) => a.IsDel == 0 && a.VisitDate >= startTime_parse && a.VisitDate <= endTime_parse)
 
-                                 .WhereIF(dto.State != -1, (a, b, c) => b.ConfirmTheInvitation == dto.State)
 
-                                 .Select((a, b, c) => new
 
-                                 {
 
-                                     a.TeamName,
 
-                                     b.Client,
 
-                                     b.ConfirmTheInvitation,
 
-                                     b.Contact,
 
-                                     ConfirmTheInvitationStr = b.ConfirmTheInvitation == 1 ? "是" : "否",
 
-                                     b.Date,
 
-                                     b.Nature,
 
-                                     c.CnName,
 
-                                     b.Address,
 
-                                     b.CreateTime
 
-                                 })
 
-                                 .ToList()
 
-                                 .Where(x => !x.Client.IsNullOrWhiteSpace())
 
-                                 .ToList();
 
-                 if (Query_DB.Count > 0)
 
-                 {
 
-                     //打开excel
 
-                     var ftpPath = AppSettingsHelper.Get("ExcelFtpPath");
 
-                     var fileBasePath = AppSettingsHelper.Get("ExcelBasePath");
 
-                     //var fileName = "公务出访信息.docx";
 
-                     //创建数据源Table
 
-                     DataTable dtSource = new DataTable();
 
-                     dtSource.TableName = "TB";
 
-                     var firstElem = Query_DB.First();
 
-                     //遍历firstElem所有属性
 
-                     foreach (var item in firstElem.GetType().GetProperties())
 
-                     {
 
-                         dtSource.Columns.Add(item.Name, item.PropertyType);
 
-                     }
 
-                     foreach (var item in Query_DB)
 
-                     {
 
-                         DataRow dr = dtSource.NewRow();
 
-                         //遍历dtSource所有列头
 
-                         foreach (DataColumn column in dtSource.Columns)
 
-                         {
 
-                             dr[column.ColumnName] = item.GetType().GetProperty(column.ColumnName)?.GetValue(item)?.ToString();
 
-                         }
 
-                         dtSource.Rows.Add(dr);
 
-                     }
 
-                     WorkbookDesigner designer = new WorkbookDesigner();
 
-                     designer.Workbook = new Workbook(fileBasePath + ("Template/公务出访信息.xlsx"));
 
-                     var title = startTime_parse.ToString("yyyy年MM月dd日") + " - " + endTime_parse.ToString("yyyy年MM月dd日") + " 公务出访信息";
 
-                     designer.SetDataSource("title", title);
 
-                     designer.SetDataSource(dtSource);
 
-                     designer.Process();
 
-                     var exportSerevePath = fileBasePath + "ExportOfficialActivitiesInfo/" + title + ".xlsx";
 
-                     var exportFtpPaht = ftpPath + "ExportOfficialActivitiesInfo/" + title + ".xlsx";
 
-                     //保存文件
 
-                     designer.Workbook.Save(exportSerevePath);
 
-                     jw.Data = AppSettingsHelper.Get("ExcelBaseUrl") + exportFtpPaht;
 
-                     jw.Code = 200;
 
-                     jw.Msg = "获取成功!";
 
-                 }
 
-                 else
 
-                 {
 
-                     jw.Data = "无公务信息!";
 
-                 }
 
-             }
 
-             else
 
-             {
 
-                 jw.Data = "时间格式错误!";
 
-             }
 
-             return Ok(jw);
 
-         }
 
-         #endregion
 
-         #region 请示数据库
 
-         /// <summary>
 
-         /// 查询请示数据库初始化
 
-         /// </summary>
 
-         /// <param name="dto"></param>
 
-         /// <returns></returns>
 
-         [HttpPost]
 
-         [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
 
-         public async Task<IActionResult> QueryAskData(QueryAskDataDto dto)
 
-         {
 
-             Result groupData = await _askDataRep.QueryAskData(dto);
 
-             if (groupData.Code != 0)
 
-             {
 
-                 return Ok(JsonView(false, groupData.Msg));
 
-             }
 
-             return Ok(JsonView(true, groupData.Msg, groupData.Data));
 
-         }
 
-         /// <summary>
 
-         /// 根据Id查询请示数据库单条数据
 
-         /// </summary>
 
-         /// <param name="dto"></param>
 
-         /// <returns></returns>
 
-         [HttpPost]
 
-         [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
 
-         public async Task<IActionResult> QueryAskDataById(QueryAskDataByIdDto dto)
 
-         {
 
-             Res_AskData _AskData = await _sqlSugar.Queryable<Res_AskData>().FirstAsync(a => a.IsDel == 0 && a.Id == dto.id);
 
-             if (_AskData == null)
 
-             {
 
-                 return Ok(JsonView(true, "暂无数据!", _AskData));
 
-             }
 
-             return Ok(JsonView(true, "查询成功!", _AskData));
 
-         }
 
-         /// <summary>
 
-         /// 请示数据库操作(Status:1.新增,2.修改)
 
-         /// </summary>
 
-         /// <param name="dto"></param>
 
-         /// <returns></returns>
 
-         [HttpPost]
 
-         [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
 
-         public async Task<IActionResult> OpAskData(OpAskDataDto dto)
 
-         {
 
-             Result groupData = await _askDataRep.OpAskData(dto);
 
-             if (groupData.Code != 0)
 
-             {
 
-                 return Ok(JsonView(false, groupData.Msg));
 
-             }
 
-             return Ok(JsonView(true, groupData.Msg, groupData.Data));
 
-         }
 
-         /// <summary>
 
-         /// 删除请示资料信息
 
-         /// </summary>
 
-         /// <param name="dto"></param>
 
-         /// <returns></returns>
 
-         [HttpPost]
 
-         [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
 
-         public async Task<IActionResult> DelAskData(DelBaseDto dto)
 
-         {
 
-             var res = await _askDataRep.SoftDeleteByIdAsync<Res_AskData>(dto.Id.ToString(), dto.DeleteUserId);
 
-             if (!res)
 
-             {
 
-                 return Ok(JsonView(false, "删除失败"));
 
-             }
 
-             return Ok(JsonView(true, "删除成功!"));
 
-         }
 
-         /// <summary>
 
-         /// 请示资料信息 
 
-         /// 省外办下载
 
-         /// </summary>
 
-         /// <param name="dto"></param>
 
-         /// <returns></returns>
 
-         [HttpPost]
 
-         [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
 
-         public async Task<IActionResult> AskDataProvinceFAOPFile(AskDataProvinceFileDto dto)
 
-         {
 
-             if (dto.DataIdItem.Length < 1) return Ok(JsonView(false, $"请传入有效的数据Id集合!"));
 
-             if (dto.DiId < 1) return Ok(JsonView(false, $"请传入有效的数据DiId参数!"));
 
-             //大写数字序号
 
-             string[] num = { "一", "二", "三", "四", "五", "六", "七", "八", "九", "十" ,
 
-                              "十一","十二","十三","十四","十五","十六","十七","十八","十九","二十",
 
-                              "二十一","二十二","二十三","二十四","二十五","二十六","二十七","二十八","二十九","三十",
 
-                              "三十一","三十二","三十三","三十四","三十五","三十六","三十七","三十八","三十九","四十"};
 
-             //数据源
 
-             var idItem = dto.DataIdItem.OrderBy(x => x);
 
-             var askDatas = await _sqlSugar.Queryable<Res_AskData>().Where(x => x.IsDel == 0 && idItem.Contains(x.Id)).ToListAsync();
 
-             //书签名
 
-             string Area = "",
 
-                    Official = "";
 
-             //表格数据源
 
-             DataTable dt = new DataTable();
 
-             dt.Columns.Add("Country", typeof(string));
 
-             dt.Columns.Add("TalkCase", typeof(string));
 
-             int id = 0;
 
-             int TalkcaseOrder = 0;
 
-             int RowOrder = 0;
 
-             //填充数据
 
-             for (int i = 0; i < askDatas.Count; i++)
 
-             {
 
-                 var ad = askDatas[i];
 
-                 Area = Area + ad.Country + ad.Area + "、";
 
-                 Official = Official + ad.UnitName + "、";
 
-                 //填充表格数据源
 
-                 DataRow dr = dt.NewRow();
 
-                 if (i > 0)
 
-                 {
 
-                     var adtemp = askDatas[i - 1];
 
-                     if (ad.Country == adtemp.Country)
 
-                     {
 
-                         TalkcaseOrder++;
 
-                         dt.Rows[RowOrder]["TalkCase"] = dt.Rows[RowOrder]["TalkCase"] + "\r\n" + (1 + TalkcaseOrder).ToString() + "、" + ad.TalkCase;
 
-                     }
 
-                     else
 
-                     {
 
-                         RowOrder++;
 
-                         dr = dt.NewRow();
 
-                         dr["Country"] = "(" + num[RowOrder] + ")" + ad.Country;
 
-                         dr["TalkCase"] = "1、" + ad.TalkCase;
 
-                         dt.Rows.Add(dr);
 
-                         TalkcaseOrder = 0;
 
-                     }
 
-                 }
 
-                 else
 
-                 {
 
-                     dr["Country"] = "(" + num[i] + ")" + ad.Country;
 
-                     dr["TalkCase"] = "1、" + ad.TalkCase;
 
-                     dt.Rows.Add(dr);
 
-                 }
 
-                 id = ad.Id;
 
-             }
 
-             //模板路径
 
-             var tempPath = AppSettingsHelper.Get("WordBasePath") + "Template/省外办出访请示模板.doc";
 
-             //载入模板
 
-             Aspose.Words.Document doc = new Aspose.Words.Document(tempPath);
 
-             #region 填充word内容
 
-             #region 填充请示内容
 
-             //利用DocumentBuilder处理表格或是书签
 
-             Aspose.Words.DocumentBuilder builder = new DocumentBuilder(doc);
 
-             string bookmark = "";
 
-             try
 
-             {
 
-                 for (int i = 0; i < dt.Rows.Count; i++)
 
-                 {
 
-                     bookmark = bookmark
 
-                         + dt.Rows[i]["Country"].ToString() + "\r\n"
 
-                         + dt.Rows[i]["TalkCase"].ToString() + "\r\n";
 
-                 }
 
-             }
 
-             catch
 
-             {
 
-             }
 
-             #endregion
 
-             #region 填充word模板书签内容
 
-             //团组信息
 
-             var di = await _sqlSugar.Queryable<Grp_DelegationInfo>().Where(x => x.IsDel == 0 && x.Id == dto.DiId).FirstAsync();
 
-             //接团客户名单实例
 
-             string client_sql = string.Format(@"
 
- SELECT
 
-   tcl.Id,
 
-   tcl.DiId,
 
-   tcl.IsAccompany,
 
-   temp.*,
 
-   u.CnName AS Operator,
 
-   tcl.CreateTime AS OperatingTime
 
- FROM
 
-   Grp_TourClientList tcl
 
-   LEFT JOIN (
 
-     SELECT
 
-       dc.Id AS DcId,
 
-       dc.LastName,
 
-       dc.FirstName,
 
-       ccom.CompanyFullName,
 
-       dc.Job,
 
-       cc.CertNo AS IDCardNo,
 
-       dc.Sex,
 
-       dc.BirthDay
 
-     FROM
 
-       Crm_DeleClient dc
 
-       LEFT JOIN Crm_CustomerCompany ccom ON dc.CrmCompanyId = ccom.Id
 
-       AND ccom.IsDel = 0
 
-       LEFT JOIN Crm_CustomerCert cc ON dc.Id = cc.DcId
 
-       AND cc.SdId = 773
 
-       AND cc.IsDel = 0
 
-     WHERE
 
-       dc.IsDel = 0
 
-   ) temp ON temp.DcId = tcl.ClientId
 
-   LEFT JOIN Sys_Users u ON tcl.CreateUserId = u.Id
 
- WHERE
 
-   tcl.IsDel = 0
 
-   AND tcl.DiId = {0}", dto.DiId);
 
-             var clientList = await _sqlSugar.SqlQueryable<TourClientListDetailsView>(client_sql).ToListAsync();
 
-             //机票代码实例
 
-             DataTable airTable = GeneralMethod.GetTableByBlackCode(dto.DiId);
 
-             //三字码
 
-             var threeCodes = await _sqlSugar.Queryable<Res_ThreeCode>().Where(x => x.IsDel == 0).ToListAsync();
 
-             //团名
 
-             if (doc.Range.Bookmarks["TeamName"] != null)
 
-             {
 
-                 Bookmark mark = doc.Range.Bookmarks["TeamName"];
 
-                 mark.Text = di.TeamName;
 
-             }
 
-             //团长名
 
-             if (doc.Range.Bookmarks["ClientName2"] != null)
 
-             {
 
-                 Bookmark mark = doc.Range.Bookmarks["ClientName2"];
 
-                 if (clientList == null || clientList.Count == 0)
 
-                 {
 
-                     mark.Text = "【本团尚未录入客户名单,请联系主管!】";
 
-                 }
 
-                 else
 
-                 {
 
-                     mark.Text = clientList[0].CompanyFullName + clientList[0].Job + clientList[0].LastName + clientList[0].FirstName;
 
-                 }
 
-             }
 
-             if (doc.Range.Bookmarks["ClientName"] != null)
 
-             {
 
-                 Bookmark mark = doc.Range.Bookmarks["ClientName"];
 
-                 if (clientList == null || clientList.Count == 0)
 
-                 {
 
-                     mark.Text = "【本团尚未录入客户名单,请联系主管!】";
 
-                 }
 
-                 else
 
-                 {
 
-                     mark.Text = clientList[0].CompanyFullName + clientList[0].Job + clientList[0].LastName + clientList[0].FirstName;
 
-                 }
 
-             }
 
-             //跟团人数
 
-             if (doc.Range.Bookmarks["ClientNumber2"] != null)
 
-             {
 
-                 Bookmark mark = doc.Range.Bookmarks["ClientNumber2"];
 
-                 mark.Text = di.VisitPNumber.ToString();
 
-             }
 
-             if (doc.Range.Bookmarks["ClientNumber"] != null)
 
-             {
 
-                 Bookmark mark = doc.Range.Bookmarks["ClientNumber"];
 
-                 mark.Text = di.VisitPNumber.ToString();
 
-             }
 
-             //地区
 
-             if (doc.Range.Bookmarks["Area"] != null)
 
-             {
 
-                 Bookmark mark = doc.Range.Bookmarks["Area"];
 
-                 mark.Text = Area.TrimEnd('、');
 
-             }
 
-             if (doc.Range.Bookmarks["Area2"] != null)
 
-             {
 
-                 Bookmark mark = doc.Range.Bookmarks["Area2"];
 
-                 mark.Text = Area.TrimEnd('、');
 
-             }
 
-             //出访目的
 
-             if (doc.Range.Bookmarks["Destination2"] != null)
 
-             {
 
-                 Bookmark mark = doc.Range.Bookmarks["Destination2"];
 
-                 mark.Text = di.VisitPurpose;
 
-             }
 
-             if (doc.Range.Bookmarks["Destination"] != null)
 
-             {
 
-                 Bookmark mark = doc.Range.Bookmarks["Destination"];
 
-                 mark.Text = di.VisitPurpose;
 
-             }
 
-             //邀请方
 
-             if (doc.Range.Bookmarks["Official"] != null)
 
-             {
 
-                 Bookmark mark = doc.Range.Bookmarks["Official"];
 
-                 mark.Text = Official.TrimEnd('、');
 
-             }
 
-             //出访日期
 
-             if (doc.Range.Bookmarks["VisitDate"] != null)
 
-             {
 
-                 Bookmark mark = doc.Range.Bookmarks["VisitDate"];
 
-                 mark.Text = di.VisitStartDate.Year + "年"
 
-                           + di.VisitStartDate.Month + "月"
 
-                           + di.VisitStartDate.Day + "日"
 
-                           + "至"
 
-                           + di.VisitEndDate.Month + "月"
 
-                           + di.VisitEndDate.Day + "日";
 
-             }
 
-             //请示范例
 
-             if (doc.Range.Bookmarks["Temp"] != null)
 
-             {
 
-                 Bookmark mark = doc.Range.Bookmarks["Temp"];
 
-                 mark.Text = bookmark;
 
-             }
 
-             //出访起止日期
 
-             if (doc.Range.Bookmarks["Duration"] != null)
 
-             {
 
-                 Bookmark mark = doc.Range.Bookmarks["Duration"];
 
-                 mark.Text = di.VisitStartDate.Year + "年"
 
-                           + di.VisitStartDate.Month + "月"
 
-                           + di.VisitStartDate.Day + "日"
 
-                           + "至"
 
-                           + di.VisitEndDate.Month + "月"
 
-                           + di.VisitEndDate.Day + "日";
 
-             }
 
-             //出访天数
 
-             if (doc.Range.Bookmarks["Durationdays"] != null)
 
-             {
 
-                 Bookmark mark = doc.Range.Bookmarks["Durationdays"];
 
-                 mark.Text = di.VisitDays.ToString();
 
-             }
 
-             if (doc.Range.Bookmarks["Durationdays2"] != null)
 
-             {
 
-                 Bookmark mark = doc.Range.Bookmarks["Durationdays2"];
 
-                 mark.Text = di.VisitDays.ToString();
 
-             }
 
-             #region 根据黑屏代码获取国家呆的天数;获取路线
 
-             string result_CountryAndDay = "", result_Air = "";
 
-             if (airTable.Rows[airTable.Rows.Count - 1]["Day"].ToString() == "")
 
-             {
 
-                 result_CountryAndDay = airTable.Rows[airTable.Rows.Count - 1]["Fliagtcode"].ToString();
 
-                 result_Air = result_CountryAndDay;
 
-             }
 
-             else
 
-             {
 
-                 string place_start, place_end;
 
-                 DateTime time_start, time_end;
 
-                 Res_ThreeCode three = null;
 
-                 for (int i = 0; i < airTable.Rows.Count; i++)
 
-                 {
 
-                     //三字码实例
 
-                     three = threeCodes.Find(x => x.Three == airTable.Rows[i]["Three"].ToString().Substring(0, 3));
 
-                     if (three == null)
 
-                     {
 
-                         place_start = "【未收录三字码" + airTable.Rows[i]["Three"].ToString().Substring(0, 3) + ",请联系机票同事】";
 
-                     }
 
-                     else
 
-                     {
 
-                         if (string.IsNullOrEmpty(three.Country))
 
-                         {
 
-                             place_start = "【本三字码" + airTable.Rows[i]["Three"].ToString().Substring(0, 3) + "未录入国家信息,请联系机票同事】";
 
-                         }
 
-                         else
 
-                         {
 
-                             place_start = three.City;
 
-                         }
 
-                     }
 
-                     three = threeCodes.Find(x => x.Three == airTable.Rows[i]["Three"].ToString().Substring(3, 3));
 
-                     if (three == null)
 
-                     {
 
-                         place_end = "【未收录" + airTable.Rows[i]["Three"].ToString().Substring(0, 3) + ",请联系机票同事】";
 
-                     }
 
-                     else
 
-                     {
 
-                         if (string.IsNullOrEmpty(three.Country))
 
-                         {
 
-                             place_end = "【本三字码" + airTable.Rows[i]["Three"].ToString().Substring(0, 3) + "未录入国家信息,请联系机票同事】";
 
-                         }
 
-                         else
 
-                         {
 
-                             place_end = three.City;
 
-                         }
 
-                     }
 
-                     result_Air += place_start + "一" + place_end + "一";
 
-                     //获取国家和呆的天数
 
-                     if (i > 0 && i < airTable.Rows.Count - 1)
 
-                     {
 
-                         time_start = Convert.ToDateTime(airTable.Rows[i - 1]["Day"]);
 
-                         time_end = Convert.ToDateTime(airTable.Rows[i]["Day"]);
 
-                         TimeSpan daycount = time_end.Subtract(time_start);
 
-                         result_CountryAndDay += place_start + daycount.Days + "天" + ",";
 
-                     }
 
-                 }
 
-             }
 
-             #endregion
 
-             //每个国家呆的天数
 
-             if (doc.Range.Bookmarks["CountryAndDay"] != null)
 
-             {
 
-                 Bookmark mark = doc.Range.Bookmarks["CountryAndDay"];
 
-                 mark.Text = result_CountryAndDay.TrimEnd(',');
 
-             }
 
-             #region 出访路线城市字符串去重
 
-             result_Air = result_Air.TrimEnd('一');
 
-             string[] airTemp = result_Air.Split('一');
 
-             airTemp = airTemp.Distinct().ToArray();
 
-             result_Air = "";
 
-             foreach (string str in airTemp)
 
-             {
 
-                 result_Air += str + "一";
 
-             }
 
-             result_Air = result_Air + airTemp[0];
 
-             #endregion
 
-             //出访路线
 
-             if (doc.Range.Bookmarks["Air"] != null)
 
-             {
 
-                 Bookmark mark = doc.Range.Bookmarks["Air"];
 
-                 mark.Text = result_Air;
 
-             }
 
-             #endregion
 
-             #region 客户名单
 
-             NodeCollection allTables = doc.GetChildNodes(NodeType.Table, true);
 
-             Aspose.Words.Tables.Table tableClient = allTables[0] as Aspose.Words.Tables.Table;
 
-             if (clientList == null || clientList.Count == 0)
 
-             {
 
-                 builder.MoveToCell(0, 1, 0, 0);
 
-                 builder.Write("【本团尚未录入客户名单,请联系主管!】");
 
-             }
 
-             else
 
-             {
 
-                 for (int i = 0; i < clientList.Count; i++)
 
-                 {
 
-                     builder.MoveToCell(0, i + 1, 0, 0);
 
-                     builder.Write((i + 1).ToString());
 
-                     builder.MoveToCell(0, i + 1, 1, 0);
 
-                     builder.Write(clientList[i].LastName.ToString() + clientList[i].FirstName.ToString());
 
-                     builder.MoveToCell(0, i + 1, 2, 0);
 
-                     builder.Write(clientList[i].Sex.ToString());
 
-                     builder.MoveToCell(0, i + 1, 3, 0);
 
-                     builder.Write(clientList[i].BirthDay);
 
-                     builder.MoveToCell(0, i + 1, 4, 0);
 
-                     builder.Write(clientList[i].CompanyFullName + clientList[i].Job.ToString());
 
-                 }
 
-             }
 
-             while (tableClient.Rows.Count > clientList.Count + 1)
 
-             {
 
-                 tableClient.Rows.RemoveAt(clientList.Count + 1);
 
-             }
 
-             #endregion
 
-             #region 商邀行程
 
-             string content = "", temp1 = "", temp2 = "";
 
-             //获取数据,放到datatable
 
-             var listapt = await _sqlSugar.Queryable<Grp_ApprovalTravel>()
 
-                 .LeftJoin<Grp_ApprovalTravelDetails>((at, atd) => at.Id == atd.ParentId)
 
-                 .Where((at, atd) => at.IsDel == 0 && at.Diid == dto.DiId)
 
-                 .Select((at, atd) => new
 
-                 {
 
-                     at.Id,
 
-                     at.Date,
 
-                     atd.Time,
 
-                     atd.Details
 
-                 })
 
-                 .ToListAsync();
 
-             if (listapt == null || listapt.Count == 0)
 
-             {
 
-                 content = "尚未生成商邀行程";
 
-             }
 
-             else
 
-             {
 
-                 for (int i = 0; i < listapt.Count; i++)
 
-                 {
 
-                     content = content + " " + listapt[i].Date + "\r\n";
 
-                     temp1 = listapt[i].Time;
 
-                     temp2 = listapt[i].Details;
 
-                     if (!string.IsNullOrEmpty(temp1))
 
-                     {
 
-                         string[] str = temp1.Replace("\r\n", " ").Split(new char[] { ' ' }, StringSplitOptions.RemoveEmptyEntries);
 
-                         string[] str2 = temp2.Replace("\r\n", " ").Split(new char[] { ' ' }, StringSplitOptions.RemoveEmptyEntries);
 
-                         for (int j = 0; j < str.Length; j++)
 
-                         {
 
-                             content = content + " " + str[j] + str2[j] + "\r\n";
 
-                         }
 
-                     }
 
-                 }
 
-             }
 
-             if (doc.Range.Bookmarks["Content"] != null)
 
-             {
 
-                 Bookmark mark = doc.Range.Bookmarks["Content"];
 
-                 mark.Text = content;
 
-             }
 
-             while (tableClient.Rows.Count > 1 + clientList.Count)
 
-             {
 
-                 tableClient.Rows.RemoveAt(1 + clientList.Count);
 
-             }
 
-             #endregion
 
-             #endregion
 
-             string strFileName = $"/AskData/省外办出访请示{Guid.NewGuid().ToString()}.doc";
 
-             doc.Save(AppSettingsHelper.Get("WordBasePath") + strFileName);  //"C:\\Server\\File\\OA2023\\Office\\Word" + strFileName
 
-             var url = AppSettingsHelper.Get("WordBaseUrl") + AppSettingsHelper.Get("WordFtpPath") + strFileName;  //"C:\\Server\\File\\OA2023\\Office\\Word" + strFileName
 
-             return Ok(JsonView(true, "操作成功!", new { url = url }));
 
-         }
 
-         /// <summary>
 
-         /// 请示资料信息 
 
-         /// 市外办下载
 
-         /// </summary>
 
-         /// <param name="dto"></param>
 
-         /// <returns></returns>
 
-         [HttpPost]
 
-         [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
 
-         public async Task<IActionResult> AskDataCityFAOPFile(AskDataProvinceFileDto dto)
 
-         {
 
-             if (dto.DataIdItem.Length < 1) return Ok(JsonView(false, $"请传入有效的数据Id集合!"));
 
-             if (dto.DiId < 1) return Ok(JsonView(false, $"请传入有效的数据DiId参数!"));
 
-             //大写数字序号
 
-             string[] num = { "一", "二", "三", "四", "五", "六", "七", "八", "九", "十" ,
 
-                              "十一","十二","十三","十四","十五","十六","十七","十八","十九","二十",
 
-                              "二十一","二十二","二十三","二十四","二十五","二十六","二十七","二十八","二十九","三十",
 
-                              "三十一","三十二","三十三","三十四","三十五","三十六","三十七","三十八","三十九","四十"};
 
-             //数据源
 
-             var idItem = dto.DataIdItem.OrderBy(x => x);
 
-             var askDatas = await _sqlSugar.Queryable<Res_AskData>().Where(x => x.IsDel == 0 && idItem.Contains(x.Id)).ToListAsync();
 
-             //书签名
 
-             string Area = "",
 
-                    Official = "";
 
-             //表格数据源
 
-             DataTable dt = new DataTable();
 
-             dt.Columns.Add("Country", typeof(string));
 
-             dt.Columns.Add("TalkCase", typeof(string));
 
-             int id = 0;
 
-             int TalkcaseOrder = 0;
 
-             int RowOrder = 0;
 
-             //填充数据
 
-             for (int i = 0; i < askDatas.Count; i++)
 
-             {
 
-                 var ad = askDatas[i];
 
-                 Area = Area + ad.Country + ad.Area + "、";
 
-                 Official = Official + ad.UnitName + "、";
 
-                 //填充表格数据源
 
-                 DataRow dr = dt.NewRow();
 
-                 if (i > 0)
 
-                 {
 
-                     var adtemp = askDatas[i - 1];
 
-                     if (ad.Country == adtemp.Country)
 
-                     {
 
-                         TalkcaseOrder++;
 
-                         dt.Rows[RowOrder]["TalkCase"] = dt.Rows[RowOrder]["TalkCase"] + "\r\n" + (1 + TalkcaseOrder).ToString() + "、" + ad.TalkCase;
 
-                     }
 
-                     else
 
-                     {
 
-                         RowOrder++;
 
-                         dr = dt.NewRow();
 
-                         dr["Country"] = "(" + num[RowOrder] + ")" + ad.Country;
 
-                         dr["TalkCase"] = "1、" + ad.TalkCase;
 
-                         dt.Rows.Add(dr);
 
-                         TalkcaseOrder = 0;
 
-                     }
 
-                 }
 
-                 else
 
-                 {
 
-                     dr["Country"] = "(" + num[i] + ")" + ad.Country;
 
-                     dr["TalkCase"] = "1、" + ad.TalkCase;
 
-                     dt.Rows.Add(dr);
 
-                 }
 
-                 id = ad.Id;
 
-             }
 
-             //模板路径
 
-             var tempPath = AppSettingsHelper.Get("WordBasePath") + "Template/市外办出访请示.doc";
 
-             //载入模板
 
-             Aspose.Words.Document doc = new Aspose.Words.Document(tempPath);
 
-             #region 填充word内容
 
-             #region 填充请示内容
 
-             //利用DocumentBuilder处理表格或是书签
 
-             Aspose.Words.DocumentBuilder builder = new DocumentBuilder(doc);
 
-             string bookmark = "";
 
-             try
 
-             {
 
-                 for (int i = 0; i < dt.Rows.Count; i++)
 
-                 {
 
-                     bookmark = bookmark
 
-                         + dt.Rows[i]["Country"].ToString() + "\r\n"
 
-                         + dt.Rows[i]["TalkCase"].ToString() + "\r\n";
 
-                 }
 
-             }
 
-             catch
 
-             {
 
-             }
 
-             #endregion
 
-             #region 填充word模板书签内容
 
-             //团组信息
 
-             var di = await _sqlSugar.Queryable<Grp_DelegationInfo>().Where(x => x.IsDel == 0 && x.Id == dto.DiId).FirstAsync();
 
-             //接团客户名单实例
 
-             string client_sql = string.Format(@"
 
- SELECT
 
-   tcl.Id,
 
-   tcl.DiId,
 
-   tcl.IsAccompany,
 
-   temp.*,
 
-   u.CnName AS Operator,
 
-   tcl.CreateTime AS OperatingTime
 
- FROM
 
-   Grp_TourClientList tcl
 
-   LEFT JOIN (
 
-     SELECT
 
-       dc.Id AS DcId,
 
-       dc.LastName,
 
-       dc.FirstName,
 
-       ccom.CompanyFullName,
 
-       dc.Job,
 
-       cc.CertNo AS IDCardNo,
 
-       dc.Sex,
 
-       dc.BirthDay
 
-     FROM
 
-       Crm_DeleClient dc
 
-       LEFT JOIN Crm_CustomerCompany ccom ON dc.CrmCompanyId = ccom.Id
 
-       AND ccom.IsDel = 0
 
-       LEFT JOIN Crm_CustomerCert cc ON dc.Id = cc.DcId
 
-       AND cc.SdId = 773
 
-       AND cc.IsDel = 0
 
-     WHERE
 
-       dc.IsDel = 0
 
-   ) temp ON temp.DcId = tcl.ClientId
 
-   LEFT JOIN Sys_Users u ON tcl.CreateUserId = u.Id
 
- WHERE
 
-   tcl.IsDel = 0
 
-   AND tcl.DiId = {0}", dto.DiId);
 
-             var clientList = await _sqlSugar.SqlQueryable<TourClientListDetailsView>(client_sql).ToListAsync();
 
-             //机票代码实例
 
-             DataTable airTable = GeneralMethod.GetTableByBlackCode(dto.DiId);
 
-             //三字码
 
-             var threeCodes = await _sqlSugar.Queryable<Res_ThreeCode>().Where(x => x.IsDel == 0).ToListAsync();
 
-             //团名
 
-             if (doc.Range.Bookmarks["TeamName"] != null)
 
-             {
 
-                 Bookmark mark = doc.Range.Bookmarks["TeamName"];
 
-                 mark.Text = di.TeamName;
 
-             }
 
-             //团长名
 
-             if (doc.Range.Bookmarks["ClientName2"] != null)
 
-             {
 
-                 Bookmark mark = doc.Range.Bookmarks["ClientName2"];
 
-                 if (clientList == null || clientList.Count == 0)
 
-                 {
 
-                     mark.Text = "【本团尚未录入客户名单,请联系主管!】";
 
-                 }
 
-                 else
 
-                 {
 
-                     mark.Text = clientList[0].CompanyFullName + clientList[0].Job + clientList[0].LastName + clientList[0].FirstName;
 
-                 }
 
-             }
 
-             if (doc.Range.Bookmarks["ClientName"] != null)
 
-             {
 
-                 Bookmark mark = doc.Range.Bookmarks["ClientName"];
 
-                 if (clientList == null || clientList.Count == 0)
 
-                 {
 
-                     mark.Text = "【本团尚未录入客户名单,请联系主管!】";
 
-                 }
 
-                 else
 
-                 {
 
-                     mark.Text = clientList[0].CompanyFullName + clientList[0].Job + clientList[0].LastName + clientList[0].FirstName;
 
-                 }
 
-             }
 
-             //跟团人数
 
-             if (doc.Range.Bookmarks["ClientNumber2"] != null)
 
-             {
 
-                 Bookmark mark = doc.Range.Bookmarks["ClientNumber2"];
 
-                 mark.Text = di.VisitPNumber.ToString();
 
-             }
 
-             if (doc.Range.Bookmarks["ClientNumber"] != null)
 
-             {
 
-                 Bookmark mark = doc.Range.Bookmarks["ClientNumber"];
 
-                 mark.Text = di.VisitPNumber.ToString();
 
-             }
 
-             //地区
 
-             if (doc.Range.Bookmarks["Area"] != null)
 
-             {
 
-                 Bookmark mark = doc.Range.Bookmarks["Area"];
 
-                 mark.Text = Area.TrimEnd('、');
 
-             }
 
-             if (doc.Range.Bookmarks["Area2"] != null)
 
-             {
 
-                 Bookmark mark = doc.Range.Bookmarks["Area2"];
 
-                 mark.Text = Area.TrimEnd('、');
 
-             }
 
-             //出访目的
 
-             if (doc.Range.Bookmarks["Destination2"] != null)
 
-             {
 
-                 Bookmark mark = doc.Range.Bookmarks["Destination2"];
 
-                 mark.Text = di.VisitPurpose;
 
-             }
 
-             if (doc.Range.Bookmarks["Destination"] != null)
 
-             {
 
-                 Bookmark mark = doc.Range.Bookmarks["Destination"];
 
-                 mark.Text = di.VisitPurpose;
 
-             }
 
-             //邀请方
 
-             if (doc.Range.Bookmarks["Official"] != null)
 
-             {
 
-                 Bookmark mark = doc.Range.Bookmarks["Official"];
 
-                 mark.Text = Official.TrimEnd('、');
 
-             }
 
-             //出访日期
 
-             if (doc.Range.Bookmarks["VisitDate"] != null)
 
-             {
 
-                 Bookmark mark = doc.Range.Bookmarks["VisitDate"];
 
-                 mark.Text = di.VisitStartDate.Year + "年"
 
-                           + di.VisitStartDate.Month + "月"
 
-                           + di.VisitStartDate.Day + "日"
 
-                           + "至"
 
-                           + di.VisitEndDate.Month + "月"
 
-                           + di.VisitEndDate.Day + "日";
 
-             }
 
-             //请示范例
 
-             if (doc.Range.Bookmarks["Temp"] != null)
 
-             {
 
-                 Bookmark mark = doc.Range.Bookmarks["Temp"];
 
-                 mark.Text = bookmark;
 
-             }
 
-             //出访起止日期
 
-             if (doc.Range.Bookmarks["Duration"] != null)
 
-             {
 
-                 Bookmark mark = doc.Range.Bookmarks["Duration"];
 
-                 mark.Text = di.VisitStartDate.Year + "年"
 
-                           + di.VisitStartDate.Month + "月"
 
-                           + di.VisitStartDate.Day + "日"
 
-                           + "至"
 
-                           + di.VisitEndDate.Month + "月"
 
-                           + di.VisitEndDate.Day + "日";
 
-             }
 
-             //出访天数
 
-             if (doc.Range.Bookmarks["Durationdays"] != null)
 
-             {
 
-                 Bookmark mark = doc.Range.Bookmarks["Durationdays"];
 
-                 mark.Text = di.VisitDays.ToString();
 
-             }
 
-             if (doc.Range.Bookmarks["Durationdays2"] != null)
 
-             {
 
-                 Bookmark mark = doc.Range.Bookmarks["Durationdays2"];
 
-                 mark.Text = di.VisitDays.ToString();
 
-             }
 
-             #region 根据黑屏代码获取国家呆的天数;获取路线
 
-             string result_CountryAndDay = "", result_Air = "";
 
-             if (airTable.Rows[airTable.Rows.Count - 1]["Day"].ToString() == "")
 
-             {
 
-                 result_CountryAndDay = airTable.Rows[airTable.Rows.Count - 1]["Fliagtcode"].ToString();
 
-                 result_Air = result_CountryAndDay;
 
-             }
 
-             else
 
-             {
 
-                 string place_start, place_end;
 
-                 DateTime time_start, time_end;
 
-                 Res_ThreeCode three = null;
 
-                 for (int i = 0; i < airTable.Rows.Count; i++)
 
-                 {
 
-                     //三字码实例
 
-                     three = threeCodes.Find(x => x.Three == airTable.Rows[i]["Three"].ToString().Substring(0, 3));
 
-                     if (three == null)
 
-                     {
 
-                         place_start = "【未收录三字码" + airTable.Rows[i]["Three"].ToString().Substring(0, 3) + ",请联系机票同事】";
 
-                     }
 
-                     else
 
-                     {
 
-                         if (string.IsNullOrEmpty(three.Country))
 
-                         {
 
-                             place_start = "【本三字码" + airTable.Rows[i]["Three"].ToString().Substring(0, 3) + "未录入国家信息,请联系机票同事】";
 
-                         }
 
-                         else
 
-                         {
 
-                             place_start = three.City;
 
-                         }
 
-                     }
 
-                     three = threeCodes.Find(x => x.Three == airTable.Rows[i]["Three"].ToString().Substring(3, 3));
 
-                     if (three == null)
 
-                     {
 
-                         place_end = "【未收录" + airTable.Rows[i]["Three"].ToString().Substring(0, 3) + ",请联系机票同事】";
 
-                     }
 
-                     else
 
-                     {
 
-                         if (string.IsNullOrEmpty(three.Country))
 
-                         {
 
-                             place_end = "【本三字码" + airTable.Rows[i]["Three"].ToString().Substring(0, 3) + "未录入国家信息,请联系机票同事】";
 
-                         }
 
-                         else
 
-                         {
 
-                             place_end = three.City;
 
-                         }
 
-                     }
 
-                     result_Air += place_start + "一" + place_end + "一";
 
-                     //获取国家和呆的天数
 
-                     if (i > 0 && i < airTable.Rows.Count - 1)
 
-                     {
 
-                         time_start = Convert.ToDateTime(airTable.Rows[i - 1]["Day"]);
 
-                         time_end = Convert.ToDateTime(airTable.Rows[i]["Day"]);
 
-                         TimeSpan daycount = time_end.Subtract(time_start);
 
-                         result_CountryAndDay += place_start + daycount.Days + "天" + ",";
 
-                     }
 
-                 }
 
-             }
 
-             #endregion
 
-             //每个国家呆的天数
 
-             if (doc.Range.Bookmarks["CountryAndDay"] != null)
 
-             {
 
-                 Bookmark mark = doc.Range.Bookmarks["CountryAndDay"];
 
-                 mark.Text = result_CountryAndDay.TrimEnd(',');
 
-             }
 
-             #region 出访路线城市字符串去重
 
-             result_Air = result_Air.TrimEnd('一');
 
-             string[] airTemp = result_Air.Split('一');
 
-             airTemp = airTemp.Distinct().ToArray();
 
-             result_Air = "";
 
-             foreach (string str in airTemp)
 
-             {
 
-                 result_Air += str + "一";
 
-             }
 
-             result_Air = result_Air + airTemp[0];
 
-             #endregion
 
-             //出访路线
 
-             if (doc.Range.Bookmarks["Air"] != null)
 
-             {
 
-                 Bookmark mark = doc.Range.Bookmarks["Air"];
 
-                 mark.Text = result_Air;
 
-             }
 
-             #endregion
 
-             #region 客户名单
 
-             NodeCollection allTables = doc.GetChildNodes(NodeType.Table, true);
 
-             Aspose.Words.Tables.Table tableClient = allTables[0] as Aspose.Words.Tables.Table;
 
-             if (clientList == null || clientList.Count == 0)
 
-             {
 
-                 builder.MoveToCell(0, 1, 0, 0);
 
-                 builder.Write("【本团尚未录入客户名单,请联系主管!】");
 
-             }
 
-             else
 
-             {
 
-                 for (int i = 0; i < clientList.Count; i++)
 
-                 {
 
-                     builder.MoveToCell(0, i + 1, 0, 0);
 
-                     builder.Write((i + 1).ToString());
 
-                     builder.MoveToCell(0, i + 1, 1, 0);
 
-                     builder.Write(clientList[i].LastName.ToString() + clientList[i].FirstName.ToString());
 
-                     builder.MoveToCell(0, i + 1, 2, 0);
 
-                     builder.Write(clientList[i].Sex.ToString());
 
-                     builder.MoveToCell(0, i + 1, 3, 0);
 
-                     builder.Write(clientList[i].BirthDay);
 
-                     builder.MoveToCell(0, i + 1, 4, 0);
 
-                     builder.Write(clientList[i].CompanyFullName + clientList[i].Job.ToString());
 
-                 }
 
-             }
 
-             while (tableClient.Rows.Count > clientList.Count + 1)
 
-             {
 
-                 tableClient.Rows.RemoveAt(clientList.Count + 1);
 
-             }
 
-             #endregion
 
-             #region 商邀行程
 
-             string content = "", temp1 = "", temp2 = "";
 
-             //获取数据,放到datatable
 
-             var listapt = await _sqlSugar.Queryable<Grp_ApprovalTravel>()
 
-                 .LeftJoin<Grp_ApprovalTravelDetails>((at, atd) => at.Id == atd.ParentId)
 
-                 .Where((at, atd) => at.IsDel == 0 && at.Diid == dto.DiId)
 
-                 .Select((at, atd) => new
 
-                 {
 
-                     at.Id,
 
-                     at.Date,
 
-                     atd.Time,
 
-                     atd.Details
 
-                 })
 
-                 .ToListAsync();
 
-             if (listapt == null || listapt.Count == 0)
 
-             {
 
-                 content = "尚未生成商邀行程";
 
-             }
 
-             else
 
-             {
 
-                 for (int i = 0; i < listapt.Count; i++)
 
-                 {
 
-                     content = content + " " + listapt[i].Date + "\r\n";
 
-                     temp1 = listapt[i].Time;
 
-                     temp2 = listapt[i].Details;
 
-                     if (!string.IsNullOrEmpty(temp1))
 
-                     {
 
-                         string[] str = temp1.Replace("\r\n", " ").Split(new char[] { ' ' }, StringSplitOptions.RemoveEmptyEntries);
 
-                         string[] str2 = temp2.Replace("\r\n", " ").Split(new char[] { ' ' }, StringSplitOptions.RemoveEmptyEntries);
 
-                         for (int j = 0; j < str.Length; j++)
 
-                         {
 
-                             content = content + " " + str[j] + str2[j] + "\r\n";
 
-                         }
 
-                     }
 
-                 }
 
-             }
 
-             if (doc.Range.Bookmarks["Content"] != null)
 
-             {
 
-                 Bookmark mark = doc.Range.Bookmarks["Content"];
 
-                 mark.Text = content;
 
-             }
 
-             while (tableClient.Rows.Count > 1 + clientList.Count)
 
-             {
 
-                 tableClient.Rows.RemoveAt(1 + clientList.Count);
 
-             }
 
-             #endregion
 
-             #endregion
 
-             string strFileName = $"/AskData/市外办出访请示{Guid.NewGuid().ToString()}.doc";
 
-             doc.Save(AppSettingsHelper.Get("WordBasePath") + strFileName);  //"C:\\Server\\File\\OA2023\\Office\\Word" + strFileName
 
-             var url = AppSettingsHelper.Get("WordBaseUrl") + AppSettingsHelper.Get("WordFtpPath") + strFileName;  //"C:\\Server\\File\\OA2023\\Office\\Word" + strFileName
 
-             return Ok(JsonView(true, "操作成功!", new { url = url }));
 
-         }
 
-         #endregion
 
-         #region 机票黑屏代码
 
-         /// <summary>
 
-         /// 根据团组Id查询黑屏代码列表
 
-         /// </summary>
 
-         /// <param name="dto"></param>
 
-         /// <returns></returns>
 
-         [HttpPost]
 
-         [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
 
-         public async Task<IActionResult> QueryTicketBlackCodeByDiId(QueryTicketBlackCodeByDiIdDto dto)
 
-         {
 
-             Result groupData = await _ticketBlackCodeRep.QueryTicketBlackCodeByDiId(dto);
 
-             if (groupData.Code != 0)
 
-             {
 
-                 return Ok(JsonView(false, groupData.Msg));
 
-             }
 
-             return Ok(JsonView(true, groupData.Msg, groupData.Data));
 
-         }
 
-         /// <summary>
 
-         /// 根据黑屏代码数据Id查询信息
 
-         /// </summary>
 
-         /// <param name="dto"></param>
 
-         /// <returns></returns>
 
-         [HttpPost]
 
-         [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
 
-         public async Task<IActionResult> QueryTicketBlackCodeById(QueryTicketBlackCodeByIdDto dto)
 
-         {
 
-             Result groupData = await _ticketBlackCodeRep.QueryTicketBlackCodeById(dto);
 
-             if (groupData.Code != 0)
 
-             {
 
-                 return Ok(JsonView(false, groupData.Msg));
 
-             }
 
-             return Ok(JsonView(true, groupData.Msg, groupData.Data));
 
-         }
 
-         /// <summary>
 
-         /// 黑屏代码操作(Status:1.新增,2.修改)
 
-         /// </summary>
 
-         /// <param name="dto"></param>
 
-         /// <returns></returns>
 
-         [HttpPost]
 
-         [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
 
-         public async Task<IActionResult> OpTicketBlackCode(OpTicketBlackCodeDto dto)
 
-         {
 
-             Result groupData = await _ticketBlackCodeRep.OpTicketBlackCode(dto);
 
-             if (groupData.Code != 0)
 
-             {
 
-                 return Ok(JsonView(false, groupData.Msg));
 
-             }
 
-             try
 
-             {
 
-                 var tongzhi = _ticketBlackCodeRep.DescBlackToVisa(dto.DiId);
 
-                 if (tongzhi.Code == 0)
 
-                 {
 
-                     var info = tongzhi.Data.GetType().GetProperty("info").GetValue(tongzhi.Data) as List<string>;
 
-                     var data = tongzhi.Data.GetType().GetProperty("data").GetValue(tongzhi.Data) as List<CountryDataTime>;
 
-                     if (data != null)
 
-                         await AppNoticeLibrary.SendUserMsg_blackAirInfo_ToVisaUser(dto.DiId, data);
 
-                 }
 
-                 //行程代码变更通知
 
-                 await AppNoticeLibrary.SendUserMsg_GroupShare_ToDP(dto.DiId, dto.CreateUserId);
 
-             }
 
-             catch (Exception)
 
-             {
 
-                 throw;
 
-             }
 
-             return Ok(JsonView(true, groupData.Msg, groupData.Data));
 
-         }
 
-         /// <summary>
 
-         /// 删除黑屏代码
 
-         /// </summary>
 
-         /// <param name="dto"></param>
 
-         /// <returns></returns>
 
-         [HttpPost]
 
-         [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
 
-         public async Task<IActionResult> DelTicketBlackCode(DelBaseDto dto)
 
-         {
 
-             var res = await _ticketBlackCodeRep.SoftDeleteByIdAsync<Air_TicketBlackCode>(dto.Id.ToString(), dto.DeleteUserId);
 
-             if (!res)
 
-             {
 
-                 return Ok(JsonView(false, "删除失败"));
 
-             }
 
-             return Ok(JsonView(true, "删除成功!"));
 
-         }
 
-         #endregion
 
-         #region 翻译人员
 
-         /// <summary>
 
-         /// 翻译人员库
 
-         /// Init
 
-         /// </summary>
 
-         /// <returns></returns>
 
-         [HttpGet]
 
-         [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
 
-         public async Task<IActionResult> TranslatorLibraryInit()
 
-         {
 
-             var currencyData = await _sqlSugar.Queryable<Sys_SetData>()
 
-                 .Where(x => x.IsDel == 0 && x.STid == 66)
 
-                 .Select(x => new
 
-                 {
 
-                     x.Id,
 
-                     x.Name,
 
-                 })
 
-                 .ToListAsync();
 
-             var officialDutyData = await _sqlSugar.Queryable<Res_OfficialActivities>()
 
-                 .LeftJoin<Grp_DelegationInfo>((oa, di) => oa.DiId == di.Id)
 
-                 .Where((oa, di) => oa.IsDel == 0)
 
-                 .Select((oa, di) => new
 
-                 {
 
-                     oa.Id,
 
-                     oa.Client,
 
-                     oa.DiId,
 
-                     di.TeamName
 
-                 })
 
-                 .ToListAsync();
 
-             var officialDutyData1 = officialDutyData.GroupBy(x => x.DiId)
 
-                 .Select(g => new
 
-                 {
 
-                     id = g.Key,
 
-                     label = g.FirstOrDefault()?.TeamName ?? "-",
 
-                     children = g.Select(g1 => new { id = g1.Id, label = g1.Client }).ToList()
 
-                 })
 
-                 .ToList();
 
-             var view = new
 
-             {
 
-                 currencyData,
 
-                 officialDutyData = officialDutyData1
 
-             };
 
-             return Ok(JsonView(view));
 
-         }
 
-         /// <summary>
 
-         /// 翻译人员库
 
-         /// 详情
 
-         /// </summary>
 
-         /// <param name="id"></param>
 
-         /// <returns></returns>
 
-         [HttpGet("id")]
 
-         [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
 
-         public async Task<IActionResult> TranslatorLibraryInfo(int id)
 
-         {
 
-             if (id < 1) return Ok(JsonView(false, "请传入有效的Id!"));
 
-             var info = await _translatorRep.Query(x => x.Id == id).FirstAsync();
 
-             EncryptionProcessor.DecryptProperties(info);
 
-             var view = _mapper.Map<TranslatorLibraryInfoView>(info);
 
-             //var data1 = await _sqlSugar.Queryable<Grp_OfficialDutyLinkTranslator>().Where(x => x.TranslatorId == id).Select(x => x.Id).ToArrayAsync();
 
-             view.OfficialDutyIdItem = await _sqlSugar
 
-                 .Queryable<Grp_OfficialDutyLinkTranslator>()
 
-                 .Where(x => x.IsDel == 0 && x.TranslatorId == id)
 
-                 .Select(x => x.OfficialDutyId)
 
-                 .ToArrayAsync();
 
-             return Ok(JsonView(view));
 
-         }
 
-         /// <summary>
 
-         /// 翻译人员库
 
-         /// Item
 
-         /// </summary>
 
-         /// <param name="dto"></param>
 
-         /// <returns></returns>
 
-         [HttpPost]
 
-         [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
 
-         public async Task<IActionResult> TranslatorLibraryItem(TranslatorLibraryItemDto dto)
 
-         {
 
-             if (dto.PortType < 1 || dto.PortType > 3) return Ok(JsonView(false, MsgTips.Port));
 
-             var name = AesEncryptionHelper.Encrypt(dto.Name);
 
-             RefAsync<int> total = 0;
 
-             var view = await _sqlSugar.Queryable<Res_TranslatorLibrary>()
 
-                 .Where(x => x.IsDel == 0)
 
-                 .WhereIF(!string.IsNullOrEmpty(name), x => x.Name.Contains(name))
 
-                 .Select(x => new TranslatorLibraryItemView()
 
-                 {
 
-                     Id = x.Id,
 
-                     Area = x.Area,
 
-                     Name = x.Name,
 
-                     Sex = x.Sex == 0 ? "未设置" : x.Sex == 1 ? "男" : "女",
 
-                     Tel = x.Tel,
 
-                     Email = x.Email,
 
-                     WechatNo = x.WechatNo,
 
-                     Language = x.Language,
 
-                     Price = x.Price,
 
-                     Currency = SqlFunc.Subqueryable<Sys_SetData>().Where(x1 => x1.Id == x.Currency).Select(x1 => x1.Name) ?? "-",
 
-                     CreateUserName = SqlFunc.Subqueryable<Sys_Users>().Where(x1 => x1.Id == x.CreateUserId).Select(x1 => x1.CnName) ?? "-",
 
-                     LastUpddateTime = x.LastUpdateTime,
 
-                     CreateTime = x.CreateTime,
 
-                     Remark = x.Remark
 
-                 })
 
-                 .OrderByDescending(x => x.CreateTime)
 
-                 .ToPageListAsync(dto.PageIndex, dto.PageSize, total);
 
-             foreach (var item in view) EncryptionProcessor.DecryptProperties(item);
 
-             return Ok(JsonView(view, total));
 
-         }
 
-         /// <summary>
 
-         /// 翻译人员库
 
-         /// OP
 
-         /// </summary>
 
-         /// <param name="dto"></param>
 
-         /// <returns></returns>
 
-         [HttpPost]
 
-         [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
 
-         public async Task<IActionResult> TranslatorLibraryOp([FromForm] TranslatorLibraryOpDto dto)
 
-         {
 
-             if (dto.PortType < 1 || dto.PortType > 3) return Ok(JsonView(false, MsgTips.Port));
 
-             if (dto.Status < 1 || dto.Status > 2) return Ok(JsonView(false, MsgTips.Status));
 
-             var currUserInfo = JwtHelper.SerializeJwt(HttpContext.Request.Headers.Authorization);
 
-             if (currUserInfo == null) return Ok(JsonView(false, "请传入token!"));
 
-             var fileNames = new List<string>();
 
-             //D:\FTP\File\OA2023\Office\GrpFile\TranslatorLibrary
 
-             var fileBasePath = $"{AppSettingsHelper.Get("GrpFileBasePath")}TranslatorLibrary";
 
-             #region 保存文件
 
-             if (dto.Files != null)
 
-             {
 
-                 if (!System.IO.Directory.Exists(fileBasePath))
 
-                 {
 
-                     System.IO.Directory.CreateDirectory(fileBasePath);
 
-                 }
 
-                 foreach (var item in dto.Files)
 
-                 {
 
-                     if (item.Length < 1) continue;
 
-                     var file = item;
 
-                     // 将文件保存到指定位置
 
-                     var filePath = Path.Combine(fileBasePath, file.FileName);
 
-                     using (var stream = new FileStream(filePath, FileMode.Create))
 
-                     {
 
-                         await file.CopyToAsync(stream);
 
-                     }
 
-                     //验证文件是否上传成功
 
-                     if (!System.IO.File.Exists(filePath))
 
-                     {
 
-                         foreach (var filePathStr in fileNames)
 
-                         {
 
-                             System.IO.File.Delete(Path.Combine(fileBasePath, filePathStr));
 
-                         }
 
-                         return Ok(JsonView(false, "文件上传失败!"));
 
-                     }
 
-                     fileNames.Add(file.FileName);
 
-                 }
 
-             }
 
-             #endregion
 
-             #region 参数处理
 
-             EncryptionProcessor.EncryptProperties(dto);
 
-             var translatorInfo = _mapper.Map<Res_TranslatorLibrary>(dto);
 
-             translatorInfo.LastUpdateTime = translatorInfo.CreateTime;
 
-             translatorInfo.CreateUserId = currUserInfo.UserId;
 
-             #endregion
 
-             _sqlSugar.BeginTran();
 
-             if (dto.Status == 1)
 
-             {
 
-                 //验证重复
 
-                 var info = await _translatorRep.Query(x => x.Area.Equals(dto.Area) && x.Name.Equals(dto.Name)).FirstAsync();
 
-                 if (info != null) return Ok(JsonView(false, "该条数据已存在!"));
 
-                 if (fileNames.Count > 0)
 
-                 {
 
-                     translatorInfo.Files = AesEncryptionHelper.Encrypt(JsonConvert.SerializeObject(fileNames));
 
-                 }
 
-                 var id = await _translatorRep.AddAsync(translatorInfo);
 
-                 if (id > 0)
 
-                 {
 
-                     #region 新增(公务信息关联翻译人员) 关联信息
 
-                     if (dto.officialDutyIdItem != null && dto.officialDutyIdItem.Length > 0)
 
-                     {
 
-                         var officialDutyLinkTranslators = new List<Grp_OfficialDutyLinkTranslator>();
 
-                         foreach (var officialDutyId in dto.officialDutyIdItem)
 
-                         {
 
-                             officialDutyLinkTranslators.Add(new Grp_OfficialDutyLinkTranslator()
 
-                             {
 
-                                 TranslatorId = id,
 
-                                 OfficialDutyId = officialDutyId,
 
-                                 CreateUserId = currUserInfo.UserId,
 
-                                 Remark = $"翻译人员库-->添加"
 
-                             });
 
-                         }
 
-                         if (officialDutyLinkTranslators.Count > 0)
 
-                         {
 
-                             await _sqlSugar.Insertable(officialDutyLinkTranslators).ExecuteCommandAsync();
 
-                         }
 
-                     }
 
-                     #endregion
 
-                     _sqlSugar.CommitTran();
 
-                     return Ok(JsonView(true));
 
-                 }
 
-             }
 
-             else if (dto.Status == 2)
 
-             {
 
-                 var info = await _translatorRep.Query(x => x.Id == dto.Id).FirstAsync();
 
-                 if (info != null)
 
-                 {
 
-                     if (!string.IsNullOrEmpty(info.Files))
 
-                     {
 
-                         try
 
-                         {
 
-                             var selectFiles = JsonConvert.DeserializeObject<List<string>>(info.Files);
 
-                             fileNames.AddRange(selectFiles);
 
-                         }
 
-                         catch (Exception)
 
-                         {
 
-                         }
 
-                     }
 
-                 }
 
-                 if (fileNames.Count > 0)
 
-                 {
 
-                     translatorInfo.Files = AesEncryptionHelper.Encrypt(JsonConvert.SerializeObject(fileNames));
 
-                 }
 
-                 translatorInfo.LastUpdateTime = DateTime.Now;
 
-                 var upd = await _translatorRep
 
-                     .UpdateAsync(x => x.Id == dto.Id, x => new Res_TranslatorLibrary()
 
-                     {
 
-                         Area = translatorInfo.Area,
 
-                         Name = translatorInfo.Name,
 
-                         Sex = translatorInfo.Sex,
 
-                         Photo = translatorInfo.Photo,
 
-                         Tel = translatorInfo.Tel,
 
-                         Email = translatorInfo.Email,
 
-                         WechatNo = translatorInfo.WechatNo,
 
-                         OtherSocialAccounts = translatorInfo.OtherSocialAccounts,
 
-                         Language = translatorInfo.Language,
 
-                         Price = translatorInfo.Price,
 
-                         Currency = translatorInfo.Currency,
 
-                         Remark = translatorInfo.Remark,
 
-                         Files = translatorInfo.Files,
 
-                         LastUpdateTime = translatorInfo.LastUpdateTime,
 
-                         LastUpdateUserId = translatorInfo.LastUpdateUserId,
 
-                     });
 
-                 if (upd)
 
-                 {
 
-                     #region 更新(公务信息关联翻译人员) 关联信息
 
-                     var officialDutyLinkTranslators_select = await _sqlSugar.Queryable<Grp_OfficialDutyLinkTranslator>()
 
-                         .Where(x => x.IsDel == 0 && x.TranslatorId == dto.Id)
 
-                         .ToListAsync();
 
-                     //删除
 
-                     var officialDutyLinkTranslatorIds = officialDutyLinkTranslators_select.Select(x => x.Id).ToList();
 
-                     if (officialDutyLinkTranslatorIds.Count > 0)
 
-                     {
 
-                         await _sqlSugar.Updateable<Grp_OfficialDutyLinkTranslator>()
 
-                             .SetColumnsIF(officialDutyLinkTranslatorIds.Count > 0, x => new Grp_OfficialDutyLinkTranslator()
 
-                             {
 
-                                 DeleteUserId = currUserInfo.UserId,
 
-                                 DeleteTime = DateTime.Now.ToString("yyyy-MM-dd HH:mm:ss"),
 
-                                 IsDel = 1,
 
-                                 Remark = $"翻译人员库-->删除"
 
-                             })
 
-                             .Where(x => officialDutyLinkTranslatorIds.Contains(x.Id))
 
-                             .ExecuteCommandAsync();
 
-                     }
 
-                     if (dto.officialDutyIdItem != null && dto.officialDutyIdItem.Length > 0)
 
-                     {
 
-                         //添加
 
-                         var officialDutyLinkTranslators = new List<Grp_OfficialDutyLinkTranslator>();
 
-                         foreach (var officialDutyId in dto.officialDutyIdItem)
 
-                         {
 
-                             officialDutyLinkTranslators.Add(new Grp_OfficialDutyLinkTranslator()
 
-                             {
 
-                                 TranslatorId = dto.Id,
 
-                                 OfficialDutyId = officialDutyId,
 
-                                 CreateUserId = currUserInfo.UserId,
 
-                                 Remark = $"翻译人员库-->更新"
 
-                             });
 
-                         }
 
-                         if (officialDutyLinkTranslators.Count > 0)
 
-                         {
 
-                             await _sqlSugar.Insertable(officialDutyLinkTranslators).ExecuteCommandAsync();
 
-                         }
 
-                     }
 
-                     #endregion
 
-                     _sqlSugar.CommitTran();
 
-                     return Ok(JsonView(true));
 
-                 }
 
-             }
 
-             _sqlSugar.RollbackTran();
 
-             return Ok(JsonView(false));
 
-         }
 
-         /// <summary>
 
-         /// 翻译人员库
 
-         /// Del
 
-         /// </summary>
 
-         /// <param name="id"></param>
 
-         /// <returns></returns>
 
-         [HttpDelete("id")]
 
-         [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
 
-         public async Task<IActionResult> TranslatorLibraryDel(int id)
 
-         {
 
-             if (id < 1) return Ok(JsonView(false, MsgTips.Id));
 
-             var currUserInfo = JwtHelper.SerializeJwt(HttpContext.Request.Headers.Authorization);
 
-             if (currUserInfo == null) return Ok(JsonView(false, "请传入token!"));
 
-             _sqlSugar.BeginTran();
 
-             var upd = await _translatorRep.SoftDeleteByIdAsync<Res_TranslatorLibrary>(id.ToString(), currUserInfo.UserId);
 
-             if (!upd)
 
-             {
 
-                 _sqlSugar.RollbackTran();
 
-                 return Ok(JsonView(false));
 
-             }
 
-             #region 删除公务出访
 
-             await _sqlSugar.Updateable<Grp_OfficialDutyLinkTranslator>()
 
-                            .SetColumns(x => new Grp_OfficialDutyLinkTranslator()
 
-                            {
 
-                                DeleteUserId = currUserInfo.UserId,
 
-                                DeleteTime = DateTime.Now.ToString("yyyy-MM-dd HH:mm:ss"),
 
-                                IsDel = 1,
 
-                                Remark = $"翻译人员库-->删除"
 
-                            })
 
-                            .Where(x => x.TranslatorId == id)
 
-                            .ExecuteCommandAsync();
 
-             #endregion
 
-             _sqlSugar.CommitTran();
 
-             return Ok(JsonView(true));
 
-         }
 
-         #endregion
 
-         #region 策划部供应商资料
 
-         /// <summary>
 
-         /// 策划部供应商资料
 
-         /// Init
 
-         /// </summary>
 
-         /// <returns></returns>
 
-         [HttpGet]
 
-         [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
 
-         public async Task<IActionResult> MediaSupplierInit()
 
-         {
 
-             return Ok(await _mediaSupplierRep.Init());
 
-         }
 
-         /// <summary>
 
-         /// 策划部供应商资料
 
-         /// Info
 
-         /// </summary>
 
-         /// <param name="dto"></param>
 
-         /// <returns></returns>
 
-         [HttpPost]
 
-         [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
 
-         public async Task<IActionResult> MediaSupplierInfo(MediaSupplierInfoDto dto)
 
-         {
 
-             if (!_portIds.Contains(dto.PortType)) return Ok(JsonView(false, MsgTips.Port));
 
-             if (dto.Id < 1) return Ok(JsonView(false, MsgTips.Port));
 
-             return Ok(await _mediaSupplierRep.Info(dto));
 
-         }
 
-         /// <summary>
 
-         /// 策划部供应商资料
 
-         /// 分页查询
 
-         /// </summary>
 
-         /// <param name="dto"></param>
 
-         /// <returns></returns>
 
-         [HttpPost]
 
-         [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
 
-         public async Task<IActionResult> MediaSupplierPageItem(MediaSupplierPageItemDto dto)
 
-         {
 
-             if (!_portIds.Contains(dto.PortType)) return Ok(JsonView(false, MsgTips.Port));
 
-             return Ok(await _mediaSupplierRep.PageItem(dto));
 
-         }
 
-         /// <summary>
 
-         /// 策划部供应商资料
 
-         /// 操作(添加 Or 编辑)
 
-         /// </summary>
 
-         /// <param name="dto"></param>
 
-         /// <returns></returns>
 
-         [HttpPost]
 
-         [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
 
-         public async Task<IActionResult> MediaSupplierOp(MediaSupplierAddOrEditDto dto)
 
-         {
 
-             var userId = dto.CurrUserId;
 
-             if (!_portIds.Contains(dto.PortType)) return Ok(JsonView(false, MsgTips.Port));
 
-             if (userId < 1) return Ok(JsonView(false, MsgTips.UserId));
 
-             return Ok(await _mediaSupplierRep.AddOrEdit(dto));
 
-         }
 
-         /// <summary>
 
-         /// 策划部供应商资料
 
-         /// 删除
 
-         /// </summary>
 
-         /// <param name="dto"></param>
 
-         /// <returns></returns>
 
-         [HttpPost]
 
-         [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
 
-         public async Task<IActionResult> MediaSupplierSoftDel(MediaSupplierSoftDelDto dto)
 
-         {
 
-             int userId = dto.CurrUserId, id = dto.Id;
 
-             if (!_portIds.Contains(dto.PortType)) return Ok(JsonView(false, MsgTips.Port));
 
-             if (userId < 1) return Ok(JsonView(false, MsgTips.UserId));
 
-             if (id < 1) return Ok(JsonView(false, MsgTips.Id));
 
-             return Ok(await _mediaSupplierRep.SoftDel(dto));
 
-         }
 
-         #endregion
 
-         #region 保险国家基础费用
 
-         /// <summary>
 
-         /// 保险国家基础费用
 
-         /// Info
 
-         /// </summary>
 
-         /// <param name="dto"></param>
 
-         /// <returns></returns>
 
-         [HttpPost]
 
-         [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
 
-         public async Task<IActionResult> InsuranceCostInfo(InsuranceCostInfoDto dto)
 
-         {
 
-             if (!_portIds.Contains(dto.PortType)) return Ok(JsonView(false, MsgTips.Port));
 
-             if (dto.Id < 1) return Ok(JsonView(false, MsgTips.Port));
 
-             var id = dto.Id;
 
-             var info = await _sqlSugar.Queryable<Res_BasicInsuranceCost>()
 
-                 .Where(x => x.Id == id && x.IsDel == 0)
 
-                 .Select(x => new
 
-                 {
 
-                     x.Id,
 
-                     x.IsSchengen,
 
-                     x.CountryName,
 
-                     x.Cost,
 
-                     x.Remark,
 
-                     CreateUserName = SqlFunc.Subqueryable<Sys_Users>().Where(s => s.Id == x.CreateUserId).Select(s => s.CnName),
 
-                     x.CreateTime
 
-                 })
 
-                 .FirstAsync();
 
-             return Ok(JsonView(info));
 
-         }
 
-         /// <summary>
 
-         /// 保险国家基础费用
 
-         /// 分页查询
 
-         /// </summary>
 
-         /// <param name="dto"></param>
 
-         /// <returns></returns>
 
-         [HttpPost]
 
-         [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
 
-         public async Task<IActionResult> InsuranceCostPageItem(InsuranceCostPageItemDto dto)
 
-         {
 
-             if (!_portIds.Contains(dto.PortType)) return Ok(JsonView(false, MsgTips.Port));
 
-             RefAsync<int> total = 0;
 
-             var data = await _sqlSugar.Queryable<Res_BasicInsuranceCost>()
 
-                 .LeftJoin<Sys_Users>((bic, u) => bic.CreateUserId == u.Id)
 
-                 .Where((bic, u) => bic.IsDel == 0)
 
-                 .WhereIF(!string.IsNullOrEmpty(dto.Search), (bic, u) => bic.CountryName.Contains(dto.Search))
 
-                 .OrderByDescending((bic, u) => bic.Id)
 
-                 .Select((bic, u) => new
 
-                 {
 
-                     bic.Id,
 
-                     bic.IsSchengen,
 
-                     bic.CountryName,
 
-                     bic.Cost,
 
-                     bic.Remark,
 
-                     CreateUserName = u.CnName,
 
-                     bic.CreateTime
 
-                 })
 
-                 .ToPageListAsync(dto.PageIndex, dto.PageSize, total);
 
-             return Ok(JsonView(data, total));
 
-         }
 
-         /// <summary>
 
-         /// 保险国家基础费用
 
-         /// 操作(添加 Or 编辑)
 
-         /// </summary>
 
-         /// <param name="dto"></param>
 
-         /// <returns></returns>
 
-         [HttpPost]
 
-         [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
 
-         public async Task<IActionResult> InsuranceCostOp(InsuranceCostOpDto dto)
 
-         {
 
-             var result = new JsonView() { Code = 400, Msg = "操作失败" };
 
-             var userId = dto.CurrUserId;
 
-             if (!_portIds.Contains(dto.PortType)) return Ok(JsonView(false, MsgTips.Port));
 
-             if (userId < 1) return Ok(JsonView(false, MsgTips.UserId));
 
-             var countryName = dto.CountryName.Trim();
 
-             if (string.IsNullOrEmpty(countryName)) return Ok(JsonView(false, $"国家名称不能为空!"));
 
-             var info = _mapper.Map<Res_BasicInsuranceCost>(dto);
 
-             info.CreateUserId = dto.CurrUserId;
 
-             info.CountryName = countryName;
 
-             if (dto.Id < 1) //添加
 
-             {
 
-                 var addInfo = await _insuranceCostRep.Query(x => x.CountryName.Equals(countryName)).FirstAsync();
 
-                 if (addInfo != null) return Ok(JsonView(false, $"该国家信息已存在,不可添加!"));
 
-                 var add = await _insuranceCostRep.AddAsync(info);
 
-                 if (add < 1) return Ok(JsonView(false, "添加失败!"));
 
-             }
 
-             else //修改
 
-             {
 
-                 var upd = await _insuranceCostRep.UpdateAsync(x => x.Id == dto.Id, x => new Res_BasicInsuranceCost
 
-                 {
 
-                     IsSchengen = dto.IsSchengen,
 
-                     CountryName = dto.CountryName,
 
-                     Cost = dto.Cost,
 
-                     Remark = dto.Remark
 
-                 });
 
-                 if (!upd) return Ok(JsonView(false, "修改失败!"));
 
-             }
 
-             return Ok(JsonView(true));
 
-         }
 
-         /// <summary>
 
-         /// 保险国家基础费用
 
-         /// 删除
 
-         /// </summary>
 
-         /// <param name="dto"></param>
 
-         /// <returns></returns>
 
-         [HttpPost]
 
-         [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
 
-         public async Task<IActionResult> InsuranceCostSoftDel(InsuranceCostSoftDelDto dto)
 
-         {
 
-             int userId = dto.CurrUserId, id = dto.Id;
 
-             if (!_portIds.Contains(dto.PortType)) return Ok(JsonView(false, MsgTips.Port));
 
-             if (userId < 1) return Ok(JsonView(false, MsgTips.UserId));
 
-             if (id < 1) return Ok(JsonView(false, MsgTips.Id));
 
-             var del = await _insuranceCostRep.SoftDeleteAsync(x => x.Id == id, userId);
 
-             if (!del) return Ok(JsonView(false));
 
-             return Ok(JsonView(true));
 
-         }
 
-         #endregion
 
-         #region 世运会成本预算明细
 
-         /// <summary>
 
-         /// 世运会成本预算明细
 
-         /// Info
 
-         /// </summary>
 
-         /// <param name="id"></param>
 
-         /// <returns></returns>
 
-         [HttpGet("{id}")]
 
-         [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
 
-         public async Task<IActionResult> GamesBudgetMasterInfo([Required(ErrorMessage = "数据编号不能为空!")] int id)
 
-         {
 
-             return Ok(await _gamesBudgetMasterRep.InfoAsync(id));
 
-         }
 
-         /// <summary>
 
-         /// 世运会成本预算明细
 
-         /// List
 
-         /// </summary>
 
-         /// <param name="dto"></param>
 
-         /// <returns></returns>
 
-         [HttpPost]
 
-         [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
 
-         public async Task<IActionResult> GamesBudgetMasterList(GamesBudgetMasterListDto dto)
 
-         {
 
-             return Ok(await _gamesBudgetMasterRep.ListAsync(dto));
 
-         }
 
-         /// <summary>
 
-         /// 世运会成本预算明细
 
-         /// OP(Add/Edit)
 
-         /// </summary>
 
-         /// <param name="dto"></param>
 
-         /// <returns></returns>
 
-         [HttpPost]
 
-         [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
 
-         public async Task<IActionResult> GamesBudgetMasterOP(GamesBudgetMasterOPDto dto)
 
-         {
 
-             if (dto.Id > 0)
 
-             {
 
-                 //修改
 
-                 var editDto = _mapper.Map<GamesBudgetMasterEditDto>(dto);
 
-                 return Ok(await _gamesBudgetMasterRep.EditAsync(editDto));
 
-             }
 
-             else if (dto.Id < 1)
 
-             {
 
-                 //添加
 
-                 var addDto = _mapper.Map<GamesBudgetMasterAddDto>(dto);
 
-                 return Ok(await _gamesBudgetMasterRep.AddAsync(addDto));
 
-             }
 
-             return Ok(JsonView(false));
 
-         }
 
-         /// <summary>
 
-         /// 世运会成本预算明细
 
-         /// 删除
 
-         /// </summary>
 
-         /// <param name="dto"></param>
 
-         /// <returns></returns>
 
-         [HttpPost]
 
-         [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
 
-         public async Task<IActionResult> GamesBudgetMasterDel(GamesBudgetMasterDelDto dto)
 
-         {
 
-             return Ok(await _gamesBudgetMasterRep.DelAsync(dto));
 
-         }
 
-         #endregion
 
-     }
 
- }
 
 
  |