三资项目表结构图.ndm2 379 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268126912701271127212731274127512761277127812791280128112821283128412851286128712881289129012911292129312941295129612971298129913001301130213031304130513061307130813091310131113121313131413151316131713181319132013211322132313241325132613271328132913301331133213331334133513361337133813391340134113421343134413451346134713481349135013511352135313541355135613571358135913601361136213631364136513661367136813691370137113721373137413751376137713781379138013811382138313841385138613871388138913901391139213931394139513961397139813991400140114021403140414051406140714081409141014111412141314141415141614171418141914201421142214231424142514261427142814291430143114321433143414351436143714381439144014411442144314441445144614471448144914501451145214531454145514561457145814591460146114621463146414651466146714681469147014711472147314741475147614771478147914801481148214831484148514861487148814891490149114921493149414951496149714981499150015011502150315041505150615071508150915101511151215131514151515161517151815191520152115221523152415251526152715281529153015311532153315341535153615371538153915401541154215431544154515461547154815491550155115521553155415551556155715581559156015611562156315641565156615671568156915701571157215731574157515761577157815791580158115821583158415851586158715881589159015911592159315941595159615971598159916001601160216031604160516061607160816091610161116121613161416151616161716181619162016211622162316241625162616271628162916301631163216331634163516361637163816391640164116421643164416451646164716481649165016511652165316541655165616571658165916601661166216631664166516661667166816691670167116721673167416751676167716781679168016811682168316841685168616871688168916901691169216931694169516961697169816991700170117021703170417051706170717081709171017111712171317141715171617171718171917201721172217231724172517261727172817291730173117321733173417351736173717381739174017411742174317441745174617471748174917501751175217531754175517561757175817591760176117621763176417651766176717681769177017711772177317741775177617771778177917801781178217831784178517861787178817891790179117921793179417951796179717981799180018011802180318041805180618071808180918101811181218131814181518161817181818191820182118221823182418251826182718281829183018311832183318341835183618371838183918401841184218431844184518461847184818491850185118521853185418551856185718581859186018611862186318641865186618671868186918701871187218731874187518761877187818791880188118821883188418851886188718881889189018911892189318941895189618971898189919001901190219031904190519061907190819091910191119121913191419151916191719181919192019211922192319241925192619271928192919301931193219331934193519361937193819391940194119421943194419451946194719481949195019511952195319541955195619571958195919601961196219631964196519661967196819691970197119721973197419751976197719781979198019811982198319841985198619871988198919901991199219931994199519961997199819992000200120022003200420052006200720082009201020112012201320142015201620172018201920202021202220232024202520262027202820292030203120322033203420352036203720382039204020412042204320442045204620472048204920502051205220532054205520562057205820592060206120622063206420652066206720682069207020712072207320742075207620772078207920802081208220832084208520862087208820892090209120922093209420952096209720982099210021012102210321042105210621072108210921102111211221132114211521162117211821192120212121222123212421252126212721282129213021312132213321342135213621372138213921402141214221432144214521462147214821492150215121522153215421552156215721582159216021612162216321642165216621672168216921702171217221732174217521762177217821792180218121822183218421852186218721882189219021912192219321942195219621972198219922002201220222032204220522062207220822092210221122122213221422152216221722182219222022212222222322242225222622272228222922302231223222332234223522362237223822392240224122422243224422452246224722482249225022512252225322542255225622572258225922602261226222632264226522662267226822692270227122722273227422752276227722782279228022812282228322842285228622872288228922902291229222932294229522962297229822992300230123022303230423052306230723082309231023112312231323142315231623172318231923202321232223232324232523262327232823292330233123322333233423352336233723382339234023412342234323442345234623472348234923502351235223532354235523562357235823592360236123622363236423652366236723682369237023712372237323742375237623772378237923802381238223832384238523862387238823892390239123922393239423952396239723982399240024012402240324042405240624072408240924102411241224132414241524162417241824192420242124222423242424252426242724282429243024312432243324342435243624372438243924402441244224432444244524462447244824492450245124522453245424552456245724582459246024612462246324642465246624672468246924702471247224732474247524762477247824792480248124822483248424852486248724882489249024912492249324942495249624972498249925002501250225032504250525062507250825092510251125122513251425152516251725182519252025212522252325242525252625272528252925302531253225332534253525362537253825392540254125422543254425452546254725482549255025512552255325542555255625572558255925602561256225632564256525662567256825692570257125722573257425752576257725782579258025812582258325842585258625872588258925902591259225932594259525962597259825992600260126022603260426052606260726082609261026112612261326142615261626172618261926202621262226232624262526262627262826292630263126322633263426352636263726382639264026412642264326442645264626472648264926502651265226532654265526562657265826592660266126622663266426652666266726682669267026712672267326742675267626772678267926802681268226832684268526862687268826892690269126922693269426952696269726982699270027012702270327042705270627072708270927102711271227132714271527162717271827192720272127222723272427252726272727282729273027312732273327342735273627372738273927402741274227432744274527462747274827492750275127522753275427552756275727582759276027612762276327642765276627672768276927702771277227732774277527762777277827792780278127822783278427852786278727882789279027912792279327942795279627972798279928002801280228032804280528062807280828092810281128122813281428152816281728182819282028212822282328242825282628272828282928302831283228332834283528362837283828392840284128422843284428452846284728482849285028512852285328542855285628572858285928602861286228632864286528662867286828692870287128722873287428752876287728782879288028812882288328842885288628872888288928902891289228932894289528962897289828992900290129022903290429052906290729082909291029112912291329142915291629172918291929202921292229232924292529262927292829292930293129322933293429352936293729382939294029412942294329442945294629472948294929502951295229532954295529562957295829592960296129622963296429652966296729682969297029712972297329742975297629772978297929802981298229832984298529862987298829892990299129922993299429952996299729982999300030013002300330043005300630073008300930103011301230133014301530163017301830193020302130223023302430253026302730283029303030313032303330343035303630373038303930403041304230433044304530463047304830493050305130523053305430553056305730583059306030613062306330643065306630673068306930703071307230733074307530763077307830793080308130823083308430853086308730883089309030913092309330943095309630973098309931003101310231033104310531063107310831093110311131123113311431153116311731183119312031213122312331243125312631273128312931303131313231333134313531363137313831393140314131423143314431453146314731483149315031513152315331543155315631573158315931603161316231633164316531663167316831693170317131723173317431753176317731783179318031813182318331843185318631873188318931903191319231933194319531963197319831993200320132023203320432053206320732083209321032113212321332143215321632173218321932203221322232233224322532263227322832293230323132323233323432353236323732383239324032413242324332443245324632473248324932503251325232533254325532563257325832593260326132623263326432653266326732683269327032713272327332743275327632773278327932803281328232833284328532863287328832893290329132923293329432953296329732983299330033013302330333043305330633073308330933103311331233133314331533163317331833193320332133223323332433253326332733283329333033313332333333343335333633373338333933403341334233433344334533463347334833493350335133523353335433553356335733583359336033613362336333643365336633673368336933703371337233733374337533763377337833793380338133823383338433853386338733883389339033913392339333943395339633973398339934003401340234033404340534063407340834093410341134123413341434153416341734183419342034213422342334243425342634273428342934303431343234333434343534363437343834393440344134423443344434453446344734483449345034513452345334543455345634573458345934603461346234633464346534663467346834693470347134723473347434753476347734783479348034813482348334843485348634873488348934903491349234933494349534963497349834993500350135023503350435053506350735083509351035113512351335143515351635173518351935203521352235233524352535263527352835293530353135323533353435353536353735383539354035413542354335443545354635473548354935503551355235533554355535563557355835593560356135623563356435653566356735683569357035713572357335743575357635773578357935803581358235833584358535863587358835893590359135923593359435953596359735983599360036013602360336043605360636073608360936103611361236133614361536163617361836193620362136223623362436253626362736283629363036313632363336343635363636373638363936403641364236433644364536463647364836493650365136523653365436553656365736583659366036613662366336643665366636673668366936703671367236733674367536763677367836793680368136823683368436853686368736883689369036913692369336943695369636973698369937003701370237033704370537063707370837093710371137123713371437153716371737183719372037213722372337243725372637273728372937303731373237333734373537363737373837393740374137423743374437453746374737483749375037513752375337543755375637573758375937603761376237633764376537663767376837693770377137723773377437753776377737783779378037813782378337843785378637873788378937903791379237933794379537963797379837993800380138023803380438053806380738083809381038113812381338143815381638173818381938203821382238233824382538263827382838293830383138323833383438353836383738383839384038413842384338443845384638473848384938503851385238533854385538563857385838593860386138623863386438653866386738683869387038713872387338743875387638773878387938803881388238833884388538863887388838893890389138923893389438953896389738983899390039013902390339043905390639073908390939103911391239133914391539163917391839193920392139223923392439253926392739283929393039313932393339343935393639373938393939403941394239433944394539463947394839493950395139523953395439553956395739583959396039613962396339643965396639673968396939703971397239733974397539763977397839793980398139823983398439853986398739883989399039913992399339943995399639973998399940004001400240034004400540064007400840094010401140124013401440154016401740184019402040214022402340244025402640274028402940304031403240334034403540364037403840394040404140424043404440454046404740484049405040514052405340544055405640574058405940604061406240634064406540664067406840694070407140724073407440754076407740784079408040814082408340844085408640874088408940904091409240934094409540964097409840994100410141024103410441054106410741084109411041114112411341144115411641174118411941204121412241234124412541264127412841294130413141324133413441354136413741384139414041414142414341444145414641474148414941504151415241534154415541564157415841594160416141624163416441654166416741684169417041714172417341744175417641774178417941804181418241834184418541864187418841894190419141924193419441954196419741984199420042014202420342044205420642074208420942104211421242134214421542164217421842194220422142224223422442254226422742284229423042314232423342344235423642374238423942404241424242434244424542464247424842494250425142524253425442554256425742584259426042614262426342644265426642674268426942704271427242734274427542764277427842794280428142824283428442854286428742884289429042914292429342944295429642974298429943004301430243034304430543064307430843094310431143124313431443154316431743184319432043214322432343244325432643274328432943304331433243334334433543364337433843394340434143424343434443454346434743484349435043514352435343544355435643574358435943604361436243634364436543664367436843694370437143724373437443754376437743784379438043814382438343844385438643874388438943904391439243934394439543964397439843994400440144024403440444054406440744084409441044114412441344144415441644174418441944204421442244234424442544264427442844294430443144324433443444354436443744384439444044414442444344444445444644474448444944504451445244534454445544564457445844594460446144624463446444654466446744684469447044714472447344744475447644774478447944804481448244834484448544864487448844894490449144924493449444954496449744984499450045014502450345044505450645074508450945104511451245134514451545164517451845194520452145224523452445254526452745284529453045314532453345344535453645374538453945404541454245434544454545464547454845494550455145524553455445554556455745584559456045614562456345644565456645674568456945704571457245734574457545764577457845794580458145824583458445854586458745884589459045914592459345944595459645974598459946004601460246034604460546064607460846094610461146124613461446154616461746184619462046214622462346244625462646274628462946304631463246334634463546364637463846394640464146424643464446454646464746484649465046514652465346544655465646574658465946604661466246634664466546664667466846694670467146724673467446754676467746784679468046814682468346844685468646874688468946904691469246934694469546964697469846994700470147024703470447054706470747084709471047114712471347144715471647174718471947204721472247234724472547264727472847294730473147324733473447354736473747384739474047414742474347444745474647474748474947504751475247534754475547564757475847594760476147624763476447654766476747684769477047714772477347744775477647774778477947804781478247834784478547864787478847894790479147924793479447954796479747984799480048014802480348044805480648074808480948104811481248134814481548164817481848194820482148224823482448254826482748284829483048314832483348344835483648374838483948404841484248434844484548464847484848494850485148524853485448554856485748584859486048614862486348644865486648674868486948704871487248734874487548764877487848794880488148824883488448854886488748884889489048914892489348944895489648974898489949004901490249034904490549064907490849094910491149124913491449154916491749184919492049214922492349244925492649274928492949304931493249334934493549364937493849394940494149424943494449454946494749484949495049514952495349544955495649574958495949604961496249634964496549664967496849694970497149724973497449754976497749784979498049814982498349844985498649874988498949904991499249934994499549964997499849995000500150025003500450055006500750085009501050115012501350145015501650175018501950205021502250235024502550265027502850295030503150325033503450355036503750385039504050415042504350445045504650475048504950505051505250535054505550565057505850595060506150625063506450655066506750685069507050715072507350745075507650775078507950805081508250835084508550865087508850895090509150925093509450955096509750985099510051015102510351045105510651075108510951105111511251135114511551165117511851195120512151225123512451255126512751285129513051315132513351345135513651375138513951405141514251435144514551465147514851495150515151525153515451555156515751585159516051615162516351645165516651675168516951705171517251735174517551765177517851795180518151825183518451855186518751885189519051915192519351945195519651975198519952005201520252035204520552065207520852095210521152125213521452155216521752185219522052215222522352245225522652275228522952305231523252335234523552365237523852395240524152425243524452455246524752485249525052515252525352545255525652575258525952605261526252635264526552665267526852695270527152725273527452755276527752785279528052815282528352845285528652875288528952905291529252935294529552965297529852995300530153025303530453055306530753085309531053115312531353145315531653175318531953205321532253235324532553265327532853295330533153325333533453355336533753385339534053415342534353445345534653475348534953505351535253535354535553565357535853595360536153625363536453655366536753685369537053715372537353745375537653775378537953805381538253835384538553865387538853895390539153925393539453955396539753985399540054015402540354045405540654075408540954105411541254135414541554165417541854195420542154225423542454255426542754285429543054315432543354345435543654375438543954405441544254435444544554465447544854495450545154525453545454555456545754585459546054615462546354645465546654675468546954705471547254735474547554765477547854795480548154825483548454855486548754885489549054915492549354945495549654975498549955005501550255035504550555065507550855095510551155125513551455155516551755185519552055215522552355245525552655275528552955305531553255335534553555365537553855395540554155425543554455455546554755485549555055515552555355545555555655575558555955605561556255635564556555665567556855695570557155725573557455755576557755785579558055815582558355845585558655875588558955905591559255935594559555965597559855995600560156025603560456055606560756085609561056115612561356145615561656175618561956205621562256235624562556265627562856295630563156325633563456355636563756385639564056415642564356445645564656475648564956505651565256535654565556565657565856595660566156625663566456655666566756685669567056715672567356745675567656775678567956805681568256835684568556865687568856895690569156925693569456955696569756985699570057015702570357045705570657075708570957105711571257135714571557165717571857195720572157225723572457255726572757285729573057315732573357345735573657375738573957405741574257435744574557465747574857495750575157525753575457555756575757585759576057615762576357645765576657675768576957705771577257735774577557765777577857795780578157825783578457855786578757885789579057915792579357945795579657975798579958005801580258035804580558065807580858095810581158125813581458155816581758185819582058215822582358245825582658275828582958305831583258335834583558365837583858395840584158425843584458455846584758485849585058515852585358545855585658575858585958605861586258635864586558665867586858695870587158725873587458755876587758785879588058815882588358845885588658875888588958905891589258935894589558965897589858995900590159025903590459055906590759085909591059115912591359145915591659175918591959205921592259235924592559265927592859295930593159325933593459355936593759385939594059415942594359445945594659475948594959505951595259535954595559565957595859595960596159625963596459655966596759685969597059715972597359745975597659775978597959805981598259835984598559865987598859895990599159925993599459955996599759985999600060016002600360046005600660076008600960106011601260136014601560166017601860196020602160226023602460256026602760286029603060316032603360346035603660376038603960406041604260436044604560466047604860496050605160526053605460556056605760586059606060616062606360646065606660676068606960706071607260736074607560766077607860796080608160826083608460856086608760886089609060916092609360946095609660976098609961006101610261036104610561066107610861096110611161126113611461156116611761186119612061216122612361246125612661276128612961306131613261336134613561366137613861396140614161426143614461456146614761486149615061516152615361546155615661576158615961606161616261636164616561666167616861696170617161726173617461756176617761786179618061816182618361846185618661876188618961906191619261936194619561966197619861996200620162026203620462056206620762086209621062116212621362146215621662176218621962206221622262236224622562266227622862296230623162326233623462356236623762386239624062416242624362446245624662476248624962506251625262536254625562566257625862596260626162626263626462656266626762686269627062716272627362746275627662776278627962806281628262836284628562866287628862896290629162926293629462956296629762986299630063016302630363046305630663076308630963106311631263136314631563166317631863196320632163226323632463256326632763286329633063316332633363346335633663376338633963406341634263436344634563466347634863496350635163526353635463556356635763586359636063616362636363646365636663676368636963706371637263736374637563766377637863796380638163826383638463856386638763886389639063916392639363946395639663976398639964006401640264036404640564066407640864096410641164126413641464156416641764186419642064216422642364246425642664276428642964306431643264336434643564366437643864396440644164426443644464456446644764486449645064516452645364546455645664576458645964606461646264636464646564666467646864696470647164726473647464756476647764786479648064816482648364846485648664876488648964906491649264936494649564966497649864996500650165026503650465056506650765086509651065116512651365146515651665176518651965206521652265236524652565266527652865296530653165326533653465356536653765386539654065416542654365446545654665476548654965506551655265536554655565566557655865596560656165626563656465656566656765686569657065716572657365746575657665776578657965806581658265836584658565866587658865896590659165926593659465956596659765986599660066016602660366046605660666076608660966106611661266136614661566166617661866196620662166226623662466256626662766286629663066316632663366346635663666376638663966406641664266436644664566466647664866496650665166526653665466556656665766586659666066616662666366646665666666676668666966706671667266736674667566766677667866796680668166826683668466856686668766886689669066916692669366946695669666976698669967006701670267036704670567066707670867096710671167126713671467156716671767186719672067216722672367246725672667276728672967306731673267336734673567366737673867396740674167426743674467456746674767486749675067516752675367546755675667576758675967606761676267636764676567666767676867696770677167726773677467756776677767786779678067816782678367846785678667876788678967906791679267936794679567966797679867996800680168026803680468056806680768086809681068116812681368146815681668176818681968206821682268236824682568266827682868296830683168326833683468356836683768386839684068416842684368446845684668476848684968506851685268536854685568566857685868596860686168626863686468656866686768686869687068716872687368746875687668776878687968806881688268836884688568866887688868896890689168926893689468956896689768986899690069016902690369046905690669076908690969106911691269136914691569166917691869196920692169226923692469256926692769286929693069316932693369346935693669376938693969406941694269436944694569466947694869496950695169526953695469556956695769586959696069616962696369646965696669676968696969706971697269736974697569766977697869796980698169826983698469856986698769886989699069916992699369946995699669976998699970007001700270037004700570067007700870097010701170127013701470157016701770187019702070217022702370247025702670277028702970307031703270337034703570367037703870397040704170427043704470457046704770487049705070517052705370547055705670577058705970607061706270637064706570667067706870697070707170727073707470757076707770787079708070817082708370847085708670877088708970907091709270937094709570967097709870997100710171027103710471057106710771087109711071117112711371147115711671177118711971207121712271237124712571267127712871297130713171327133713471357136713771387139714071417142714371447145714671477148714971507151715271537154715571567157715871597160716171627163716471657166716771687169717071717172717371747175717671777178717971807181718271837184718571867187718871897190719171927193719471957196719771987199720072017202720372047205720672077208720972107211721272137214721572167217721872197220722172227223722472257226722772287229723072317232723372347235723672377238723972407241724272437244724572467247724872497250725172527253725472557256725772587259726072617262726372647265726672677268726972707271727272737274727572767277727872797280728172827283728472857286728772887289729072917292729372947295729672977298729973007301730273037304730573067307730873097310731173127313731473157316731773187319732073217322732373247325732673277328732973307331733273337334733573367337733873397340734173427343734473457346734773487349735073517352735373547355735673577358735973607361736273637364736573667367736873697370737173727373737473757376737773787379738073817382738373847385738673877388738973907391739273937394739573967397739873997400740174027403740474057406740774087409741074117412741374147415741674177418741974207421742274237424742574267427742874297430743174327433743474357436743774387439744074417442744374447445744674477448744974507451745274537454745574567457745874597460746174627463746474657466746774687469747074717472747374747475747674777478747974807481748274837484748574867487748874897490749174927493749474957496749774987499750075017502750375047505750675077508750975107511751275137514751575167517751875197520752175227523752475257526752775287529753075317532753375347535753675377538753975407541754275437544754575467547754875497550755175527553755475557556755775587559756075617562756375647565756675677568756975707571757275737574757575767577757875797580758175827583758475857586758775887589759075917592759375947595759675977598759976007601760276037604760576067607760876097610761176127613761476157616761776187619762076217622762376247625762676277628762976307631763276337634763576367637763876397640764176427643764476457646764776487649765076517652765376547655765676577658765976607661766276637664766576667667766876697670767176727673767476757676767776787679768076817682768376847685768676877688768976907691769276937694769576967697769876997700770177027703770477057706770777087709771077117712771377147715771677177718771977207721772277237724772577267727772877297730773177327733773477357736773777387739774077417742774377447745774677477748774977507751775277537754775577567757775877597760776177627763776477657766776777687769777077717772777377747775777677777778777977807781778277837784778577867787778877897790779177927793779477957796779777987799780078017802780378047805780678077808780978107811781278137814781578167817781878197820782178227823782478257826782778287829783078317832783378347835783678377838783978407841784278437844784578467847784878497850785178527853785478557856785778587859786078617862786378647865786678677868786978707871787278737874787578767877787878797880788178827883788478857886788778887889789078917892789378947895789678977898789979007901790279037904790579067907790879097910791179127913791479157916791779187919792079217922792379247925792679277928792979307931793279337934793579367937793879397940794179427943794479457946794779487949795079517952795379547955795679577958795979607961796279637964796579667967796879697970797179727973797479757976797779787979798079817982798379847985798679877988798979907991799279937994799579967997799879998000800180028003800480058006800780088009801080118012801380148015801680178018801980208021802280238024802580268027802880298030803180328033803480358036803780388039804080418042804380448045804680478048804980508051805280538054805580568057805880598060806180628063806480658066806780688069807080718072807380748075807680778078807980808081808280838084808580868087808880898090809180928093809480958096809780988099810081018102810381048105810681078108810981108111811281138114811581168117811881198120812181228123812481258126812781288129813081318132813381348135813681378138813981408141814281438144814581468147814881498150815181528153815481558156815781588159816081618162816381648165816681678168816981708171817281738174817581768177817881798180818181828183818481858186818781888189819081918192819381948195819681978198819982008201820282038204820582068207820882098210821182128213821482158216821782188219822082218222822382248225822682278228822982308231823282338234823582368237823882398240824182428243824482458246824782488249825082518252825382548255825682578258825982608261826282638264826582668267826882698270827182728273827482758276827782788279828082818282828382848285828682878288828982908291829282938294829582968297829882998300830183028303830483058306830783088309831083118312831383148315831683178318831983208321832283238324832583268327832883298330833183328333833483358336833783388339834083418342834383448345834683478348834983508351835283538354835583568357835883598360836183628363836483658366836783688369837083718372837383748375837683778378837983808381838283838384838583868387838883898390839183928393839483958396839783988399840084018402840384048405840684078408840984108411841284138414841584168417841884198420842184228423842484258426842784288429843084318432843384348435843684378438843984408441844284438444844584468447844884498450845184528453845484558456845784588459846084618462846384648465846684678468846984708471847284738474847584768477847884798480848184828483848484858486848784888489849084918492849384948495849684978498849985008501850285038504850585068507850885098510851185128513851485158516851785188519852085218522852385248525852685278528852985308531853285338534853585368537853885398540854185428543854485458546854785488549855085518552855385548555855685578558855985608561856285638564856585668567856885698570857185728573857485758576857785788579858085818582858385848585858685878588858985908591859285938594859585968597859885998600860186028603860486058606860786088609861086118612861386148615861686178618861986208621862286238624862586268627862886298630863186328633863486358636863786388639864086418642864386448645864686478648864986508651865286538654865586568657865886598660866186628663866486658666866786688669867086718672867386748675867686778678867986808681868286838684868586868687868886898690869186928693869486958696869786988699870087018702870387048705870687078708870987108711871287138714871587168717871887198720872187228723872487258726872787288729873087318732873387348735873687378738873987408741874287438744874587468747874887498750875187528753875487558756875787588759876087618762876387648765876687678768876987708771877287738774877587768777877887798780878187828783878487858786878787888789879087918792879387948795879687978798879988008801880288038804880588068807880888098810881188128813881488158816881788188819882088218822882388248825882688278828882988308831883288338834883588368837883888398840884188428843884488458846884788488849885088518852885388548855885688578858885988608861886288638864886588668867886888698870887188728873887488758876887788788879888088818882888388848885888688878888888988908891889288938894889588968897889888998900890189028903890489058906890789088909891089118912891389148915891689178918891989208921892289238924892589268927892889298930893189328933893489358936893789388939894089418942894389448945894689478948894989508951895289538954895589568957895889598960896189628963896489658966896789688969897089718972897389748975897689778978897989808981898289838984898589868987898889898990899189928993899489958996899789988999900090019002900390049005900690079008900990109011901290139014901590169017901890199020902190229023902490259026902790289029903090319032903390349035903690379038903990409041904290439044904590469047904890499050905190529053905490559056905790589059906090619062906390649065906690679068906990709071907290739074907590769077907890799080908190829083908490859086908790889089909090919092909390949095909690979098909991009101910291039104910591069107910891099110911191129113911491159116911791189119912091219122912391249125912691279128912991309131913291339134913591369137913891399140914191429143914491459146914791489149915091519152915391549155915691579158915991609161916291639164916591669167916891699170917191729173917491759176917791789179918091819182918391849185918691879188918991909191919291939194919591969197919891999200920192029203920492059206920792089209921092119212921392149215921692179218921992209221922292239224922592269227922892299230923192329233923492359236923792389239924092419242924392449245924692479248924992509251925292539254925592569257925892599260926192629263926492659266926792689269927092719272927392749275927692779278927992809281928292839284928592869287928892899290929192929293929492959296929792989299930093019302930393049305930693079308930993109311931293139314931593169317931893199320932193229323932493259326932793289329933093319332933393349335933693379338933993409341934293439344934593469347934893499350935193529353935493559356935793589359936093619362936393649365936693679368936993709371937293739374937593769377937893799380938193829383938493859386938793889389939093919392939393949395939693979398939994009401940294039404940594069407940894099410941194129413941494159416941794189419942094219422942394249425942694279428942994309431943294339434943594369437943894399440944194429443944494459446944794489449945094519452945394549455945694579458945994609461946294639464946594669467946894699470947194729473947494759476947794789479948094819482948394849485948694879488948994909491949294939494949594969497949894999500950195029503950495059506950795089509951095119512951395149515951695179518951995209521952295239524952595269527952895299530953195329533953495359536953795389539954095419542954395449545954695479548954995509551955295539554955595569557955895599560956195629563956495659566956795689569957095719572957395749575957695779578957995809581958295839584958595869587958895899590959195929593959495959596959795989599960096019602960396049605960696079608960996109611961296139614961596169617961896199620962196229623962496259626962796289629963096319632963396349635963696379638963996409641964296439644964596469647964896499650965196529653965496559656965796589659966096619662966396649665966696679668966996709671967296739674967596769677967896799680968196829683968496859686968796889689969096919692969396949695969696979698969997009701970297039704970597069707970897099710971197129713971497159716971797189719972097219722972397249725972697279728972997309731973297339734973597369737973897399740974197429743974497459746974797489749975097519752975397549755975697579758975997609761976297639764976597669767976897699770977197729773977497759776977797789779978097819782978397849785978697879788978997909791979297939794979597969797979897999800980198029803980498059806980798089809981098119812981398149815981698179818981998209821982298239824982598269827982898299830983198329833983498359836983798389839984098419842984398449845984698479848984998509851985298539854985598569857985898599860986198629863986498659866986798689869987098719872987398749875987698779878987998809881988298839884988598869887988898899890989198929893989498959896989798989899990099019902990399049905990699079908990999109911991299139914991599169917991899199920992199229923992499259926992799289929993099319932993399349935993699379938993999409941994299439944994599469947994899499950995199529953995499559956995799589959996099619962996399649965996699679968996999709971997299739974997599769977997899799980998199829983998499859986998799889989999099919992999399949995999699979998999910000100011000210003100041000510006100071000810009100101001110012100131001410015100161001710018100191002010021100221002310024100251002610027100281002910030100311003210033100341003510036100371003810039100401004110042100431004410045100461004710048100491005010051100521005310054100551005610057100581005910060100611006210063100641006510066100671006810069100701007110072100731007410075100761007710078100791008010081100821008310084100851008610087100881008910090100911009210093100941009510096100971009810099101001010110102101031010410105101061010710108101091011010111101121011310114101151011610117101181011910120101211012210123101241012510126101271012810129101301013110132101331013410135101361013710138101391014010141101421014310144101451014610147101481014910150101511015210153101541015510156101571015810159101601016110162101631016410165101661016710168101691017010171101721017310174101751017610177101781017910180101811018210183101841018510186101871018810189101901019110192101931019410195101961019710198101991020010201102021020310204102051020610207102081020910210102111021210213
  1. {
  2. "paper": {
  3. "name": "A4",
  4. "leftMargin": 0.5,
  5. "rightMargin": 0.5,
  6. "topMargin": 0.5,
  7. "bottomMargin": 0.5,
  8. "isPortriat": true
  9. },
  10. "modelVersion": 2.01,
  11. "defaultSchema": "Default",
  12. "server": {
  13. "objectType": "Server_MYSQL",
  14. "name": "Default",
  15. "serverVersion": 50725,
  16. "edition": "Default",
  17. "lowerCaseTableNames": 0,
  18. "schemas": [
  19. {
  20. "objectType": "Schema_MYSQL",
  21. "name": "Default",
  22. "tables": [],
  23. "views": []
  24. },
  25. {
  26. "objectType": "Schema_MYSQL",
  27. "name": "zt",
  28. "tables": [
  29. {
  30. "objectType": "Table_MYSQL",
  31. "name": "pro_main",
  32. "comment": "",
  33. "engine": "InnoDB",
  34. "characterSet": "utf8mb4",
  35. "collation": "utf8mb4_general_ci",
  36. "autoIncrement": 0,
  37. "tablespace": "",
  38. "storage": "",
  39. "insertMethod": "",
  40. "connection": "",
  41. "checksum": false,
  42. "rowFormat": "DYNAMIC",
  43. "avgRowLength": 0,
  44. "maxRows": 0,
  45. "minRows": 0,
  46. "keyBlockSize": 0,
  47. "packKeys": "",
  48. "delayKeyWrite": false,
  49. "dataDirectory": "",
  50. "indexDirectory": "",
  51. "statsAutoRecalc": "",
  52. "statsPersistent": "",
  53. "statsSamplePages": 0,
  54. "union": "",
  55. "pageCheckSum": false,
  56. "transactional": false,
  57. "compression": "",
  58. "oldName": "pro_main",
  59. "encryption": false,
  60. "createOptions": "row_format=DYNAMIC",
  61. "createTime": "2024-12-01 00:20:45",
  62. "checkTime": "",
  63. "dataFree": 0,
  64. "dataLength": 212992,
  65. "indexLength": 114688,
  66. "maxDataLength": 0,
  67. "rows": 644,
  68. "updateTime": "",
  69. "DDL": "CREATE TABLE `pro_main` (\n `id` varchar(50) NOT NULL,\n `isProject` tinyint(1) DEFAULT NULL COMMENT '是否为商机',\n `validStatus` varchar(50) DEFAULT NULL COMMENT '立项状态,0-商机,1-立项审核中,2-通过,3-不通过',\n `signStatus` varchar(50) DEFAULT NULL COMMENT '签约状态,0-待签约,1-状态审核中,2-应签约,3-已签约',\n `bidStatus` varchar(50) DEFAULT NULL COMMENT '招投标状态,0-待处理,1-状态审核中,2-已处理',\n `enableStatus` varchar(50) DEFAULT NULL COMMENT '有效状态,0-启用中,1-状态审核中,2-暂停,3-终止',\n `currAudit` varchar(50) DEFAULT NULL COMMENT '当前流程',\n `bizCode` varchar(50) DEFAULT '' COMMENT '商机编码',\n `proCode` varchar(50) DEFAULT NULL COMMENT '项目编码,当是项目时,以此编码为准',\n `proName` varchar(255) DEFAULT NULL COMMENT '项目名称',\n `custId` varchar(50) CHARACTER SET utf8 DEFAULT NULL,\n `custName` varchar(255) DEFAULT NULL,\n `proType` varchar(20) DEFAULT NULL COMMENT '项目类型',\n `proFrom` varchar(50) DEFAULT NULL COMMENT '项目来源',\n `proDescription` text COMMENT '项目说明',\n `proStatus` varchar(1) DEFAULT '0' COMMENT '项目状态:0-进行中,1-已验收,2-强制终止',\n `preSales` double DEFAULT NULL COMMENT '预计销售额',\n `attachFiles` text COMMENT '附件,以url链字符串进行存储,前端会进行管理',\n `jsonNotes` text COMMENT '日常日志,包括销售记录',\n `managedBy` varchar(2000) DEFAULT NULL COMMENT '项目经理',\n `chargedBy` varchar(50) CHARACTER SET utf8 DEFAULT NULL,\n `chargedName` varchar(255) CHARACTER SET utf8 DEFAULT NULL COMMENT '销售负责人名称',\n `validAt` datetime DEFAULT NULL COMMENT '立项时间',\n `signAt` datetime DEFAULT NULL COMMENT '签约时间',\n `bidAt` datetime DEFAULT NULL COMMENT '招投标时间',\n `endingAt` datetime DEFAULT NULL COMMENT '终止或暂停时间',\n `notesAt` datetime DEFAULT NULL COMMENT '跟进记录更新时间',\n `delTag` varchar(1) DEFAULT '0' COMMENT '删除标记',\n `createdBy` varchar(50) CHARACTER SET utf8 DEFAULT NULL,\n `createdAt` datetime DEFAULT NULL,\n `updatedAt` datetime DEFAULT NULL,\n `reqdescription` text CHARACTER SET utf8 COMMENT '需求描述',\n `group_id` varchar(255) DEFAULT NULL COMMENT '集团',\n `real_valid_status` varchar(255) DEFAULT NULL COMMENT '立项状态 0 未申请 1 审核中 2 通过 3拒绝',\n `real_valid_At` datetime DEFAULT NULL COMMENT '立项时间',\n `closing_item_status` varchar(50) DEFAULT NULL COMMENT '结项状态 1-未结项 2- 已结项',\n `closing_item_time` datetime DEFAULT NULL COMMENT '结项提交时间',\n `remove_closing_time` datetime DEFAULT NULL COMMENT '解除结项时间',\n `reserve` varchar(255) DEFAULT NULL COMMENT '备用',\n `yw_status` varchar(50) DEFAULT NULL COMMENT '运维状态',\n `yw_person` varchar(1000) DEFAULT NULL COMMENT '运维负责人',\n `yw_fp_time` datetime DEFAULT NULL COMMENT '运维分配时间',\n `yw_transferred` varchar(50) DEFAULT NULL COMMENT '移交人',\n `reserve_time` datetime DEFAULT NULL COMMENT '备用时间',\n PRIMARY KEY (`id`) USING BTREE,\n KEY `fk_constraint_pro_user` (`createdBy`) USING BTREE,\n KEY `chargedBy` (`chargedBy`) USING BTREE,\n KEY `fk_constraint_pro_cus` (`custId`) USING BTREE,\n CONSTRAINT `fk_constraint_pro_cus` FOREIGN KEY (`custId`) REFERENCES `cus_main` (`id`) ON DELETE NO ACTION ON UPDATE NO ACTION\n) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 ROW_FORMAT=DYNAMIC",
  70. "partitionBy": "",
  71. "partitionByExpr": "",
  72. "partitions": 0,
  73. "partitionKeyAlgorithm": "",
  74. "subPartitionBy": "",
  75. "subPartitionByExpr": "",
  76. "subPartitions": 0,
  77. "subPartitionKeyAlgorithm": "",
  78. "fields": [
  79. {
  80. "objectType": "TableField_MYSQL",
  81. "name": "id",
  82. "type": "varchar",
  83. "length": 50,
  84. "decimals": -2147483648,
  85. "isUnsigned": false,
  86. "isZeroFill": false,
  87. "setEnumValues": "",
  88. "isBinary": false,
  89. "charset": "utf8mb4",
  90. "collation": "utf8mb4_general_ci",
  91. "isNullable": false,
  92. "defaultType": "Others",
  93. "defaultValue": "",
  94. "isOnUpdateCurrentTimestamp": false,
  95. "isAutoInc": false,
  96. "comment": "",
  97. "columnFormat": "",
  98. "storage": "",
  99. "isVirtual": false,
  100. "isGeneratedAlways": false,
  101. "virtualExpr": "",
  102. "virtualType": "",
  103. "oldName": "id"
  104. },
  105. {
  106. "objectType": "TableField_MYSQL",
  107. "name": "isProject",
  108. "type": "tinyint",
  109. "length": 1,
  110. "decimals": -2147483648,
  111. "isUnsigned": false,
  112. "isZeroFill": false,
  113. "setEnumValues": "",
  114. "isBinary": false,
  115. "charset": "",
  116. "collation": "",
  117. "isNullable": true,
  118. "defaultType": "Null",
  119. "defaultValue": "",
  120. "isOnUpdateCurrentTimestamp": false,
  121. "isAutoInc": false,
  122. "comment": "是否为商机",
  123. "columnFormat": "",
  124. "storage": "",
  125. "isVirtual": false,
  126. "isGeneratedAlways": false,
  127. "virtualExpr": "",
  128. "virtualType": "",
  129. "oldName": "isProject"
  130. },
  131. {
  132. "objectType": "TableField_MYSQL",
  133. "name": "validStatus",
  134. "type": "varchar",
  135. "length": 50,
  136. "decimals": -2147483648,
  137. "isUnsigned": false,
  138. "isZeroFill": false,
  139. "setEnumValues": "",
  140. "isBinary": false,
  141. "charset": "utf8mb4",
  142. "collation": "utf8mb4_general_ci",
  143. "isNullable": true,
  144. "defaultType": "Null",
  145. "defaultValue": "",
  146. "isOnUpdateCurrentTimestamp": false,
  147. "isAutoInc": false,
  148. "comment": "立项状态,0-商机,1-立项审核中,2-通过,3-不通过",
  149. "columnFormat": "",
  150. "storage": "",
  151. "isVirtual": false,
  152. "isGeneratedAlways": false,
  153. "virtualExpr": "",
  154. "virtualType": "",
  155. "oldName": "validStatus"
  156. },
  157. {
  158. "objectType": "TableField_MYSQL",
  159. "name": "signStatus",
  160. "type": "varchar",
  161. "length": 50,
  162. "decimals": -2147483648,
  163. "isUnsigned": false,
  164. "isZeroFill": false,
  165. "setEnumValues": "",
  166. "isBinary": false,
  167. "charset": "utf8mb4",
  168. "collation": "utf8mb4_general_ci",
  169. "isNullable": true,
  170. "defaultType": "Null",
  171. "defaultValue": "",
  172. "isOnUpdateCurrentTimestamp": false,
  173. "isAutoInc": false,
  174. "comment": "签约状态,0-待签约,1-状态审核中,2-应签约,3-已签约",
  175. "columnFormat": "",
  176. "storage": "",
  177. "isVirtual": false,
  178. "isGeneratedAlways": false,
  179. "virtualExpr": "",
  180. "virtualType": "",
  181. "oldName": "signStatus"
  182. },
  183. {
  184. "objectType": "TableField_MYSQL",
  185. "name": "bidStatus",
  186. "type": "varchar",
  187. "length": 50,
  188. "decimals": -2147483648,
  189. "isUnsigned": false,
  190. "isZeroFill": false,
  191. "setEnumValues": "",
  192. "isBinary": false,
  193. "charset": "utf8mb4",
  194. "collation": "utf8mb4_general_ci",
  195. "isNullable": true,
  196. "defaultType": "Null",
  197. "defaultValue": "",
  198. "isOnUpdateCurrentTimestamp": false,
  199. "isAutoInc": false,
  200. "comment": "招投标状态,0-待处理,1-状态审核中,2-已处理",
  201. "columnFormat": "",
  202. "storage": "",
  203. "isVirtual": false,
  204. "isGeneratedAlways": false,
  205. "virtualExpr": "",
  206. "virtualType": "",
  207. "oldName": "bidStatus"
  208. },
  209. {
  210. "objectType": "TableField_MYSQL",
  211. "name": "enableStatus",
  212. "type": "varchar",
  213. "length": 50,
  214. "decimals": -2147483648,
  215. "isUnsigned": false,
  216. "isZeroFill": false,
  217. "setEnumValues": "",
  218. "isBinary": false,
  219. "charset": "utf8mb4",
  220. "collation": "utf8mb4_general_ci",
  221. "isNullable": true,
  222. "defaultType": "Null",
  223. "defaultValue": "",
  224. "isOnUpdateCurrentTimestamp": false,
  225. "isAutoInc": false,
  226. "comment": "有效状态,0-启用中,1-状态审核中,2-暂停,3-终止",
  227. "columnFormat": "",
  228. "storage": "",
  229. "isVirtual": false,
  230. "isGeneratedAlways": false,
  231. "virtualExpr": "",
  232. "virtualType": "",
  233. "oldName": "enableStatus"
  234. },
  235. {
  236. "objectType": "TableField_MYSQL",
  237. "name": "currAudit",
  238. "type": "varchar",
  239. "length": 50,
  240. "decimals": -2147483648,
  241. "isUnsigned": false,
  242. "isZeroFill": false,
  243. "setEnumValues": "",
  244. "isBinary": false,
  245. "charset": "utf8mb4",
  246. "collation": "utf8mb4_general_ci",
  247. "isNullable": true,
  248. "defaultType": "Null",
  249. "defaultValue": "",
  250. "isOnUpdateCurrentTimestamp": false,
  251. "isAutoInc": false,
  252. "comment": "当前流程",
  253. "columnFormat": "",
  254. "storage": "",
  255. "isVirtual": false,
  256. "isGeneratedAlways": false,
  257. "virtualExpr": "",
  258. "virtualType": "",
  259. "oldName": "currAudit"
  260. },
  261. {
  262. "objectType": "TableField_MYSQL",
  263. "name": "bizCode",
  264. "type": "varchar",
  265. "length": 50,
  266. "decimals": -2147483648,
  267. "isUnsigned": false,
  268. "isZeroFill": false,
  269. "setEnumValues": "",
  270. "isBinary": false,
  271. "charset": "utf8mb4",
  272. "collation": "utf8mb4_general_ci",
  273. "isNullable": true,
  274. "defaultType": "Empty",
  275. "defaultValue": "",
  276. "isOnUpdateCurrentTimestamp": false,
  277. "isAutoInc": false,
  278. "comment": "商机编码",
  279. "columnFormat": "",
  280. "storage": "",
  281. "isVirtual": false,
  282. "isGeneratedAlways": false,
  283. "virtualExpr": "",
  284. "virtualType": "",
  285. "oldName": "bizCode"
  286. },
  287. {
  288. "objectType": "TableField_MYSQL",
  289. "name": "proCode",
  290. "type": "varchar",
  291. "length": 50,
  292. "decimals": -2147483648,
  293. "isUnsigned": false,
  294. "isZeroFill": false,
  295. "setEnumValues": "",
  296. "isBinary": false,
  297. "charset": "utf8mb4",
  298. "collation": "utf8mb4_general_ci",
  299. "isNullable": true,
  300. "defaultType": "Null",
  301. "defaultValue": "",
  302. "isOnUpdateCurrentTimestamp": false,
  303. "isAutoInc": false,
  304. "comment": "项目编码,当是项目时,以此编码为准",
  305. "columnFormat": "",
  306. "storage": "",
  307. "isVirtual": false,
  308. "isGeneratedAlways": false,
  309. "virtualExpr": "",
  310. "virtualType": "",
  311. "oldName": "proCode"
  312. },
  313. {
  314. "objectType": "TableField_MYSQL",
  315. "name": "proName",
  316. "type": "varchar",
  317. "length": 255,
  318. "decimals": -2147483648,
  319. "isUnsigned": false,
  320. "isZeroFill": false,
  321. "setEnumValues": "",
  322. "isBinary": false,
  323. "charset": "utf8mb4",
  324. "collation": "utf8mb4_general_ci",
  325. "isNullable": true,
  326. "defaultType": "Null",
  327. "defaultValue": "",
  328. "isOnUpdateCurrentTimestamp": false,
  329. "isAutoInc": false,
  330. "comment": "项目名称",
  331. "columnFormat": "",
  332. "storage": "",
  333. "isVirtual": false,
  334. "isGeneratedAlways": false,
  335. "virtualExpr": "",
  336. "virtualType": "",
  337. "oldName": "proName"
  338. },
  339. {
  340. "objectType": "TableField_MYSQL",
  341. "name": "custId",
  342. "type": "varchar",
  343. "length": 50,
  344. "decimals": -2147483648,
  345. "isUnsigned": false,
  346. "isZeroFill": false,
  347. "setEnumValues": "",
  348. "isBinary": false,
  349. "charset": "utf8",
  350. "collation": "utf8_general_ci",
  351. "isNullable": true,
  352. "defaultType": "Null",
  353. "defaultValue": "",
  354. "isOnUpdateCurrentTimestamp": false,
  355. "isAutoInc": false,
  356. "comment": "",
  357. "columnFormat": "",
  358. "storage": "",
  359. "isVirtual": false,
  360. "isGeneratedAlways": false,
  361. "virtualExpr": "",
  362. "virtualType": "",
  363. "oldName": "custId"
  364. },
  365. {
  366. "objectType": "TableField_MYSQL",
  367. "name": "custName",
  368. "type": "varchar",
  369. "length": 255,
  370. "decimals": -2147483648,
  371. "isUnsigned": false,
  372. "isZeroFill": false,
  373. "setEnumValues": "",
  374. "isBinary": false,
  375. "charset": "utf8mb4",
  376. "collation": "utf8mb4_general_ci",
  377. "isNullable": true,
  378. "defaultType": "Null",
  379. "defaultValue": "",
  380. "isOnUpdateCurrentTimestamp": false,
  381. "isAutoInc": false,
  382. "comment": "",
  383. "columnFormat": "",
  384. "storage": "",
  385. "isVirtual": false,
  386. "isGeneratedAlways": false,
  387. "virtualExpr": "",
  388. "virtualType": "",
  389. "oldName": "custName"
  390. },
  391. {
  392. "objectType": "TableField_MYSQL",
  393. "name": "proType",
  394. "type": "varchar",
  395. "length": 20,
  396. "decimals": -2147483648,
  397. "isUnsigned": false,
  398. "isZeroFill": false,
  399. "setEnumValues": "",
  400. "isBinary": false,
  401. "charset": "utf8mb4",
  402. "collation": "utf8mb4_general_ci",
  403. "isNullable": true,
  404. "defaultType": "Null",
  405. "defaultValue": "",
  406. "isOnUpdateCurrentTimestamp": false,
  407. "isAutoInc": false,
  408. "comment": "项目类型",
  409. "columnFormat": "",
  410. "storage": "",
  411. "isVirtual": false,
  412. "isGeneratedAlways": false,
  413. "virtualExpr": "",
  414. "virtualType": "",
  415. "oldName": "proType"
  416. },
  417. {
  418. "objectType": "TableField_MYSQL",
  419. "name": "proFrom",
  420. "type": "varchar",
  421. "length": 50,
  422. "decimals": -2147483648,
  423. "isUnsigned": false,
  424. "isZeroFill": false,
  425. "setEnumValues": "",
  426. "isBinary": false,
  427. "charset": "utf8mb4",
  428. "collation": "utf8mb4_general_ci",
  429. "isNullable": true,
  430. "defaultType": "Null",
  431. "defaultValue": "",
  432. "isOnUpdateCurrentTimestamp": false,
  433. "isAutoInc": false,
  434. "comment": "项目来源",
  435. "columnFormat": "",
  436. "storage": "",
  437. "isVirtual": false,
  438. "isGeneratedAlways": false,
  439. "virtualExpr": "",
  440. "virtualType": "",
  441. "oldName": "proFrom"
  442. },
  443. {
  444. "objectType": "TableField_MYSQL",
  445. "name": "proDescription",
  446. "type": "text",
  447. "length": -2147483648,
  448. "decimals": -2147483648,
  449. "isUnsigned": false,
  450. "isZeroFill": false,
  451. "setEnumValues": "",
  452. "isBinary": false,
  453. "charset": "utf8mb4",
  454. "collation": "utf8mb4_general_ci",
  455. "isNullable": true,
  456. "defaultType": "Null",
  457. "defaultValue": "",
  458. "isOnUpdateCurrentTimestamp": false,
  459. "isAutoInc": false,
  460. "comment": "项目说明",
  461. "columnFormat": "",
  462. "storage": "",
  463. "isVirtual": false,
  464. "isGeneratedAlways": false,
  465. "virtualExpr": "",
  466. "virtualType": "",
  467. "oldName": "proDescription"
  468. },
  469. {
  470. "objectType": "TableField_MYSQL",
  471. "name": "proStatus",
  472. "type": "varchar",
  473. "length": 1,
  474. "decimals": -2147483648,
  475. "isUnsigned": false,
  476. "isZeroFill": false,
  477. "setEnumValues": "",
  478. "isBinary": false,
  479. "charset": "utf8mb4",
  480. "collation": "utf8mb4_general_ci",
  481. "isNullable": true,
  482. "defaultType": "Others",
  483. "defaultValue": "'0'",
  484. "isOnUpdateCurrentTimestamp": false,
  485. "isAutoInc": false,
  486. "comment": "项目状态:0-进行中,1-已验收,2-强制终止",
  487. "columnFormat": "",
  488. "storage": "",
  489. "isVirtual": false,
  490. "isGeneratedAlways": false,
  491. "virtualExpr": "",
  492. "virtualType": "",
  493. "oldName": "proStatus"
  494. },
  495. {
  496. "objectType": "TableField_MYSQL",
  497. "name": "preSales",
  498. "type": "double",
  499. "length": -2147483648,
  500. "decimals": -2147483648,
  501. "isUnsigned": false,
  502. "isZeroFill": false,
  503. "setEnumValues": "",
  504. "isBinary": false,
  505. "charset": "",
  506. "collation": "",
  507. "isNullable": true,
  508. "defaultType": "Null",
  509. "defaultValue": "",
  510. "isOnUpdateCurrentTimestamp": false,
  511. "isAutoInc": false,
  512. "comment": "预计销售额",
  513. "columnFormat": "",
  514. "storage": "",
  515. "isVirtual": false,
  516. "isGeneratedAlways": false,
  517. "virtualExpr": "",
  518. "virtualType": "",
  519. "oldName": "preSales"
  520. },
  521. {
  522. "objectType": "TableField_MYSQL",
  523. "name": "attachFiles",
  524. "type": "text",
  525. "length": -2147483648,
  526. "decimals": -2147483648,
  527. "isUnsigned": false,
  528. "isZeroFill": false,
  529. "setEnumValues": "",
  530. "isBinary": false,
  531. "charset": "utf8mb4",
  532. "collation": "utf8mb4_general_ci",
  533. "isNullable": true,
  534. "defaultType": "Null",
  535. "defaultValue": "",
  536. "isOnUpdateCurrentTimestamp": false,
  537. "isAutoInc": false,
  538. "comment": "附件,以url链字符串进行存储,前端会进行管理",
  539. "columnFormat": "",
  540. "storage": "",
  541. "isVirtual": false,
  542. "isGeneratedAlways": false,
  543. "virtualExpr": "",
  544. "virtualType": "",
  545. "oldName": "attachFiles"
  546. },
  547. {
  548. "objectType": "TableField_MYSQL",
  549. "name": "jsonNotes",
  550. "type": "text",
  551. "length": -2147483648,
  552. "decimals": -2147483648,
  553. "isUnsigned": false,
  554. "isZeroFill": false,
  555. "setEnumValues": "",
  556. "isBinary": false,
  557. "charset": "utf8mb4",
  558. "collation": "utf8mb4_general_ci",
  559. "isNullable": true,
  560. "defaultType": "Null",
  561. "defaultValue": "",
  562. "isOnUpdateCurrentTimestamp": false,
  563. "isAutoInc": false,
  564. "comment": "日常日志,包括销售记录",
  565. "columnFormat": "",
  566. "storage": "",
  567. "isVirtual": false,
  568. "isGeneratedAlways": false,
  569. "virtualExpr": "",
  570. "virtualType": "",
  571. "oldName": "jsonNotes"
  572. },
  573. {
  574. "objectType": "TableField_MYSQL",
  575. "name": "managedBy",
  576. "type": "varchar",
  577. "length": 2000,
  578. "decimals": -2147483648,
  579. "isUnsigned": false,
  580. "isZeroFill": false,
  581. "setEnumValues": "",
  582. "isBinary": false,
  583. "charset": "utf8mb4",
  584. "collation": "utf8mb4_general_ci",
  585. "isNullable": true,
  586. "defaultType": "Null",
  587. "defaultValue": "",
  588. "isOnUpdateCurrentTimestamp": false,
  589. "isAutoInc": false,
  590. "comment": "项目经理",
  591. "columnFormat": "",
  592. "storage": "",
  593. "isVirtual": false,
  594. "isGeneratedAlways": false,
  595. "virtualExpr": "",
  596. "virtualType": "",
  597. "oldName": "managedBy"
  598. },
  599. {
  600. "objectType": "TableField_MYSQL",
  601. "name": "chargedBy",
  602. "type": "varchar",
  603. "length": 50,
  604. "decimals": -2147483648,
  605. "isUnsigned": false,
  606. "isZeroFill": false,
  607. "setEnumValues": "",
  608. "isBinary": false,
  609. "charset": "utf8",
  610. "collation": "utf8_general_ci",
  611. "isNullable": true,
  612. "defaultType": "Null",
  613. "defaultValue": "",
  614. "isOnUpdateCurrentTimestamp": false,
  615. "isAutoInc": false,
  616. "comment": "",
  617. "columnFormat": "",
  618. "storage": "",
  619. "isVirtual": false,
  620. "isGeneratedAlways": false,
  621. "virtualExpr": "",
  622. "virtualType": "",
  623. "oldName": "chargedBy"
  624. },
  625. {
  626. "objectType": "TableField_MYSQL",
  627. "name": "chargedName",
  628. "type": "varchar",
  629. "length": 255,
  630. "decimals": -2147483648,
  631. "isUnsigned": false,
  632. "isZeroFill": false,
  633. "setEnumValues": "",
  634. "isBinary": false,
  635. "charset": "utf8",
  636. "collation": "utf8_general_ci",
  637. "isNullable": true,
  638. "defaultType": "Null",
  639. "defaultValue": "",
  640. "isOnUpdateCurrentTimestamp": false,
  641. "isAutoInc": false,
  642. "comment": "销售负责人名称",
  643. "columnFormat": "",
  644. "storage": "",
  645. "isVirtual": false,
  646. "isGeneratedAlways": false,
  647. "virtualExpr": "",
  648. "virtualType": "",
  649. "oldName": "chargedName"
  650. },
  651. {
  652. "objectType": "TableField_MYSQL",
  653. "name": "validAt",
  654. "type": "datetime",
  655. "length": -2147483648,
  656. "decimals": -2147483648,
  657. "isUnsigned": false,
  658. "isZeroFill": false,
  659. "setEnumValues": "",
  660. "isBinary": false,
  661. "charset": "",
  662. "collation": "",
  663. "isNullable": true,
  664. "defaultType": "Null",
  665. "defaultValue": "",
  666. "isOnUpdateCurrentTimestamp": false,
  667. "isAutoInc": false,
  668. "comment": "立项时间",
  669. "columnFormat": "",
  670. "storage": "",
  671. "isVirtual": false,
  672. "isGeneratedAlways": false,
  673. "virtualExpr": "",
  674. "virtualType": "",
  675. "oldName": "validAt"
  676. },
  677. {
  678. "objectType": "TableField_MYSQL",
  679. "name": "signAt",
  680. "type": "datetime",
  681. "length": -2147483648,
  682. "decimals": -2147483648,
  683. "isUnsigned": false,
  684. "isZeroFill": false,
  685. "setEnumValues": "",
  686. "isBinary": false,
  687. "charset": "",
  688. "collation": "",
  689. "isNullable": true,
  690. "defaultType": "Null",
  691. "defaultValue": "",
  692. "isOnUpdateCurrentTimestamp": false,
  693. "isAutoInc": false,
  694. "comment": "签约时间",
  695. "columnFormat": "",
  696. "storage": "",
  697. "isVirtual": false,
  698. "isGeneratedAlways": false,
  699. "virtualExpr": "",
  700. "virtualType": "",
  701. "oldName": "signAt"
  702. },
  703. {
  704. "objectType": "TableField_MYSQL",
  705. "name": "bidAt",
  706. "type": "datetime",
  707. "length": -2147483648,
  708. "decimals": -2147483648,
  709. "isUnsigned": false,
  710. "isZeroFill": false,
  711. "setEnumValues": "",
  712. "isBinary": false,
  713. "charset": "",
  714. "collation": "",
  715. "isNullable": true,
  716. "defaultType": "Null",
  717. "defaultValue": "",
  718. "isOnUpdateCurrentTimestamp": false,
  719. "isAutoInc": false,
  720. "comment": "招投标时间",
  721. "columnFormat": "",
  722. "storage": "",
  723. "isVirtual": false,
  724. "isGeneratedAlways": false,
  725. "virtualExpr": "",
  726. "virtualType": "",
  727. "oldName": "bidAt"
  728. },
  729. {
  730. "objectType": "TableField_MYSQL",
  731. "name": "endingAt",
  732. "type": "datetime",
  733. "length": -2147483648,
  734. "decimals": -2147483648,
  735. "isUnsigned": false,
  736. "isZeroFill": false,
  737. "setEnumValues": "",
  738. "isBinary": false,
  739. "charset": "",
  740. "collation": "",
  741. "isNullable": true,
  742. "defaultType": "Null",
  743. "defaultValue": "",
  744. "isOnUpdateCurrentTimestamp": false,
  745. "isAutoInc": false,
  746. "comment": "终止或暂停时间",
  747. "columnFormat": "",
  748. "storage": "",
  749. "isVirtual": false,
  750. "isGeneratedAlways": false,
  751. "virtualExpr": "",
  752. "virtualType": "",
  753. "oldName": "endingAt"
  754. },
  755. {
  756. "objectType": "TableField_MYSQL",
  757. "name": "notesAt",
  758. "type": "datetime",
  759. "length": -2147483648,
  760. "decimals": -2147483648,
  761. "isUnsigned": false,
  762. "isZeroFill": false,
  763. "setEnumValues": "",
  764. "isBinary": false,
  765. "charset": "",
  766. "collation": "",
  767. "isNullable": true,
  768. "defaultType": "Null",
  769. "defaultValue": "",
  770. "isOnUpdateCurrentTimestamp": false,
  771. "isAutoInc": false,
  772. "comment": "跟进记录更新时间",
  773. "columnFormat": "",
  774. "storage": "",
  775. "isVirtual": false,
  776. "isGeneratedAlways": false,
  777. "virtualExpr": "",
  778. "virtualType": "",
  779. "oldName": "notesAt"
  780. },
  781. {
  782. "objectType": "TableField_MYSQL",
  783. "name": "delTag",
  784. "type": "varchar",
  785. "length": 1,
  786. "decimals": -2147483648,
  787. "isUnsigned": false,
  788. "isZeroFill": false,
  789. "setEnumValues": "",
  790. "isBinary": false,
  791. "charset": "utf8mb4",
  792. "collation": "utf8mb4_general_ci",
  793. "isNullable": true,
  794. "defaultType": "Others",
  795. "defaultValue": "'0'",
  796. "isOnUpdateCurrentTimestamp": false,
  797. "isAutoInc": false,
  798. "comment": "删除标记",
  799. "columnFormat": "",
  800. "storage": "",
  801. "isVirtual": false,
  802. "isGeneratedAlways": false,
  803. "virtualExpr": "",
  804. "virtualType": "",
  805. "oldName": "delTag"
  806. },
  807. {
  808. "objectType": "TableField_MYSQL",
  809. "name": "createdBy",
  810. "type": "varchar",
  811. "length": 50,
  812. "decimals": -2147483648,
  813. "isUnsigned": false,
  814. "isZeroFill": false,
  815. "setEnumValues": "",
  816. "isBinary": false,
  817. "charset": "utf8",
  818. "collation": "utf8_general_ci",
  819. "isNullable": true,
  820. "defaultType": "Null",
  821. "defaultValue": "",
  822. "isOnUpdateCurrentTimestamp": false,
  823. "isAutoInc": false,
  824. "comment": "",
  825. "columnFormat": "",
  826. "storage": "",
  827. "isVirtual": false,
  828. "isGeneratedAlways": false,
  829. "virtualExpr": "",
  830. "virtualType": "",
  831. "oldName": "createdBy"
  832. },
  833. {
  834. "objectType": "TableField_MYSQL",
  835. "name": "createdAt",
  836. "type": "datetime",
  837. "length": -2147483648,
  838. "decimals": -2147483648,
  839. "isUnsigned": false,
  840. "isZeroFill": false,
  841. "setEnumValues": "",
  842. "isBinary": false,
  843. "charset": "",
  844. "collation": "",
  845. "isNullable": true,
  846. "defaultType": "Null",
  847. "defaultValue": "",
  848. "isOnUpdateCurrentTimestamp": false,
  849. "isAutoInc": false,
  850. "comment": "",
  851. "columnFormat": "",
  852. "storage": "",
  853. "isVirtual": false,
  854. "isGeneratedAlways": false,
  855. "virtualExpr": "",
  856. "virtualType": "",
  857. "oldName": "createdAt"
  858. },
  859. {
  860. "objectType": "TableField_MYSQL",
  861. "name": "updatedAt",
  862. "type": "datetime",
  863. "length": -2147483648,
  864. "decimals": -2147483648,
  865. "isUnsigned": false,
  866. "isZeroFill": false,
  867. "setEnumValues": "",
  868. "isBinary": false,
  869. "charset": "",
  870. "collation": "",
  871. "isNullable": true,
  872. "defaultType": "Null",
  873. "defaultValue": "",
  874. "isOnUpdateCurrentTimestamp": false,
  875. "isAutoInc": false,
  876. "comment": "",
  877. "columnFormat": "",
  878. "storage": "",
  879. "isVirtual": false,
  880. "isGeneratedAlways": false,
  881. "virtualExpr": "",
  882. "virtualType": "",
  883. "oldName": "updatedAt"
  884. },
  885. {
  886. "objectType": "TableField_MYSQL",
  887. "name": "reqdescription",
  888. "type": "text",
  889. "length": -2147483648,
  890. "decimals": -2147483648,
  891. "isUnsigned": false,
  892. "isZeroFill": false,
  893. "setEnumValues": "",
  894. "isBinary": false,
  895. "charset": "utf8",
  896. "collation": "utf8_general_ci",
  897. "isNullable": true,
  898. "defaultType": "Null",
  899. "defaultValue": "",
  900. "isOnUpdateCurrentTimestamp": false,
  901. "isAutoInc": false,
  902. "comment": "需求描述",
  903. "columnFormat": "",
  904. "storage": "",
  905. "isVirtual": false,
  906. "isGeneratedAlways": false,
  907. "virtualExpr": "",
  908. "virtualType": "",
  909. "oldName": "reqdescription"
  910. },
  911. {
  912. "objectType": "TableField_MYSQL",
  913. "name": "group_id",
  914. "type": "varchar",
  915. "length": 255,
  916. "decimals": -2147483648,
  917. "isUnsigned": false,
  918. "isZeroFill": false,
  919. "setEnumValues": "",
  920. "isBinary": false,
  921. "charset": "utf8mb4",
  922. "collation": "utf8mb4_general_ci",
  923. "isNullable": true,
  924. "defaultType": "Null",
  925. "defaultValue": "",
  926. "isOnUpdateCurrentTimestamp": false,
  927. "isAutoInc": false,
  928. "comment": "集团",
  929. "columnFormat": "",
  930. "storage": "",
  931. "isVirtual": false,
  932. "isGeneratedAlways": false,
  933. "virtualExpr": "",
  934. "virtualType": "",
  935. "oldName": "group_id"
  936. },
  937. {
  938. "objectType": "TableField_MYSQL",
  939. "name": "real_valid_status",
  940. "type": "varchar",
  941. "length": 255,
  942. "decimals": -2147483648,
  943. "isUnsigned": false,
  944. "isZeroFill": false,
  945. "setEnumValues": "",
  946. "isBinary": false,
  947. "charset": "utf8mb4",
  948. "collation": "utf8mb4_general_ci",
  949. "isNullable": true,
  950. "defaultType": "Null",
  951. "defaultValue": "",
  952. "isOnUpdateCurrentTimestamp": false,
  953. "isAutoInc": false,
  954. "comment": "立项状态 0 未申请 1 审核中 2 通过 3拒绝",
  955. "columnFormat": "",
  956. "storage": "",
  957. "isVirtual": false,
  958. "isGeneratedAlways": false,
  959. "virtualExpr": "",
  960. "virtualType": "",
  961. "oldName": "real_valid_status"
  962. },
  963. {
  964. "objectType": "TableField_MYSQL",
  965. "name": "real_valid_At",
  966. "type": "datetime",
  967. "length": -2147483648,
  968. "decimals": -2147483648,
  969. "isUnsigned": false,
  970. "isZeroFill": false,
  971. "setEnumValues": "",
  972. "isBinary": false,
  973. "charset": "",
  974. "collation": "",
  975. "isNullable": true,
  976. "defaultType": "Null",
  977. "defaultValue": "",
  978. "isOnUpdateCurrentTimestamp": false,
  979. "isAutoInc": false,
  980. "comment": "立项时间",
  981. "columnFormat": "",
  982. "storage": "",
  983. "isVirtual": false,
  984. "isGeneratedAlways": false,
  985. "virtualExpr": "",
  986. "virtualType": "",
  987. "oldName": "real_valid_At"
  988. },
  989. {
  990. "objectType": "TableField_MYSQL",
  991. "name": "closing_item_status",
  992. "type": "varchar",
  993. "length": 50,
  994. "decimals": -2147483648,
  995. "isUnsigned": false,
  996. "isZeroFill": false,
  997. "setEnumValues": "",
  998. "isBinary": false,
  999. "charset": "utf8mb4",
  1000. "collation": "utf8mb4_general_ci",
  1001. "isNullable": true,
  1002. "defaultType": "Null",
  1003. "defaultValue": "",
  1004. "isOnUpdateCurrentTimestamp": false,
  1005. "isAutoInc": false,
  1006. "comment": "结项状态 1-未结项 2- 已结项",
  1007. "columnFormat": "",
  1008. "storage": "",
  1009. "isVirtual": false,
  1010. "isGeneratedAlways": false,
  1011. "virtualExpr": "",
  1012. "virtualType": "",
  1013. "oldName": "closing_item_status"
  1014. },
  1015. {
  1016. "objectType": "TableField_MYSQL",
  1017. "name": "closing_item_time",
  1018. "type": "datetime",
  1019. "length": -2147483648,
  1020. "decimals": -2147483648,
  1021. "isUnsigned": false,
  1022. "isZeroFill": false,
  1023. "setEnumValues": "",
  1024. "isBinary": false,
  1025. "charset": "",
  1026. "collation": "",
  1027. "isNullable": true,
  1028. "defaultType": "Null",
  1029. "defaultValue": "",
  1030. "isOnUpdateCurrentTimestamp": false,
  1031. "isAutoInc": false,
  1032. "comment": "结项提交时间",
  1033. "columnFormat": "",
  1034. "storage": "",
  1035. "isVirtual": false,
  1036. "isGeneratedAlways": false,
  1037. "virtualExpr": "",
  1038. "virtualType": "",
  1039. "oldName": "closing_item_time"
  1040. },
  1041. {
  1042. "objectType": "TableField_MYSQL",
  1043. "name": "remove_closing_time",
  1044. "type": "datetime",
  1045. "length": -2147483648,
  1046. "decimals": -2147483648,
  1047. "isUnsigned": false,
  1048. "isZeroFill": false,
  1049. "setEnumValues": "",
  1050. "isBinary": false,
  1051. "charset": "",
  1052. "collation": "",
  1053. "isNullable": true,
  1054. "defaultType": "Null",
  1055. "defaultValue": "",
  1056. "isOnUpdateCurrentTimestamp": false,
  1057. "isAutoInc": false,
  1058. "comment": "解除结项时间",
  1059. "columnFormat": "",
  1060. "storage": "",
  1061. "isVirtual": false,
  1062. "isGeneratedAlways": false,
  1063. "virtualExpr": "",
  1064. "virtualType": "",
  1065. "oldName": "remove_closing_time"
  1066. },
  1067. {
  1068. "objectType": "TableField_MYSQL",
  1069. "name": "reserve",
  1070. "type": "varchar",
  1071. "length": 255,
  1072. "decimals": -2147483648,
  1073. "isUnsigned": false,
  1074. "isZeroFill": false,
  1075. "setEnumValues": "",
  1076. "isBinary": false,
  1077. "charset": "utf8mb4",
  1078. "collation": "utf8mb4_general_ci",
  1079. "isNullable": true,
  1080. "defaultType": "Null",
  1081. "defaultValue": "",
  1082. "isOnUpdateCurrentTimestamp": false,
  1083. "isAutoInc": false,
  1084. "comment": "备用",
  1085. "columnFormat": "",
  1086. "storage": "",
  1087. "isVirtual": false,
  1088. "isGeneratedAlways": false,
  1089. "virtualExpr": "",
  1090. "virtualType": "",
  1091. "oldName": "reserve"
  1092. },
  1093. {
  1094. "objectType": "TableField_MYSQL",
  1095. "name": "yw_status",
  1096. "type": "varchar",
  1097. "length": 50,
  1098. "decimals": -2147483648,
  1099. "isUnsigned": false,
  1100. "isZeroFill": false,
  1101. "setEnumValues": "",
  1102. "isBinary": false,
  1103. "charset": "utf8mb4",
  1104. "collation": "utf8mb4_general_ci",
  1105. "isNullable": true,
  1106. "defaultType": "Null",
  1107. "defaultValue": "",
  1108. "isOnUpdateCurrentTimestamp": false,
  1109. "isAutoInc": false,
  1110. "comment": "运维状态",
  1111. "columnFormat": "",
  1112. "storage": "",
  1113. "isVirtual": false,
  1114. "isGeneratedAlways": false,
  1115. "virtualExpr": "",
  1116. "virtualType": "",
  1117. "oldName": "yw_status"
  1118. },
  1119. {
  1120. "objectType": "TableField_MYSQL",
  1121. "name": "yw_person",
  1122. "type": "varchar",
  1123. "length": 1000,
  1124. "decimals": -2147483648,
  1125. "isUnsigned": false,
  1126. "isZeroFill": false,
  1127. "setEnumValues": "",
  1128. "isBinary": false,
  1129. "charset": "utf8mb4",
  1130. "collation": "utf8mb4_general_ci",
  1131. "isNullable": true,
  1132. "defaultType": "Null",
  1133. "defaultValue": "",
  1134. "isOnUpdateCurrentTimestamp": false,
  1135. "isAutoInc": false,
  1136. "comment": "运维负责人",
  1137. "columnFormat": "",
  1138. "storage": "",
  1139. "isVirtual": false,
  1140. "isGeneratedAlways": false,
  1141. "virtualExpr": "",
  1142. "virtualType": "",
  1143. "oldName": "yw_person"
  1144. },
  1145. {
  1146. "objectType": "TableField_MYSQL",
  1147. "name": "yw_fp_time",
  1148. "type": "datetime",
  1149. "length": -2147483648,
  1150. "decimals": -2147483648,
  1151. "isUnsigned": false,
  1152. "isZeroFill": false,
  1153. "setEnumValues": "",
  1154. "isBinary": false,
  1155. "charset": "",
  1156. "collation": "",
  1157. "isNullable": true,
  1158. "defaultType": "Null",
  1159. "defaultValue": "",
  1160. "isOnUpdateCurrentTimestamp": false,
  1161. "isAutoInc": false,
  1162. "comment": "运维分配时间",
  1163. "columnFormat": "",
  1164. "storage": "",
  1165. "isVirtual": false,
  1166. "isGeneratedAlways": false,
  1167. "virtualExpr": "",
  1168. "virtualType": "",
  1169. "oldName": "yw_fp_time"
  1170. },
  1171. {
  1172. "objectType": "TableField_MYSQL",
  1173. "name": "yw_transferred",
  1174. "type": "varchar",
  1175. "length": 50,
  1176. "decimals": -2147483648,
  1177. "isUnsigned": false,
  1178. "isZeroFill": false,
  1179. "setEnumValues": "",
  1180. "isBinary": false,
  1181. "charset": "utf8mb4",
  1182. "collation": "utf8mb4_general_ci",
  1183. "isNullable": true,
  1184. "defaultType": "Null",
  1185. "defaultValue": "",
  1186. "isOnUpdateCurrentTimestamp": false,
  1187. "isAutoInc": false,
  1188. "comment": "移交人",
  1189. "columnFormat": "",
  1190. "storage": "",
  1191. "isVirtual": false,
  1192. "isGeneratedAlways": false,
  1193. "virtualExpr": "",
  1194. "virtualType": "",
  1195. "oldName": "yw_transferred"
  1196. },
  1197. {
  1198. "objectType": "TableField_MYSQL",
  1199. "name": "reserve_time",
  1200. "type": "datetime",
  1201. "length": -2147483648,
  1202. "decimals": -2147483648,
  1203. "isUnsigned": false,
  1204. "isZeroFill": false,
  1205. "setEnumValues": "",
  1206. "isBinary": false,
  1207. "charset": "",
  1208. "collation": "",
  1209. "isNullable": true,
  1210. "defaultType": "Null",
  1211. "defaultValue": "",
  1212. "isOnUpdateCurrentTimestamp": false,
  1213. "isAutoInc": false,
  1214. "comment": "备用时间",
  1215. "columnFormat": "",
  1216. "storage": "",
  1217. "isVirtual": false,
  1218. "isGeneratedAlways": false,
  1219. "virtualExpr": "",
  1220. "virtualType": "",
  1221. "oldName": "reserve_time"
  1222. }
  1223. ],
  1224. "indexes": [
  1225. {
  1226. "objectType": "Index_MYSQL",
  1227. "name": "fk_constraint_pro_user",
  1228. "type": "NORMAL",
  1229. "method": "BTREE",
  1230. "comment": "",
  1231. "oldName": "fk_constraint_pro_user",
  1232. "online": false,
  1233. "keyBlockSize": 0,
  1234. "parser": "",
  1235. "algorithm": "",
  1236. "lock": "",
  1237. "collation": "A",
  1238. "cardinality": "38",
  1239. "packed": "",
  1240. "fields": [
  1241. {
  1242. "objectType": "IndexField_MYSQL",
  1243. "name": "createdBy",
  1244. "keyLength": 0,
  1245. "order": "",
  1246. "oldName": "createdBy"
  1247. }
  1248. ]
  1249. },
  1250. {
  1251. "objectType": "Index_MYSQL",
  1252. "name": "chargedBy",
  1253. "type": "NORMAL",
  1254. "method": "BTREE",
  1255. "comment": "",
  1256. "oldName": "chargedBy",
  1257. "online": false,
  1258. "keyBlockSize": 0,
  1259. "parser": "",
  1260. "algorithm": "",
  1261. "lock": "",
  1262. "collation": "A",
  1263. "cardinality": "48",
  1264. "packed": "",
  1265. "fields": [
  1266. {
  1267. "objectType": "IndexField_MYSQL",
  1268. "name": "chargedBy",
  1269. "keyLength": 0,
  1270. "order": "",
  1271. "oldName": "chargedBy"
  1272. }
  1273. ]
  1274. },
  1275. {
  1276. "objectType": "Index_MYSQL",
  1277. "name": "fk_constraint_pro_cus",
  1278. "type": "NORMAL",
  1279. "method": "BTREE",
  1280. "comment": "",
  1281. "oldName": "fk_constraint_pro_cus",
  1282. "online": false,
  1283. "keyBlockSize": 0,
  1284. "parser": "",
  1285. "algorithm": "",
  1286. "lock": "",
  1287. "collation": "A",
  1288. "cardinality": "179",
  1289. "packed": "",
  1290. "fields": [
  1291. {
  1292. "objectType": "IndexField_MYSQL",
  1293. "name": "custId",
  1294. "keyLength": 0,
  1295. "order": "",
  1296. "oldName": "custId"
  1297. }
  1298. ]
  1299. }
  1300. ],
  1301. "primaryKey": {
  1302. "objectType": "PrimaryKey_MYSQL",
  1303. "name": "",
  1304. "fields": [
  1305. {
  1306. "objectType": "IndexField_MYSQL",
  1307. "name": "id",
  1308. "keyLength": 0,
  1309. "order": "",
  1310. "oldName": "id"
  1311. }
  1312. ],
  1313. "oldName": "",
  1314. "indexMethod": "BTREE",
  1315. "comment": ""
  1316. },
  1317. "foreignKeys": [],
  1318. "triggers": [],
  1319. "tablePartitions": []
  1320. },
  1321. {
  1322. "objectType": "Table_MYSQL",
  1323. "name": "pro_main_extend",
  1324. "comment": "",
  1325. "engine": "InnoDB",
  1326. "characterSet": "utf8",
  1327. "collation": "utf8_general_ci",
  1328. "autoIncrement": 0,
  1329. "tablespace": "",
  1330. "storage": "",
  1331. "insertMethod": "",
  1332. "connection": "",
  1333. "checksum": false,
  1334. "rowFormat": "DYNAMIC",
  1335. "avgRowLength": 0,
  1336. "maxRows": 0,
  1337. "minRows": 0,
  1338. "keyBlockSize": 0,
  1339. "packKeys": "",
  1340. "delayKeyWrite": false,
  1341. "dataDirectory": "",
  1342. "indexDirectory": "",
  1343. "statsAutoRecalc": "",
  1344. "statsPersistent": "",
  1345. "statsSamplePages": 0,
  1346. "union": "",
  1347. "pageCheckSum": false,
  1348. "transactional": false,
  1349. "compression": "",
  1350. "oldName": "pro_main_extend",
  1351. "encryption": false,
  1352. "createOptions": "row_format=DYNAMIC",
  1353. "createTime": "2024-12-01 00:20:45",
  1354. "checkTime": "",
  1355. "dataFree": 0,
  1356. "dataLength": 81920,
  1357. "indexLength": 0,
  1358. "maxDataLength": 0,
  1359. "rows": 676,
  1360. "updateTime": "",
  1361. "DDL": "CREATE TABLE `pro_main_extend` (\n `id` varchar(50) NOT NULL,\n `pro_id` varchar(50) NOT NULL,\n `count_down` int(11) DEFAULT NULL COMMENT '倒计时 天',\n `biz_created_time` datetime DEFAULT NULL COMMENT '商机创建日期',\n `first_implement_time` datetime DEFAULT NULL COMMENT '优先实施时间',\n `start_sales_time` datetime DEFAULT NULL COMMENT '启动售前日期',\n `start_design_time` datetime DEFAULT NULL COMMENT '启动设计日期',\n `start_product_time` datetime DEFAULT NULL COMMENT '启动生产日期',\n `whole_online_time` datetime DEFAULT NULL COMMENT '整体上线日期',\n `actual_check_time` datetime DEFAULT NULL COMMENT '实际验收日期',\n `req_first_online_time` datetime DEFAULT NULL COMMENT '要求首批上线时间',\n `first_online_time` datetime DEFAULT NULL COMMENT '首批上线时间',\n `pro_cycle` int(11) DEFAULT NULL COMMENT '项目周期 天',\n `team_member` int(11) DEFAULT NULL COMMENT '团队城运',\n `man_day` double(11,1) DEFAULT NULL COMMENT '实际人天',\n `batch_number` int(11) DEFAULT NULL COMMENT '批次数',\n `task_number` int(11) DEFAULT NULL COMMENT '任务数',\n `bug_number` int(11) DEFAULT NULL COMMENT '问题数',\n `created_by` varchar(64) DEFAULT NULL COMMENT '创建',\n `created_at` datetime DEFAULT NULL COMMENT '创建时间',\n `updated_by` varchar(64) DEFAULT NULL COMMENT '更新人',\n `updated_at` datetime DEFAULT NULL COMMENT '更新时间',\n `actual_online_time` datetime DEFAULT NULL COMMENT '实际上线实际',\n `status_description` varchar(255) DEFAULT NULL COMMENT '状态说明',\n `req_online_time` datetime DEFAULT NULL COMMENT '未上线批次的要求上线日期',\n `req_whole_online_time` datetime DEFAULT NULL COMMENT '要求整体上线时间',\n PRIMARY KEY (`id`,`pro_id`) USING BTREE\n) ENGINE=InnoDB DEFAULT CHARSET=utf8 ROW_FORMAT=DYNAMIC",
  1362. "partitionBy": "",
  1363. "partitionByExpr": "",
  1364. "partitions": 0,
  1365. "partitionKeyAlgorithm": "",
  1366. "subPartitionBy": "",
  1367. "subPartitionByExpr": "",
  1368. "subPartitions": 0,
  1369. "subPartitionKeyAlgorithm": "",
  1370. "fields": [
  1371. {
  1372. "objectType": "TableField_MYSQL",
  1373. "name": "id",
  1374. "type": "varchar",
  1375. "length": 50,
  1376. "decimals": -2147483648,
  1377. "isUnsigned": false,
  1378. "isZeroFill": false,
  1379. "setEnumValues": "",
  1380. "isBinary": false,
  1381. "charset": "utf8",
  1382. "collation": "utf8_general_ci",
  1383. "isNullable": false,
  1384. "defaultType": "Others",
  1385. "defaultValue": "",
  1386. "isOnUpdateCurrentTimestamp": false,
  1387. "isAutoInc": false,
  1388. "comment": "",
  1389. "columnFormat": "",
  1390. "storage": "",
  1391. "isVirtual": false,
  1392. "isGeneratedAlways": false,
  1393. "virtualExpr": "",
  1394. "virtualType": "",
  1395. "oldName": "id"
  1396. },
  1397. {
  1398. "objectType": "TableField_MYSQL",
  1399. "name": "pro_id",
  1400. "type": "varchar",
  1401. "length": 50,
  1402. "decimals": -2147483648,
  1403. "isUnsigned": false,
  1404. "isZeroFill": false,
  1405. "setEnumValues": "",
  1406. "isBinary": false,
  1407. "charset": "utf8",
  1408. "collation": "utf8_general_ci",
  1409. "isNullable": false,
  1410. "defaultType": "Others",
  1411. "defaultValue": "",
  1412. "isOnUpdateCurrentTimestamp": false,
  1413. "isAutoInc": false,
  1414. "comment": "",
  1415. "columnFormat": "",
  1416. "storage": "",
  1417. "isVirtual": false,
  1418. "isGeneratedAlways": false,
  1419. "virtualExpr": "",
  1420. "virtualType": "",
  1421. "oldName": "pro_id"
  1422. },
  1423. {
  1424. "objectType": "TableField_MYSQL",
  1425. "name": "count_down",
  1426. "type": "int",
  1427. "length": 11,
  1428. "decimals": -2147483648,
  1429. "isUnsigned": false,
  1430. "isZeroFill": false,
  1431. "setEnumValues": "",
  1432. "isBinary": false,
  1433. "charset": "",
  1434. "collation": "",
  1435. "isNullable": true,
  1436. "defaultType": "Null",
  1437. "defaultValue": "",
  1438. "isOnUpdateCurrentTimestamp": false,
  1439. "isAutoInc": false,
  1440. "comment": "倒计时 天",
  1441. "columnFormat": "",
  1442. "storage": "",
  1443. "isVirtual": false,
  1444. "isGeneratedAlways": false,
  1445. "virtualExpr": "",
  1446. "virtualType": "",
  1447. "oldName": "count_down"
  1448. },
  1449. {
  1450. "objectType": "TableField_MYSQL",
  1451. "name": "biz_created_time",
  1452. "type": "datetime",
  1453. "length": -2147483648,
  1454. "decimals": -2147483648,
  1455. "isUnsigned": false,
  1456. "isZeroFill": false,
  1457. "setEnumValues": "",
  1458. "isBinary": false,
  1459. "charset": "",
  1460. "collation": "",
  1461. "isNullable": true,
  1462. "defaultType": "Null",
  1463. "defaultValue": "",
  1464. "isOnUpdateCurrentTimestamp": false,
  1465. "isAutoInc": false,
  1466. "comment": "商机创建日期",
  1467. "columnFormat": "",
  1468. "storage": "",
  1469. "isVirtual": false,
  1470. "isGeneratedAlways": false,
  1471. "virtualExpr": "",
  1472. "virtualType": "",
  1473. "oldName": "biz_created_time"
  1474. },
  1475. {
  1476. "objectType": "TableField_MYSQL",
  1477. "name": "first_implement_time",
  1478. "type": "datetime",
  1479. "length": -2147483648,
  1480. "decimals": -2147483648,
  1481. "isUnsigned": false,
  1482. "isZeroFill": false,
  1483. "setEnumValues": "",
  1484. "isBinary": false,
  1485. "charset": "",
  1486. "collation": "",
  1487. "isNullable": true,
  1488. "defaultType": "Null",
  1489. "defaultValue": "",
  1490. "isOnUpdateCurrentTimestamp": false,
  1491. "isAutoInc": false,
  1492. "comment": "优先实施时间",
  1493. "columnFormat": "",
  1494. "storage": "",
  1495. "isVirtual": false,
  1496. "isGeneratedAlways": false,
  1497. "virtualExpr": "",
  1498. "virtualType": "",
  1499. "oldName": "first_implement_time"
  1500. },
  1501. {
  1502. "objectType": "TableField_MYSQL",
  1503. "name": "start_sales_time",
  1504. "type": "datetime",
  1505. "length": -2147483648,
  1506. "decimals": -2147483648,
  1507. "isUnsigned": false,
  1508. "isZeroFill": false,
  1509. "setEnumValues": "",
  1510. "isBinary": false,
  1511. "charset": "",
  1512. "collation": "",
  1513. "isNullable": true,
  1514. "defaultType": "Null",
  1515. "defaultValue": "",
  1516. "isOnUpdateCurrentTimestamp": false,
  1517. "isAutoInc": false,
  1518. "comment": "启动售前日期",
  1519. "columnFormat": "",
  1520. "storage": "",
  1521. "isVirtual": false,
  1522. "isGeneratedAlways": false,
  1523. "virtualExpr": "",
  1524. "virtualType": "",
  1525. "oldName": "start_sales_time"
  1526. },
  1527. {
  1528. "objectType": "TableField_MYSQL",
  1529. "name": "start_design_time",
  1530. "type": "datetime",
  1531. "length": -2147483648,
  1532. "decimals": -2147483648,
  1533. "isUnsigned": false,
  1534. "isZeroFill": false,
  1535. "setEnumValues": "",
  1536. "isBinary": false,
  1537. "charset": "",
  1538. "collation": "",
  1539. "isNullable": true,
  1540. "defaultType": "Null",
  1541. "defaultValue": "",
  1542. "isOnUpdateCurrentTimestamp": false,
  1543. "isAutoInc": false,
  1544. "comment": "启动设计日期",
  1545. "columnFormat": "",
  1546. "storage": "",
  1547. "isVirtual": false,
  1548. "isGeneratedAlways": false,
  1549. "virtualExpr": "",
  1550. "virtualType": "",
  1551. "oldName": "start_design_time"
  1552. },
  1553. {
  1554. "objectType": "TableField_MYSQL",
  1555. "name": "start_product_time",
  1556. "type": "datetime",
  1557. "length": -2147483648,
  1558. "decimals": -2147483648,
  1559. "isUnsigned": false,
  1560. "isZeroFill": false,
  1561. "setEnumValues": "",
  1562. "isBinary": false,
  1563. "charset": "",
  1564. "collation": "",
  1565. "isNullable": true,
  1566. "defaultType": "Null",
  1567. "defaultValue": "",
  1568. "isOnUpdateCurrentTimestamp": false,
  1569. "isAutoInc": false,
  1570. "comment": "启动生产日期",
  1571. "columnFormat": "",
  1572. "storage": "",
  1573. "isVirtual": false,
  1574. "isGeneratedAlways": false,
  1575. "virtualExpr": "",
  1576. "virtualType": "",
  1577. "oldName": "start_product_time"
  1578. },
  1579. {
  1580. "objectType": "TableField_MYSQL",
  1581. "name": "whole_online_time",
  1582. "type": "datetime",
  1583. "length": -2147483648,
  1584. "decimals": -2147483648,
  1585. "isUnsigned": false,
  1586. "isZeroFill": false,
  1587. "setEnumValues": "",
  1588. "isBinary": false,
  1589. "charset": "",
  1590. "collation": "",
  1591. "isNullable": true,
  1592. "defaultType": "Null",
  1593. "defaultValue": "",
  1594. "isOnUpdateCurrentTimestamp": false,
  1595. "isAutoInc": false,
  1596. "comment": "整体上线日期",
  1597. "columnFormat": "",
  1598. "storage": "",
  1599. "isVirtual": false,
  1600. "isGeneratedAlways": false,
  1601. "virtualExpr": "",
  1602. "virtualType": "",
  1603. "oldName": "whole_online_time"
  1604. },
  1605. {
  1606. "objectType": "TableField_MYSQL",
  1607. "name": "actual_check_time",
  1608. "type": "datetime",
  1609. "length": -2147483648,
  1610. "decimals": -2147483648,
  1611. "isUnsigned": false,
  1612. "isZeroFill": false,
  1613. "setEnumValues": "",
  1614. "isBinary": false,
  1615. "charset": "",
  1616. "collation": "",
  1617. "isNullable": true,
  1618. "defaultType": "Null",
  1619. "defaultValue": "",
  1620. "isOnUpdateCurrentTimestamp": false,
  1621. "isAutoInc": false,
  1622. "comment": "实际验收日期",
  1623. "columnFormat": "",
  1624. "storage": "",
  1625. "isVirtual": false,
  1626. "isGeneratedAlways": false,
  1627. "virtualExpr": "",
  1628. "virtualType": "",
  1629. "oldName": "actual_check_time"
  1630. },
  1631. {
  1632. "objectType": "TableField_MYSQL",
  1633. "name": "req_first_online_time",
  1634. "type": "datetime",
  1635. "length": -2147483648,
  1636. "decimals": -2147483648,
  1637. "isUnsigned": false,
  1638. "isZeroFill": false,
  1639. "setEnumValues": "",
  1640. "isBinary": false,
  1641. "charset": "",
  1642. "collation": "",
  1643. "isNullable": true,
  1644. "defaultType": "Null",
  1645. "defaultValue": "",
  1646. "isOnUpdateCurrentTimestamp": false,
  1647. "isAutoInc": false,
  1648. "comment": "要求首批上线时间",
  1649. "columnFormat": "",
  1650. "storage": "",
  1651. "isVirtual": false,
  1652. "isGeneratedAlways": false,
  1653. "virtualExpr": "",
  1654. "virtualType": "",
  1655. "oldName": "req_first_online_time"
  1656. },
  1657. {
  1658. "objectType": "TableField_MYSQL",
  1659. "name": "first_online_time",
  1660. "type": "datetime",
  1661. "length": -2147483648,
  1662. "decimals": -2147483648,
  1663. "isUnsigned": false,
  1664. "isZeroFill": false,
  1665. "setEnumValues": "",
  1666. "isBinary": false,
  1667. "charset": "",
  1668. "collation": "",
  1669. "isNullable": true,
  1670. "defaultType": "Null",
  1671. "defaultValue": "",
  1672. "isOnUpdateCurrentTimestamp": false,
  1673. "isAutoInc": false,
  1674. "comment": "首批上线时间",
  1675. "columnFormat": "",
  1676. "storage": "",
  1677. "isVirtual": false,
  1678. "isGeneratedAlways": false,
  1679. "virtualExpr": "",
  1680. "virtualType": "",
  1681. "oldName": "first_online_time"
  1682. },
  1683. {
  1684. "objectType": "TableField_MYSQL",
  1685. "name": "pro_cycle",
  1686. "type": "int",
  1687. "length": 11,
  1688. "decimals": -2147483648,
  1689. "isUnsigned": false,
  1690. "isZeroFill": false,
  1691. "setEnumValues": "",
  1692. "isBinary": false,
  1693. "charset": "",
  1694. "collation": "",
  1695. "isNullable": true,
  1696. "defaultType": "Null",
  1697. "defaultValue": "",
  1698. "isOnUpdateCurrentTimestamp": false,
  1699. "isAutoInc": false,
  1700. "comment": "项目周期 天",
  1701. "columnFormat": "",
  1702. "storage": "",
  1703. "isVirtual": false,
  1704. "isGeneratedAlways": false,
  1705. "virtualExpr": "",
  1706. "virtualType": "",
  1707. "oldName": "pro_cycle"
  1708. },
  1709. {
  1710. "objectType": "TableField_MYSQL",
  1711. "name": "team_member",
  1712. "type": "int",
  1713. "length": 11,
  1714. "decimals": -2147483648,
  1715. "isUnsigned": false,
  1716. "isZeroFill": false,
  1717. "setEnumValues": "",
  1718. "isBinary": false,
  1719. "charset": "",
  1720. "collation": "",
  1721. "isNullable": true,
  1722. "defaultType": "Null",
  1723. "defaultValue": "",
  1724. "isOnUpdateCurrentTimestamp": false,
  1725. "isAutoInc": false,
  1726. "comment": "团队城运",
  1727. "columnFormat": "",
  1728. "storage": "",
  1729. "isVirtual": false,
  1730. "isGeneratedAlways": false,
  1731. "virtualExpr": "",
  1732. "virtualType": "",
  1733. "oldName": "team_member"
  1734. },
  1735. {
  1736. "objectType": "TableField_MYSQL",
  1737. "name": "man_day",
  1738. "type": "double",
  1739. "length": 11,
  1740. "decimals": 1,
  1741. "isUnsigned": false,
  1742. "isZeroFill": false,
  1743. "setEnumValues": "",
  1744. "isBinary": false,
  1745. "charset": "",
  1746. "collation": "",
  1747. "isNullable": true,
  1748. "defaultType": "Null",
  1749. "defaultValue": "",
  1750. "isOnUpdateCurrentTimestamp": false,
  1751. "isAutoInc": false,
  1752. "comment": "实际人天",
  1753. "columnFormat": "",
  1754. "storage": "",
  1755. "isVirtual": false,
  1756. "isGeneratedAlways": false,
  1757. "virtualExpr": "",
  1758. "virtualType": "",
  1759. "oldName": "man_day"
  1760. },
  1761. {
  1762. "objectType": "TableField_MYSQL",
  1763. "name": "batch_number",
  1764. "type": "int",
  1765. "length": 11,
  1766. "decimals": -2147483648,
  1767. "isUnsigned": false,
  1768. "isZeroFill": false,
  1769. "setEnumValues": "",
  1770. "isBinary": false,
  1771. "charset": "",
  1772. "collation": "",
  1773. "isNullable": true,
  1774. "defaultType": "Null",
  1775. "defaultValue": "",
  1776. "isOnUpdateCurrentTimestamp": false,
  1777. "isAutoInc": false,
  1778. "comment": "批次数",
  1779. "columnFormat": "",
  1780. "storage": "",
  1781. "isVirtual": false,
  1782. "isGeneratedAlways": false,
  1783. "virtualExpr": "",
  1784. "virtualType": "",
  1785. "oldName": "batch_number"
  1786. },
  1787. {
  1788. "objectType": "TableField_MYSQL",
  1789. "name": "task_number",
  1790. "type": "int",
  1791. "length": 11,
  1792. "decimals": -2147483648,
  1793. "isUnsigned": false,
  1794. "isZeroFill": false,
  1795. "setEnumValues": "",
  1796. "isBinary": false,
  1797. "charset": "",
  1798. "collation": "",
  1799. "isNullable": true,
  1800. "defaultType": "Null",
  1801. "defaultValue": "",
  1802. "isOnUpdateCurrentTimestamp": false,
  1803. "isAutoInc": false,
  1804. "comment": "任务数",
  1805. "columnFormat": "",
  1806. "storage": "",
  1807. "isVirtual": false,
  1808. "isGeneratedAlways": false,
  1809. "virtualExpr": "",
  1810. "virtualType": "",
  1811. "oldName": "task_number"
  1812. },
  1813. {
  1814. "objectType": "TableField_MYSQL",
  1815. "name": "bug_number",
  1816. "type": "int",
  1817. "length": 11,
  1818. "decimals": -2147483648,
  1819. "isUnsigned": false,
  1820. "isZeroFill": false,
  1821. "setEnumValues": "",
  1822. "isBinary": false,
  1823. "charset": "",
  1824. "collation": "",
  1825. "isNullable": true,
  1826. "defaultType": "Null",
  1827. "defaultValue": "",
  1828. "isOnUpdateCurrentTimestamp": false,
  1829. "isAutoInc": false,
  1830. "comment": "问题数",
  1831. "columnFormat": "",
  1832. "storage": "",
  1833. "isVirtual": false,
  1834. "isGeneratedAlways": false,
  1835. "virtualExpr": "",
  1836. "virtualType": "",
  1837. "oldName": "bug_number"
  1838. },
  1839. {
  1840. "objectType": "TableField_MYSQL",
  1841. "name": "created_by",
  1842. "type": "varchar",
  1843. "length": 64,
  1844. "decimals": -2147483648,
  1845. "isUnsigned": false,
  1846. "isZeroFill": false,
  1847. "setEnumValues": "",
  1848. "isBinary": false,
  1849. "charset": "utf8",
  1850. "collation": "utf8_general_ci",
  1851. "isNullable": true,
  1852. "defaultType": "Null",
  1853. "defaultValue": "",
  1854. "isOnUpdateCurrentTimestamp": false,
  1855. "isAutoInc": false,
  1856. "comment": "创建",
  1857. "columnFormat": "",
  1858. "storage": "",
  1859. "isVirtual": false,
  1860. "isGeneratedAlways": false,
  1861. "virtualExpr": "",
  1862. "virtualType": "",
  1863. "oldName": "created_by"
  1864. },
  1865. {
  1866. "objectType": "TableField_MYSQL",
  1867. "name": "created_at",
  1868. "type": "datetime",
  1869. "length": -2147483648,
  1870. "decimals": -2147483648,
  1871. "isUnsigned": false,
  1872. "isZeroFill": false,
  1873. "setEnumValues": "",
  1874. "isBinary": false,
  1875. "charset": "",
  1876. "collation": "",
  1877. "isNullable": true,
  1878. "defaultType": "Null",
  1879. "defaultValue": "",
  1880. "isOnUpdateCurrentTimestamp": false,
  1881. "isAutoInc": false,
  1882. "comment": "创建时间",
  1883. "columnFormat": "",
  1884. "storage": "",
  1885. "isVirtual": false,
  1886. "isGeneratedAlways": false,
  1887. "virtualExpr": "",
  1888. "virtualType": "",
  1889. "oldName": "created_at"
  1890. },
  1891. {
  1892. "objectType": "TableField_MYSQL",
  1893. "name": "updated_by",
  1894. "type": "varchar",
  1895. "length": 64,
  1896. "decimals": -2147483648,
  1897. "isUnsigned": false,
  1898. "isZeroFill": false,
  1899. "setEnumValues": "",
  1900. "isBinary": false,
  1901. "charset": "utf8",
  1902. "collation": "utf8_general_ci",
  1903. "isNullable": true,
  1904. "defaultType": "Null",
  1905. "defaultValue": "",
  1906. "isOnUpdateCurrentTimestamp": false,
  1907. "isAutoInc": false,
  1908. "comment": "更新人",
  1909. "columnFormat": "",
  1910. "storage": "",
  1911. "isVirtual": false,
  1912. "isGeneratedAlways": false,
  1913. "virtualExpr": "",
  1914. "virtualType": "",
  1915. "oldName": "updated_by"
  1916. },
  1917. {
  1918. "objectType": "TableField_MYSQL",
  1919. "name": "updated_at",
  1920. "type": "datetime",
  1921. "length": -2147483648,
  1922. "decimals": -2147483648,
  1923. "isUnsigned": false,
  1924. "isZeroFill": false,
  1925. "setEnumValues": "",
  1926. "isBinary": false,
  1927. "charset": "",
  1928. "collation": "",
  1929. "isNullable": true,
  1930. "defaultType": "Null",
  1931. "defaultValue": "",
  1932. "isOnUpdateCurrentTimestamp": false,
  1933. "isAutoInc": false,
  1934. "comment": "更新时间",
  1935. "columnFormat": "",
  1936. "storage": "",
  1937. "isVirtual": false,
  1938. "isGeneratedAlways": false,
  1939. "virtualExpr": "",
  1940. "virtualType": "",
  1941. "oldName": "updated_at"
  1942. },
  1943. {
  1944. "objectType": "TableField_MYSQL",
  1945. "name": "actual_online_time",
  1946. "type": "datetime",
  1947. "length": -2147483648,
  1948. "decimals": -2147483648,
  1949. "isUnsigned": false,
  1950. "isZeroFill": false,
  1951. "setEnumValues": "",
  1952. "isBinary": false,
  1953. "charset": "",
  1954. "collation": "",
  1955. "isNullable": true,
  1956. "defaultType": "Null",
  1957. "defaultValue": "",
  1958. "isOnUpdateCurrentTimestamp": false,
  1959. "isAutoInc": false,
  1960. "comment": "实际上线实际",
  1961. "columnFormat": "",
  1962. "storage": "",
  1963. "isVirtual": false,
  1964. "isGeneratedAlways": false,
  1965. "virtualExpr": "",
  1966. "virtualType": "",
  1967. "oldName": "actual_online_time"
  1968. },
  1969. {
  1970. "objectType": "TableField_MYSQL",
  1971. "name": "status_description",
  1972. "type": "varchar",
  1973. "length": 255,
  1974. "decimals": -2147483648,
  1975. "isUnsigned": false,
  1976. "isZeroFill": false,
  1977. "setEnumValues": "",
  1978. "isBinary": false,
  1979. "charset": "utf8",
  1980. "collation": "utf8_general_ci",
  1981. "isNullable": true,
  1982. "defaultType": "Null",
  1983. "defaultValue": "",
  1984. "isOnUpdateCurrentTimestamp": false,
  1985. "isAutoInc": false,
  1986. "comment": "状态说明",
  1987. "columnFormat": "",
  1988. "storage": "",
  1989. "isVirtual": false,
  1990. "isGeneratedAlways": false,
  1991. "virtualExpr": "",
  1992. "virtualType": "",
  1993. "oldName": "status_description"
  1994. },
  1995. {
  1996. "objectType": "TableField_MYSQL",
  1997. "name": "req_online_time",
  1998. "type": "datetime",
  1999. "length": -2147483648,
  2000. "decimals": -2147483648,
  2001. "isUnsigned": false,
  2002. "isZeroFill": false,
  2003. "setEnumValues": "",
  2004. "isBinary": false,
  2005. "charset": "",
  2006. "collation": "",
  2007. "isNullable": true,
  2008. "defaultType": "Null",
  2009. "defaultValue": "",
  2010. "isOnUpdateCurrentTimestamp": false,
  2011. "isAutoInc": false,
  2012. "comment": "未上线批次的要求上线日期",
  2013. "columnFormat": "",
  2014. "storage": "",
  2015. "isVirtual": false,
  2016. "isGeneratedAlways": false,
  2017. "virtualExpr": "",
  2018. "virtualType": "",
  2019. "oldName": "req_online_time"
  2020. },
  2021. {
  2022. "objectType": "TableField_MYSQL",
  2023. "name": "req_whole_online_time",
  2024. "type": "datetime",
  2025. "length": -2147483648,
  2026. "decimals": -2147483648,
  2027. "isUnsigned": false,
  2028. "isZeroFill": false,
  2029. "setEnumValues": "",
  2030. "isBinary": false,
  2031. "charset": "",
  2032. "collation": "",
  2033. "isNullable": true,
  2034. "defaultType": "Null",
  2035. "defaultValue": "",
  2036. "isOnUpdateCurrentTimestamp": false,
  2037. "isAutoInc": false,
  2038. "comment": "要求整体上线时间",
  2039. "columnFormat": "",
  2040. "storage": "",
  2041. "isVirtual": false,
  2042. "isGeneratedAlways": false,
  2043. "virtualExpr": "",
  2044. "virtualType": "",
  2045. "oldName": "req_whole_online_time"
  2046. }
  2047. ],
  2048. "indexes": [],
  2049. "primaryKey": {
  2050. "objectType": "PrimaryKey_MYSQL",
  2051. "name": "",
  2052. "fields": [
  2053. {
  2054. "objectType": "IndexField_MYSQL",
  2055. "name": "id",
  2056. "keyLength": 0,
  2057. "order": "",
  2058. "oldName": "id"
  2059. },
  2060. {
  2061. "objectType": "IndexField_MYSQL",
  2062. "name": "pro_id",
  2063. "keyLength": 0,
  2064. "order": "",
  2065. "oldName": "pro_id"
  2066. }
  2067. ],
  2068. "oldName": "",
  2069. "indexMethod": "BTREE",
  2070. "comment": ""
  2071. },
  2072. "foreignKeys": [],
  2073. "triggers": [],
  2074. "tablePartitions": []
  2075. },
  2076. {
  2077. "objectType": "Table_MYSQL",
  2078. "name": "oa_pro_task_hour",
  2079. "comment": "任务工时填报表",
  2080. "engine": "InnoDB",
  2081. "characterSet": "utf8",
  2082. "collation": "utf8_general_ci",
  2083. "autoIncrement": 0,
  2084. "tablespace": "",
  2085. "storage": "",
  2086. "insertMethod": "",
  2087. "connection": "",
  2088. "checksum": false,
  2089. "rowFormat": "Dynamic",
  2090. "avgRowLength": 0,
  2091. "maxRows": 0,
  2092. "minRows": 0,
  2093. "keyBlockSize": 0,
  2094. "packKeys": "",
  2095. "delayKeyWrite": false,
  2096. "dataDirectory": "",
  2097. "indexDirectory": "",
  2098. "statsAutoRecalc": "",
  2099. "statsPersistent": "",
  2100. "statsSamplePages": 0,
  2101. "union": "",
  2102. "pageCheckSum": false,
  2103. "transactional": false,
  2104. "compression": "",
  2105. "oldName": "oa_pro_task_hour",
  2106. "encryption": false,
  2107. "createOptions": "",
  2108. "createTime": "2024-12-01 00:20:30",
  2109. "checkTime": "",
  2110. "dataFree": 4194304,
  2111. "dataLength": 7880704,
  2112. "indexLength": 0,
  2113. "maxDataLength": 0,
  2114. "rows": 35467,
  2115. "updateTime": "",
  2116. "DDL": "CREATE TABLE `oa_pro_task_hour` (\n `id` varchar(100) NOT NULL COMMENT '主键',\n `pro_id` varchar(100) DEFAULT NULL COMMENT '项目id',\n `task_id` varchar(100) DEFAULT NULL COMMENT '任务id',\n `hour_state` varchar(100) DEFAULT NULL COMMENT '工时状态(0未提交 1评审中 2已评审 3退回)',\n `hour_date` datetime DEFAULT NULL COMMENT '日期',\n `cost_hour` double DEFAULT NULL COMMENT '所耗工时(小时)',\n `review_hour` double DEFAULT NULL COMMENT '认定工时(小时)',\n `handle_explain` varchar(600) DEFAULT NULL COMMENT '处理说明',\n `create_user` varchar(100) DEFAULT NULL COMMENT '创建人',\n `create_time` datetime DEFAULT NULL COMMENT '创建时间',\n `update_user` varchar(100) DEFAULT NULL COMMENT '更新人',\n `update_time` datetime DEFAULT NULL COMMENT '更新时间',\n `group_id` varchar(100) DEFAULT NULL COMMENT '集团id(预留)',\n `back_reason` varchar(255) DEFAULT NULL COMMENT '退回原因',\n `other_explain` text COMMENT '其他说明',\n PRIMARY KEY (`id`)\n) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='任务工时填报表'",
  2117. "partitionBy": "",
  2118. "partitionByExpr": "",
  2119. "partitions": 0,
  2120. "partitionKeyAlgorithm": "",
  2121. "subPartitionBy": "",
  2122. "subPartitionByExpr": "",
  2123. "subPartitions": 0,
  2124. "subPartitionKeyAlgorithm": "",
  2125. "fields": [
  2126. {
  2127. "objectType": "TableField_MYSQL",
  2128. "name": "id",
  2129. "type": "varchar",
  2130. "length": 100,
  2131. "decimals": -2147483648,
  2132. "isUnsigned": false,
  2133. "isZeroFill": false,
  2134. "setEnumValues": "",
  2135. "isBinary": false,
  2136. "charset": "utf8",
  2137. "collation": "utf8_general_ci",
  2138. "isNullable": false,
  2139. "defaultType": "Others",
  2140. "defaultValue": "",
  2141. "isOnUpdateCurrentTimestamp": false,
  2142. "isAutoInc": false,
  2143. "comment": "主键",
  2144. "columnFormat": "",
  2145. "storage": "",
  2146. "isVirtual": false,
  2147. "isGeneratedAlways": false,
  2148. "virtualExpr": "",
  2149. "virtualType": "",
  2150. "oldName": "id"
  2151. },
  2152. {
  2153. "objectType": "TableField_MYSQL",
  2154. "name": "pro_id",
  2155. "type": "varchar",
  2156. "length": 100,
  2157. "decimals": -2147483648,
  2158. "isUnsigned": false,
  2159. "isZeroFill": false,
  2160. "setEnumValues": "",
  2161. "isBinary": false,
  2162. "charset": "utf8",
  2163. "collation": "utf8_general_ci",
  2164. "isNullable": true,
  2165. "defaultType": "Null",
  2166. "defaultValue": "",
  2167. "isOnUpdateCurrentTimestamp": false,
  2168. "isAutoInc": false,
  2169. "comment": "项目id",
  2170. "columnFormat": "",
  2171. "storage": "",
  2172. "isVirtual": false,
  2173. "isGeneratedAlways": false,
  2174. "virtualExpr": "",
  2175. "virtualType": "",
  2176. "oldName": "pro_id"
  2177. },
  2178. {
  2179. "objectType": "TableField_MYSQL",
  2180. "name": "task_id",
  2181. "type": "varchar",
  2182. "length": 100,
  2183. "decimals": -2147483648,
  2184. "isUnsigned": false,
  2185. "isZeroFill": false,
  2186. "setEnumValues": "",
  2187. "isBinary": false,
  2188. "charset": "utf8",
  2189. "collation": "utf8_general_ci",
  2190. "isNullable": true,
  2191. "defaultType": "Null",
  2192. "defaultValue": "",
  2193. "isOnUpdateCurrentTimestamp": false,
  2194. "isAutoInc": false,
  2195. "comment": "任务id",
  2196. "columnFormat": "",
  2197. "storage": "",
  2198. "isVirtual": false,
  2199. "isGeneratedAlways": false,
  2200. "virtualExpr": "",
  2201. "virtualType": "",
  2202. "oldName": "task_id"
  2203. },
  2204. {
  2205. "objectType": "TableField_MYSQL",
  2206. "name": "hour_state",
  2207. "type": "varchar",
  2208. "length": 100,
  2209. "decimals": -2147483648,
  2210. "isUnsigned": false,
  2211. "isZeroFill": false,
  2212. "setEnumValues": "",
  2213. "isBinary": false,
  2214. "charset": "utf8",
  2215. "collation": "utf8_general_ci",
  2216. "isNullable": true,
  2217. "defaultType": "Null",
  2218. "defaultValue": "",
  2219. "isOnUpdateCurrentTimestamp": false,
  2220. "isAutoInc": false,
  2221. "comment": "工时状态(0未提交 1评审中 2已评审 3退回)",
  2222. "columnFormat": "",
  2223. "storage": "",
  2224. "isVirtual": false,
  2225. "isGeneratedAlways": false,
  2226. "virtualExpr": "",
  2227. "virtualType": "",
  2228. "oldName": "hour_state"
  2229. },
  2230. {
  2231. "objectType": "TableField_MYSQL",
  2232. "name": "hour_date",
  2233. "type": "datetime",
  2234. "length": -2147483648,
  2235. "decimals": -2147483648,
  2236. "isUnsigned": false,
  2237. "isZeroFill": false,
  2238. "setEnumValues": "",
  2239. "isBinary": false,
  2240. "charset": "",
  2241. "collation": "",
  2242. "isNullable": true,
  2243. "defaultType": "Null",
  2244. "defaultValue": "",
  2245. "isOnUpdateCurrentTimestamp": false,
  2246. "isAutoInc": false,
  2247. "comment": "日期",
  2248. "columnFormat": "",
  2249. "storage": "",
  2250. "isVirtual": false,
  2251. "isGeneratedAlways": false,
  2252. "virtualExpr": "",
  2253. "virtualType": "",
  2254. "oldName": "hour_date"
  2255. },
  2256. {
  2257. "objectType": "TableField_MYSQL",
  2258. "name": "cost_hour",
  2259. "type": "double",
  2260. "length": -2147483648,
  2261. "decimals": -2147483648,
  2262. "isUnsigned": false,
  2263. "isZeroFill": false,
  2264. "setEnumValues": "",
  2265. "isBinary": false,
  2266. "charset": "",
  2267. "collation": "",
  2268. "isNullable": true,
  2269. "defaultType": "Null",
  2270. "defaultValue": "",
  2271. "isOnUpdateCurrentTimestamp": false,
  2272. "isAutoInc": false,
  2273. "comment": "所耗工时(小时)",
  2274. "columnFormat": "",
  2275. "storage": "",
  2276. "isVirtual": false,
  2277. "isGeneratedAlways": false,
  2278. "virtualExpr": "",
  2279. "virtualType": "",
  2280. "oldName": "cost_hour"
  2281. },
  2282. {
  2283. "objectType": "TableField_MYSQL",
  2284. "name": "review_hour",
  2285. "type": "double",
  2286. "length": -2147483648,
  2287. "decimals": -2147483648,
  2288. "isUnsigned": false,
  2289. "isZeroFill": false,
  2290. "setEnumValues": "",
  2291. "isBinary": false,
  2292. "charset": "",
  2293. "collation": "",
  2294. "isNullable": true,
  2295. "defaultType": "Null",
  2296. "defaultValue": "",
  2297. "isOnUpdateCurrentTimestamp": false,
  2298. "isAutoInc": false,
  2299. "comment": "认定工时(小时)",
  2300. "columnFormat": "",
  2301. "storage": "",
  2302. "isVirtual": false,
  2303. "isGeneratedAlways": false,
  2304. "virtualExpr": "",
  2305. "virtualType": "",
  2306. "oldName": "review_hour"
  2307. },
  2308. {
  2309. "objectType": "TableField_MYSQL",
  2310. "name": "handle_explain",
  2311. "type": "varchar",
  2312. "length": 600,
  2313. "decimals": -2147483648,
  2314. "isUnsigned": false,
  2315. "isZeroFill": false,
  2316. "setEnumValues": "",
  2317. "isBinary": false,
  2318. "charset": "utf8",
  2319. "collation": "utf8_general_ci",
  2320. "isNullable": true,
  2321. "defaultType": "Null",
  2322. "defaultValue": "",
  2323. "isOnUpdateCurrentTimestamp": false,
  2324. "isAutoInc": false,
  2325. "comment": "处理说明",
  2326. "columnFormat": "",
  2327. "storage": "",
  2328. "isVirtual": false,
  2329. "isGeneratedAlways": false,
  2330. "virtualExpr": "",
  2331. "virtualType": "",
  2332. "oldName": "handle_explain"
  2333. },
  2334. {
  2335. "objectType": "TableField_MYSQL",
  2336. "name": "create_user",
  2337. "type": "varchar",
  2338. "length": 100,
  2339. "decimals": -2147483648,
  2340. "isUnsigned": false,
  2341. "isZeroFill": false,
  2342. "setEnumValues": "",
  2343. "isBinary": false,
  2344. "charset": "utf8",
  2345. "collation": "utf8_general_ci",
  2346. "isNullable": true,
  2347. "defaultType": "Null",
  2348. "defaultValue": "",
  2349. "isOnUpdateCurrentTimestamp": false,
  2350. "isAutoInc": false,
  2351. "comment": "创建人",
  2352. "columnFormat": "",
  2353. "storage": "",
  2354. "isVirtual": false,
  2355. "isGeneratedAlways": false,
  2356. "virtualExpr": "",
  2357. "virtualType": "",
  2358. "oldName": "create_user"
  2359. },
  2360. {
  2361. "objectType": "TableField_MYSQL",
  2362. "name": "create_time",
  2363. "type": "datetime",
  2364. "length": -2147483648,
  2365. "decimals": -2147483648,
  2366. "isUnsigned": false,
  2367. "isZeroFill": false,
  2368. "setEnumValues": "",
  2369. "isBinary": false,
  2370. "charset": "",
  2371. "collation": "",
  2372. "isNullable": true,
  2373. "defaultType": "Null",
  2374. "defaultValue": "",
  2375. "isOnUpdateCurrentTimestamp": false,
  2376. "isAutoInc": false,
  2377. "comment": "创建时间",
  2378. "columnFormat": "",
  2379. "storage": "",
  2380. "isVirtual": false,
  2381. "isGeneratedAlways": false,
  2382. "virtualExpr": "",
  2383. "virtualType": "",
  2384. "oldName": "create_time"
  2385. },
  2386. {
  2387. "objectType": "TableField_MYSQL",
  2388. "name": "update_user",
  2389. "type": "varchar",
  2390. "length": 100,
  2391. "decimals": -2147483648,
  2392. "isUnsigned": false,
  2393. "isZeroFill": false,
  2394. "setEnumValues": "",
  2395. "isBinary": false,
  2396. "charset": "utf8",
  2397. "collation": "utf8_general_ci",
  2398. "isNullable": true,
  2399. "defaultType": "Null",
  2400. "defaultValue": "",
  2401. "isOnUpdateCurrentTimestamp": false,
  2402. "isAutoInc": false,
  2403. "comment": "更新人",
  2404. "columnFormat": "",
  2405. "storage": "",
  2406. "isVirtual": false,
  2407. "isGeneratedAlways": false,
  2408. "virtualExpr": "",
  2409. "virtualType": "",
  2410. "oldName": "update_user"
  2411. },
  2412. {
  2413. "objectType": "TableField_MYSQL",
  2414. "name": "update_time",
  2415. "type": "datetime",
  2416. "length": -2147483648,
  2417. "decimals": -2147483648,
  2418. "isUnsigned": false,
  2419. "isZeroFill": false,
  2420. "setEnumValues": "",
  2421. "isBinary": false,
  2422. "charset": "",
  2423. "collation": "",
  2424. "isNullable": true,
  2425. "defaultType": "Null",
  2426. "defaultValue": "",
  2427. "isOnUpdateCurrentTimestamp": false,
  2428. "isAutoInc": false,
  2429. "comment": "更新时间",
  2430. "columnFormat": "",
  2431. "storage": "",
  2432. "isVirtual": false,
  2433. "isGeneratedAlways": false,
  2434. "virtualExpr": "",
  2435. "virtualType": "",
  2436. "oldName": "update_time"
  2437. },
  2438. {
  2439. "objectType": "TableField_MYSQL",
  2440. "name": "group_id",
  2441. "type": "varchar",
  2442. "length": 100,
  2443. "decimals": -2147483648,
  2444. "isUnsigned": false,
  2445. "isZeroFill": false,
  2446. "setEnumValues": "",
  2447. "isBinary": false,
  2448. "charset": "utf8",
  2449. "collation": "utf8_general_ci",
  2450. "isNullable": true,
  2451. "defaultType": "Null",
  2452. "defaultValue": "",
  2453. "isOnUpdateCurrentTimestamp": false,
  2454. "isAutoInc": false,
  2455. "comment": "集团id(预留)",
  2456. "columnFormat": "",
  2457. "storage": "",
  2458. "isVirtual": false,
  2459. "isGeneratedAlways": false,
  2460. "virtualExpr": "",
  2461. "virtualType": "",
  2462. "oldName": "group_id"
  2463. },
  2464. {
  2465. "objectType": "TableField_MYSQL",
  2466. "name": "back_reason",
  2467. "type": "varchar",
  2468. "length": 255,
  2469. "decimals": -2147483648,
  2470. "isUnsigned": false,
  2471. "isZeroFill": false,
  2472. "setEnumValues": "",
  2473. "isBinary": false,
  2474. "charset": "utf8",
  2475. "collation": "utf8_general_ci",
  2476. "isNullable": true,
  2477. "defaultType": "Null",
  2478. "defaultValue": "",
  2479. "isOnUpdateCurrentTimestamp": false,
  2480. "isAutoInc": false,
  2481. "comment": "退回原因",
  2482. "columnFormat": "",
  2483. "storage": "",
  2484. "isVirtual": false,
  2485. "isGeneratedAlways": false,
  2486. "virtualExpr": "",
  2487. "virtualType": "",
  2488. "oldName": "back_reason"
  2489. },
  2490. {
  2491. "objectType": "TableField_MYSQL",
  2492. "name": "other_explain",
  2493. "type": "text",
  2494. "length": -2147483648,
  2495. "decimals": -2147483648,
  2496. "isUnsigned": false,
  2497. "isZeroFill": false,
  2498. "setEnumValues": "",
  2499. "isBinary": false,
  2500. "charset": "utf8",
  2501. "collation": "utf8_general_ci",
  2502. "isNullable": true,
  2503. "defaultType": "Null",
  2504. "defaultValue": "",
  2505. "isOnUpdateCurrentTimestamp": false,
  2506. "isAutoInc": false,
  2507. "comment": "其他说明",
  2508. "columnFormat": "",
  2509. "storage": "",
  2510. "isVirtual": false,
  2511. "isGeneratedAlways": false,
  2512. "virtualExpr": "",
  2513. "virtualType": "",
  2514. "oldName": "other_explain"
  2515. }
  2516. ],
  2517. "indexes": [],
  2518. "primaryKey": {
  2519. "objectType": "PrimaryKey_MYSQL",
  2520. "name": "",
  2521. "fields": [
  2522. {
  2523. "objectType": "IndexField_MYSQL",
  2524. "name": "id",
  2525. "keyLength": 0,
  2526. "order": "",
  2527. "oldName": "id"
  2528. }
  2529. ],
  2530. "oldName": "",
  2531. "indexMethod": "BTREE",
  2532. "comment": ""
  2533. },
  2534. "foreignKeys": [],
  2535. "triggers": [],
  2536. "tablePartitions": []
  2537. },
  2538. {
  2539. "objectType": "Table_MYSQL",
  2540. "name": "acc_receivable",
  2541. "comment": "",
  2542. "engine": "InnoDB",
  2543. "characterSet": "utf8",
  2544. "collation": "utf8_general_ci",
  2545. "autoIncrement": 0,
  2546. "tablespace": "",
  2547. "storage": "",
  2548. "insertMethod": "",
  2549. "connection": "",
  2550. "checksum": false,
  2551. "rowFormat": "Dynamic",
  2552. "avgRowLength": 0,
  2553. "maxRows": 0,
  2554. "minRows": 0,
  2555. "keyBlockSize": 0,
  2556. "packKeys": "",
  2557. "delayKeyWrite": false,
  2558. "dataDirectory": "",
  2559. "indexDirectory": "",
  2560. "statsAutoRecalc": "",
  2561. "statsPersistent": "",
  2562. "statsSamplePages": 0,
  2563. "union": "",
  2564. "pageCheckSum": false,
  2565. "transactional": false,
  2566. "compression": "",
  2567. "oldName": "acc_receivable",
  2568. "encryption": false,
  2569. "createOptions": "",
  2570. "createTime": "2024-12-01 00:18:52",
  2571. "checkTime": "",
  2572. "dataFree": 0,
  2573. "dataLength": 65536,
  2574. "indexLength": 32768,
  2575. "maxDataLength": 0,
  2576. "rows": 111,
  2577. "updateTime": "",
  2578. "DDL": "CREATE TABLE `acc_receivable` (\n `id` varchar(50) NOT NULL,\n `planNo` varchar(50) DEFAULT NULL COMMENT '计划编号',\n `planStatus` varchar(1) DEFAULT NULL COMMENT '状态,0-未收款,1-收款中,2-收款完成',\n `ctrId` varchar(50) DEFAULT NULL COMMENT '合同ID',\n `contractNo` varchar(50) DEFAULT NULL COMMENT '合同号',\n `custId` varchar(50) DEFAULT NULL COMMENT '客户ID',\n `custName` varchar(50) DEFAULT NULL COMMENT '客户名称',\n `proId` varchar(50) DEFAULT NULL COMMENT '项目ID',\n `proName` varchar(50) DEFAULT NULL COMMENT '项目名称',\n `chargedBy` varchar(50) DEFAULT NULL COMMENT '销售人员',\n `arDate` date DEFAULT NULL COMMENT '应收日期',\n `arAmount` double DEFAULT NULL COMMENT '应收金额',\n `arName` varchar(100) DEFAULT NULL COMMENT '收款名称',\n `receiptNo` varchar(100) DEFAULT NULL COMMENT '发票号',\n `receiptDate` datetime DEFAULT NULL COMMENT '开票日期',\n `receiptAmount` double DEFAULT NULL COMMENT '开票金额',\n `receiveDate` datetime DEFAULT NULL COMMENT '收款日期',\n `receiveAmount` double DEFAULT NULL COMMENT '收款金额',\n `adjustAmount` double DEFAULT NULL COMMENT '调整金额',\n `adjustReason` text COMMENT '调整原因',\n `dealedBy` varchar(50) DEFAULT NULL COMMENT '办理人',\n `dealedAt` datetime DEFAULT NULL COMMENT '办理日期',\n `noticeDate` date DEFAULT NULL COMMENT '提醒日期',\n `updatedBy` varchar(50) DEFAULT NULL,\n `createdAt` datetime DEFAULT NULL,\n `updatedAt` datetime DEFAULT NULL,\n `sys_id` varchar(50) DEFAULT NULL COMMENT '系统码',\n `deliverymethod` varchar(255) DEFAULT NULL COMMENT '交割方式',\n `deliverydate` datetime DEFAULT NULL COMMENT '交割日期',\n `receiveuser` varchar(100) DEFAULT NULL COMMENT '接收人',\n `supplement` varchar(255) DEFAULT NULL COMMENT '补充说明',\n `paymentmethod` varchar(100) DEFAULT NULL COMMENT '收款方式',\n `othermethod` varchar(255) DEFAULT NULL COMMENT '其他收款方式',\n `cashamount` double DEFAULT NULL COMMENT '收款方式-现金金额',\n `telegraphicamount` double DEFAULT NULL COMMENT '收款方式-电汇金额',\n `otheramount` double DEFAULT NULL COMMENT '收款方式-其他金额',\n `paymentnotes` text COMMENT '收款登记备注',\n `adjustuser` varchar(100) DEFAULT NULL COMMENT '申请调整人',\n `adjustexplain` text COMMENT '调整说明',\n `group_id` varchar(50) DEFAULT NULL COMMENT '集团ID',\n PRIMARY KEY (`id`) USING BTREE,\n KEY `FK_CONSTRAINTS_CTR_MAIN` (`ctrId`) USING BTREE,\n KEY `FK_CONSTRAINT_CTR_SALES_USER` (`updatedBy`) USING BTREE,\n CONSTRAINT `FK_CONSTRAINTS_CTR_MAIN` FOREIGN KEY (`ctrId`) REFERENCES `ctr_main` (`id`) ON DELETE NO ACTION ON UPDATE NO ACTION,\n CONSTRAINT `FK_CONSTRAINT_CTR_SALES_USER` FOREIGN KEY (`updatedBy`) REFERENCES `frame_user` (`id`) ON DELETE NO ACTION ON UPDATE NO ACTION\n) ENGINE=InnoDB DEFAULT CHARSET=utf8",
  2579. "partitionBy": "",
  2580. "partitionByExpr": "",
  2581. "partitions": 0,
  2582. "partitionKeyAlgorithm": "",
  2583. "subPartitionBy": "",
  2584. "subPartitionByExpr": "",
  2585. "subPartitions": 0,
  2586. "subPartitionKeyAlgorithm": "",
  2587. "fields": [
  2588. {
  2589. "objectType": "TableField_MYSQL",
  2590. "name": "id",
  2591. "type": "varchar",
  2592. "length": 50,
  2593. "decimals": -2147483648,
  2594. "isUnsigned": false,
  2595. "isZeroFill": false,
  2596. "setEnumValues": "",
  2597. "isBinary": false,
  2598. "charset": "utf8",
  2599. "collation": "utf8_general_ci",
  2600. "isNullable": false,
  2601. "defaultType": "Others",
  2602. "defaultValue": "",
  2603. "isOnUpdateCurrentTimestamp": false,
  2604. "isAutoInc": false,
  2605. "comment": "",
  2606. "columnFormat": "",
  2607. "storage": "",
  2608. "isVirtual": false,
  2609. "isGeneratedAlways": false,
  2610. "virtualExpr": "",
  2611. "virtualType": "",
  2612. "oldName": "id"
  2613. },
  2614. {
  2615. "objectType": "TableField_MYSQL",
  2616. "name": "planNo",
  2617. "type": "varchar",
  2618. "length": 50,
  2619. "decimals": -2147483648,
  2620. "isUnsigned": false,
  2621. "isZeroFill": false,
  2622. "setEnumValues": "",
  2623. "isBinary": false,
  2624. "charset": "utf8",
  2625. "collation": "utf8_general_ci",
  2626. "isNullable": true,
  2627. "defaultType": "Null",
  2628. "defaultValue": "",
  2629. "isOnUpdateCurrentTimestamp": false,
  2630. "isAutoInc": false,
  2631. "comment": "计划编号",
  2632. "columnFormat": "",
  2633. "storage": "",
  2634. "isVirtual": false,
  2635. "isGeneratedAlways": false,
  2636. "virtualExpr": "",
  2637. "virtualType": "",
  2638. "oldName": "planNo"
  2639. },
  2640. {
  2641. "objectType": "TableField_MYSQL",
  2642. "name": "planStatus",
  2643. "type": "varchar",
  2644. "length": 1,
  2645. "decimals": -2147483648,
  2646. "isUnsigned": false,
  2647. "isZeroFill": false,
  2648. "setEnumValues": "",
  2649. "isBinary": false,
  2650. "charset": "utf8",
  2651. "collation": "utf8_general_ci",
  2652. "isNullable": true,
  2653. "defaultType": "Null",
  2654. "defaultValue": "",
  2655. "isOnUpdateCurrentTimestamp": false,
  2656. "isAutoInc": false,
  2657. "comment": "状态,0-未收款,1-收款中,2-收款完成",
  2658. "columnFormat": "",
  2659. "storage": "",
  2660. "isVirtual": false,
  2661. "isGeneratedAlways": false,
  2662. "virtualExpr": "",
  2663. "virtualType": "",
  2664. "oldName": "planStatus"
  2665. },
  2666. {
  2667. "objectType": "TableField_MYSQL",
  2668. "name": "ctrId",
  2669. "type": "varchar",
  2670. "length": 50,
  2671. "decimals": -2147483648,
  2672. "isUnsigned": false,
  2673. "isZeroFill": false,
  2674. "setEnumValues": "",
  2675. "isBinary": false,
  2676. "charset": "utf8",
  2677. "collation": "utf8_general_ci",
  2678. "isNullable": true,
  2679. "defaultType": "Null",
  2680. "defaultValue": "",
  2681. "isOnUpdateCurrentTimestamp": false,
  2682. "isAutoInc": false,
  2683. "comment": "合同ID",
  2684. "columnFormat": "",
  2685. "storage": "",
  2686. "isVirtual": false,
  2687. "isGeneratedAlways": false,
  2688. "virtualExpr": "",
  2689. "virtualType": "",
  2690. "oldName": "ctrId"
  2691. },
  2692. {
  2693. "objectType": "TableField_MYSQL",
  2694. "name": "contractNo",
  2695. "type": "varchar",
  2696. "length": 50,
  2697. "decimals": -2147483648,
  2698. "isUnsigned": false,
  2699. "isZeroFill": false,
  2700. "setEnumValues": "",
  2701. "isBinary": false,
  2702. "charset": "utf8",
  2703. "collation": "utf8_general_ci",
  2704. "isNullable": true,
  2705. "defaultType": "Null",
  2706. "defaultValue": "",
  2707. "isOnUpdateCurrentTimestamp": false,
  2708. "isAutoInc": false,
  2709. "comment": "合同号",
  2710. "columnFormat": "",
  2711. "storage": "",
  2712. "isVirtual": false,
  2713. "isGeneratedAlways": false,
  2714. "virtualExpr": "",
  2715. "virtualType": "",
  2716. "oldName": "contractNo"
  2717. },
  2718. {
  2719. "objectType": "TableField_MYSQL",
  2720. "name": "custId",
  2721. "type": "varchar",
  2722. "length": 50,
  2723. "decimals": -2147483648,
  2724. "isUnsigned": false,
  2725. "isZeroFill": false,
  2726. "setEnumValues": "",
  2727. "isBinary": false,
  2728. "charset": "utf8",
  2729. "collation": "utf8_general_ci",
  2730. "isNullable": true,
  2731. "defaultType": "Null",
  2732. "defaultValue": "",
  2733. "isOnUpdateCurrentTimestamp": false,
  2734. "isAutoInc": false,
  2735. "comment": "客户ID",
  2736. "columnFormat": "",
  2737. "storage": "",
  2738. "isVirtual": false,
  2739. "isGeneratedAlways": false,
  2740. "virtualExpr": "",
  2741. "virtualType": "",
  2742. "oldName": "custId"
  2743. },
  2744. {
  2745. "objectType": "TableField_MYSQL",
  2746. "name": "custName",
  2747. "type": "varchar",
  2748. "length": 50,
  2749. "decimals": -2147483648,
  2750. "isUnsigned": false,
  2751. "isZeroFill": false,
  2752. "setEnumValues": "",
  2753. "isBinary": false,
  2754. "charset": "utf8",
  2755. "collation": "utf8_general_ci",
  2756. "isNullable": true,
  2757. "defaultType": "Null",
  2758. "defaultValue": "",
  2759. "isOnUpdateCurrentTimestamp": false,
  2760. "isAutoInc": false,
  2761. "comment": "客户名称",
  2762. "columnFormat": "",
  2763. "storage": "",
  2764. "isVirtual": false,
  2765. "isGeneratedAlways": false,
  2766. "virtualExpr": "",
  2767. "virtualType": "",
  2768. "oldName": "custName"
  2769. },
  2770. {
  2771. "objectType": "TableField_MYSQL",
  2772. "name": "proId",
  2773. "type": "varchar",
  2774. "length": 50,
  2775. "decimals": -2147483648,
  2776. "isUnsigned": false,
  2777. "isZeroFill": false,
  2778. "setEnumValues": "",
  2779. "isBinary": false,
  2780. "charset": "utf8",
  2781. "collation": "utf8_general_ci",
  2782. "isNullable": true,
  2783. "defaultType": "Null",
  2784. "defaultValue": "",
  2785. "isOnUpdateCurrentTimestamp": false,
  2786. "isAutoInc": false,
  2787. "comment": "项目ID",
  2788. "columnFormat": "",
  2789. "storage": "",
  2790. "isVirtual": false,
  2791. "isGeneratedAlways": false,
  2792. "virtualExpr": "",
  2793. "virtualType": "",
  2794. "oldName": "proId"
  2795. },
  2796. {
  2797. "objectType": "TableField_MYSQL",
  2798. "name": "proName",
  2799. "type": "varchar",
  2800. "length": 50,
  2801. "decimals": -2147483648,
  2802. "isUnsigned": false,
  2803. "isZeroFill": false,
  2804. "setEnumValues": "",
  2805. "isBinary": false,
  2806. "charset": "utf8",
  2807. "collation": "utf8_general_ci",
  2808. "isNullable": true,
  2809. "defaultType": "Null",
  2810. "defaultValue": "",
  2811. "isOnUpdateCurrentTimestamp": false,
  2812. "isAutoInc": false,
  2813. "comment": "项目名称",
  2814. "columnFormat": "",
  2815. "storage": "",
  2816. "isVirtual": false,
  2817. "isGeneratedAlways": false,
  2818. "virtualExpr": "",
  2819. "virtualType": "",
  2820. "oldName": "proName"
  2821. },
  2822. {
  2823. "objectType": "TableField_MYSQL",
  2824. "name": "chargedBy",
  2825. "type": "varchar",
  2826. "length": 50,
  2827. "decimals": -2147483648,
  2828. "isUnsigned": false,
  2829. "isZeroFill": false,
  2830. "setEnumValues": "",
  2831. "isBinary": false,
  2832. "charset": "utf8",
  2833. "collation": "utf8_general_ci",
  2834. "isNullable": true,
  2835. "defaultType": "Null",
  2836. "defaultValue": "",
  2837. "isOnUpdateCurrentTimestamp": false,
  2838. "isAutoInc": false,
  2839. "comment": "销售人员",
  2840. "columnFormat": "",
  2841. "storage": "",
  2842. "isVirtual": false,
  2843. "isGeneratedAlways": false,
  2844. "virtualExpr": "",
  2845. "virtualType": "",
  2846. "oldName": "chargedBy"
  2847. },
  2848. {
  2849. "objectType": "TableField_MYSQL",
  2850. "name": "arDate",
  2851. "type": "date",
  2852. "length": -2147483648,
  2853. "decimals": -2147483648,
  2854. "isUnsigned": false,
  2855. "isZeroFill": false,
  2856. "setEnumValues": "",
  2857. "isBinary": false,
  2858. "charset": "",
  2859. "collation": "",
  2860. "isNullable": true,
  2861. "defaultType": "Null",
  2862. "defaultValue": "",
  2863. "isOnUpdateCurrentTimestamp": false,
  2864. "isAutoInc": false,
  2865. "comment": "应收日期",
  2866. "columnFormat": "",
  2867. "storage": "",
  2868. "isVirtual": false,
  2869. "isGeneratedAlways": false,
  2870. "virtualExpr": "",
  2871. "virtualType": "",
  2872. "oldName": "arDate"
  2873. },
  2874. {
  2875. "objectType": "TableField_MYSQL",
  2876. "name": "arAmount",
  2877. "type": "double",
  2878. "length": -2147483648,
  2879. "decimals": -2147483648,
  2880. "isUnsigned": false,
  2881. "isZeroFill": false,
  2882. "setEnumValues": "",
  2883. "isBinary": false,
  2884. "charset": "",
  2885. "collation": "",
  2886. "isNullable": true,
  2887. "defaultType": "Null",
  2888. "defaultValue": "",
  2889. "isOnUpdateCurrentTimestamp": false,
  2890. "isAutoInc": false,
  2891. "comment": "应收金额",
  2892. "columnFormat": "",
  2893. "storage": "",
  2894. "isVirtual": false,
  2895. "isGeneratedAlways": false,
  2896. "virtualExpr": "",
  2897. "virtualType": "",
  2898. "oldName": "arAmount"
  2899. },
  2900. {
  2901. "objectType": "TableField_MYSQL",
  2902. "name": "arName",
  2903. "type": "varchar",
  2904. "length": 100,
  2905. "decimals": -2147483648,
  2906. "isUnsigned": false,
  2907. "isZeroFill": false,
  2908. "setEnumValues": "",
  2909. "isBinary": false,
  2910. "charset": "utf8",
  2911. "collation": "utf8_general_ci",
  2912. "isNullable": true,
  2913. "defaultType": "Null",
  2914. "defaultValue": "",
  2915. "isOnUpdateCurrentTimestamp": false,
  2916. "isAutoInc": false,
  2917. "comment": "收款名称",
  2918. "columnFormat": "",
  2919. "storage": "",
  2920. "isVirtual": false,
  2921. "isGeneratedAlways": false,
  2922. "virtualExpr": "",
  2923. "virtualType": "",
  2924. "oldName": "arName"
  2925. },
  2926. {
  2927. "objectType": "TableField_MYSQL",
  2928. "name": "receiptNo",
  2929. "type": "varchar",
  2930. "length": 100,
  2931. "decimals": -2147483648,
  2932. "isUnsigned": false,
  2933. "isZeroFill": false,
  2934. "setEnumValues": "",
  2935. "isBinary": false,
  2936. "charset": "utf8",
  2937. "collation": "utf8_general_ci",
  2938. "isNullable": true,
  2939. "defaultType": "Null",
  2940. "defaultValue": "",
  2941. "isOnUpdateCurrentTimestamp": false,
  2942. "isAutoInc": false,
  2943. "comment": "发票号",
  2944. "columnFormat": "",
  2945. "storage": "",
  2946. "isVirtual": false,
  2947. "isGeneratedAlways": false,
  2948. "virtualExpr": "",
  2949. "virtualType": "",
  2950. "oldName": "receiptNo"
  2951. },
  2952. {
  2953. "objectType": "TableField_MYSQL",
  2954. "name": "receiptDate",
  2955. "type": "datetime",
  2956. "length": -2147483648,
  2957. "decimals": -2147483648,
  2958. "isUnsigned": false,
  2959. "isZeroFill": false,
  2960. "setEnumValues": "",
  2961. "isBinary": false,
  2962. "charset": "",
  2963. "collation": "",
  2964. "isNullable": true,
  2965. "defaultType": "Null",
  2966. "defaultValue": "",
  2967. "isOnUpdateCurrentTimestamp": false,
  2968. "isAutoInc": false,
  2969. "comment": "开票日期",
  2970. "columnFormat": "",
  2971. "storage": "",
  2972. "isVirtual": false,
  2973. "isGeneratedAlways": false,
  2974. "virtualExpr": "",
  2975. "virtualType": "",
  2976. "oldName": "receiptDate"
  2977. },
  2978. {
  2979. "objectType": "TableField_MYSQL",
  2980. "name": "receiptAmount",
  2981. "type": "double",
  2982. "length": -2147483648,
  2983. "decimals": -2147483648,
  2984. "isUnsigned": false,
  2985. "isZeroFill": false,
  2986. "setEnumValues": "",
  2987. "isBinary": false,
  2988. "charset": "",
  2989. "collation": "",
  2990. "isNullable": true,
  2991. "defaultType": "Null",
  2992. "defaultValue": "",
  2993. "isOnUpdateCurrentTimestamp": false,
  2994. "isAutoInc": false,
  2995. "comment": "开票金额",
  2996. "columnFormat": "",
  2997. "storage": "",
  2998. "isVirtual": false,
  2999. "isGeneratedAlways": false,
  3000. "virtualExpr": "",
  3001. "virtualType": "",
  3002. "oldName": "receiptAmount"
  3003. },
  3004. {
  3005. "objectType": "TableField_MYSQL",
  3006. "name": "receiveDate",
  3007. "type": "datetime",
  3008. "length": -2147483648,
  3009. "decimals": -2147483648,
  3010. "isUnsigned": false,
  3011. "isZeroFill": false,
  3012. "setEnumValues": "",
  3013. "isBinary": false,
  3014. "charset": "",
  3015. "collation": "",
  3016. "isNullable": true,
  3017. "defaultType": "Null",
  3018. "defaultValue": "",
  3019. "isOnUpdateCurrentTimestamp": false,
  3020. "isAutoInc": false,
  3021. "comment": "收款日期",
  3022. "columnFormat": "",
  3023. "storage": "",
  3024. "isVirtual": false,
  3025. "isGeneratedAlways": false,
  3026. "virtualExpr": "",
  3027. "virtualType": "",
  3028. "oldName": "receiveDate"
  3029. },
  3030. {
  3031. "objectType": "TableField_MYSQL",
  3032. "name": "receiveAmount",
  3033. "type": "double",
  3034. "length": -2147483648,
  3035. "decimals": -2147483648,
  3036. "isUnsigned": false,
  3037. "isZeroFill": false,
  3038. "setEnumValues": "",
  3039. "isBinary": false,
  3040. "charset": "",
  3041. "collation": "",
  3042. "isNullable": true,
  3043. "defaultType": "Null",
  3044. "defaultValue": "",
  3045. "isOnUpdateCurrentTimestamp": false,
  3046. "isAutoInc": false,
  3047. "comment": "收款金额",
  3048. "columnFormat": "",
  3049. "storage": "",
  3050. "isVirtual": false,
  3051. "isGeneratedAlways": false,
  3052. "virtualExpr": "",
  3053. "virtualType": "",
  3054. "oldName": "receiveAmount"
  3055. },
  3056. {
  3057. "objectType": "TableField_MYSQL",
  3058. "name": "adjustAmount",
  3059. "type": "double",
  3060. "length": -2147483648,
  3061. "decimals": -2147483648,
  3062. "isUnsigned": false,
  3063. "isZeroFill": false,
  3064. "setEnumValues": "",
  3065. "isBinary": false,
  3066. "charset": "",
  3067. "collation": "",
  3068. "isNullable": true,
  3069. "defaultType": "Null",
  3070. "defaultValue": "",
  3071. "isOnUpdateCurrentTimestamp": false,
  3072. "isAutoInc": false,
  3073. "comment": "调整金额",
  3074. "columnFormat": "",
  3075. "storage": "",
  3076. "isVirtual": false,
  3077. "isGeneratedAlways": false,
  3078. "virtualExpr": "",
  3079. "virtualType": "",
  3080. "oldName": "adjustAmount"
  3081. },
  3082. {
  3083. "objectType": "TableField_MYSQL",
  3084. "name": "adjustReason",
  3085. "type": "text",
  3086. "length": -2147483648,
  3087. "decimals": -2147483648,
  3088. "isUnsigned": false,
  3089. "isZeroFill": false,
  3090. "setEnumValues": "",
  3091. "isBinary": false,
  3092. "charset": "utf8",
  3093. "collation": "utf8_general_ci",
  3094. "isNullable": true,
  3095. "defaultType": "Null",
  3096. "defaultValue": "",
  3097. "isOnUpdateCurrentTimestamp": false,
  3098. "isAutoInc": false,
  3099. "comment": "调整原因",
  3100. "columnFormat": "",
  3101. "storage": "",
  3102. "isVirtual": false,
  3103. "isGeneratedAlways": false,
  3104. "virtualExpr": "",
  3105. "virtualType": "",
  3106. "oldName": "adjustReason"
  3107. },
  3108. {
  3109. "objectType": "TableField_MYSQL",
  3110. "name": "dealedBy",
  3111. "type": "varchar",
  3112. "length": 50,
  3113. "decimals": -2147483648,
  3114. "isUnsigned": false,
  3115. "isZeroFill": false,
  3116. "setEnumValues": "",
  3117. "isBinary": false,
  3118. "charset": "utf8",
  3119. "collation": "utf8_general_ci",
  3120. "isNullable": true,
  3121. "defaultType": "Null",
  3122. "defaultValue": "",
  3123. "isOnUpdateCurrentTimestamp": false,
  3124. "isAutoInc": false,
  3125. "comment": "办理人",
  3126. "columnFormat": "",
  3127. "storage": "",
  3128. "isVirtual": false,
  3129. "isGeneratedAlways": false,
  3130. "virtualExpr": "",
  3131. "virtualType": "",
  3132. "oldName": "dealedBy"
  3133. },
  3134. {
  3135. "objectType": "TableField_MYSQL",
  3136. "name": "dealedAt",
  3137. "type": "datetime",
  3138. "length": -2147483648,
  3139. "decimals": -2147483648,
  3140. "isUnsigned": false,
  3141. "isZeroFill": false,
  3142. "setEnumValues": "",
  3143. "isBinary": false,
  3144. "charset": "",
  3145. "collation": "",
  3146. "isNullable": true,
  3147. "defaultType": "Null",
  3148. "defaultValue": "",
  3149. "isOnUpdateCurrentTimestamp": false,
  3150. "isAutoInc": false,
  3151. "comment": "办理日期",
  3152. "columnFormat": "",
  3153. "storage": "",
  3154. "isVirtual": false,
  3155. "isGeneratedAlways": false,
  3156. "virtualExpr": "",
  3157. "virtualType": "",
  3158. "oldName": "dealedAt"
  3159. },
  3160. {
  3161. "objectType": "TableField_MYSQL",
  3162. "name": "noticeDate",
  3163. "type": "date",
  3164. "length": -2147483648,
  3165. "decimals": -2147483648,
  3166. "isUnsigned": false,
  3167. "isZeroFill": false,
  3168. "setEnumValues": "",
  3169. "isBinary": false,
  3170. "charset": "",
  3171. "collation": "",
  3172. "isNullable": true,
  3173. "defaultType": "Null",
  3174. "defaultValue": "",
  3175. "isOnUpdateCurrentTimestamp": false,
  3176. "isAutoInc": false,
  3177. "comment": "提醒日期",
  3178. "columnFormat": "",
  3179. "storage": "",
  3180. "isVirtual": false,
  3181. "isGeneratedAlways": false,
  3182. "virtualExpr": "",
  3183. "virtualType": "",
  3184. "oldName": "noticeDate"
  3185. },
  3186. {
  3187. "objectType": "TableField_MYSQL",
  3188. "name": "updatedBy",
  3189. "type": "varchar",
  3190. "length": 50,
  3191. "decimals": -2147483648,
  3192. "isUnsigned": false,
  3193. "isZeroFill": false,
  3194. "setEnumValues": "",
  3195. "isBinary": false,
  3196. "charset": "utf8",
  3197. "collation": "utf8_general_ci",
  3198. "isNullable": true,
  3199. "defaultType": "Null",
  3200. "defaultValue": "",
  3201. "isOnUpdateCurrentTimestamp": false,
  3202. "isAutoInc": false,
  3203. "comment": "",
  3204. "columnFormat": "",
  3205. "storage": "",
  3206. "isVirtual": false,
  3207. "isGeneratedAlways": false,
  3208. "virtualExpr": "",
  3209. "virtualType": "",
  3210. "oldName": "updatedBy"
  3211. },
  3212. {
  3213. "objectType": "TableField_MYSQL",
  3214. "name": "createdAt",
  3215. "type": "datetime",
  3216. "length": -2147483648,
  3217. "decimals": -2147483648,
  3218. "isUnsigned": false,
  3219. "isZeroFill": false,
  3220. "setEnumValues": "",
  3221. "isBinary": false,
  3222. "charset": "",
  3223. "collation": "",
  3224. "isNullable": true,
  3225. "defaultType": "Null",
  3226. "defaultValue": "",
  3227. "isOnUpdateCurrentTimestamp": false,
  3228. "isAutoInc": false,
  3229. "comment": "",
  3230. "columnFormat": "",
  3231. "storage": "",
  3232. "isVirtual": false,
  3233. "isGeneratedAlways": false,
  3234. "virtualExpr": "",
  3235. "virtualType": "",
  3236. "oldName": "createdAt"
  3237. },
  3238. {
  3239. "objectType": "TableField_MYSQL",
  3240. "name": "updatedAt",
  3241. "type": "datetime",
  3242. "length": -2147483648,
  3243. "decimals": -2147483648,
  3244. "isUnsigned": false,
  3245. "isZeroFill": false,
  3246. "setEnumValues": "",
  3247. "isBinary": false,
  3248. "charset": "",
  3249. "collation": "",
  3250. "isNullable": true,
  3251. "defaultType": "Null",
  3252. "defaultValue": "",
  3253. "isOnUpdateCurrentTimestamp": false,
  3254. "isAutoInc": false,
  3255. "comment": "",
  3256. "columnFormat": "",
  3257. "storage": "",
  3258. "isVirtual": false,
  3259. "isGeneratedAlways": false,
  3260. "virtualExpr": "",
  3261. "virtualType": "",
  3262. "oldName": "updatedAt"
  3263. },
  3264. {
  3265. "objectType": "TableField_MYSQL",
  3266. "name": "sys_id",
  3267. "type": "varchar",
  3268. "length": 50,
  3269. "decimals": -2147483648,
  3270. "isUnsigned": false,
  3271. "isZeroFill": false,
  3272. "setEnumValues": "",
  3273. "isBinary": false,
  3274. "charset": "utf8",
  3275. "collation": "utf8_general_ci",
  3276. "isNullable": true,
  3277. "defaultType": "Null",
  3278. "defaultValue": "",
  3279. "isOnUpdateCurrentTimestamp": false,
  3280. "isAutoInc": false,
  3281. "comment": "系统码",
  3282. "columnFormat": "",
  3283. "storage": "",
  3284. "isVirtual": false,
  3285. "isGeneratedAlways": false,
  3286. "virtualExpr": "",
  3287. "virtualType": "",
  3288. "oldName": "sys_id"
  3289. },
  3290. {
  3291. "objectType": "TableField_MYSQL",
  3292. "name": "deliverymethod",
  3293. "type": "varchar",
  3294. "length": 255,
  3295. "decimals": -2147483648,
  3296. "isUnsigned": false,
  3297. "isZeroFill": false,
  3298. "setEnumValues": "",
  3299. "isBinary": false,
  3300. "charset": "utf8",
  3301. "collation": "utf8_general_ci",
  3302. "isNullable": true,
  3303. "defaultType": "Null",
  3304. "defaultValue": "",
  3305. "isOnUpdateCurrentTimestamp": false,
  3306. "isAutoInc": false,
  3307. "comment": "交割方式",
  3308. "columnFormat": "",
  3309. "storage": "",
  3310. "isVirtual": false,
  3311. "isGeneratedAlways": false,
  3312. "virtualExpr": "",
  3313. "virtualType": "",
  3314. "oldName": "deliverymethod"
  3315. },
  3316. {
  3317. "objectType": "TableField_MYSQL",
  3318. "name": "deliverydate",
  3319. "type": "datetime",
  3320. "length": -2147483648,
  3321. "decimals": -2147483648,
  3322. "isUnsigned": false,
  3323. "isZeroFill": false,
  3324. "setEnumValues": "",
  3325. "isBinary": false,
  3326. "charset": "",
  3327. "collation": "",
  3328. "isNullable": true,
  3329. "defaultType": "Null",
  3330. "defaultValue": "",
  3331. "isOnUpdateCurrentTimestamp": false,
  3332. "isAutoInc": false,
  3333. "comment": "交割日期",
  3334. "columnFormat": "",
  3335. "storage": "",
  3336. "isVirtual": false,
  3337. "isGeneratedAlways": false,
  3338. "virtualExpr": "",
  3339. "virtualType": "",
  3340. "oldName": "deliverydate"
  3341. },
  3342. {
  3343. "objectType": "TableField_MYSQL",
  3344. "name": "receiveuser",
  3345. "type": "varchar",
  3346. "length": 100,
  3347. "decimals": -2147483648,
  3348. "isUnsigned": false,
  3349. "isZeroFill": false,
  3350. "setEnumValues": "",
  3351. "isBinary": false,
  3352. "charset": "utf8",
  3353. "collation": "utf8_general_ci",
  3354. "isNullable": true,
  3355. "defaultType": "Null",
  3356. "defaultValue": "",
  3357. "isOnUpdateCurrentTimestamp": false,
  3358. "isAutoInc": false,
  3359. "comment": "接收人",
  3360. "columnFormat": "",
  3361. "storage": "",
  3362. "isVirtual": false,
  3363. "isGeneratedAlways": false,
  3364. "virtualExpr": "",
  3365. "virtualType": "",
  3366. "oldName": "receiveuser"
  3367. },
  3368. {
  3369. "objectType": "TableField_MYSQL",
  3370. "name": "supplement",
  3371. "type": "varchar",
  3372. "length": 255,
  3373. "decimals": -2147483648,
  3374. "isUnsigned": false,
  3375. "isZeroFill": false,
  3376. "setEnumValues": "",
  3377. "isBinary": false,
  3378. "charset": "utf8",
  3379. "collation": "utf8_general_ci",
  3380. "isNullable": true,
  3381. "defaultType": "Null",
  3382. "defaultValue": "",
  3383. "isOnUpdateCurrentTimestamp": false,
  3384. "isAutoInc": false,
  3385. "comment": "补充说明",
  3386. "columnFormat": "",
  3387. "storage": "",
  3388. "isVirtual": false,
  3389. "isGeneratedAlways": false,
  3390. "virtualExpr": "",
  3391. "virtualType": "",
  3392. "oldName": "supplement"
  3393. },
  3394. {
  3395. "objectType": "TableField_MYSQL",
  3396. "name": "paymentmethod",
  3397. "type": "varchar",
  3398. "length": 100,
  3399. "decimals": -2147483648,
  3400. "isUnsigned": false,
  3401. "isZeroFill": false,
  3402. "setEnumValues": "",
  3403. "isBinary": false,
  3404. "charset": "utf8",
  3405. "collation": "utf8_general_ci",
  3406. "isNullable": true,
  3407. "defaultType": "Null",
  3408. "defaultValue": "",
  3409. "isOnUpdateCurrentTimestamp": false,
  3410. "isAutoInc": false,
  3411. "comment": "收款方式",
  3412. "columnFormat": "",
  3413. "storage": "",
  3414. "isVirtual": false,
  3415. "isGeneratedAlways": false,
  3416. "virtualExpr": "",
  3417. "virtualType": "",
  3418. "oldName": "paymentmethod"
  3419. },
  3420. {
  3421. "objectType": "TableField_MYSQL",
  3422. "name": "othermethod",
  3423. "type": "varchar",
  3424. "length": 255,
  3425. "decimals": -2147483648,
  3426. "isUnsigned": false,
  3427. "isZeroFill": false,
  3428. "setEnumValues": "",
  3429. "isBinary": false,
  3430. "charset": "utf8",
  3431. "collation": "utf8_general_ci",
  3432. "isNullable": true,
  3433. "defaultType": "Null",
  3434. "defaultValue": "",
  3435. "isOnUpdateCurrentTimestamp": false,
  3436. "isAutoInc": false,
  3437. "comment": "其他收款方式",
  3438. "columnFormat": "",
  3439. "storage": "",
  3440. "isVirtual": false,
  3441. "isGeneratedAlways": false,
  3442. "virtualExpr": "",
  3443. "virtualType": "",
  3444. "oldName": "othermethod"
  3445. },
  3446. {
  3447. "objectType": "TableField_MYSQL",
  3448. "name": "cashamount",
  3449. "type": "double",
  3450. "length": -2147483648,
  3451. "decimals": -2147483648,
  3452. "isUnsigned": false,
  3453. "isZeroFill": false,
  3454. "setEnumValues": "",
  3455. "isBinary": false,
  3456. "charset": "",
  3457. "collation": "",
  3458. "isNullable": true,
  3459. "defaultType": "Null",
  3460. "defaultValue": "",
  3461. "isOnUpdateCurrentTimestamp": false,
  3462. "isAutoInc": false,
  3463. "comment": "收款方式-现金金额",
  3464. "columnFormat": "",
  3465. "storage": "",
  3466. "isVirtual": false,
  3467. "isGeneratedAlways": false,
  3468. "virtualExpr": "",
  3469. "virtualType": "",
  3470. "oldName": "cashamount"
  3471. },
  3472. {
  3473. "objectType": "TableField_MYSQL",
  3474. "name": "telegraphicamount",
  3475. "type": "double",
  3476. "length": -2147483648,
  3477. "decimals": -2147483648,
  3478. "isUnsigned": false,
  3479. "isZeroFill": false,
  3480. "setEnumValues": "",
  3481. "isBinary": false,
  3482. "charset": "",
  3483. "collation": "",
  3484. "isNullable": true,
  3485. "defaultType": "Null",
  3486. "defaultValue": "",
  3487. "isOnUpdateCurrentTimestamp": false,
  3488. "isAutoInc": false,
  3489. "comment": "收款方式-电汇金额",
  3490. "columnFormat": "",
  3491. "storage": "",
  3492. "isVirtual": false,
  3493. "isGeneratedAlways": false,
  3494. "virtualExpr": "",
  3495. "virtualType": "",
  3496. "oldName": "telegraphicamount"
  3497. },
  3498. {
  3499. "objectType": "TableField_MYSQL",
  3500. "name": "otheramount",
  3501. "type": "double",
  3502. "length": -2147483648,
  3503. "decimals": -2147483648,
  3504. "isUnsigned": false,
  3505. "isZeroFill": false,
  3506. "setEnumValues": "",
  3507. "isBinary": false,
  3508. "charset": "",
  3509. "collation": "",
  3510. "isNullable": true,
  3511. "defaultType": "Null",
  3512. "defaultValue": "",
  3513. "isOnUpdateCurrentTimestamp": false,
  3514. "isAutoInc": false,
  3515. "comment": "收款方式-其他金额",
  3516. "columnFormat": "",
  3517. "storage": "",
  3518. "isVirtual": false,
  3519. "isGeneratedAlways": false,
  3520. "virtualExpr": "",
  3521. "virtualType": "",
  3522. "oldName": "otheramount"
  3523. },
  3524. {
  3525. "objectType": "TableField_MYSQL",
  3526. "name": "paymentnotes",
  3527. "type": "text",
  3528. "length": -2147483648,
  3529. "decimals": -2147483648,
  3530. "isUnsigned": false,
  3531. "isZeroFill": false,
  3532. "setEnumValues": "",
  3533. "isBinary": false,
  3534. "charset": "utf8",
  3535. "collation": "utf8_general_ci",
  3536. "isNullable": true,
  3537. "defaultType": "Null",
  3538. "defaultValue": "",
  3539. "isOnUpdateCurrentTimestamp": false,
  3540. "isAutoInc": false,
  3541. "comment": "收款登记备注",
  3542. "columnFormat": "",
  3543. "storage": "",
  3544. "isVirtual": false,
  3545. "isGeneratedAlways": false,
  3546. "virtualExpr": "",
  3547. "virtualType": "",
  3548. "oldName": "paymentnotes"
  3549. },
  3550. {
  3551. "objectType": "TableField_MYSQL",
  3552. "name": "adjustuser",
  3553. "type": "varchar",
  3554. "length": 100,
  3555. "decimals": -2147483648,
  3556. "isUnsigned": false,
  3557. "isZeroFill": false,
  3558. "setEnumValues": "",
  3559. "isBinary": false,
  3560. "charset": "utf8",
  3561. "collation": "utf8_general_ci",
  3562. "isNullable": true,
  3563. "defaultType": "Null",
  3564. "defaultValue": "",
  3565. "isOnUpdateCurrentTimestamp": false,
  3566. "isAutoInc": false,
  3567. "comment": "申请调整人",
  3568. "columnFormat": "",
  3569. "storage": "",
  3570. "isVirtual": false,
  3571. "isGeneratedAlways": false,
  3572. "virtualExpr": "",
  3573. "virtualType": "",
  3574. "oldName": "adjustuser"
  3575. },
  3576. {
  3577. "objectType": "TableField_MYSQL",
  3578. "name": "adjustexplain",
  3579. "type": "text",
  3580. "length": -2147483648,
  3581. "decimals": -2147483648,
  3582. "isUnsigned": false,
  3583. "isZeroFill": false,
  3584. "setEnumValues": "",
  3585. "isBinary": false,
  3586. "charset": "utf8",
  3587. "collation": "utf8_general_ci",
  3588. "isNullable": true,
  3589. "defaultType": "Null",
  3590. "defaultValue": "",
  3591. "isOnUpdateCurrentTimestamp": false,
  3592. "isAutoInc": false,
  3593. "comment": "调整说明",
  3594. "columnFormat": "",
  3595. "storage": "",
  3596. "isVirtual": false,
  3597. "isGeneratedAlways": false,
  3598. "virtualExpr": "",
  3599. "virtualType": "",
  3600. "oldName": "adjustexplain"
  3601. },
  3602. {
  3603. "objectType": "TableField_MYSQL",
  3604. "name": "group_id",
  3605. "type": "varchar",
  3606. "length": 50,
  3607. "decimals": -2147483648,
  3608. "isUnsigned": false,
  3609. "isZeroFill": false,
  3610. "setEnumValues": "",
  3611. "isBinary": false,
  3612. "charset": "utf8",
  3613. "collation": "utf8_general_ci",
  3614. "isNullable": true,
  3615. "defaultType": "Null",
  3616. "defaultValue": "",
  3617. "isOnUpdateCurrentTimestamp": false,
  3618. "isAutoInc": false,
  3619. "comment": "集团ID",
  3620. "columnFormat": "",
  3621. "storage": "",
  3622. "isVirtual": false,
  3623. "isGeneratedAlways": false,
  3624. "virtualExpr": "",
  3625. "virtualType": "",
  3626. "oldName": "group_id"
  3627. }
  3628. ],
  3629. "indexes": [
  3630. {
  3631. "objectType": "Index_MYSQL",
  3632. "name": "FK_CONSTRAINTS_CTR_MAIN",
  3633. "type": "NORMAL",
  3634. "method": "BTREE",
  3635. "comment": "",
  3636. "oldName": "FK_CONSTRAINTS_CTR_MAIN",
  3637. "online": false,
  3638. "keyBlockSize": 0,
  3639. "parser": "",
  3640. "algorithm": "",
  3641. "lock": "",
  3642. "collation": "A",
  3643. "cardinality": "50",
  3644. "packed": "",
  3645. "fields": [
  3646. {
  3647. "objectType": "IndexField_MYSQL",
  3648. "name": "ctrId",
  3649. "keyLength": 0,
  3650. "order": "",
  3651. "oldName": "ctrId"
  3652. }
  3653. ]
  3654. },
  3655. {
  3656. "objectType": "Index_MYSQL",
  3657. "name": "FK_CONSTRAINT_CTR_SALES_USER",
  3658. "type": "NORMAL",
  3659. "method": "BTREE",
  3660. "comment": "",
  3661. "oldName": "FK_CONSTRAINT_CTR_SALES_USER",
  3662. "online": false,
  3663. "keyBlockSize": 0,
  3664. "parser": "",
  3665. "algorithm": "",
  3666. "lock": "",
  3667. "collation": "A",
  3668. "cardinality": "15",
  3669. "packed": "",
  3670. "fields": [
  3671. {
  3672. "objectType": "IndexField_MYSQL",
  3673. "name": "updatedBy",
  3674. "keyLength": 0,
  3675. "order": "",
  3676. "oldName": "updatedBy"
  3677. }
  3678. ]
  3679. }
  3680. ],
  3681. "primaryKey": {
  3682. "objectType": "PrimaryKey_MYSQL",
  3683. "name": "",
  3684. "fields": [
  3685. {
  3686. "objectType": "IndexField_MYSQL",
  3687. "name": "id",
  3688. "keyLength": 0,
  3689. "order": "",
  3690. "oldName": "id"
  3691. }
  3692. ],
  3693. "oldName": "",
  3694. "indexMethod": "BTREE",
  3695. "comment": ""
  3696. },
  3697. "foreignKeys": [
  3698. {
  3699. "objectType": "ForeignKey_MYSQL",
  3700. "name": "FK_CONSTRAINTS_CTR_MAIN",
  3701. "fields": [
  3702. "ctrId"
  3703. ],
  3704. "referenceSchema": "zt",
  3705. "referenceTable": "ctr_main",
  3706. "referenceFields": [
  3707. "id"
  3708. ],
  3709. "onDelete": "NO ACTION",
  3710. "onUpdate": "NO ACTION",
  3711. "sourceCardinality": "ZeroOrManyRelationship",
  3712. "targetCardinality": "ZeroOrOneRelationship",
  3713. "oldName": "FK_CONSTRAINTS_CTR_MAIN"
  3714. }
  3715. ],
  3716. "triggers": [],
  3717. "tablePartitions": []
  3718. },
  3719. {
  3720. "objectType": "Table_MYSQL",
  3721. "name": "ctr_main",
  3722. "comment": "",
  3723. "engine": "InnoDB",
  3724. "characterSet": "utf8",
  3725. "collation": "utf8_general_ci",
  3726. "autoIncrement": 0,
  3727. "tablespace": "",
  3728. "storage": "",
  3729. "insertMethod": "",
  3730. "connection": "",
  3731. "checksum": false,
  3732. "rowFormat": "Dynamic",
  3733. "avgRowLength": 0,
  3734. "maxRows": 0,
  3735. "minRows": 0,
  3736. "keyBlockSize": 0,
  3737. "packKeys": "",
  3738. "delayKeyWrite": false,
  3739. "dataDirectory": "",
  3740. "indexDirectory": "",
  3741. "statsAutoRecalc": "",
  3742. "statsPersistent": "",
  3743. "statsSamplePages": 0,
  3744. "union": "",
  3745. "pageCheckSum": false,
  3746. "transactional": false,
  3747. "compression": "",
  3748. "oldName": "ctr_main",
  3749. "encryption": false,
  3750. "createOptions": "",
  3751. "createTime": "2024-12-01 00:18:54",
  3752. "checkTime": "",
  3753. "dataFree": 0,
  3754. "dataLength": 212992,
  3755. "indexLength": 32768,
  3756. "maxDataLength": 0,
  3757. "rows": 73,
  3758. "updateTime": "",
  3759. "DDL": "CREATE TABLE `ctr_main` (\n `id` varchar(50) NOT NULL,\n `proId` varchar(50) CHARACTER SET utf8mb4 DEFAULT NULL,\n `proName` varchar(1000) DEFAULT NULL COMMENT '项目名称',\n `custId` varchar(50) DEFAULT NULL,\n `custName` varchar(1000) DEFAULT NULL COMMENT '客户名称',\n `receipt_id` varchar(50) DEFAULT NULL COMMENT '关联发票类型',\n `valid` varchar(1) DEFAULT NULL COMMENT '0-无效,1-有效',\n `contractName` varchar(255) DEFAULT NULL COMMENT '合同标的',\n `contractStatus` varchar(20) DEFAULT NULL COMMENT '合同状态,正常/到期',\n `contractNo` varchar(50) DEFAULT NULL COMMENT '合同编号',\n `contractFrom` varchar(50) DEFAULT NULL COMMENT '合同开始,日期',\n `contractTo` varchar(50) DEFAULT NULL COMMENT '合同结束',\n `totalAmount` double DEFAULT NULL,\n `receiveAmount` double DEFAULT NULL COMMENT '已收金额',\n `detailAmount` text COMMENT '费用明细,用json数据格式封装',\n `signAt` date DEFAULT NULL COMMENT '签约日期',\n `comments` text COMMENT '其他事项说明',\n `attachFiles` text COMMENT '附件',\n `chargedBy` varchar(50) DEFAULT NULL COMMENT '销售人员',\n `managedBy` varchar(50) DEFAULT NULL COMMENT '项目经理',\n `createdBy` varchar(50) DEFAULT NULL,\n `createdAt` datetime DEFAULT NULL,\n `updatedAt` datetime DEFAULT NULL,\n `contract_final_status` varchar(255) DEFAULT NULL COMMENT '合同最终状态(1-有效,2-到期,3-已续签,4-到期终止,5-终止,)',\n `checkprecis` text,\n `filetwo` text,\n `adjustamount` varchar(255) DEFAULT NULL,\n `group_id` varchar(50) DEFAULT NULL COMMENT '集团ID',\n `contract_amount` double DEFAULT NULL COMMENT '合同签约金额',\n `excluding_total_amount` double DEFAULT NULL COMMENT '不含税合同金额',\n `warranty_terms` varchar(2000) DEFAULT NULL COMMENT '质保及运维条款',\n `warranty_period` varchar(255) DEFAULT NULL COMMENT '质保期',\n `by_grp` varchar(255) DEFAULT NULL COMMENT '备用',\n PRIMARY KEY (`id`) USING BTREE,\n KEY `FK_CONSTRAINT_CTR_PRO` (`proId`) USING BTREE,\n KEY `FK_CONSTRAINT_CTR_USER` (`createdBy`) USING BTREE,\n CONSTRAINT `FK_CONSTRAINT_CTR_PRO` FOREIGN KEY (`proId`) REFERENCES `pro_main` (`id`) ON DELETE NO ACTION ON UPDATE NO ACTION,\n CONSTRAINT `FK_CONSTRAINT_CTR_USER` FOREIGN KEY (`createdBy`) REFERENCES `frame_user` (`id`) ON DELETE NO ACTION ON UPDATE NO ACTION\n) ENGINE=InnoDB DEFAULT CHARSET=utf8",
  3760. "partitionBy": "",
  3761. "partitionByExpr": "",
  3762. "partitions": 0,
  3763. "partitionKeyAlgorithm": "",
  3764. "subPartitionBy": "",
  3765. "subPartitionByExpr": "",
  3766. "subPartitions": 0,
  3767. "subPartitionKeyAlgorithm": "",
  3768. "fields": [
  3769. {
  3770. "objectType": "TableField_MYSQL",
  3771. "name": "id",
  3772. "type": "varchar",
  3773. "length": 50,
  3774. "decimals": -2147483648,
  3775. "isUnsigned": false,
  3776. "isZeroFill": false,
  3777. "setEnumValues": "",
  3778. "isBinary": false,
  3779. "charset": "utf8",
  3780. "collation": "utf8_general_ci",
  3781. "isNullable": false,
  3782. "defaultType": "Others",
  3783. "defaultValue": "",
  3784. "isOnUpdateCurrentTimestamp": false,
  3785. "isAutoInc": false,
  3786. "comment": "",
  3787. "columnFormat": "",
  3788. "storage": "",
  3789. "isVirtual": false,
  3790. "isGeneratedAlways": false,
  3791. "virtualExpr": "",
  3792. "virtualType": "",
  3793. "oldName": "id"
  3794. },
  3795. {
  3796. "objectType": "TableField_MYSQL",
  3797. "name": "proId",
  3798. "type": "varchar",
  3799. "length": 50,
  3800. "decimals": -2147483648,
  3801. "isUnsigned": false,
  3802. "isZeroFill": false,
  3803. "setEnumValues": "",
  3804. "isBinary": false,
  3805. "charset": "utf8mb4",
  3806. "collation": "utf8mb4_general_ci",
  3807. "isNullable": true,
  3808. "defaultType": "Null",
  3809. "defaultValue": "",
  3810. "isOnUpdateCurrentTimestamp": false,
  3811. "isAutoInc": false,
  3812. "comment": "",
  3813. "columnFormat": "",
  3814. "storage": "",
  3815. "isVirtual": false,
  3816. "isGeneratedAlways": false,
  3817. "virtualExpr": "",
  3818. "virtualType": "",
  3819. "oldName": "proId"
  3820. },
  3821. {
  3822. "objectType": "TableField_MYSQL",
  3823. "name": "proName",
  3824. "type": "varchar",
  3825. "length": 1000,
  3826. "decimals": -2147483648,
  3827. "isUnsigned": false,
  3828. "isZeroFill": false,
  3829. "setEnumValues": "",
  3830. "isBinary": false,
  3831. "charset": "utf8",
  3832. "collation": "utf8_general_ci",
  3833. "isNullable": true,
  3834. "defaultType": "Null",
  3835. "defaultValue": "",
  3836. "isOnUpdateCurrentTimestamp": false,
  3837. "isAutoInc": false,
  3838. "comment": "项目名称",
  3839. "columnFormat": "",
  3840. "storage": "",
  3841. "isVirtual": false,
  3842. "isGeneratedAlways": false,
  3843. "virtualExpr": "",
  3844. "virtualType": "",
  3845. "oldName": "proName"
  3846. },
  3847. {
  3848. "objectType": "TableField_MYSQL",
  3849. "name": "custId",
  3850. "type": "varchar",
  3851. "length": 50,
  3852. "decimals": -2147483648,
  3853. "isUnsigned": false,
  3854. "isZeroFill": false,
  3855. "setEnumValues": "",
  3856. "isBinary": false,
  3857. "charset": "utf8",
  3858. "collation": "utf8_general_ci",
  3859. "isNullable": true,
  3860. "defaultType": "Null",
  3861. "defaultValue": "",
  3862. "isOnUpdateCurrentTimestamp": false,
  3863. "isAutoInc": false,
  3864. "comment": "",
  3865. "columnFormat": "",
  3866. "storage": "",
  3867. "isVirtual": false,
  3868. "isGeneratedAlways": false,
  3869. "virtualExpr": "",
  3870. "virtualType": "",
  3871. "oldName": "custId"
  3872. },
  3873. {
  3874. "objectType": "TableField_MYSQL",
  3875. "name": "custName",
  3876. "type": "varchar",
  3877. "length": 1000,
  3878. "decimals": -2147483648,
  3879. "isUnsigned": false,
  3880. "isZeroFill": false,
  3881. "setEnumValues": "",
  3882. "isBinary": false,
  3883. "charset": "utf8",
  3884. "collation": "utf8_general_ci",
  3885. "isNullable": true,
  3886. "defaultType": "Null",
  3887. "defaultValue": "",
  3888. "isOnUpdateCurrentTimestamp": false,
  3889. "isAutoInc": false,
  3890. "comment": "客户名称",
  3891. "columnFormat": "",
  3892. "storage": "",
  3893. "isVirtual": false,
  3894. "isGeneratedAlways": false,
  3895. "virtualExpr": "",
  3896. "virtualType": "",
  3897. "oldName": "custName"
  3898. },
  3899. {
  3900. "objectType": "TableField_MYSQL",
  3901. "name": "receipt_id",
  3902. "type": "varchar",
  3903. "length": 50,
  3904. "decimals": -2147483648,
  3905. "isUnsigned": false,
  3906. "isZeroFill": false,
  3907. "setEnumValues": "",
  3908. "isBinary": false,
  3909. "charset": "utf8",
  3910. "collation": "utf8_general_ci",
  3911. "isNullable": true,
  3912. "defaultType": "Null",
  3913. "defaultValue": "",
  3914. "isOnUpdateCurrentTimestamp": false,
  3915. "isAutoInc": false,
  3916. "comment": "关联发票类型",
  3917. "columnFormat": "",
  3918. "storage": "",
  3919. "isVirtual": false,
  3920. "isGeneratedAlways": false,
  3921. "virtualExpr": "",
  3922. "virtualType": "",
  3923. "oldName": "receipt_id"
  3924. },
  3925. {
  3926. "objectType": "TableField_MYSQL",
  3927. "name": "valid",
  3928. "type": "varchar",
  3929. "length": 1,
  3930. "decimals": -2147483648,
  3931. "isUnsigned": false,
  3932. "isZeroFill": false,
  3933. "setEnumValues": "",
  3934. "isBinary": false,
  3935. "charset": "utf8",
  3936. "collation": "utf8_general_ci",
  3937. "isNullable": true,
  3938. "defaultType": "Null",
  3939. "defaultValue": "",
  3940. "isOnUpdateCurrentTimestamp": false,
  3941. "isAutoInc": false,
  3942. "comment": "0-无效,1-有效",
  3943. "columnFormat": "",
  3944. "storage": "",
  3945. "isVirtual": false,
  3946. "isGeneratedAlways": false,
  3947. "virtualExpr": "",
  3948. "virtualType": "",
  3949. "oldName": "valid"
  3950. },
  3951. {
  3952. "objectType": "TableField_MYSQL",
  3953. "name": "contractName",
  3954. "type": "varchar",
  3955. "length": 255,
  3956. "decimals": -2147483648,
  3957. "isUnsigned": false,
  3958. "isZeroFill": false,
  3959. "setEnumValues": "",
  3960. "isBinary": false,
  3961. "charset": "utf8",
  3962. "collation": "utf8_general_ci",
  3963. "isNullable": true,
  3964. "defaultType": "Null",
  3965. "defaultValue": "",
  3966. "isOnUpdateCurrentTimestamp": false,
  3967. "isAutoInc": false,
  3968. "comment": "合同标的",
  3969. "columnFormat": "",
  3970. "storage": "",
  3971. "isVirtual": false,
  3972. "isGeneratedAlways": false,
  3973. "virtualExpr": "",
  3974. "virtualType": "",
  3975. "oldName": "contractName"
  3976. },
  3977. {
  3978. "objectType": "TableField_MYSQL",
  3979. "name": "contractStatus",
  3980. "type": "varchar",
  3981. "length": 20,
  3982. "decimals": -2147483648,
  3983. "isUnsigned": false,
  3984. "isZeroFill": false,
  3985. "setEnumValues": "",
  3986. "isBinary": false,
  3987. "charset": "utf8",
  3988. "collation": "utf8_general_ci",
  3989. "isNullable": true,
  3990. "defaultType": "Null",
  3991. "defaultValue": "",
  3992. "isOnUpdateCurrentTimestamp": false,
  3993. "isAutoInc": false,
  3994. "comment": "合同状态,正常/到期",
  3995. "columnFormat": "",
  3996. "storage": "",
  3997. "isVirtual": false,
  3998. "isGeneratedAlways": false,
  3999. "virtualExpr": "",
  4000. "virtualType": "",
  4001. "oldName": "contractStatus"
  4002. },
  4003. {
  4004. "objectType": "TableField_MYSQL",
  4005. "name": "contractNo",
  4006. "type": "varchar",
  4007. "length": 50,
  4008. "decimals": -2147483648,
  4009. "isUnsigned": false,
  4010. "isZeroFill": false,
  4011. "setEnumValues": "",
  4012. "isBinary": false,
  4013. "charset": "utf8",
  4014. "collation": "utf8_general_ci",
  4015. "isNullable": true,
  4016. "defaultType": "Null",
  4017. "defaultValue": "",
  4018. "isOnUpdateCurrentTimestamp": false,
  4019. "isAutoInc": false,
  4020. "comment": "合同编号",
  4021. "columnFormat": "",
  4022. "storage": "",
  4023. "isVirtual": false,
  4024. "isGeneratedAlways": false,
  4025. "virtualExpr": "",
  4026. "virtualType": "",
  4027. "oldName": "contractNo"
  4028. },
  4029. {
  4030. "objectType": "TableField_MYSQL",
  4031. "name": "contractFrom",
  4032. "type": "varchar",
  4033. "length": 50,
  4034. "decimals": -2147483648,
  4035. "isUnsigned": false,
  4036. "isZeroFill": false,
  4037. "setEnumValues": "",
  4038. "isBinary": false,
  4039. "charset": "utf8",
  4040. "collation": "utf8_general_ci",
  4041. "isNullable": true,
  4042. "defaultType": "Null",
  4043. "defaultValue": "",
  4044. "isOnUpdateCurrentTimestamp": false,
  4045. "isAutoInc": false,
  4046. "comment": "合同开始,日期",
  4047. "columnFormat": "",
  4048. "storage": "",
  4049. "isVirtual": false,
  4050. "isGeneratedAlways": false,
  4051. "virtualExpr": "",
  4052. "virtualType": "",
  4053. "oldName": "contractFrom"
  4054. },
  4055. {
  4056. "objectType": "TableField_MYSQL",
  4057. "name": "contractTo",
  4058. "type": "varchar",
  4059. "length": 50,
  4060. "decimals": -2147483648,
  4061. "isUnsigned": false,
  4062. "isZeroFill": false,
  4063. "setEnumValues": "",
  4064. "isBinary": false,
  4065. "charset": "utf8",
  4066. "collation": "utf8_general_ci",
  4067. "isNullable": true,
  4068. "defaultType": "Null",
  4069. "defaultValue": "",
  4070. "isOnUpdateCurrentTimestamp": false,
  4071. "isAutoInc": false,
  4072. "comment": "合同结束",
  4073. "columnFormat": "",
  4074. "storage": "",
  4075. "isVirtual": false,
  4076. "isGeneratedAlways": false,
  4077. "virtualExpr": "",
  4078. "virtualType": "",
  4079. "oldName": "contractTo"
  4080. },
  4081. {
  4082. "objectType": "TableField_MYSQL",
  4083. "name": "totalAmount",
  4084. "type": "double",
  4085. "length": -2147483648,
  4086. "decimals": -2147483648,
  4087. "isUnsigned": false,
  4088. "isZeroFill": false,
  4089. "setEnumValues": "",
  4090. "isBinary": false,
  4091. "charset": "",
  4092. "collation": "",
  4093. "isNullable": true,
  4094. "defaultType": "Null",
  4095. "defaultValue": "",
  4096. "isOnUpdateCurrentTimestamp": false,
  4097. "isAutoInc": false,
  4098. "comment": "",
  4099. "columnFormat": "",
  4100. "storage": "",
  4101. "isVirtual": false,
  4102. "isGeneratedAlways": false,
  4103. "virtualExpr": "",
  4104. "virtualType": "",
  4105. "oldName": "totalAmount"
  4106. },
  4107. {
  4108. "objectType": "TableField_MYSQL",
  4109. "name": "receiveAmount",
  4110. "type": "double",
  4111. "length": -2147483648,
  4112. "decimals": -2147483648,
  4113. "isUnsigned": false,
  4114. "isZeroFill": false,
  4115. "setEnumValues": "",
  4116. "isBinary": false,
  4117. "charset": "",
  4118. "collation": "",
  4119. "isNullable": true,
  4120. "defaultType": "Null",
  4121. "defaultValue": "",
  4122. "isOnUpdateCurrentTimestamp": false,
  4123. "isAutoInc": false,
  4124. "comment": "已收金额",
  4125. "columnFormat": "",
  4126. "storage": "",
  4127. "isVirtual": false,
  4128. "isGeneratedAlways": false,
  4129. "virtualExpr": "",
  4130. "virtualType": "",
  4131. "oldName": "receiveAmount"
  4132. },
  4133. {
  4134. "objectType": "TableField_MYSQL",
  4135. "name": "detailAmount",
  4136. "type": "text",
  4137. "length": -2147483648,
  4138. "decimals": -2147483648,
  4139. "isUnsigned": false,
  4140. "isZeroFill": false,
  4141. "setEnumValues": "",
  4142. "isBinary": false,
  4143. "charset": "utf8",
  4144. "collation": "utf8_general_ci",
  4145. "isNullable": true,
  4146. "defaultType": "Null",
  4147. "defaultValue": "",
  4148. "isOnUpdateCurrentTimestamp": false,
  4149. "isAutoInc": false,
  4150. "comment": "费用明细,用json数据格式封装",
  4151. "columnFormat": "",
  4152. "storage": "",
  4153. "isVirtual": false,
  4154. "isGeneratedAlways": false,
  4155. "virtualExpr": "",
  4156. "virtualType": "",
  4157. "oldName": "detailAmount"
  4158. },
  4159. {
  4160. "objectType": "TableField_MYSQL",
  4161. "name": "signAt",
  4162. "type": "date",
  4163. "length": -2147483648,
  4164. "decimals": -2147483648,
  4165. "isUnsigned": false,
  4166. "isZeroFill": false,
  4167. "setEnumValues": "",
  4168. "isBinary": false,
  4169. "charset": "",
  4170. "collation": "",
  4171. "isNullable": true,
  4172. "defaultType": "Null",
  4173. "defaultValue": "",
  4174. "isOnUpdateCurrentTimestamp": false,
  4175. "isAutoInc": false,
  4176. "comment": "签约日期",
  4177. "columnFormat": "",
  4178. "storage": "",
  4179. "isVirtual": false,
  4180. "isGeneratedAlways": false,
  4181. "virtualExpr": "",
  4182. "virtualType": "",
  4183. "oldName": "signAt"
  4184. },
  4185. {
  4186. "objectType": "TableField_MYSQL",
  4187. "name": "comments",
  4188. "type": "text",
  4189. "length": -2147483648,
  4190. "decimals": -2147483648,
  4191. "isUnsigned": false,
  4192. "isZeroFill": false,
  4193. "setEnumValues": "",
  4194. "isBinary": false,
  4195. "charset": "utf8",
  4196. "collation": "utf8_general_ci",
  4197. "isNullable": true,
  4198. "defaultType": "Null",
  4199. "defaultValue": "",
  4200. "isOnUpdateCurrentTimestamp": false,
  4201. "isAutoInc": false,
  4202. "comment": "其他事项说明",
  4203. "columnFormat": "",
  4204. "storage": "",
  4205. "isVirtual": false,
  4206. "isGeneratedAlways": false,
  4207. "virtualExpr": "",
  4208. "virtualType": "",
  4209. "oldName": "comments"
  4210. },
  4211. {
  4212. "objectType": "TableField_MYSQL",
  4213. "name": "attachFiles",
  4214. "type": "text",
  4215. "length": -2147483648,
  4216. "decimals": -2147483648,
  4217. "isUnsigned": false,
  4218. "isZeroFill": false,
  4219. "setEnumValues": "",
  4220. "isBinary": false,
  4221. "charset": "utf8",
  4222. "collation": "utf8_general_ci",
  4223. "isNullable": true,
  4224. "defaultType": "Null",
  4225. "defaultValue": "",
  4226. "isOnUpdateCurrentTimestamp": false,
  4227. "isAutoInc": false,
  4228. "comment": "附件",
  4229. "columnFormat": "",
  4230. "storage": "",
  4231. "isVirtual": false,
  4232. "isGeneratedAlways": false,
  4233. "virtualExpr": "",
  4234. "virtualType": "",
  4235. "oldName": "attachFiles"
  4236. },
  4237. {
  4238. "objectType": "TableField_MYSQL",
  4239. "name": "chargedBy",
  4240. "type": "varchar",
  4241. "length": 50,
  4242. "decimals": -2147483648,
  4243. "isUnsigned": false,
  4244. "isZeroFill": false,
  4245. "setEnumValues": "",
  4246. "isBinary": false,
  4247. "charset": "utf8",
  4248. "collation": "utf8_general_ci",
  4249. "isNullable": true,
  4250. "defaultType": "Null",
  4251. "defaultValue": "",
  4252. "isOnUpdateCurrentTimestamp": false,
  4253. "isAutoInc": false,
  4254. "comment": "销售人员",
  4255. "columnFormat": "",
  4256. "storage": "",
  4257. "isVirtual": false,
  4258. "isGeneratedAlways": false,
  4259. "virtualExpr": "",
  4260. "virtualType": "",
  4261. "oldName": "chargedBy"
  4262. },
  4263. {
  4264. "objectType": "TableField_MYSQL",
  4265. "name": "managedBy",
  4266. "type": "varchar",
  4267. "length": 50,
  4268. "decimals": -2147483648,
  4269. "isUnsigned": false,
  4270. "isZeroFill": false,
  4271. "setEnumValues": "",
  4272. "isBinary": false,
  4273. "charset": "utf8",
  4274. "collation": "utf8_general_ci",
  4275. "isNullable": true,
  4276. "defaultType": "Null",
  4277. "defaultValue": "",
  4278. "isOnUpdateCurrentTimestamp": false,
  4279. "isAutoInc": false,
  4280. "comment": "项目经理",
  4281. "columnFormat": "",
  4282. "storage": "",
  4283. "isVirtual": false,
  4284. "isGeneratedAlways": false,
  4285. "virtualExpr": "",
  4286. "virtualType": "",
  4287. "oldName": "managedBy"
  4288. },
  4289. {
  4290. "objectType": "TableField_MYSQL",
  4291. "name": "createdBy",
  4292. "type": "varchar",
  4293. "length": 50,
  4294. "decimals": -2147483648,
  4295. "isUnsigned": false,
  4296. "isZeroFill": false,
  4297. "setEnumValues": "",
  4298. "isBinary": false,
  4299. "charset": "utf8",
  4300. "collation": "utf8_general_ci",
  4301. "isNullable": true,
  4302. "defaultType": "Null",
  4303. "defaultValue": "",
  4304. "isOnUpdateCurrentTimestamp": false,
  4305. "isAutoInc": false,
  4306. "comment": "",
  4307. "columnFormat": "",
  4308. "storage": "",
  4309. "isVirtual": false,
  4310. "isGeneratedAlways": false,
  4311. "virtualExpr": "",
  4312. "virtualType": "",
  4313. "oldName": "createdBy"
  4314. },
  4315. {
  4316. "objectType": "TableField_MYSQL",
  4317. "name": "createdAt",
  4318. "type": "datetime",
  4319. "length": -2147483648,
  4320. "decimals": -2147483648,
  4321. "isUnsigned": false,
  4322. "isZeroFill": false,
  4323. "setEnumValues": "",
  4324. "isBinary": false,
  4325. "charset": "",
  4326. "collation": "",
  4327. "isNullable": true,
  4328. "defaultType": "Null",
  4329. "defaultValue": "",
  4330. "isOnUpdateCurrentTimestamp": false,
  4331. "isAutoInc": false,
  4332. "comment": "",
  4333. "columnFormat": "",
  4334. "storage": "",
  4335. "isVirtual": false,
  4336. "isGeneratedAlways": false,
  4337. "virtualExpr": "",
  4338. "virtualType": "",
  4339. "oldName": "createdAt"
  4340. },
  4341. {
  4342. "objectType": "TableField_MYSQL",
  4343. "name": "updatedAt",
  4344. "type": "datetime",
  4345. "length": -2147483648,
  4346. "decimals": -2147483648,
  4347. "isUnsigned": false,
  4348. "isZeroFill": false,
  4349. "setEnumValues": "",
  4350. "isBinary": false,
  4351. "charset": "",
  4352. "collation": "",
  4353. "isNullable": true,
  4354. "defaultType": "Null",
  4355. "defaultValue": "",
  4356. "isOnUpdateCurrentTimestamp": false,
  4357. "isAutoInc": false,
  4358. "comment": "",
  4359. "columnFormat": "",
  4360. "storage": "",
  4361. "isVirtual": false,
  4362. "isGeneratedAlways": false,
  4363. "virtualExpr": "",
  4364. "virtualType": "",
  4365. "oldName": "updatedAt"
  4366. },
  4367. {
  4368. "objectType": "TableField_MYSQL",
  4369. "name": "contract_final_status",
  4370. "type": "varchar",
  4371. "length": 255,
  4372. "decimals": -2147483648,
  4373. "isUnsigned": false,
  4374. "isZeroFill": false,
  4375. "setEnumValues": "",
  4376. "isBinary": false,
  4377. "charset": "utf8",
  4378. "collation": "utf8_general_ci",
  4379. "isNullable": true,
  4380. "defaultType": "Null",
  4381. "defaultValue": "",
  4382. "isOnUpdateCurrentTimestamp": false,
  4383. "isAutoInc": false,
  4384. "comment": "合同最终状态(1-有效,2-到期,3-已续签,4-到期终止,5-终止,)",
  4385. "columnFormat": "",
  4386. "storage": "",
  4387. "isVirtual": false,
  4388. "isGeneratedAlways": false,
  4389. "virtualExpr": "",
  4390. "virtualType": "",
  4391. "oldName": "contract_final_status"
  4392. },
  4393. {
  4394. "objectType": "TableField_MYSQL",
  4395. "name": "checkprecis",
  4396. "type": "text",
  4397. "length": -2147483648,
  4398. "decimals": -2147483648,
  4399. "isUnsigned": false,
  4400. "isZeroFill": false,
  4401. "setEnumValues": "",
  4402. "isBinary": false,
  4403. "charset": "utf8",
  4404. "collation": "utf8_general_ci",
  4405. "isNullable": true,
  4406. "defaultType": "Null",
  4407. "defaultValue": "",
  4408. "isOnUpdateCurrentTimestamp": false,
  4409. "isAutoInc": false,
  4410. "comment": "",
  4411. "columnFormat": "",
  4412. "storage": "",
  4413. "isVirtual": false,
  4414. "isGeneratedAlways": false,
  4415. "virtualExpr": "",
  4416. "virtualType": "",
  4417. "oldName": "checkprecis"
  4418. },
  4419. {
  4420. "objectType": "TableField_MYSQL",
  4421. "name": "filetwo",
  4422. "type": "text",
  4423. "length": -2147483648,
  4424. "decimals": -2147483648,
  4425. "isUnsigned": false,
  4426. "isZeroFill": false,
  4427. "setEnumValues": "",
  4428. "isBinary": false,
  4429. "charset": "utf8",
  4430. "collation": "utf8_general_ci",
  4431. "isNullable": true,
  4432. "defaultType": "Null",
  4433. "defaultValue": "",
  4434. "isOnUpdateCurrentTimestamp": false,
  4435. "isAutoInc": false,
  4436. "comment": "",
  4437. "columnFormat": "",
  4438. "storage": "",
  4439. "isVirtual": false,
  4440. "isGeneratedAlways": false,
  4441. "virtualExpr": "",
  4442. "virtualType": "",
  4443. "oldName": "filetwo"
  4444. },
  4445. {
  4446. "objectType": "TableField_MYSQL",
  4447. "name": "adjustamount",
  4448. "type": "varchar",
  4449. "length": 255,
  4450. "decimals": -2147483648,
  4451. "isUnsigned": false,
  4452. "isZeroFill": false,
  4453. "setEnumValues": "",
  4454. "isBinary": false,
  4455. "charset": "utf8",
  4456. "collation": "utf8_general_ci",
  4457. "isNullable": true,
  4458. "defaultType": "Null",
  4459. "defaultValue": "",
  4460. "isOnUpdateCurrentTimestamp": false,
  4461. "isAutoInc": false,
  4462. "comment": "",
  4463. "columnFormat": "",
  4464. "storage": "",
  4465. "isVirtual": false,
  4466. "isGeneratedAlways": false,
  4467. "virtualExpr": "",
  4468. "virtualType": "",
  4469. "oldName": "adjustamount"
  4470. },
  4471. {
  4472. "objectType": "TableField_MYSQL",
  4473. "name": "group_id",
  4474. "type": "varchar",
  4475. "length": 50,
  4476. "decimals": -2147483648,
  4477. "isUnsigned": false,
  4478. "isZeroFill": false,
  4479. "setEnumValues": "",
  4480. "isBinary": false,
  4481. "charset": "utf8",
  4482. "collation": "utf8_general_ci",
  4483. "isNullable": true,
  4484. "defaultType": "Null",
  4485. "defaultValue": "",
  4486. "isOnUpdateCurrentTimestamp": false,
  4487. "isAutoInc": false,
  4488. "comment": "集团ID",
  4489. "columnFormat": "",
  4490. "storage": "",
  4491. "isVirtual": false,
  4492. "isGeneratedAlways": false,
  4493. "virtualExpr": "",
  4494. "virtualType": "",
  4495. "oldName": "group_id"
  4496. },
  4497. {
  4498. "objectType": "TableField_MYSQL",
  4499. "name": "contract_amount",
  4500. "type": "double",
  4501. "length": -2147483648,
  4502. "decimals": -2147483648,
  4503. "isUnsigned": false,
  4504. "isZeroFill": false,
  4505. "setEnumValues": "",
  4506. "isBinary": false,
  4507. "charset": "",
  4508. "collation": "",
  4509. "isNullable": true,
  4510. "defaultType": "Null",
  4511. "defaultValue": "",
  4512. "isOnUpdateCurrentTimestamp": false,
  4513. "isAutoInc": false,
  4514. "comment": "合同签约金额",
  4515. "columnFormat": "",
  4516. "storage": "",
  4517. "isVirtual": false,
  4518. "isGeneratedAlways": false,
  4519. "virtualExpr": "",
  4520. "virtualType": "",
  4521. "oldName": "contract_amount"
  4522. },
  4523. {
  4524. "objectType": "TableField_MYSQL",
  4525. "name": "excluding_total_amount",
  4526. "type": "double",
  4527. "length": -2147483648,
  4528. "decimals": -2147483648,
  4529. "isUnsigned": false,
  4530. "isZeroFill": false,
  4531. "setEnumValues": "",
  4532. "isBinary": false,
  4533. "charset": "",
  4534. "collation": "",
  4535. "isNullable": true,
  4536. "defaultType": "Null",
  4537. "defaultValue": "",
  4538. "isOnUpdateCurrentTimestamp": false,
  4539. "isAutoInc": false,
  4540. "comment": "不含税合同金额",
  4541. "columnFormat": "",
  4542. "storage": "",
  4543. "isVirtual": false,
  4544. "isGeneratedAlways": false,
  4545. "virtualExpr": "",
  4546. "virtualType": "",
  4547. "oldName": "excluding_total_amount"
  4548. },
  4549. {
  4550. "objectType": "TableField_MYSQL",
  4551. "name": "warranty_terms",
  4552. "type": "varchar",
  4553. "length": 2000,
  4554. "decimals": -2147483648,
  4555. "isUnsigned": false,
  4556. "isZeroFill": false,
  4557. "setEnumValues": "",
  4558. "isBinary": false,
  4559. "charset": "utf8",
  4560. "collation": "utf8_general_ci",
  4561. "isNullable": true,
  4562. "defaultType": "Null",
  4563. "defaultValue": "",
  4564. "isOnUpdateCurrentTimestamp": false,
  4565. "isAutoInc": false,
  4566. "comment": "质保及运维条款",
  4567. "columnFormat": "",
  4568. "storage": "",
  4569. "isVirtual": false,
  4570. "isGeneratedAlways": false,
  4571. "virtualExpr": "",
  4572. "virtualType": "",
  4573. "oldName": "warranty_terms"
  4574. },
  4575. {
  4576. "objectType": "TableField_MYSQL",
  4577. "name": "warranty_period",
  4578. "type": "varchar",
  4579. "length": 255,
  4580. "decimals": -2147483648,
  4581. "isUnsigned": false,
  4582. "isZeroFill": false,
  4583. "setEnumValues": "",
  4584. "isBinary": false,
  4585. "charset": "utf8",
  4586. "collation": "utf8_general_ci",
  4587. "isNullable": true,
  4588. "defaultType": "Null",
  4589. "defaultValue": "",
  4590. "isOnUpdateCurrentTimestamp": false,
  4591. "isAutoInc": false,
  4592. "comment": "质保期",
  4593. "columnFormat": "",
  4594. "storage": "",
  4595. "isVirtual": false,
  4596. "isGeneratedAlways": false,
  4597. "virtualExpr": "",
  4598. "virtualType": "",
  4599. "oldName": "warranty_period"
  4600. },
  4601. {
  4602. "objectType": "TableField_MYSQL",
  4603. "name": "by_grp",
  4604. "type": "varchar",
  4605. "length": 255,
  4606. "decimals": -2147483648,
  4607. "isUnsigned": false,
  4608. "isZeroFill": false,
  4609. "setEnumValues": "",
  4610. "isBinary": false,
  4611. "charset": "utf8",
  4612. "collation": "utf8_general_ci",
  4613. "isNullable": true,
  4614. "defaultType": "Null",
  4615. "defaultValue": "",
  4616. "isOnUpdateCurrentTimestamp": false,
  4617. "isAutoInc": false,
  4618. "comment": "备用",
  4619. "columnFormat": "",
  4620. "storage": "",
  4621. "isVirtual": false,
  4622. "isGeneratedAlways": false,
  4623. "virtualExpr": "",
  4624. "virtualType": "",
  4625. "oldName": "by_grp"
  4626. }
  4627. ],
  4628. "indexes": [
  4629. {
  4630. "objectType": "Index_MYSQL",
  4631. "name": "FK_CONSTRAINT_CTR_PRO",
  4632. "type": "NORMAL",
  4633. "method": "BTREE",
  4634. "comment": "",
  4635. "oldName": "FK_CONSTRAINT_CTR_PRO",
  4636. "online": false,
  4637. "keyBlockSize": 0,
  4638. "parser": "",
  4639. "algorithm": "",
  4640. "lock": "",
  4641. "collation": "A",
  4642. "cardinality": "73",
  4643. "packed": "",
  4644. "fields": [
  4645. {
  4646. "objectType": "IndexField_MYSQL",
  4647. "name": "proId",
  4648. "keyLength": 0,
  4649. "order": "",
  4650. "oldName": "proId"
  4651. }
  4652. ]
  4653. },
  4654. {
  4655. "objectType": "Index_MYSQL",
  4656. "name": "FK_CONSTRAINT_CTR_USER",
  4657. "type": "NORMAL",
  4658. "method": "BTREE",
  4659. "comment": "",
  4660. "oldName": "FK_CONSTRAINT_CTR_USER",
  4661. "online": false,
  4662. "keyBlockSize": 0,
  4663. "parser": "",
  4664. "algorithm": "",
  4665. "lock": "",
  4666. "collation": "A",
  4667. "cardinality": "22",
  4668. "packed": "",
  4669. "fields": [
  4670. {
  4671. "objectType": "IndexField_MYSQL",
  4672. "name": "createdBy",
  4673. "keyLength": 0,
  4674. "order": "",
  4675. "oldName": "createdBy"
  4676. }
  4677. ]
  4678. }
  4679. ],
  4680. "primaryKey": {
  4681. "objectType": "PrimaryKey_MYSQL",
  4682. "name": "",
  4683. "fields": [
  4684. {
  4685. "objectType": "IndexField_MYSQL",
  4686. "name": "id",
  4687. "keyLength": 0,
  4688. "order": "",
  4689. "oldName": "id"
  4690. }
  4691. ],
  4692. "oldName": "",
  4693. "indexMethod": "BTREE",
  4694. "comment": ""
  4695. },
  4696. "foreignKeys": [
  4697. {
  4698. "objectType": "ForeignKey_MYSQL",
  4699. "name": "FK_CONSTRAINT_CTR_PRO",
  4700. "fields": [
  4701. "proId"
  4702. ],
  4703. "referenceSchema": "zt",
  4704. "referenceTable": "pro_main",
  4705. "referenceFields": [
  4706. "id"
  4707. ],
  4708. "onDelete": "NO ACTION",
  4709. "onUpdate": "NO ACTION",
  4710. "sourceCardinality": "ZeroOrManyRelationship",
  4711. "targetCardinality": "ZeroOrOneRelationship",
  4712. "oldName": "FK_CONSTRAINT_CTR_PRO"
  4713. }
  4714. ],
  4715. "triggers": [],
  4716. "tablePartitions": []
  4717. },
  4718. {
  4719. "objectType": "Table_MYSQL",
  4720. "name": "oa_expense_ledger",
  4721. "comment": "费用报支台账",
  4722. "engine": "InnoDB",
  4723. "characterSet": "utf8",
  4724. "collation": "utf8_general_ci",
  4725. "autoIncrement": 0,
  4726. "tablespace": "",
  4727. "storage": "",
  4728. "insertMethod": "",
  4729. "connection": "",
  4730. "checksum": false,
  4731. "rowFormat": "Dynamic",
  4732. "avgRowLength": 0,
  4733. "maxRows": 0,
  4734. "minRows": 0,
  4735. "keyBlockSize": 0,
  4736. "packKeys": "",
  4737. "delayKeyWrite": false,
  4738. "dataDirectory": "",
  4739. "indexDirectory": "",
  4740. "statsAutoRecalc": "",
  4741. "statsPersistent": "",
  4742. "statsSamplePages": 0,
  4743. "union": "",
  4744. "pageCheckSum": false,
  4745. "transactional": false,
  4746. "compression": "",
  4747. "oldName": "oa_expense_ledger",
  4748. "encryption": false,
  4749. "createOptions": "",
  4750. "createTime": "2024-12-01 00:18:59",
  4751. "checkTime": "",
  4752. "dataFree": 0,
  4753. "dataLength": 16384,
  4754. "indexLength": 16384,
  4755. "maxDataLength": 0,
  4756. "rows": 3,
  4757. "updateTime": "",
  4758. "DDL": "CREATE TABLE `oa_expense_ledger` (\n `id` varchar(100) NOT NULL COMMENT '主键',\n `pro_id` varchar(255) DEFAULT NULL COMMENT '项目id',\n `pro_name` varchar(255) DEFAULT NULL COMMENT '项目名称',\n `expense_type` varchar(255) DEFAULT NULL COMMENT '费用类型',\n `expense_amount` double(18,6) DEFAULT NULL COMMENT '费用金额',\n `happen_date` datetime DEFAULT NULL COMMENT '发生日期',\n `apply_user` varchar(255) DEFAULT NULL COMMENT '申请人',\n `create_user` varchar(100) DEFAULT NULL COMMENT '创建人',\n `create_time` datetime DEFAULT NULL COMMENT '创建时间',\n `update_user` varchar(100) DEFAULT NULL COMMENT '更新人',\n `update_time` datetime DEFAULT NULL COMMENT '更新时间',\n `group_id` varchar(100) DEFAULT NULL COMMENT '集团id',\n `source` varchar(50) DEFAULT NULL COMMENT '来源 2-流程',\n PRIMARY KEY (`id`),\n KEY `pro_id_index` (`pro_id`)\n) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='费用报支台账'",
  4759. "partitionBy": "",
  4760. "partitionByExpr": "",
  4761. "partitions": 0,
  4762. "partitionKeyAlgorithm": "",
  4763. "subPartitionBy": "",
  4764. "subPartitionByExpr": "",
  4765. "subPartitions": 0,
  4766. "subPartitionKeyAlgorithm": "",
  4767. "fields": [
  4768. {
  4769. "objectType": "TableField_MYSQL",
  4770. "name": "id",
  4771. "type": "varchar",
  4772. "length": 100,
  4773. "decimals": -2147483648,
  4774. "isUnsigned": false,
  4775. "isZeroFill": false,
  4776. "setEnumValues": "",
  4777. "isBinary": false,
  4778. "charset": "utf8",
  4779. "collation": "utf8_general_ci",
  4780. "isNullable": false,
  4781. "defaultType": "Others",
  4782. "defaultValue": "",
  4783. "isOnUpdateCurrentTimestamp": false,
  4784. "isAutoInc": false,
  4785. "comment": "主键",
  4786. "columnFormat": "",
  4787. "storage": "",
  4788. "isVirtual": false,
  4789. "isGeneratedAlways": false,
  4790. "virtualExpr": "",
  4791. "virtualType": "",
  4792. "oldName": "id"
  4793. },
  4794. {
  4795. "objectType": "TableField_MYSQL",
  4796. "name": "pro_id",
  4797. "type": "varchar",
  4798. "length": 255,
  4799. "decimals": -2147483648,
  4800. "isUnsigned": false,
  4801. "isZeroFill": false,
  4802. "setEnumValues": "",
  4803. "isBinary": false,
  4804. "charset": "utf8",
  4805. "collation": "utf8_general_ci",
  4806. "isNullable": true,
  4807. "defaultType": "Null",
  4808. "defaultValue": "",
  4809. "isOnUpdateCurrentTimestamp": false,
  4810. "isAutoInc": false,
  4811. "comment": "项目id",
  4812. "columnFormat": "",
  4813. "storage": "",
  4814. "isVirtual": false,
  4815. "isGeneratedAlways": false,
  4816. "virtualExpr": "",
  4817. "virtualType": "",
  4818. "oldName": "pro_id"
  4819. },
  4820. {
  4821. "objectType": "TableField_MYSQL",
  4822. "name": "pro_name",
  4823. "type": "varchar",
  4824. "length": 255,
  4825. "decimals": -2147483648,
  4826. "isUnsigned": false,
  4827. "isZeroFill": false,
  4828. "setEnumValues": "",
  4829. "isBinary": false,
  4830. "charset": "utf8",
  4831. "collation": "utf8_general_ci",
  4832. "isNullable": true,
  4833. "defaultType": "Null",
  4834. "defaultValue": "",
  4835. "isOnUpdateCurrentTimestamp": false,
  4836. "isAutoInc": false,
  4837. "comment": "项目名称",
  4838. "columnFormat": "",
  4839. "storage": "",
  4840. "isVirtual": false,
  4841. "isGeneratedAlways": false,
  4842. "virtualExpr": "",
  4843. "virtualType": "",
  4844. "oldName": "pro_name"
  4845. },
  4846. {
  4847. "objectType": "TableField_MYSQL",
  4848. "name": "expense_type",
  4849. "type": "varchar",
  4850. "length": 255,
  4851. "decimals": -2147483648,
  4852. "isUnsigned": false,
  4853. "isZeroFill": false,
  4854. "setEnumValues": "",
  4855. "isBinary": false,
  4856. "charset": "utf8",
  4857. "collation": "utf8_general_ci",
  4858. "isNullable": true,
  4859. "defaultType": "Null",
  4860. "defaultValue": "",
  4861. "isOnUpdateCurrentTimestamp": false,
  4862. "isAutoInc": false,
  4863. "comment": "费用类型",
  4864. "columnFormat": "",
  4865. "storage": "",
  4866. "isVirtual": false,
  4867. "isGeneratedAlways": false,
  4868. "virtualExpr": "",
  4869. "virtualType": "",
  4870. "oldName": "expense_type"
  4871. },
  4872. {
  4873. "objectType": "TableField_MYSQL",
  4874. "name": "expense_amount",
  4875. "type": "double",
  4876. "length": 18,
  4877. "decimals": 6,
  4878. "isUnsigned": false,
  4879. "isZeroFill": false,
  4880. "setEnumValues": "",
  4881. "isBinary": false,
  4882. "charset": "",
  4883. "collation": "",
  4884. "isNullable": true,
  4885. "defaultType": "Null",
  4886. "defaultValue": "",
  4887. "isOnUpdateCurrentTimestamp": false,
  4888. "isAutoInc": false,
  4889. "comment": "费用金额",
  4890. "columnFormat": "",
  4891. "storage": "",
  4892. "isVirtual": false,
  4893. "isGeneratedAlways": false,
  4894. "virtualExpr": "",
  4895. "virtualType": "",
  4896. "oldName": "expense_amount"
  4897. },
  4898. {
  4899. "objectType": "TableField_MYSQL",
  4900. "name": "happen_date",
  4901. "type": "datetime",
  4902. "length": -2147483648,
  4903. "decimals": -2147483648,
  4904. "isUnsigned": false,
  4905. "isZeroFill": false,
  4906. "setEnumValues": "",
  4907. "isBinary": false,
  4908. "charset": "",
  4909. "collation": "",
  4910. "isNullable": true,
  4911. "defaultType": "Null",
  4912. "defaultValue": "",
  4913. "isOnUpdateCurrentTimestamp": false,
  4914. "isAutoInc": false,
  4915. "comment": "发生日期",
  4916. "columnFormat": "",
  4917. "storage": "",
  4918. "isVirtual": false,
  4919. "isGeneratedAlways": false,
  4920. "virtualExpr": "",
  4921. "virtualType": "",
  4922. "oldName": "happen_date"
  4923. },
  4924. {
  4925. "objectType": "TableField_MYSQL",
  4926. "name": "apply_user",
  4927. "type": "varchar",
  4928. "length": 255,
  4929. "decimals": -2147483648,
  4930. "isUnsigned": false,
  4931. "isZeroFill": false,
  4932. "setEnumValues": "",
  4933. "isBinary": false,
  4934. "charset": "utf8",
  4935. "collation": "utf8_general_ci",
  4936. "isNullable": true,
  4937. "defaultType": "Null",
  4938. "defaultValue": "",
  4939. "isOnUpdateCurrentTimestamp": false,
  4940. "isAutoInc": false,
  4941. "comment": "申请人",
  4942. "columnFormat": "",
  4943. "storage": "",
  4944. "isVirtual": false,
  4945. "isGeneratedAlways": false,
  4946. "virtualExpr": "",
  4947. "virtualType": "",
  4948. "oldName": "apply_user"
  4949. },
  4950. {
  4951. "objectType": "TableField_MYSQL",
  4952. "name": "create_user",
  4953. "type": "varchar",
  4954. "length": 100,
  4955. "decimals": -2147483648,
  4956. "isUnsigned": false,
  4957. "isZeroFill": false,
  4958. "setEnumValues": "",
  4959. "isBinary": false,
  4960. "charset": "utf8",
  4961. "collation": "utf8_general_ci",
  4962. "isNullable": true,
  4963. "defaultType": "Null",
  4964. "defaultValue": "",
  4965. "isOnUpdateCurrentTimestamp": false,
  4966. "isAutoInc": false,
  4967. "comment": "创建人",
  4968. "columnFormat": "",
  4969. "storage": "",
  4970. "isVirtual": false,
  4971. "isGeneratedAlways": false,
  4972. "virtualExpr": "",
  4973. "virtualType": "",
  4974. "oldName": "create_user"
  4975. },
  4976. {
  4977. "objectType": "TableField_MYSQL",
  4978. "name": "create_time",
  4979. "type": "datetime",
  4980. "length": -2147483648,
  4981. "decimals": -2147483648,
  4982. "isUnsigned": false,
  4983. "isZeroFill": false,
  4984. "setEnumValues": "",
  4985. "isBinary": false,
  4986. "charset": "",
  4987. "collation": "",
  4988. "isNullable": true,
  4989. "defaultType": "Null",
  4990. "defaultValue": "",
  4991. "isOnUpdateCurrentTimestamp": false,
  4992. "isAutoInc": false,
  4993. "comment": "创建时间",
  4994. "columnFormat": "",
  4995. "storage": "",
  4996. "isVirtual": false,
  4997. "isGeneratedAlways": false,
  4998. "virtualExpr": "",
  4999. "virtualType": "",
  5000. "oldName": "create_time"
  5001. },
  5002. {
  5003. "objectType": "TableField_MYSQL",
  5004. "name": "update_user",
  5005. "type": "varchar",
  5006. "length": 100,
  5007. "decimals": -2147483648,
  5008. "isUnsigned": false,
  5009. "isZeroFill": false,
  5010. "setEnumValues": "",
  5011. "isBinary": false,
  5012. "charset": "utf8",
  5013. "collation": "utf8_general_ci",
  5014. "isNullable": true,
  5015. "defaultType": "Null",
  5016. "defaultValue": "",
  5017. "isOnUpdateCurrentTimestamp": false,
  5018. "isAutoInc": false,
  5019. "comment": "更新人",
  5020. "columnFormat": "",
  5021. "storage": "",
  5022. "isVirtual": false,
  5023. "isGeneratedAlways": false,
  5024. "virtualExpr": "",
  5025. "virtualType": "",
  5026. "oldName": "update_user"
  5027. },
  5028. {
  5029. "objectType": "TableField_MYSQL",
  5030. "name": "update_time",
  5031. "type": "datetime",
  5032. "length": -2147483648,
  5033. "decimals": -2147483648,
  5034. "isUnsigned": false,
  5035. "isZeroFill": false,
  5036. "setEnumValues": "",
  5037. "isBinary": false,
  5038. "charset": "",
  5039. "collation": "",
  5040. "isNullable": true,
  5041. "defaultType": "Null",
  5042. "defaultValue": "",
  5043. "isOnUpdateCurrentTimestamp": false,
  5044. "isAutoInc": false,
  5045. "comment": "更新时间",
  5046. "columnFormat": "",
  5047. "storage": "",
  5048. "isVirtual": false,
  5049. "isGeneratedAlways": false,
  5050. "virtualExpr": "",
  5051. "virtualType": "",
  5052. "oldName": "update_time"
  5053. },
  5054. {
  5055. "objectType": "TableField_MYSQL",
  5056. "name": "group_id",
  5057. "type": "varchar",
  5058. "length": 100,
  5059. "decimals": -2147483648,
  5060. "isUnsigned": false,
  5061. "isZeroFill": false,
  5062. "setEnumValues": "",
  5063. "isBinary": false,
  5064. "charset": "utf8",
  5065. "collation": "utf8_general_ci",
  5066. "isNullable": true,
  5067. "defaultType": "Null",
  5068. "defaultValue": "",
  5069. "isOnUpdateCurrentTimestamp": false,
  5070. "isAutoInc": false,
  5071. "comment": "集团id",
  5072. "columnFormat": "",
  5073. "storage": "",
  5074. "isVirtual": false,
  5075. "isGeneratedAlways": false,
  5076. "virtualExpr": "",
  5077. "virtualType": "",
  5078. "oldName": "group_id"
  5079. },
  5080. {
  5081. "objectType": "TableField_MYSQL",
  5082. "name": "source",
  5083. "type": "varchar",
  5084. "length": 50,
  5085. "decimals": -2147483648,
  5086. "isUnsigned": false,
  5087. "isZeroFill": false,
  5088. "setEnumValues": "",
  5089. "isBinary": false,
  5090. "charset": "utf8",
  5091. "collation": "utf8_general_ci",
  5092. "isNullable": true,
  5093. "defaultType": "Null",
  5094. "defaultValue": "",
  5095. "isOnUpdateCurrentTimestamp": false,
  5096. "isAutoInc": false,
  5097. "comment": "来源 2-流程",
  5098. "columnFormat": "",
  5099. "storage": "",
  5100. "isVirtual": false,
  5101. "isGeneratedAlways": false,
  5102. "virtualExpr": "",
  5103. "virtualType": "",
  5104. "oldName": "source"
  5105. }
  5106. ],
  5107. "indexes": [
  5108. {
  5109. "objectType": "Index_MYSQL",
  5110. "name": "pro_id_index",
  5111. "type": "NORMAL",
  5112. "method": "BTREE",
  5113. "comment": "",
  5114. "oldName": "pro_id_index",
  5115. "online": false,
  5116. "keyBlockSize": 0,
  5117. "parser": "",
  5118. "algorithm": "",
  5119. "lock": "",
  5120. "collation": "A",
  5121. "cardinality": "1",
  5122. "packed": "",
  5123. "fields": [
  5124. {
  5125. "objectType": "IndexField_MYSQL",
  5126. "name": "pro_id",
  5127. "keyLength": 0,
  5128. "order": "",
  5129. "oldName": "pro_id"
  5130. }
  5131. ]
  5132. }
  5133. ],
  5134. "primaryKey": {
  5135. "objectType": "PrimaryKey_MYSQL",
  5136. "name": "",
  5137. "fields": [
  5138. {
  5139. "objectType": "IndexField_MYSQL",
  5140. "name": "id",
  5141. "keyLength": 0,
  5142. "order": "",
  5143. "oldName": "id"
  5144. }
  5145. ],
  5146. "oldName": "",
  5147. "indexMethod": "BTREE",
  5148. "comment": ""
  5149. },
  5150. "foreignKeys": [],
  5151. "triggers": [],
  5152. "tablePartitions": []
  5153. },
  5154. {
  5155. "objectType": "Table_MYSQL",
  5156. "name": "oa_pro_task",
  5157. "comment": "",
  5158. "engine": "InnoDB",
  5159. "characterSet": "utf8",
  5160. "collation": "utf8_general_ci",
  5161. "autoIncrement": 0,
  5162. "tablespace": "",
  5163. "storage": "",
  5164. "insertMethod": "",
  5165. "connection": "",
  5166. "checksum": false,
  5167. "rowFormat": "DYNAMIC",
  5168. "avgRowLength": 0,
  5169. "maxRows": 0,
  5170. "minRows": 0,
  5171. "keyBlockSize": 0,
  5172. "packKeys": "",
  5173. "delayKeyWrite": false,
  5174. "dataDirectory": "",
  5175. "indexDirectory": "",
  5176. "statsAutoRecalc": "",
  5177. "statsPersistent": "",
  5178. "statsSamplePages": 0,
  5179. "union": "",
  5180. "pageCheckSum": false,
  5181. "transactional": false,
  5182. "compression": "",
  5183. "oldName": "oa_pro_task",
  5184. "encryption": false,
  5185. "createOptions": "row_format=DYNAMIC",
  5186. "createTime": "2024-12-01 00:20:28",
  5187. "checkTime": "",
  5188. "dataFree": 4194304,
  5189. "dataLength": 4734976,
  5190. "indexLength": 0,
  5191. "maxDataLength": 0,
  5192. "rows": 9142,
  5193. "updateTime": "",
  5194. "DDL": "CREATE TABLE `oa_pro_task` (\n `id` varchar(50) NOT NULL,\n `task_no` varchar(50) DEFAULT NULL COMMENT '任务编号',\n `pro_id` varchar(50) DEFAULT NULL COMMENT '项目',\n `task_type` varchar(255) DEFAULT NULL COMMENT '任务类型',\n `required_date` date DEFAULT NULL COMMENT '要求完成日期',\n `batch_id` varchar(50) DEFAULT NULL COMMENT '批次',\n `task_name` varchar(255) DEFAULT NULL COMMENT '任务名称',\n `task_explain` text COMMENT '任务说明',\n `handle_user_id` varchar(50) DEFAULT NULL COMMENT '处理人',\n `handle_user_type` varchar(50) DEFAULT NULL COMMENT '处理人类型 (1-内部,2-外包',\n `submit_user_id` varchar(50) DEFAULT NULL,\n `submit_time` datetime DEFAULT NULL COMMENT '提交日期',\n `status` varchar(50) DEFAULT NULL COMMENT '状态(0-未完成 1-已完成)',\n `handle_group` varchar(50) DEFAULT NULL COMMENT '处理组织',\n `complete_time` datetime DEFAULT NULL COMMENT '完成日期',\n `required_time` datetime DEFAULT NULL COMMENT '要求完成时间',\n `created_by` varchar(64) DEFAULT NULL COMMENT '创建',\n `created_at` datetime DEFAULT NULL COMMENT '创建时间',\n `updated_by` varchar(64) DEFAULT NULL COMMENT '更新人',\n `updated_at` datetime DEFAULT NULL COMMENT '更新时间',\n `description` text COMMENT '描述',\n `year_mon` varchar(255) DEFAULT NULL COMMENT '年月',\n `first` varchar(255) DEFAULT NULL COMMENT '月份',\n `second` text COMMENT '文件附件',\n `task_date` varchar(255) DEFAULT NULL COMMENT '日期 一 二 三 四',\n `week_date` varchar(255) DEFAULT NULL COMMENT '星期 星期一 星期二 星期三',\n `submit_status` varchar(255) DEFAULT NULL COMMENT '1-保存,2-提交',\n `handle_explain` text COMMENT '处理说明',\n `spare_first` text COMMENT '处理附件',\n `spare_seconde` varchar(255) DEFAULT NULL COMMENT '任务类型原',\n `labor_hours` double(11,2) DEFAULT NULL COMMENT '所耗工时',\n `group_id` varchar(50) DEFAULT NULL COMMENT '集团ID',\n `estimate_hours` double(11,2) DEFAULT NULL COMMENT '预估工时',\n `plan_id` varchar(50) DEFAULT NULL COMMENT '计划ID',\n `post_id` varchar(100) DEFAULT NULL COMMENT '处理人岗位id',\n `post_level` varchar(100) DEFAULT NULL COMMENT '处理人职级名称',\n `post_cost` decimal(18,2) DEFAULT NULL COMMENT '处理人人力成本',\n `review_hour` double DEFAULT NULL COMMENT '认定工时',\n `plan_start_date` datetime DEFAULT NULL COMMENT '计划启动日期',\n `handle_way` int(11) DEFAULT NULL COMMENT '处理方式(0工时填报 1任务分解)',\n `reality_start_date` datetime DEFAULT NULL COMMENT '实际启动日期',\n `parent_task_id` varchar(100) DEFAULT NULL COMMENT '父级任务id',\n `handle_way_disabled` varchar(10) DEFAULT NULL COMMENT '有值则禁止修改处理方式',\n `real_complete_time` datetime DEFAULT NULL COMMENT '实际完成时间',\n `instructions` text COMMENT '任务具体说明',\n PRIMARY KEY (`id`)\n) ENGINE=InnoDB DEFAULT CHARSET=utf8 ROW_FORMAT=DYNAMIC",
  5195. "partitionBy": "",
  5196. "partitionByExpr": "",
  5197. "partitions": 0,
  5198. "partitionKeyAlgorithm": "",
  5199. "subPartitionBy": "",
  5200. "subPartitionByExpr": "",
  5201. "subPartitions": 0,
  5202. "subPartitionKeyAlgorithm": "",
  5203. "fields": [
  5204. {
  5205. "objectType": "TableField_MYSQL",
  5206. "name": "id",
  5207. "type": "varchar",
  5208. "length": 50,
  5209. "decimals": -2147483648,
  5210. "isUnsigned": false,
  5211. "isZeroFill": false,
  5212. "setEnumValues": "",
  5213. "isBinary": false,
  5214. "charset": "utf8",
  5215. "collation": "utf8_general_ci",
  5216. "isNullable": false,
  5217. "defaultType": "Others",
  5218. "defaultValue": "",
  5219. "isOnUpdateCurrentTimestamp": false,
  5220. "isAutoInc": false,
  5221. "comment": "",
  5222. "columnFormat": "",
  5223. "storage": "",
  5224. "isVirtual": false,
  5225. "isGeneratedAlways": false,
  5226. "virtualExpr": "",
  5227. "virtualType": "",
  5228. "oldName": "id"
  5229. },
  5230. {
  5231. "objectType": "TableField_MYSQL",
  5232. "name": "task_no",
  5233. "type": "varchar",
  5234. "length": 50,
  5235. "decimals": -2147483648,
  5236. "isUnsigned": false,
  5237. "isZeroFill": false,
  5238. "setEnumValues": "",
  5239. "isBinary": false,
  5240. "charset": "utf8",
  5241. "collation": "utf8_general_ci",
  5242. "isNullable": true,
  5243. "defaultType": "Null",
  5244. "defaultValue": "",
  5245. "isOnUpdateCurrentTimestamp": false,
  5246. "isAutoInc": false,
  5247. "comment": "任务编号",
  5248. "columnFormat": "",
  5249. "storage": "",
  5250. "isVirtual": false,
  5251. "isGeneratedAlways": false,
  5252. "virtualExpr": "",
  5253. "virtualType": "",
  5254. "oldName": "task_no"
  5255. },
  5256. {
  5257. "objectType": "TableField_MYSQL",
  5258. "name": "pro_id",
  5259. "type": "varchar",
  5260. "length": 50,
  5261. "decimals": -2147483648,
  5262. "isUnsigned": false,
  5263. "isZeroFill": false,
  5264. "setEnumValues": "",
  5265. "isBinary": false,
  5266. "charset": "utf8",
  5267. "collation": "utf8_general_ci",
  5268. "isNullable": true,
  5269. "defaultType": "Null",
  5270. "defaultValue": "",
  5271. "isOnUpdateCurrentTimestamp": false,
  5272. "isAutoInc": false,
  5273. "comment": "项目",
  5274. "columnFormat": "",
  5275. "storage": "",
  5276. "isVirtual": false,
  5277. "isGeneratedAlways": false,
  5278. "virtualExpr": "",
  5279. "virtualType": "",
  5280. "oldName": "pro_id"
  5281. },
  5282. {
  5283. "objectType": "TableField_MYSQL",
  5284. "name": "task_type",
  5285. "type": "varchar",
  5286. "length": 255,
  5287. "decimals": -2147483648,
  5288. "isUnsigned": false,
  5289. "isZeroFill": false,
  5290. "setEnumValues": "",
  5291. "isBinary": false,
  5292. "charset": "utf8",
  5293. "collation": "utf8_general_ci",
  5294. "isNullable": true,
  5295. "defaultType": "Null",
  5296. "defaultValue": "",
  5297. "isOnUpdateCurrentTimestamp": false,
  5298. "isAutoInc": false,
  5299. "comment": "任务类型",
  5300. "columnFormat": "",
  5301. "storage": "",
  5302. "isVirtual": false,
  5303. "isGeneratedAlways": false,
  5304. "virtualExpr": "",
  5305. "virtualType": "",
  5306. "oldName": "task_type"
  5307. },
  5308. {
  5309. "objectType": "TableField_MYSQL",
  5310. "name": "required_date",
  5311. "type": "date",
  5312. "length": -2147483648,
  5313. "decimals": -2147483648,
  5314. "isUnsigned": false,
  5315. "isZeroFill": false,
  5316. "setEnumValues": "",
  5317. "isBinary": false,
  5318. "charset": "",
  5319. "collation": "",
  5320. "isNullable": true,
  5321. "defaultType": "Null",
  5322. "defaultValue": "",
  5323. "isOnUpdateCurrentTimestamp": false,
  5324. "isAutoInc": false,
  5325. "comment": "要求完成日期",
  5326. "columnFormat": "",
  5327. "storage": "",
  5328. "isVirtual": false,
  5329. "isGeneratedAlways": false,
  5330. "virtualExpr": "",
  5331. "virtualType": "",
  5332. "oldName": "required_date"
  5333. },
  5334. {
  5335. "objectType": "TableField_MYSQL",
  5336. "name": "batch_id",
  5337. "type": "varchar",
  5338. "length": 50,
  5339. "decimals": -2147483648,
  5340. "isUnsigned": false,
  5341. "isZeroFill": false,
  5342. "setEnumValues": "",
  5343. "isBinary": false,
  5344. "charset": "utf8",
  5345. "collation": "utf8_general_ci",
  5346. "isNullable": true,
  5347. "defaultType": "Null",
  5348. "defaultValue": "",
  5349. "isOnUpdateCurrentTimestamp": false,
  5350. "isAutoInc": false,
  5351. "comment": "批次",
  5352. "columnFormat": "",
  5353. "storage": "",
  5354. "isVirtual": false,
  5355. "isGeneratedAlways": false,
  5356. "virtualExpr": "",
  5357. "virtualType": "",
  5358. "oldName": "batch_id"
  5359. },
  5360. {
  5361. "objectType": "TableField_MYSQL",
  5362. "name": "task_name",
  5363. "type": "varchar",
  5364. "length": 255,
  5365. "decimals": -2147483648,
  5366. "isUnsigned": false,
  5367. "isZeroFill": false,
  5368. "setEnumValues": "",
  5369. "isBinary": false,
  5370. "charset": "utf8",
  5371. "collation": "utf8_general_ci",
  5372. "isNullable": true,
  5373. "defaultType": "Null",
  5374. "defaultValue": "",
  5375. "isOnUpdateCurrentTimestamp": false,
  5376. "isAutoInc": false,
  5377. "comment": "任务名称",
  5378. "columnFormat": "",
  5379. "storage": "",
  5380. "isVirtual": false,
  5381. "isGeneratedAlways": false,
  5382. "virtualExpr": "",
  5383. "virtualType": "",
  5384. "oldName": "task_name"
  5385. },
  5386. {
  5387. "objectType": "TableField_MYSQL",
  5388. "name": "task_explain",
  5389. "type": "text",
  5390. "length": -2147483648,
  5391. "decimals": -2147483648,
  5392. "isUnsigned": false,
  5393. "isZeroFill": false,
  5394. "setEnumValues": "",
  5395. "isBinary": false,
  5396. "charset": "utf8",
  5397. "collation": "utf8_general_ci",
  5398. "isNullable": true,
  5399. "defaultType": "Null",
  5400. "defaultValue": "",
  5401. "isOnUpdateCurrentTimestamp": false,
  5402. "isAutoInc": false,
  5403. "comment": "任务说明",
  5404. "columnFormat": "",
  5405. "storage": "",
  5406. "isVirtual": false,
  5407. "isGeneratedAlways": false,
  5408. "virtualExpr": "",
  5409. "virtualType": "",
  5410. "oldName": "task_explain"
  5411. },
  5412. {
  5413. "objectType": "TableField_MYSQL",
  5414. "name": "handle_user_id",
  5415. "type": "varchar",
  5416. "length": 50,
  5417. "decimals": -2147483648,
  5418. "isUnsigned": false,
  5419. "isZeroFill": false,
  5420. "setEnumValues": "",
  5421. "isBinary": false,
  5422. "charset": "utf8",
  5423. "collation": "utf8_general_ci",
  5424. "isNullable": true,
  5425. "defaultType": "Null",
  5426. "defaultValue": "",
  5427. "isOnUpdateCurrentTimestamp": false,
  5428. "isAutoInc": false,
  5429. "comment": "处理人",
  5430. "columnFormat": "",
  5431. "storage": "",
  5432. "isVirtual": false,
  5433. "isGeneratedAlways": false,
  5434. "virtualExpr": "",
  5435. "virtualType": "",
  5436. "oldName": "handle_user_id"
  5437. },
  5438. {
  5439. "objectType": "TableField_MYSQL",
  5440. "name": "handle_user_type",
  5441. "type": "varchar",
  5442. "length": 50,
  5443. "decimals": -2147483648,
  5444. "isUnsigned": false,
  5445. "isZeroFill": false,
  5446. "setEnumValues": "",
  5447. "isBinary": false,
  5448. "charset": "utf8",
  5449. "collation": "utf8_general_ci",
  5450. "isNullable": true,
  5451. "defaultType": "Null",
  5452. "defaultValue": "",
  5453. "isOnUpdateCurrentTimestamp": false,
  5454. "isAutoInc": false,
  5455. "comment": "处理人类型 (1-内部,2-外包",
  5456. "columnFormat": "",
  5457. "storage": "",
  5458. "isVirtual": false,
  5459. "isGeneratedAlways": false,
  5460. "virtualExpr": "",
  5461. "virtualType": "",
  5462. "oldName": "handle_user_type"
  5463. },
  5464. {
  5465. "objectType": "TableField_MYSQL",
  5466. "name": "submit_user_id",
  5467. "type": "varchar",
  5468. "length": 50,
  5469. "decimals": -2147483648,
  5470. "isUnsigned": false,
  5471. "isZeroFill": false,
  5472. "setEnumValues": "",
  5473. "isBinary": false,
  5474. "charset": "utf8",
  5475. "collation": "utf8_general_ci",
  5476. "isNullable": true,
  5477. "defaultType": "Null",
  5478. "defaultValue": "",
  5479. "isOnUpdateCurrentTimestamp": false,
  5480. "isAutoInc": false,
  5481. "comment": "",
  5482. "columnFormat": "",
  5483. "storage": "",
  5484. "isVirtual": false,
  5485. "isGeneratedAlways": false,
  5486. "virtualExpr": "",
  5487. "virtualType": "",
  5488. "oldName": "submit_user_id"
  5489. },
  5490. {
  5491. "objectType": "TableField_MYSQL",
  5492. "name": "submit_time",
  5493. "type": "datetime",
  5494. "length": -2147483648,
  5495. "decimals": -2147483648,
  5496. "isUnsigned": false,
  5497. "isZeroFill": false,
  5498. "setEnumValues": "",
  5499. "isBinary": false,
  5500. "charset": "",
  5501. "collation": "",
  5502. "isNullable": true,
  5503. "defaultType": "Null",
  5504. "defaultValue": "",
  5505. "isOnUpdateCurrentTimestamp": false,
  5506. "isAutoInc": false,
  5507. "comment": "提交日期",
  5508. "columnFormat": "",
  5509. "storage": "",
  5510. "isVirtual": false,
  5511. "isGeneratedAlways": false,
  5512. "virtualExpr": "",
  5513. "virtualType": "",
  5514. "oldName": "submit_time"
  5515. },
  5516. {
  5517. "objectType": "TableField_MYSQL",
  5518. "name": "status",
  5519. "type": "varchar",
  5520. "length": 50,
  5521. "decimals": -2147483648,
  5522. "isUnsigned": false,
  5523. "isZeroFill": false,
  5524. "setEnumValues": "",
  5525. "isBinary": false,
  5526. "charset": "utf8",
  5527. "collation": "utf8_general_ci",
  5528. "isNullable": true,
  5529. "defaultType": "Null",
  5530. "defaultValue": "",
  5531. "isOnUpdateCurrentTimestamp": false,
  5532. "isAutoInc": false,
  5533. "comment": "状态(0-未完成 1-已完成)",
  5534. "columnFormat": "",
  5535. "storage": "",
  5536. "isVirtual": false,
  5537. "isGeneratedAlways": false,
  5538. "virtualExpr": "",
  5539. "virtualType": "",
  5540. "oldName": "status"
  5541. },
  5542. {
  5543. "objectType": "TableField_MYSQL",
  5544. "name": "handle_group",
  5545. "type": "varchar",
  5546. "length": 50,
  5547. "decimals": -2147483648,
  5548. "isUnsigned": false,
  5549. "isZeroFill": false,
  5550. "setEnumValues": "",
  5551. "isBinary": false,
  5552. "charset": "utf8",
  5553. "collation": "utf8_general_ci",
  5554. "isNullable": true,
  5555. "defaultType": "Null",
  5556. "defaultValue": "",
  5557. "isOnUpdateCurrentTimestamp": false,
  5558. "isAutoInc": false,
  5559. "comment": "处理组织",
  5560. "columnFormat": "",
  5561. "storage": "",
  5562. "isVirtual": false,
  5563. "isGeneratedAlways": false,
  5564. "virtualExpr": "",
  5565. "virtualType": "",
  5566. "oldName": "handle_group"
  5567. },
  5568. {
  5569. "objectType": "TableField_MYSQL",
  5570. "name": "complete_time",
  5571. "type": "datetime",
  5572. "length": -2147483648,
  5573. "decimals": -2147483648,
  5574. "isUnsigned": false,
  5575. "isZeroFill": false,
  5576. "setEnumValues": "",
  5577. "isBinary": false,
  5578. "charset": "",
  5579. "collation": "",
  5580. "isNullable": true,
  5581. "defaultType": "Null",
  5582. "defaultValue": "",
  5583. "isOnUpdateCurrentTimestamp": false,
  5584. "isAutoInc": false,
  5585. "comment": "完成日期",
  5586. "columnFormat": "",
  5587. "storage": "",
  5588. "isVirtual": false,
  5589. "isGeneratedAlways": false,
  5590. "virtualExpr": "",
  5591. "virtualType": "",
  5592. "oldName": "complete_time"
  5593. },
  5594. {
  5595. "objectType": "TableField_MYSQL",
  5596. "name": "required_time",
  5597. "type": "datetime",
  5598. "length": -2147483648,
  5599. "decimals": -2147483648,
  5600. "isUnsigned": false,
  5601. "isZeroFill": false,
  5602. "setEnumValues": "",
  5603. "isBinary": false,
  5604. "charset": "",
  5605. "collation": "",
  5606. "isNullable": true,
  5607. "defaultType": "Null",
  5608. "defaultValue": "",
  5609. "isOnUpdateCurrentTimestamp": false,
  5610. "isAutoInc": false,
  5611. "comment": "要求完成时间",
  5612. "columnFormat": "",
  5613. "storage": "",
  5614. "isVirtual": false,
  5615. "isGeneratedAlways": false,
  5616. "virtualExpr": "",
  5617. "virtualType": "",
  5618. "oldName": "required_time"
  5619. },
  5620. {
  5621. "objectType": "TableField_MYSQL",
  5622. "name": "created_by",
  5623. "type": "varchar",
  5624. "length": 64,
  5625. "decimals": -2147483648,
  5626. "isUnsigned": false,
  5627. "isZeroFill": false,
  5628. "setEnumValues": "",
  5629. "isBinary": false,
  5630. "charset": "utf8",
  5631. "collation": "utf8_general_ci",
  5632. "isNullable": true,
  5633. "defaultType": "Null",
  5634. "defaultValue": "",
  5635. "isOnUpdateCurrentTimestamp": false,
  5636. "isAutoInc": false,
  5637. "comment": "创建",
  5638. "columnFormat": "",
  5639. "storage": "",
  5640. "isVirtual": false,
  5641. "isGeneratedAlways": false,
  5642. "virtualExpr": "",
  5643. "virtualType": "",
  5644. "oldName": "created_by"
  5645. },
  5646. {
  5647. "objectType": "TableField_MYSQL",
  5648. "name": "created_at",
  5649. "type": "datetime",
  5650. "length": -2147483648,
  5651. "decimals": -2147483648,
  5652. "isUnsigned": false,
  5653. "isZeroFill": false,
  5654. "setEnumValues": "",
  5655. "isBinary": false,
  5656. "charset": "",
  5657. "collation": "",
  5658. "isNullable": true,
  5659. "defaultType": "Null",
  5660. "defaultValue": "",
  5661. "isOnUpdateCurrentTimestamp": false,
  5662. "isAutoInc": false,
  5663. "comment": "创建时间",
  5664. "columnFormat": "",
  5665. "storage": "",
  5666. "isVirtual": false,
  5667. "isGeneratedAlways": false,
  5668. "virtualExpr": "",
  5669. "virtualType": "",
  5670. "oldName": "created_at"
  5671. },
  5672. {
  5673. "objectType": "TableField_MYSQL",
  5674. "name": "updated_by",
  5675. "type": "varchar",
  5676. "length": 64,
  5677. "decimals": -2147483648,
  5678. "isUnsigned": false,
  5679. "isZeroFill": false,
  5680. "setEnumValues": "",
  5681. "isBinary": false,
  5682. "charset": "utf8",
  5683. "collation": "utf8_general_ci",
  5684. "isNullable": true,
  5685. "defaultType": "Null",
  5686. "defaultValue": "",
  5687. "isOnUpdateCurrentTimestamp": false,
  5688. "isAutoInc": false,
  5689. "comment": "更新人",
  5690. "columnFormat": "",
  5691. "storage": "",
  5692. "isVirtual": false,
  5693. "isGeneratedAlways": false,
  5694. "virtualExpr": "",
  5695. "virtualType": "",
  5696. "oldName": "updated_by"
  5697. },
  5698. {
  5699. "objectType": "TableField_MYSQL",
  5700. "name": "updated_at",
  5701. "type": "datetime",
  5702. "length": -2147483648,
  5703. "decimals": -2147483648,
  5704. "isUnsigned": false,
  5705. "isZeroFill": false,
  5706. "setEnumValues": "",
  5707. "isBinary": false,
  5708. "charset": "",
  5709. "collation": "",
  5710. "isNullable": true,
  5711. "defaultType": "Null",
  5712. "defaultValue": "",
  5713. "isOnUpdateCurrentTimestamp": false,
  5714. "isAutoInc": false,
  5715. "comment": "更新时间",
  5716. "columnFormat": "",
  5717. "storage": "",
  5718. "isVirtual": false,
  5719. "isGeneratedAlways": false,
  5720. "virtualExpr": "",
  5721. "virtualType": "",
  5722. "oldName": "updated_at"
  5723. },
  5724. {
  5725. "objectType": "TableField_MYSQL",
  5726. "name": "description",
  5727. "type": "text",
  5728. "length": -2147483648,
  5729. "decimals": -2147483648,
  5730. "isUnsigned": false,
  5731. "isZeroFill": false,
  5732. "setEnumValues": "",
  5733. "isBinary": false,
  5734. "charset": "utf8",
  5735. "collation": "utf8_general_ci",
  5736. "isNullable": true,
  5737. "defaultType": "Null",
  5738. "defaultValue": "",
  5739. "isOnUpdateCurrentTimestamp": false,
  5740. "isAutoInc": false,
  5741. "comment": "描述",
  5742. "columnFormat": "",
  5743. "storage": "",
  5744. "isVirtual": false,
  5745. "isGeneratedAlways": false,
  5746. "virtualExpr": "",
  5747. "virtualType": "",
  5748. "oldName": "description"
  5749. },
  5750. {
  5751. "objectType": "TableField_MYSQL",
  5752. "name": "year_mon",
  5753. "type": "varchar",
  5754. "length": 255,
  5755. "decimals": -2147483648,
  5756. "isUnsigned": false,
  5757. "isZeroFill": false,
  5758. "setEnumValues": "",
  5759. "isBinary": false,
  5760. "charset": "utf8",
  5761. "collation": "utf8_general_ci",
  5762. "isNullable": true,
  5763. "defaultType": "Null",
  5764. "defaultValue": "",
  5765. "isOnUpdateCurrentTimestamp": false,
  5766. "isAutoInc": false,
  5767. "comment": "年月",
  5768. "columnFormat": "",
  5769. "storage": "",
  5770. "isVirtual": false,
  5771. "isGeneratedAlways": false,
  5772. "virtualExpr": "",
  5773. "virtualType": "",
  5774. "oldName": "year_mon"
  5775. },
  5776. {
  5777. "objectType": "TableField_MYSQL",
  5778. "name": "first",
  5779. "type": "varchar",
  5780. "length": 255,
  5781. "decimals": -2147483648,
  5782. "isUnsigned": false,
  5783. "isZeroFill": false,
  5784. "setEnumValues": "",
  5785. "isBinary": false,
  5786. "charset": "utf8",
  5787. "collation": "utf8_general_ci",
  5788. "isNullable": true,
  5789. "defaultType": "Null",
  5790. "defaultValue": "",
  5791. "isOnUpdateCurrentTimestamp": false,
  5792. "isAutoInc": false,
  5793. "comment": "月份",
  5794. "columnFormat": "",
  5795. "storage": "",
  5796. "isVirtual": false,
  5797. "isGeneratedAlways": false,
  5798. "virtualExpr": "",
  5799. "virtualType": "",
  5800. "oldName": "first"
  5801. },
  5802. {
  5803. "objectType": "TableField_MYSQL",
  5804. "name": "second",
  5805. "type": "text",
  5806. "length": -2147483648,
  5807. "decimals": -2147483648,
  5808. "isUnsigned": false,
  5809. "isZeroFill": false,
  5810. "setEnumValues": "",
  5811. "isBinary": false,
  5812. "charset": "utf8",
  5813. "collation": "utf8_general_ci",
  5814. "isNullable": true,
  5815. "defaultType": "Null",
  5816. "defaultValue": "",
  5817. "isOnUpdateCurrentTimestamp": false,
  5818. "isAutoInc": false,
  5819. "comment": "文件附件",
  5820. "columnFormat": "",
  5821. "storage": "",
  5822. "isVirtual": false,
  5823. "isGeneratedAlways": false,
  5824. "virtualExpr": "",
  5825. "virtualType": "",
  5826. "oldName": "second"
  5827. },
  5828. {
  5829. "objectType": "TableField_MYSQL",
  5830. "name": "task_date",
  5831. "type": "varchar",
  5832. "length": 255,
  5833. "decimals": -2147483648,
  5834. "isUnsigned": false,
  5835. "isZeroFill": false,
  5836. "setEnumValues": "",
  5837. "isBinary": false,
  5838. "charset": "utf8",
  5839. "collation": "utf8_general_ci",
  5840. "isNullable": true,
  5841. "defaultType": "Null",
  5842. "defaultValue": "",
  5843. "isOnUpdateCurrentTimestamp": false,
  5844. "isAutoInc": false,
  5845. "comment": "日期 一 二 三 四",
  5846. "columnFormat": "",
  5847. "storage": "",
  5848. "isVirtual": false,
  5849. "isGeneratedAlways": false,
  5850. "virtualExpr": "",
  5851. "virtualType": "",
  5852. "oldName": "task_date"
  5853. },
  5854. {
  5855. "objectType": "TableField_MYSQL",
  5856. "name": "week_date",
  5857. "type": "varchar",
  5858. "length": 255,
  5859. "decimals": -2147483648,
  5860. "isUnsigned": false,
  5861. "isZeroFill": false,
  5862. "setEnumValues": "",
  5863. "isBinary": false,
  5864. "charset": "utf8",
  5865. "collation": "utf8_general_ci",
  5866. "isNullable": true,
  5867. "defaultType": "Null",
  5868. "defaultValue": "",
  5869. "isOnUpdateCurrentTimestamp": false,
  5870. "isAutoInc": false,
  5871. "comment": "星期 星期一 星期二 星期三",
  5872. "columnFormat": "",
  5873. "storage": "",
  5874. "isVirtual": false,
  5875. "isGeneratedAlways": false,
  5876. "virtualExpr": "",
  5877. "virtualType": "",
  5878. "oldName": "week_date"
  5879. },
  5880. {
  5881. "objectType": "TableField_MYSQL",
  5882. "name": "submit_status",
  5883. "type": "varchar",
  5884. "length": 255,
  5885. "decimals": -2147483648,
  5886. "isUnsigned": false,
  5887. "isZeroFill": false,
  5888. "setEnumValues": "",
  5889. "isBinary": false,
  5890. "charset": "utf8",
  5891. "collation": "utf8_general_ci",
  5892. "isNullable": true,
  5893. "defaultType": "Null",
  5894. "defaultValue": "",
  5895. "isOnUpdateCurrentTimestamp": false,
  5896. "isAutoInc": false,
  5897. "comment": "1-保存,2-提交",
  5898. "columnFormat": "",
  5899. "storage": "",
  5900. "isVirtual": false,
  5901. "isGeneratedAlways": false,
  5902. "virtualExpr": "",
  5903. "virtualType": "",
  5904. "oldName": "submit_status"
  5905. },
  5906. {
  5907. "objectType": "TableField_MYSQL",
  5908. "name": "handle_explain",
  5909. "type": "text",
  5910. "length": -2147483648,
  5911. "decimals": -2147483648,
  5912. "isUnsigned": false,
  5913. "isZeroFill": false,
  5914. "setEnumValues": "",
  5915. "isBinary": false,
  5916. "charset": "utf8",
  5917. "collation": "utf8_general_ci",
  5918. "isNullable": true,
  5919. "defaultType": "Null",
  5920. "defaultValue": "",
  5921. "isOnUpdateCurrentTimestamp": false,
  5922. "isAutoInc": false,
  5923. "comment": "处理说明",
  5924. "columnFormat": "",
  5925. "storage": "",
  5926. "isVirtual": false,
  5927. "isGeneratedAlways": false,
  5928. "virtualExpr": "",
  5929. "virtualType": "",
  5930. "oldName": "handle_explain"
  5931. },
  5932. {
  5933. "objectType": "TableField_MYSQL",
  5934. "name": "spare_first",
  5935. "type": "text",
  5936. "length": -2147483648,
  5937. "decimals": -2147483648,
  5938. "isUnsigned": false,
  5939. "isZeroFill": false,
  5940. "setEnumValues": "",
  5941. "isBinary": false,
  5942. "charset": "utf8",
  5943. "collation": "utf8_general_ci",
  5944. "isNullable": true,
  5945. "defaultType": "Null",
  5946. "defaultValue": "",
  5947. "isOnUpdateCurrentTimestamp": false,
  5948. "isAutoInc": false,
  5949. "comment": "处理附件",
  5950. "columnFormat": "",
  5951. "storage": "",
  5952. "isVirtual": false,
  5953. "isGeneratedAlways": false,
  5954. "virtualExpr": "",
  5955. "virtualType": "",
  5956. "oldName": "spare_first"
  5957. },
  5958. {
  5959. "objectType": "TableField_MYSQL",
  5960. "name": "spare_seconde",
  5961. "type": "varchar",
  5962. "length": 255,
  5963. "decimals": -2147483648,
  5964. "isUnsigned": false,
  5965. "isZeroFill": false,
  5966. "setEnumValues": "",
  5967. "isBinary": false,
  5968. "charset": "utf8",
  5969. "collation": "utf8_general_ci",
  5970. "isNullable": true,
  5971. "defaultType": "Null",
  5972. "defaultValue": "",
  5973. "isOnUpdateCurrentTimestamp": false,
  5974. "isAutoInc": false,
  5975. "comment": "任务类型原",
  5976. "columnFormat": "",
  5977. "storage": "",
  5978. "isVirtual": false,
  5979. "isGeneratedAlways": false,
  5980. "virtualExpr": "",
  5981. "virtualType": "",
  5982. "oldName": "spare_seconde"
  5983. },
  5984. {
  5985. "objectType": "TableField_MYSQL",
  5986. "name": "labor_hours",
  5987. "type": "double",
  5988. "length": 11,
  5989. "decimals": 2,
  5990. "isUnsigned": false,
  5991. "isZeroFill": false,
  5992. "setEnumValues": "",
  5993. "isBinary": false,
  5994. "charset": "",
  5995. "collation": "",
  5996. "isNullable": true,
  5997. "defaultType": "Null",
  5998. "defaultValue": "",
  5999. "isOnUpdateCurrentTimestamp": false,
  6000. "isAutoInc": false,
  6001. "comment": "所耗工时",
  6002. "columnFormat": "",
  6003. "storage": "",
  6004. "isVirtual": false,
  6005. "isGeneratedAlways": false,
  6006. "virtualExpr": "",
  6007. "virtualType": "",
  6008. "oldName": "labor_hours"
  6009. },
  6010. {
  6011. "objectType": "TableField_MYSQL",
  6012. "name": "group_id",
  6013. "type": "varchar",
  6014. "length": 50,
  6015. "decimals": -2147483648,
  6016. "isUnsigned": false,
  6017. "isZeroFill": false,
  6018. "setEnumValues": "",
  6019. "isBinary": false,
  6020. "charset": "utf8",
  6021. "collation": "utf8_general_ci",
  6022. "isNullable": true,
  6023. "defaultType": "Null",
  6024. "defaultValue": "",
  6025. "isOnUpdateCurrentTimestamp": false,
  6026. "isAutoInc": false,
  6027. "comment": "集团ID",
  6028. "columnFormat": "",
  6029. "storage": "",
  6030. "isVirtual": false,
  6031. "isGeneratedAlways": false,
  6032. "virtualExpr": "",
  6033. "virtualType": "",
  6034. "oldName": "group_id"
  6035. },
  6036. {
  6037. "objectType": "TableField_MYSQL",
  6038. "name": "estimate_hours",
  6039. "type": "double",
  6040. "length": 11,
  6041. "decimals": 2,
  6042. "isUnsigned": false,
  6043. "isZeroFill": false,
  6044. "setEnumValues": "",
  6045. "isBinary": false,
  6046. "charset": "",
  6047. "collation": "",
  6048. "isNullable": true,
  6049. "defaultType": "Null",
  6050. "defaultValue": "",
  6051. "isOnUpdateCurrentTimestamp": false,
  6052. "isAutoInc": false,
  6053. "comment": "预估工时",
  6054. "columnFormat": "",
  6055. "storage": "",
  6056. "isVirtual": false,
  6057. "isGeneratedAlways": false,
  6058. "virtualExpr": "",
  6059. "virtualType": "",
  6060. "oldName": "estimate_hours"
  6061. },
  6062. {
  6063. "objectType": "TableField_MYSQL",
  6064. "name": "plan_id",
  6065. "type": "varchar",
  6066. "length": 50,
  6067. "decimals": -2147483648,
  6068. "isUnsigned": false,
  6069. "isZeroFill": false,
  6070. "setEnumValues": "",
  6071. "isBinary": false,
  6072. "charset": "utf8",
  6073. "collation": "utf8_general_ci",
  6074. "isNullable": true,
  6075. "defaultType": "Null",
  6076. "defaultValue": "",
  6077. "isOnUpdateCurrentTimestamp": false,
  6078. "isAutoInc": false,
  6079. "comment": "计划ID",
  6080. "columnFormat": "",
  6081. "storage": "",
  6082. "isVirtual": false,
  6083. "isGeneratedAlways": false,
  6084. "virtualExpr": "",
  6085. "virtualType": "",
  6086. "oldName": "plan_id"
  6087. },
  6088. {
  6089. "objectType": "TableField_MYSQL",
  6090. "name": "post_id",
  6091. "type": "varchar",
  6092. "length": 100,
  6093. "decimals": -2147483648,
  6094. "isUnsigned": false,
  6095. "isZeroFill": false,
  6096. "setEnumValues": "",
  6097. "isBinary": false,
  6098. "charset": "utf8",
  6099. "collation": "utf8_general_ci",
  6100. "isNullable": true,
  6101. "defaultType": "Null",
  6102. "defaultValue": "",
  6103. "isOnUpdateCurrentTimestamp": false,
  6104. "isAutoInc": false,
  6105. "comment": "处理人岗位id",
  6106. "columnFormat": "",
  6107. "storage": "",
  6108. "isVirtual": false,
  6109. "isGeneratedAlways": false,
  6110. "virtualExpr": "",
  6111. "virtualType": "",
  6112. "oldName": "post_id"
  6113. },
  6114. {
  6115. "objectType": "TableField_MYSQL",
  6116. "name": "post_level",
  6117. "type": "varchar",
  6118. "length": 100,
  6119. "decimals": -2147483648,
  6120. "isUnsigned": false,
  6121. "isZeroFill": false,
  6122. "setEnumValues": "",
  6123. "isBinary": false,
  6124. "charset": "utf8",
  6125. "collation": "utf8_general_ci",
  6126. "isNullable": true,
  6127. "defaultType": "Null",
  6128. "defaultValue": "",
  6129. "isOnUpdateCurrentTimestamp": false,
  6130. "isAutoInc": false,
  6131. "comment": "处理人职级名称",
  6132. "columnFormat": "",
  6133. "storage": "",
  6134. "isVirtual": false,
  6135. "isGeneratedAlways": false,
  6136. "virtualExpr": "",
  6137. "virtualType": "",
  6138. "oldName": "post_level"
  6139. },
  6140. {
  6141. "objectType": "TableField_MYSQL",
  6142. "name": "post_cost",
  6143. "type": "decimal",
  6144. "length": 18,
  6145. "decimals": 2,
  6146. "isUnsigned": false,
  6147. "isZeroFill": false,
  6148. "setEnumValues": "",
  6149. "isBinary": false,
  6150. "charset": "",
  6151. "collation": "",
  6152. "isNullable": true,
  6153. "defaultType": "Null",
  6154. "defaultValue": "",
  6155. "isOnUpdateCurrentTimestamp": false,
  6156. "isAutoInc": false,
  6157. "comment": "处理人人力成本",
  6158. "columnFormat": "",
  6159. "storage": "",
  6160. "isVirtual": false,
  6161. "isGeneratedAlways": false,
  6162. "virtualExpr": "",
  6163. "virtualType": "",
  6164. "oldName": "post_cost"
  6165. },
  6166. {
  6167. "objectType": "TableField_MYSQL",
  6168. "name": "review_hour",
  6169. "type": "double",
  6170. "length": -2147483648,
  6171. "decimals": -2147483648,
  6172. "isUnsigned": false,
  6173. "isZeroFill": false,
  6174. "setEnumValues": "",
  6175. "isBinary": false,
  6176. "charset": "",
  6177. "collation": "",
  6178. "isNullable": true,
  6179. "defaultType": "Null",
  6180. "defaultValue": "",
  6181. "isOnUpdateCurrentTimestamp": false,
  6182. "isAutoInc": false,
  6183. "comment": "认定工时",
  6184. "columnFormat": "",
  6185. "storage": "",
  6186. "isVirtual": false,
  6187. "isGeneratedAlways": false,
  6188. "virtualExpr": "",
  6189. "virtualType": "",
  6190. "oldName": "review_hour"
  6191. },
  6192. {
  6193. "objectType": "TableField_MYSQL",
  6194. "name": "plan_start_date",
  6195. "type": "datetime",
  6196. "length": -2147483648,
  6197. "decimals": -2147483648,
  6198. "isUnsigned": false,
  6199. "isZeroFill": false,
  6200. "setEnumValues": "",
  6201. "isBinary": false,
  6202. "charset": "",
  6203. "collation": "",
  6204. "isNullable": true,
  6205. "defaultType": "Null",
  6206. "defaultValue": "",
  6207. "isOnUpdateCurrentTimestamp": false,
  6208. "isAutoInc": false,
  6209. "comment": "计划启动日期",
  6210. "columnFormat": "",
  6211. "storage": "",
  6212. "isVirtual": false,
  6213. "isGeneratedAlways": false,
  6214. "virtualExpr": "",
  6215. "virtualType": "",
  6216. "oldName": "plan_start_date"
  6217. },
  6218. {
  6219. "objectType": "TableField_MYSQL",
  6220. "name": "handle_way",
  6221. "type": "int",
  6222. "length": 11,
  6223. "decimals": -2147483648,
  6224. "isUnsigned": false,
  6225. "isZeroFill": false,
  6226. "setEnumValues": "",
  6227. "isBinary": false,
  6228. "charset": "",
  6229. "collation": "",
  6230. "isNullable": true,
  6231. "defaultType": "Null",
  6232. "defaultValue": "",
  6233. "isOnUpdateCurrentTimestamp": false,
  6234. "isAutoInc": false,
  6235. "comment": "处理方式(0工时填报 1任务分解)",
  6236. "columnFormat": "",
  6237. "storage": "",
  6238. "isVirtual": false,
  6239. "isGeneratedAlways": false,
  6240. "virtualExpr": "",
  6241. "virtualType": "",
  6242. "oldName": "handle_way"
  6243. },
  6244. {
  6245. "objectType": "TableField_MYSQL",
  6246. "name": "reality_start_date",
  6247. "type": "datetime",
  6248. "length": -2147483648,
  6249. "decimals": -2147483648,
  6250. "isUnsigned": false,
  6251. "isZeroFill": false,
  6252. "setEnumValues": "",
  6253. "isBinary": false,
  6254. "charset": "",
  6255. "collation": "",
  6256. "isNullable": true,
  6257. "defaultType": "Null",
  6258. "defaultValue": "",
  6259. "isOnUpdateCurrentTimestamp": false,
  6260. "isAutoInc": false,
  6261. "comment": "实际启动日期",
  6262. "columnFormat": "",
  6263. "storage": "",
  6264. "isVirtual": false,
  6265. "isGeneratedAlways": false,
  6266. "virtualExpr": "",
  6267. "virtualType": "",
  6268. "oldName": "reality_start_date"
  6269. },
  6270. {
  6271. "objectType": "TableField_MYSQL",
  6272. "name": "parent_task_id",
  6273. "type": "varchar",
  6274. "length": 100,
  6275. "decimals": -2147483648,
  6276. "isUnsigned": false,
  6277. "isZeroFill": false,
  6278. "setEnumValues": "",
  6279. "isBinary": false,
  6280. "charset": "utf8",
  6281. "collation": "utf8_general_ci",
  6282. "isNullable": true,
  6283. "defaultType": "Null",
  6284. "defaultValue": "",
  6285. "isOnUpdateCurrentTimestamp": false,
  6286. "isAutoInc": false,
  6287. "comment": "父级任务id",
  6288. "columnFormat": "",
  6289. "storage": "",
  6290. "isVirtual": false,
  6291. "isGeneratedAlways": false,
  6292. "virtualExpr": "",
  6293. "virtualType": "",
  6294. "oldName": "parent_task_id"
  6295. },
  6296. {
  6297. "objectType": "TableField_MYSQL",
  6298. "name": "handle_way_disabled",
  6299. "type": "varchar",
  6300. "length": 10,
  6301. "decimals": -2147483648,
  6302. "isUnsigned": false,
  6303. "isZeroFill": false,
  6304. "setEnumValues": "",
  6305. "isBinary": false,
  6306. "charset": "utf8",
  6307. "collation": "utf8_general_ci",
  6308. "isNullable": true,
  6309. "defaultType": "Null",
  6310. "defaultValue": "",
  6311. "isOnUpdateCurrentTimestamp": false,
  6312. "isAutoInc": false,
  6313. "comment": "有值则禁止修改处理方式",
  6314. "columnFormat": "",
  6315. "storage": "",
  6316. "isVirtual": false,
  6317. "isGeneratedAlways": false,
  6318. "virtualExpr": "",
  6319. "virtualType": "",
  6320. "oldName": "handle_way_disabled"
  6321. },
  6322. {
  6323. "objectType": "TableField_MYSQL",
  6324. "name": "real_complete_time",
  6325. "type": "datetime",
  6326. "length": -2147483648,
  6327. "decimals": -2147483648,
  6328. "isUnsigned": false,
  6329. "isZeroFill": false,
  6330. "setEnumValues": "",
  6331. "isBinary": false,
  6332. "charset": "",
  6333. "collation": "",
  6334. "isNullable": true,
  6335. "defaultType": "Null",
  6336. "defaultValue": "",
  6337. "isOnUpdateCurrentTimestamp": false,
  6338. "isAutoInc": false,
  6339. "comment": "实际完成时间",
  6340. "columnFormat": "",
  6341. "storage": "",
  6342. "isVirtual": false,
  6343. "isGeneratedAlways": false,
  6344. "virtualExpr": "",
  6345. "virtualType": "",
  6346. "oldName": "real_complete_time"
  6347. },
  6348. {
  6349. "objectType": "TableField_MYSQL",
  6350. "name": "instructions",
  6351. "type": "text",
  6352. "length": -2147483648,
  6353. "decimals": -2147483648,
  6354. "isUnsigned": false,
  6355. "isZeroFill": false,
  6356. "setEnumValues": "",
  6357. "isBinary": false,
  6358. "charset": "utf8",
  6359. "collation": "utf8_general_ci",
  6360. "isNullable": true,
  6361. "defaultType": "Null",
  6362. "defaultValue": "",
  6363. "isOnUpdateCurrentTimestamp": false,
  6364. "isAutoInc": false,
  6365. "comment": "任务具体说明",
  6366. "columnFormat": "",
  6367. "storage": "",
  6368. "isVirtual": false,
  6369. "isGeneratedAlways": false,
  6370. "virtualExpr": "",
  6371. "virtualType": "",
  6372. "oldName": "instructions"
  6373. }
  6374. ],
  6375. "indexes": [],
  6376. "primaryKey": {
  6377. "objectType": "PrimaryKey_MYSQL",
  6378. "name": "",
  6379. "fields": [
  6380. {
  6381. "objectType": "IndexField_MYSQL",
  6382. "name": "id",
  6383. "keyLength": 0,
  6384. "order": "",
  6385. "oldName": "id"
  6386. }
  6387. ],
  6388. "oldName": "",
  6389. "indexMethod": "BTREE",
  6390. "comment": ""
  6391. },
  6392. "foreignKeys": [],
  6393. "triggers": [],
  6394. "tablePartitions": []
  6395. },
  6396. {
  6397. "objectType": "Table_MYSQL",
  6398. "name": "oa_pro_type",
  6399. "comment": "项目类型",
  6400. "engine": "InnoDB",
  6401. "characterSet": "utf8",
  6402. "collation": "utf8_general_ci",
  6403. "autoIncrement": 0,
  6404. "tablespace": "",
  6405. "storage": "",
  6406. "insertMethod": "",
  6407. "connection": "",
  6408. "checksum": false,
  6409. "rowFormat": "Dynamic",
  6410. "avgRowLength": 0,
  6411. "maxRows": 0,
  6412. "minRows": 0,
  6413. "keyBlockSize": 0,
  6414. "packKeys": "",
  6415. "delayKeyWrite": false,
  6416. "dataDirectory": "",
  6417. "indexDirectory": "",
  6418. "statsAutoRecalc": "",
  6419. "statsPersistent": "",
  6420. "statsSamplePages": 0,
  6421. "union": "",
  6422. "pageCheckSum": false,
  6423. "transactional": false,
  6424. "compression": "",
  6425. "oldName": "oa_pro_type",
  6426. "encryption": false,
  6427. "createOptions": "",
  6428. "createTime": "2024-12-01 00:20:34",
  6429. "checkTime": "",
  6430. "dataFree": 0,
  6431. "dataLength": 16384,
  6432. "indexLength": 0,
  6433. "maxDataLength": 0,
  6434. "rows": 24,
  6435. "updateTime": "",
  6436. "DDL": "CREATE TABLE `oa_pro_type` (\n `id` varchar(50) NOT NULL,\n `pro_label` varchar(255) DEFAULT NULL COMMENT '项目类型',\n `pro_value` varchar(255) DEFAULT NULL COMMENT '项目子项值',\n `is_default` varchar(10) DEFAULT NULL COMMENT '是否默认 (1-默认)',\n `is_not_sign` varchar(10) DEFAULT NULL COMMENT '不需要签约 (0-需要签约,1-不需要)',\n `group_id` varchar(50) DEFAULT NULL COMMENT '集团ID',\n `created_by` varchar(64) DEFAULT NULL COMMENT '创建人id',\n `created_at` datetime DEFAULT NULL COMMENT '创建时间',\n `updated_by` varchar(64) DEFAULT NULL COMMENT '修改人id',\n `updated_at` datetime DEFAULT NULL COMMENT '修改时间',\n `firs` varchar(255) DEFAULT NULL COMMENT '备用',\n `second` varchar(255) DEFAULT NULL COMMENT '备用',\n PRIMARY KEY (`id`)\n) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='项目类型'",
  6437. "partitionBy": "",
  6438. "partitionByExpr": "",
  6439. "partitions": 0,
  6440. "partitionKeyAlgorithm": "",
  6441. "subPartitionBy": "",
  6442. "subPartitionByExpr": "",
  6443. "subPartitions": 0,
  6444. "subPartitionKeyAlgorithm": "",
  6445. "fields": [
  6446. {
  6447. "objectType": "TableField_MYSQL",
  6448. "name": "id",
  6449. "type": "varchar",
  6450. "length": 50,
  6451. "decimals": -2147483648,
  6452. "isUnsigned": false,
  6453. "isZeroFill": false,
  6454. "setEnumValues": "",
  6455. "isBinary": false,
  6456. "charset": "utf8",
  6457. "collation": "utf8_general_ci",
  6458. "isNullable": false,
  6459. "defaultType": "Others",
  6460. "defaultValue": "",
  6461. "isOnUpdateCurrentTimestamp": false,
  6462. "isAutoInc": false,
  6463. "comment": "",
  6464. "columnFormat": "",
  6465. "storage": "",
  6466. "isVirtual": false,
  6467. "isGeneratedAlways": false,
  6468. "virtualExpr": "",
  6469. "virtualType": "",
  6470. "oldName": "id"
  6471. },
  6472. {
  6473. "objectType": "TableField_MYSQL",
  6474. "name": "pro_label",
  6475. "type": "varchar",
  6476. "length": 255,
  6477. "decimals": -2147483648,
  6478. "isUnsigned": false,
  6479. "isZeroFill": false,
  6480. "setEnumValues": "",
  6481. "isBinary": false,
  6482. "charset": "utf8",
  6483. "collation": "utf8_general_ci",
  6484. "isNullable": true,
  6485. "defaultType": "Null",
  6486. "defaultValue": "",
  6487. "isOnUpdateCurrentTimestamp": false,
  6488. "isAutoInc": false,
  6489. "comment": "项目类型",
  6490. "columnFormat": "",
  6491. "storage": "",
  6492. "isVirtual": false,
  6493. "isGeneratedAlways": false,
  6494. "virtualExpr": "",
  6495. "virtualType": "",
  6496. "oldName": "pro_label"
  6497. },
  6498. {
  6499. "objectType": "TableField_MYSQL",
  6500. "name": "pro_value",
  6501. "type": "varchar",
  6502. "length": 255,
  6503. "decimals": -2147483648,
  6504. "isUnsigned": false,
  6505. "isZeroFill": false,
  6506. "setEnumValues": "",
  6507. "isBinary": false,
  6508. "charset": "utf8",
  6509. "collation": "utf8_general_ci",
  6510. "isNullable": true,
  6511. "defaultType": "Null",
  6512. "defaultValue": "",
  6513. "isOnUpdateCurrentTimestamp": false,
  6514. "isAutoInc": false,
  6515. "comment": "项目子项值",
  6516. "columnFormat": "",
  6517. "storage": "",
  6518. "isVirtual": false,
  6519. "isGeneratedAlways": false,
  6520. "virtualExpr": "",
  6521. "virtualType": "",
  6522. "oldName": "pro_value"
  6523. },
  6524. {
  6525. "objectType": "TableField_MYSQL",
  6526. "name": "is_default",
  6527. "type": "varchar",
  6528. "length": 10,
  6529. "decimals": -2147483648,
  6530. "isUnsigned": false,
  6531. "isZeroFill": false,
  6532. "setEnumValues": "",
  6533. "isBinary": false,
  6534. "charset": "utf8",
  6535. "collation": "utf8_general_ci",
  6536. "isNullable": true,
  6537. "defaultType": "Null",
  6538. "defaultValue": "",
  6539. "isOnUpdateCurrentTimestamp": false,
  6540. "isAutoInc": false,
  6541. "comment": "是否默认 (1-默认)",
  6542. "columnFormat": "",
  6543. "storage": "",
  6544. "isVirtual": false,
  6545. "isGeneratedAlways": false,
  6546. "virtualExpr": "",
  6547. "virtualType": "",
  6548. "oldName": "is_default"
  6549. },
  6550. {
  6551. "objectType": "TableField_MYSQL",
  6552. "name": "is_not_sign",
  6553. "type": "varchar",
  6554. "length": 10,
  6555. "decimals": -2147483648,
  6556. "isUnsigned": false,
  6557. "isZeroFill": false,
  6558. "setEnumValues": "",
  6559. "isBinary": false,
  6560. "charset": "utf8",
  6561. "collation": "utf8_general_ci",
  6562. "isNullable": true,
  6563. "defaultType": "Null",
  6564. "defaultValue": "",
  6565. "isOnUpdateCurrentTimestamp": false,
  6566. "isAutoInc": false,
  6567. "comment": "不需要签约 (0-需要签约,1-不需要)",
  6568. "columnFormat": "",
  6569. "storage": "",
  6570. "isVirtual": false,
  6571. "isGeneratedAlways": false,
  6572. "virtualExpr": "",
  6573. "virtualType": "",
  6574. "oldName": "is_not_sign"
  6575. },
  6576. {
  6577. "objectType": "TableField_MYSQL",
  6578. "name": "group_id",
  6579. "type": "varchar",
  6580. "length": 50,
  6581. "decimals": -2147483648,
  6582. "isUnsigned": false,
  6583. "isZeroFill": false,
  6584. "setEnumValues": "",
  6585. "isBinary": false,
  6586. "charset": "utf8",
  6587. "collation": "utf8_general_ci",
  6588. "isNullable": true,
  6589. "defaultType": "Null",
  6590. "defaultValue": "",
  6591. "isOnUpdateCurrentTimestamp": false,
  6592. "isAutoInc": false,
  6593. "comment": "集团ID",
  6594. "columnFormat": "",
  6595. "storage": "",
  6596. "isVirtual": false,
  6597. "isGeneratedAlways": false,
  6598. "virtualExpr": "",
  6599. "virtualType": "",
  6600. "oldName": "group_id"
  6601. },
  6602. {
  6603. "objectType": "TableField_MYSQL",
  6604. "name": "created_by",
  6605. "type": "varchar",
  6606. "length": 64,
  6607. "decimals": -2147483648,
  6608. "isUnsigned": false,
  6609. "isZeroFill": false,
  6610. "setEnumValues": "",
  6611. "isBinary": false,
  6612. "charset": "utf8",
  6613. "collation": "utf8_general_ci",
  6614. "isNullable": true,
  6615. "defaultType": "Null",
  6616. "defaultValue": "",
  6617. "isOnUpdateCurrentTimestamp": false,
  6618. "isAutoInc": false,
  6619. "comment": "创建人id",
  6620. "columnFormat": "",
  6621. "storage": "",
  6622. "isVirtual": false,
  6623. "isGeneratedAlways": false,
  6624. "virtualExpr": "",
  6625. "virtualType": "",
  6626. "oldName": "created_by"
  6627. },
  6628. {
  6629. "objectType": "TableField_MYSQL",
  6630. "name": "created_at",
  6631. "type": "datetime",
  6632. "length": -2147483648,
  6633. "decimals": -2147483648,
  6634. "isUnsigned": false,
  6635. "isZeroFill": false,
  6636. "setEnumValues": "",
  6637. "isBinary": false,
  6638. "charset": "",
  6639. "collation": "",
  6640. "isNullable": true,
  6641. "defaultType": "Null",
  6642. "defaultValue": "",
  6643. "isOnUpdateCurrentTimestamp": false,
  6644. "isAutoInc": false,
  6645. "comment": "创建时间",
  6646. "columnFormat": "",
  6647. "storage": "",
  6648. "isVirtual": false,
  6649. "isGeneratedAlways": false,
  6650. "virtualExpr": "",
  6651. "virtualType": "",
  6652. "oldName": "created_at"
  6653. },
  6654. {
  6655. "objectType": "TableField_MYSQL",
  6656. "name": "updated_by",
  6657. "type": "varchar",
  6658. "length": 64,
  6659. "decimals": -2147483648,
  6660. "isUnsigned": false,
  6661. "isZeroFill": false,
  6662. "setEnumValues": "",
  6663. "isBinary": false,
  6664. "charset": "utf8",
  6665. "collation": "utf8_general_ci",
  6666. "isNullable": true,
  6667. "defaultType": "Null",
  6668. "defaultValue": "",
  6669. "isOnUpdateCurrentTimestamp": false,
  6670. "isAutoInc": false,
  6671. "comment": "修改人id",
  6672. "columnFormat": "",
  6673. "storage": "",
  6674. "isVirtual": false,
  6675. "isGeneratedAlways": false,
  6676. "virtualExpr": "",
  6677. "virtualType": "",
  6678. "oldName": "updated_by"
  6679. },
  6680. {
  6681. "objectType": "TableField_MYSQL",
  6682. "name": "updated_at",
  6683. "type": "datetime",
  6684. "length": -2147483648,
  6685. "decimals": -2147483648,
  6686. "isUnsigned": false,
  6687. "isZeroFill": false,
  6688. "setEnumValues": "",
  6689. "isBinary": false,
  6690. "charset": "",
  6691. "collation": "",
  6692. "isNullable": true,
  6693. "defaultType": "Null",
  6694. "defaultValue": "",
  6695. "isOnUpdateCurrentTimestamp": false,
  6696. "isAutoInc": false,
  6697. "comment": "修改时间",
  6698. "columnFormat": "",
  6699. "storage": "",
  6700. "isVirtual": false,
  6701. "isGeneratedAlways": false,
  6702. "virtualExpr": "",
  6703. "virtualType": "",
  6704. "oldName": "updated_at"
  6705. },
  6706. {
  6707. "objectType": "TableField_MYSQL",
  6708. "name": "firs",
  6709. "type": "varchar",
  6710. "length": 255,
  6711. "decimals": -2147483648,
  6712. "isUnsigned": false,
  6713. "isZeroFill": false,
  6714. "setEnumValues": "",
  6715. "isBinary": false,
  6716. "charset": "utf8",
  6717. "collation": "utf8_general_ci",
  6718. "isNullable": true,
  6719. "defaultType": "Null",
  6720. "defaultValue": "",
  6721. "isOnUpdateCurrentTimestamp": false,
  6722. "isAutoInc": false,
  6723. "comment": "备用",
  6724. "columnFormat": "",
  6725. "storage": "",
  6726. "isVirtual": false,
  6727. "isGeneratedAlways": false,
  6728. "virtualExpr": "",
  6729. "virtualType": "",
  6730. "oldName": "firs"
  6731. },
  6732. {
  6733. "objectType": "TableField_MYSQL",
  6734. "name": "second",
  6735. "type": "varchar",
  6736. "length": 255,
  6737. "decimals": -2147483648,
  6738. "isUnsigned": false,
  6739. "isZeroFill": false,
  6740. "setEnumValues": "",
  6741. "isBinary": false,
  6742. "charset": "utf8",
  6743. "collation": "utf8_general_ci",
  6744. "isNullable": true,
  6745. "defaultType": "Null",
  6746. "defaultValue": "",
  6747. "isOnUpdateCurrentTimestamp": false,
  6748. "isAutoInc": false,
  6749. "comment": "备用",
  6750. "columnFormat": "",
  6751. "storage": "",
  6752. "isVirtual": false,
  6753. "isGeneratedAlways": false,
  6754. "virtualExpr": "",
  6755. "virtualType": "",
  6756. "oldName": "second"
  6757. }
  6758. ],
  6759. "indexes": [],
  6760. "primaryKey": {
  6761. "objectType": "PrimaryKey_MYSQL",
  6762. "name": "",
  6763. "fields": [
  6764. {
  6765. "objectType": "IndexField_MYSQL",
  6766. "name": "id",
  6767. "keyLength": 0,
  6768. "order": "",
  6769. "oldName": "id"
  6770. }
  6771. ],
  6772. "oldName": "",
  6773. "indexMethod": "BTREE",
  6774. "comment": ""
  6775. },
  6776. "foreignKeys": [],
  6777. "triggers": [],
  6778. "tablePartitions": []
  6779. },
  6780. {
  6781. "objectType": "Table_MYSQL",
  6782. "name": "oa_user_cost",
  6783. "comment": "人员成本设定",
  6784. "engine": "InnoDB",
  6785. "characterSet": "utf8",
  6786. "collation": "utf8_general_ci",
  6787. "autoIncrement": 0,
  6788. "tablespace": "",
  6789. "storage": "",
  6790. "insertMethod": "",
  6791. "connection": "",
  6792. "checksum": false,
  6793. "rowFormat": "Dynamic",
  6794. "avgRowLength": 0,
  6795. "maxRows": 0,
  6796. "minRows": 0,
  6797. "keyBlockSize": 0,
  6798. "packKeys": "",
  6799. "delayKeyWrite": false,
  6800. "dataDirectory": "",
  6801. "indexDirectory": "",
  6802. "statsAutoRecalc": "",
  6803. "statsPersistent": "",
  6804. "statsSamplePages": 0,
  6805. "union": "",
  6806. "pageCheckSum": false,
  6807. "transactional": false,
  6808. "compression": "",
  6809. "oldName": "oa_user_cost",
  6810. "encryption": false,
  6811. "createOptions": "",
  6812. "createTime": "2024-12-01 00:20:45",
  6813. "checkTime": "",
  6814. "dataFree": 0,
  6815. "dataLength": 81920,
  6816. "indexLength": 16384,
  6817. "maxDataLength": 0,
  6818. "rows": 392,
  6819. "updateTime": "",
  6820. "DDL": "CREATE TABLE `oa_user_cost` (\n `id` varchar(100) NOT NULL COMMENT '主键',\n `post_id` varchar(100) DEFAULT NULL COMMENT '岗位id',\n `post_name` varchar(100) DEFAULT NULL COMMENT '岗位名称',\n `post_level` varchar(100) DEFAULT NULL COMMENT '岗位层级',\n `post_cost` decimal(18,2) DEFAULT NULL COMMENT '人力成本',\n `effect_date` datetime DEFAULT NULL COMMENT '生效日期',\n `create_user` varchar(100) DEFAULT NULL COMMENT '创建人',\n `create_time` datetime DEFAULT NULL COMMENT '创建时间',\n `update_user` varchar(100) DEFAULT NULL COMMENT '更新人',\n `update_time` datetime DEFAULT NULL COMMENT '更新时间',\n `group_id` varchar(100) DEFAULT NULL COMMENT '集团id',\n PRIMARY KEY (`id`),\n KEY `oa_user_cost_group_id_index` (`group_id`)\n) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='人员成本设定'",
  6821. "partitionBy": "",
  6822. "partitionByExpr": "",
  6823. "partitions": 0,
  6824. "partitionKeyAlgorithm": "",
  6825. "subPartitionBy": "",
  6826. "subPartitionByExpr": "",
  6827. "subPartitions": 0,
  6828. "subPartitionKeyAlgorithm": "",
  6829. "fields": [
  6830. {
  6831. "objectType": "TableField_MYSQL",
  6832. "name": "id",
  6833. "type": "varchar",
  6834. "length": 100,
  6835. "decimals": -2147483648,
  6836. "isUnsigned": false,
  6837. "isZeroFill": false,
  6838. "setEnumValues": "",
  6839. "isBinary": false,
  6840. "charset": "utf8",
  6841. "collation": "utf8_general_ci",
  6842. "isNullable": false,
  6843. "defaultType": "Others",
  6844. "defaultValue": "",
  6845. "isOnUpdateCurrentTimestamp": false,
  6846. "isAutoInc": false,
  6847. "comment": "主键",
  6848. "columnFormat": "",
  6849. "storage": "",
  6850. "isVirtual": false,
  6851. "isGeneratedAlways": false,
  6852. "virtualExpr": "",
  6853. "virtualType": "",
  6854. "oldName": "id"
  6855. },
  6856. {
  6857. "objectType": "TableField_MYSQL",
  6858. "name": "post_id",
  6859. "type": "varchar",
  6860. "length": 100,
  6861. "decimals": -2147483648,
  6862. "isUnsigned": false,
  6863. "isZeroFill": false,
  6864. "setEnumValues": "",
  6865. "isBinary": false,
  6866. "charset": "utf8",
  6867. "collation": "utf8_general_ci",
  6868. "isNullable": true,
  6869. "defaultType": "Null",
  6870. "defaultValue": "",
  6871. "isOnUpdateCurrentTimestamp": false,
  6872. "isAutoInc": false,
  6873. "comment": "岗位id",
  6874. "columnFormat": "",
  6875. "storage": "",
  6876. "isVirtual": false,
  6877. "isGeneratedAlways": false,
  6878. "virtualExpr": "",
  6879. "virtualType": "",
  6880. "oldName": "post_id"
  6881. },
  6882. {
  6883. "objectType": "TableField_MYSQL",
  6884. "name": "post_name",
  6885. "type": "varchar",
  6886. "length": 100,
  6887. "decimals": -2147483648,
  6888. "isUnsigned": false,
  6889. "isZeroFill": false,
  6890. "setEnumValues": "",
  6891. "isBinary": false,
  6892. "charset": "utf8",
  6893. "collation": "utf8_general_ci",
  6894. "isNullable": true,
  6895. "defaultType": "Null",
  6896. "defaultValue": "",
  6897. "isOnUpdateCurrentTimestamp": false,
  6898. "isAutoInc": false,
  6899. "comment": "岗位名称",
  6900. "columnFormat": "",
  6901. "storage": "",
  6902. "isVirtual": false,
  6903. "isGeneratedAlways": false,
  6904. "virtualExpr": "",
  6905. "virtualType": "",
  6906. "oldName": "post_name"
  6907. },
  6908. {
  6909. "objectType": "TableField_MYSQL",
  6910. "name": "post_level",
  6911. "type": "varchar",
  6912. "length": 100,
  6913. "decimals": -2147483648,
  6914. "isUnsigned": false,
  6915. "isZeroFill": false,
  6916. "setEnumValues": "",
  6917. "isBinary": false,
  6918. "charset": "utf8",
  6919. "collation": "utf8_general_ci",
  6920. "isNullable": true,
  6921. "defaultType": "Null",
  6922. "defaultValue": "",
  6923. "isOnUpdateCurrentTimestamp": false,
  6924. "isAutoInc": false,
  6925. "comment": "岗位层级",
  6926. "columnFormat": "",
  6927. "storage": "",
  6928. "isVirtual": false,
  6929. "isGeneratedAlways": false,
  6930. "virtualExpr": "",
  6931. "virtualType": "",
  6932. "oldName": "post_level"
  6933. },
  6934. {
  6935. "objectType": "TableField_MYSQL",
  6936. "name": "post_cost",
  6937. "type": "decimal",
  6938. "length": 18,
  6939. "decimals": 2,
  6940. "isUnsigned": false,
  6941. "isZeroFill": false,
  6942. "setEnumValues": "",
  6943. "isBinary": false,
  6944. "charset": "",
  6945. "collation": "",
  6946. "isNullable": true,
  6947. "defaultType": "Null",
  6948. "defaultValue": "",
  6949. "isOnUpdateCurrentTimestamp": false,
  6950. "isAutoInc": false,
  6951. "comment": "人力成本",
  6952. "columnFormat": "",
  6953. "storage": "",
  6954. "isVirtual": false,
  6955. "isGeneratedAlways": false,
  6956. "virtualExpr": "",
  6957. "virtualType": "",
  6958. "oldName": "post_cost"
  6959. },
  6960. {
  6961. "objectType": "TableField_MYSQL",
  6962. "name": "effect_date",
  6963. "type": "datetime",
  6964. "length": -2147483648,
  6965. "decimals": -2147483648,
  6966. "isUnsigned": false,
  6967. "isZeroFill": false,
  6968. "setEnumValues": "",
  6969. "isBinary": false,
  6970. "charset": "",
  6971. "collation": "",
  6972. "isNullable": true,
  6973. "defaultType": "Null",
  6974. "defaultValue": "",
  6975. "isOnUpdateCurrentTimestamp": false,
  6976. "isAutoInc": false,
  6977. "comment": "生效日期",
  6978. "columnFormat": "",
  6979. "storage": "",
  6980. "isVirtual": false,
  6981. "isGeneratedAlways": false,
  6982. "virtualExpr": "",
  6983. "virtualType": "",
  6984. "oldName": "effect_date"
  6985. },
  6986. {
  6987. "objectType": "TableField_MYSQL",
  6988. "name": "create_user",
  6989. "type": "varchar",
  6990. "length": 100,
  6991. "decimals": -2147483648,
  6992. "isUnsigned": false,
  6993. "isZeroFill": false,
  6994. "setEnumValues": "",
  6995. "isBinary": false,
  6996. "charset": "utf8",
  6997. "collation": "utf8_general_ci",
  6998. "isNullable": true,
  6999. "defaultType": "Null",
  7000. "defaultValue": "",
  7001. "isOnUpdateCurrentTimestamp": false,
  7002. "isAutoInc": false,
  7003. "comment": "创建人",
  7004. "columnFormat": "",
  7005. "storage": "",
  7006. "isVirtual": false,
  7007. "isGeneratedAlways": false,
  7008. "virtualExpr": "",
  7009. "virtualType": "",
  7010. "oldName": "create_user"
  7011. },
  7012. {
  7013. "objectType": "TableField_MYSQL",
  7014. "name": "create_time",
  7015. "type": "datetime",
  7016. "length": -2147483648,
  7017. "decimals": -2147483648,
  7018. "isUnsigned": false,
  7019. "isZeroFill": false,
  7020. "setEnumValues": "",
  7021. "isBinary": false,
  7022. "charset": "",
  7023. "collation": "",
  7024. "isNullable": true,
  7025. "defaultType": "Null",
  7026. "defaultValue": "",
  7027. "isOnUpdateCurrentTimestamp": false,
  7028. "isAutoInc": false,
  7029. "comment": "创建时间",
  7030. "columnFormat": "",
  7031. "storage": "",
  7032. "isVirtual": false,
  7033. "isGeneratedAlways": false,
  7034. "virtualExpr": "",
  7035. "virtualType": "",
  7036. "oldName": "create_time"
  7037. },
  7038. {
  7039. "objectType": "TableField_MYSQL",
  7040. "name": "update_user",
  7041. "type": "varchar",
  7042. "length": 100,
  7043. "decimals": -2147483648,
  7044. "isUnsigned": false,
  7045. "isZeroFill": false,
  7046. "setEnumValues": "",
  7047. "isBinary": false,
  7048. "charset": "utf8",
  7049. "collation": "utf8_general_ci",
  7050. "isNullable": true,
  7051. "defaultType": "Null",
  7052. "defaultValue": "",
  7053. "isOnUpdateCurrentTimestamp": false,
  7054. "isAutoInc": false,
  7055. "comment": "更新人",
  7056. "columnFormat": "",
  7057. "storage": "",
  7058. "isVirtual": false,
  7059. "isGeneratedAlways": false,
  7060. "virtualExpr": "",
  7061. "virtualType": "",
  7062. "oldName": "update_user"
  7063. },
  7064. {
  7065. "objectType": "TableField_MYSQL",
  7066. "name": "update_time",
  7067. "type": "datetime",
  7068. "length": -2147483648,
  7069. "decimals": -2147483648,
  7070. "isUnsigned": false,
  7071. "isZeroFill": false,
  7072. "setEnumValues": "",
  7073. "isBinary": false,
  7074. "charset": "",
  7075. "collation": "",
  7076. "isNullable": true,
  7077. "defaultType": "Null",
  7078. "defaultValue": "",
  7079. "isOnUpdateCurrentTimestamp": false,
  7080. "isAutoInc": false,
  7081. "comment": "更新时间",
  7082. "columnFormat": "",
  7083. "storage": "",
  7084. "isVirtual": false,
  7085. "isGeneratedAlways": false,
  7086. "virtualExpr": "",
  7087. "virtualType": "",
  7088. "oldName": "update_time"
  7089. },
  7090. {
  7091. "objectType": "TableField_MYSQL",
  7092. "name": "group_id",
  7093. "type": "varchar",
  7094. "length": 100,
  7095. "decimals": -2147483648,
  7096. "isUnsigned": false,
  7097. "isZeroFill": false,
  7098. "setEnumValues": "",
  7099. "isBinary": false,
  7100. "charset": "utf8",
  7101. "collation": "utf8_general_ci",
  7102. "isNullable": true,
  7103. "defaultType": "Null",
  7104. "defaultValue": "",
  7105. "isOnUpdateCurrentTimestamp": false,
  7106. "isAutoInc": false,
  7107. "comment": "集团id",
  7108. "columnFormat": "",
  7109. "storage": "",
  7110. "isVirtual": false,
  7111. "isGeneratedAlways": false,
  7112. "virtualExpr": "",
  7113. "virtualType": "",
  7114. "oldName": "group_id"
  7115. }
  7116. ],
  7117. "indexes": [
  7118. {
  7119. "objectType": "Index_MYSQL",
  7120. "name": "oa_user_cost_group_id_index",
  7121. "type": "NORMAL",
  7122. "method": "BTREE",
  7123. "comment": "",
  7124. "oldName": "oa_user_cost_group_id_index",
  7125. "online": false,
  7126. "keyBlockSize": 0,
  7127. "parser": "",
  7128. "algorithm": "",
  7129. "lock": "",
  7130. "collation": "A",
  7131. "cardinality": "5",
  7132. "packed": "",
  7133. "fields": [
  7134. {
  7135. "objectType": "IndexField_MYSQL",
  7136. "name": "group_id",
  7137. "keyLength": 0,
  7138. "order": "",
  7139. "oldName": "group_id"
  7140. }
  7141. ]
  7142. }
  7143. ],
  7144. "primaryKey": {
  7145. "objectType": "PrimaryKey_MYSQL",
  7146. "name": "",
  7147. "fields": [
  7148. {
  7149. "objectType": "IndexField_MYSQL",
  7150. "name": "id",
  7151. "keyLength": 0,
  7152. "order": "",
  7153. "oldName": "id"
  7154. }
  7155. ],
  7156. "oldName": "",
  7157. "indexMethod": "BTREE",
  7158. "comment": ""
  7159. },
  7160. "foreignKeys": [],
  7161. "triggers": [],
  7162. "tablePartitions": []
  7163. },
  7164. {
  7165. "objectType": "Table_MYSQL",
  7166. "name": "out_order_main",
  7167. "comment": "外包采购单",
  7168. "engine": "InnoDB",
  7169. "characterSet": "utf8",
  7170. "collation": "utf8_general_ci",
  7171. "autoIncrement": 0,
  7172. "tablespace": "",
  7173. "storage": "",
  7174. "insertMethod": "",
  7175. "connection": "",
  7176. "checksum": false,
  7177. "rowFormat": "DYNAMIC",
  7178. "avgRowLength": 0,
  7179. "maxRows": 0,
  7180. "minRows": 0,
  7181. "keyBlockSize": 0,
  7182. "packKeys": "",
  7183. "delayKeyWrite": false,
  7184. "dataDirectory": "",
  7185. "indexDirectory": "",
  7186. "statsAutoRecalc": "",
  7187. "statsPersistent": "",
  7188. "statsSamplePages": 0,
  7189. "union": "",
  7190. "pageCheckSum": false,
  7191. "transactional": false,
  7192. "compression": "",
  7193. "oldName": "out_order_main",
  7194. "encryption": false,
  7195. "createOptions": "row_format=DYNAMIC",
  7196. "createTime": "2024-12-01 00:20:45",
  7197. "checkTime": "",
  7198. "dataFree": 0,
  7199. "dataLength": 16384,
  7200. "indexLength": 0,
  7201. "maxDataLength": 0,
  7202. "rows": 38,
  7203. "updateTime": "",
  7204. "DDL": "CREATE TABLE `out_order_main` (\n `id` varchar(50) NOT NULL,\n `pro_id` varchar(50) DEFAULT NULL COMMENT '项目ID',\n `pro_name` varchar(255) DEFAULT NULL COMMENT '项目名称',\n `cust_name` varchar(255) DEFAULT NULL COMMENT '客户名称',\n `status` varchar(1) DEFAULT '0' COMMENT '订单状态,0-待支付,1-部分支付,2-已支付',\n `biz_id` varchar(50) DEFAULT NULL COMMENT '外采团队ID',\n `biz_name` varchar(255) DEFAULT NULL,\n `biz_by` varchar(50) DEFAULT NULL COMMENT '外包联系人',\n `order_no` varchar(50) DEFAULT NULL COMMENT '采购单号',\n `deal_at` datetime DEFAULT NULL COMMENT '发包时间',\n `out_timeline` datetime DEFAULT NULL COMMENT '要求完成时间',\n `delivery_at` datetime DEFAULT NULL COMMENT '交付时间',\n `trans_at` datetime DEFAULT NULL COMMENT '移交时间',\n `order_amount` double DEFAULT NULL COMMENT '订单总金额',\n `tax_rate` double DEFAULT NULL COMMENT '税率',\n `procure_content` varchar(2000) DEFAULT NULL COMMENT '采购内容',\n `procure_file` text COMMENT '采购附件',\n `pid_amount` double DEFAULT NULL COMMENT '已付款',\n `should_amount` double DEFAULT NULL COMMENT '应付款',\n `pay_type` varchar(255) DEFAULT NULL COMMENT '支付方式',\n `deal_by` varchar(50) DEFAULT NULL COMMENT '发包人',\n `created_at` datetime DEFAULT NULL COMMENT '创建时间',\n `created_by` varchar(50) DEFAULT NULL COMMENT '创建人',\n `updated_by` varchar(50) DEFAULT NULL COMMENT '更新人',\n `updated_at` datetime DEFAULT NULL COMMENT '更新时间',\n `first` varchar(255) DEFAULT NULL COMMENT '备用字段',\n `second` varchar(255) DEFAULT NULL COMMENT '备用字段',\n `remark` varchar(255) DEFAULT NULL COMMENT '备注',\n `source` varchar(255) DEFAULT NULL COMMENT '来源',\n `group_id` varchar(50) DEFAULT NULL COMMENT '集团ID',\n `supplier_id` varchar(100) DEFAULT NULL COMMENT '供应商id',\n `amount_belong` varchar(100) DEFAULT NULL COMMENT '费用、成本归属',\n `amount_belong_type` varchar(100) DEFAULT NULL COMMENT '费用、成本归属类型',\n `excluding_order_amount` double DEFAULT NULL COMMENT '采购金额(不含税)',\n PRIMARY KEY (`id`) USING BTREE\n) ENGINE=InnoDB DEFAULT CHARSET=utf8 ROW_FORMAT=DYNAMIC COMMENT='外包采购单'",
  7205. "partitionBy": "",
  7206. "partitionByExpr": "",
  7207. "partitions": 0,
  7208. "partitionKeyAlgorithm": "",
  7209. "subPartitionBy": "",
  7210. "subPartitionByExpr": "",
  7211. "subPartitions": 0,
  7212. "subPartitionKeyAlgorithm": "",
  7213. "fields": [
  7214. {
  7215. "objectType": "TableField_MYSQL",
  7216. "name": "id",
  7217. "type": "varchar",
  7218. "length": 50,
  7219. "decimals": -2147483648,
  7220. "isUnsigned": false,
  7221. "isZeroFill": false,
  7222. "setEnumValues": "",
  7223. "isBinary": false,
  7224. "charset": "utf8",
  7225. "collation": "utf8_general_ci",
  7226. "isNullable": false,
  7227. "defaultType": "Others",
  7228. "defaultValue": "",
  7229. "isOnUpdateCurrentTimestamp": false,
  7230. "isAutoInc": false,
  7231. "comment": "",
  7232. "columnFormat": "",
  7233. "storage": "",
  7234. "isVirtual": false,
  7235. "isGeneratedAlways": false,
  7236. "virtualExpr": "",
  7237. "virtualType": "",
  7238. "oldName": "id"
  7239. },
  7240. {
  7241. "objectType": "TableField_MYSQL",
  7242. "name": "pro_id",
  7243. "type": "varchar",
  7244. "length": 50,
  7245. "decimals": -2147483648,
  7246. "isUnsigned": false,
  7247. "isZeroFill": false,
  7248. "setEnumValues": "",
  7249. "isBinary": false,
  7250. "charset": "utf8",
  7251. "collation": "utf8_general_ci",
  7252. "isNullable": true,
  7253. "defaultType": "Null",
  7254. "defaultValue": "",
  7255. "isOnUpdateCurrentTimestamp": false,
  7256. "isAutoInc": false,
  7257. "comment": "项目ID",
  7258. "columnFormat": "",
  7259. "storage": "",
  7260. "isVirtual": false,
  7261. "isGeneratedAlways": false,
  7262. "virtualExpr": "",
  7263. "virtualType": "",
  7264. "oldName": "pro_id"
  7265. },
  7266. {
  7267. "objectType": "TableField_MYSQL",
  7268. "name": "pro_name",
  7269. "type": "varchar",
  7270. "length": 255,
  7271. "decimals": -2147483648,
  7272. "isUnsigned": false,
  7273. "isZeroFill": false,
  7274. "setEnumValues": "",
  7275. "isBinary": false,
  7276. "charset": "utf8",
  7277. "collation": "utf8_general_ci",
  7278. "isNullable": true,
  7279. "defaultType": "Null",
  7280. "defaultValue": "",
  7281. "isOnUpdateCurrentTimestamp": false,
  7282. "isAutoInc": false,
  7283. "comment": "项目名称",
  7284. "columnFormat": "",
  7285. "storage": "",
  7286. "isVirtual": false,
  7287. "isGeneratedAlways": false,
  7288. "virtualExpr": "",
  7289. "virtualType": "",
  7290. "oldName": "pro_name"
  7291. },
  7292. {
  7293. "objectType": "TableField_MYSQL",
  7294. "name": "cust_name",
  7295. "type": "varchar",
  7296. "length": 255,
  7297. "decimals": -2147483648,
  7298. "isUnsigned": false,
  7299. "isZeroFill": false,
  7300. "setEnumValues": "",
  7301. "isBinary": false,
  7302. "charset": "utf8",
  7303. "collation": "utf8_general_ci",
  7304. "isNullable": true,
  7305. "defaultType": "Null",
  7306. "defaultValue": "",
  7307. "isOnUpdateCurrentTimestamp": false,
  7308. "isAutoInc": false,
  7309. "comment": "客户名称",
  7310. "columnFormat": "",
  7311. "storage": "",
  7312. "isVirtual": false,
  7313. "isGeneratedAlways": false,
  7314. "virtualExpr": "",
  7315. "virtualType": "",
  7316. "oldName": "cust_name"
  7317. },
  7318. {
  7319. "objectType": "TableField_MYSQL",
  7320. "name": "status",
  7321. "type": "varchar",
  7322. "length": 1,
  7323. "decimals": -2147483648,
  7324. "isUnsigned": false,
  7325. "isZeroFill": false,
  7326. "setEnumValues": "",
  7327. "isBinary": false,
  7328. "charset": "utf8",
  7329. "collation": "utf8_general_ci",
  7330. "isNullable": true,
  7331. "defaultType": "Others",
  7332. "defaultValue": "'0'",
  7333. "isOnUpdateCurrentTimestamp": false,
  7334. "isAutoInc": false,
  7335. "comment": "订单状态,0-待支付,1-部分支付,2-已支付",
  7336. "columnFormat": "",
  7337. "storage": "",
  7338. "isVirtual": false,
  7339. "isGeneratedAlways": false,
  7340. "virtualExpr": "",
  7341. "virtualType": "",
  7342. "oldName": "status"
  7343. },
  7344. {
  7345. "objectType": "TableField_MYSQL",
  7346. "name": "biz_id",
  7347. "type": "varchar",
  7348. "length": 50,
  7349. "decimals": -2147483648,
  7350. "isUnsigned": false,
  7351. "isZeroFill": false,
  7352. "setEnumValues": "",
  7353. "isBinary": false,
  7354. "charset": "utf8",
  7355. "collation": "utf8_general_ci",
  7356. "isNullable": true,
  7357. "defaultType": "Null",
  7358. "defaultValue": "",
  7359. "isOnUpdateCurrentTimestamp": false,
  7360. "isAutoInc": false,
  7361. "comment": "外采团队ID",
  7362. "columnFormat": "",
  7363. "storage": "",
  7364. "isVirtual": false,
  7365. "isGeneratedAlways": false,
  7366. "virtualExpr": "",
  7367. "virtualType": "",
  7368. "oldName": "biz_id"
  7369. },
  7370. {
  7371. "objectType": "TableField_MYSQL",
  7372. "name": "biz_name",
  7373. "type": "varchar",
  7374. "length": 255,
  7375. "decimals": -2147483648,
  7376. "isUnsigned": false,
  7377. "isZeroFill": false,
  7378. "setEnumValues": "",
  7379. "isBinary": false,
  7380. "charset": "utf8",
  7381. "collation": "utf8_general_ci",
  7382. "isNullable": true,
  7383. "defaultType": "Null",
  7384. "defaultValue": "",
  7385. "isOnUpdateCurrentTimestamp": false,
  7386. "isAutoInc": false,
  7387. "comment": "",
  7388. "columnFormat": "",
  7389. "storage": "",
  7390. "isVirtual": false,
  7391. "isGeneratedAlways": false,
  7392. "virtualExpr": "",
  7393. "virtualType": "",
  7394. "oldName": "biz_name"
  7395. },
  7396. {
  7397. "objectType": "TableField_MYSQL",
  7398. "name": "biz_by",
  7399. "type": "varchar",
  7400. "length": 50,
  7401. "decimals": -2147483648,
  7402. "isUnsigned": false,
  7403. "isZeroFill": false,
  7404. "setEnumValues": "",
  7405. "isBinary": false,
  7406. "charset": "utf8",
  7407. "collation": "utf8_general_ci",
  7408. "isNullable": true,
  7409. "defaultType": "Null",
  7410. "defaultValue": "",
  7411. "isOnUpdateCurrentTimestamp": false,
  7412. "isAutoInc": false,
  7413. "comment": "外包联系人",
  7414. "columnFormat": "",
  7415. "storage": "",
  7416. "isVirtual": false,
  7417. "isGeneratedAlways": false,
  7418. "virtualExpr": "",
  7419. "virtualType": "",
  7420. "oldName": "biz_by"
  7421. },
  7422. {
  7423. "objectType": "TableField_MYSQL",
  7424. "name": "order_no",
  7425. "type": "varchar",
  7426. "length": 50,
  7427. "decimals": -2147483648,
  7428. "isUnsigned": false,
  7429. "isZeroFill": false,
  7430. "setEnumValues": "",
  7431. "isBinary": false,
  7432. "charset": "utf8",
  7433. "collation": "utf8_general_ci",
  7434. "isNullable": true,
  7435. "defaultType": "Null",
  7436. "defaultValue": "",
  7437. "isOnUpdateCurrentTimestamp": false,
  7438. "isAutoInc": false,
  7439. "comment": "采购单号",
  7440. "columnFormat": "",
  7441. "storage": "",
  7442. "isVirtual": false,
  7443. "isGeneratedAlways": false,
  7444. "virtualExpr": "",
  7445. "virtualType": "",
  7446. "oldName": "order_no"
  7447. },
  7448. {
  7449. "objectType": "TableField_MYSQL",
  7450. "name": "deal_at",
  7451. "type": "datetime",
  7452. "length": -2147483648,
  7453. "decimals": -2147483648,
  7454. "isUnsigned": false,
  7455. "isZeroFill": false,
  7456. "setEnumValues": "",
  7457. "isBinary": false,
  7458. "charset": "",
  7459. "collation": "",
  7460. "isNullable": true,
  7461. "defaultType": "Null",
  7462. "defaultValue": "",
  7463. "isOnUpdateCurrentTimestamp": false,
  7464. "isAutoInc": false,
  7465. "comment": "发包时间",
  7466. "columnFormat": "",
  7467. "storage": "",
  7468. "isVirtual": false,
  7469. "isGeneratedAlways": false,
  7470. "virtualExpr": "",
  7471. "virtualType": "",
  7472. "oldName": "deal_at"
  7473. },
  7474. {
  7475. "objectType": "TableField_MYSQL",
  7476. "name": "out_timeline",
  7477. "type": "datetime",
  7478. "length": -2147483648,
  7479. "decimals": -2147483648,
  7480. "isUnsigned": false,
  7481. "isZeroFill": false,
  7482. "setEnumValues": "",
  7483. "isBinary": false,
  7484. "charset": "",
  7485. "collation": "",
  7486. "isNullable": true,
  7487. "defaultType": "Null",
  7488. "defaultValue": "",
  7489. "isOnUpdateCurrentTimestamp": false,
  7490. "isAutoInc": false,
  7491. "comment": "要求完成时间",
  7492. "columnFormat": "",
  7493. "storage": "",
  7494. "isVirtual": false,
  7495. "isGeneratedAlways": false,
  7496. "virtualExpr": "",
  7497. "virtualType": "",
  7498. "oldName": "out_timeline"
  7499. },
  7500. {
  7501. "objectType": "TableField_MYSQL",
  7502. "name": "delivery_at",
  7503. "type": "datetime",
  7504. "length": -2147483648,
  7505. "decimals": -2147483648,
  7506. "isUnsigned": false,
  7507. "isZeroFill": false,
  7508. "setEnumValues": "",
  7509. "isBinary": false,
  7510. "charset": "",
  7511. "collation": "",
  7512. "isNullable": true,
  7513. "defaultType": "Null",
  7514. "defaultValue": "",
  7515. "isOnUpdateCurrentTimestamp": false,
  7516. "isAutoInc": false,
  7517. "comment": "交付时间",
  7518. "columnFormat": "",
  7519. "storage": "",
  7520. "isVirtual": false,
  7521. "isGeneratedAlways": false,
  7522. "virtualExpr": "",
  7523. "virtualType": "",
  7524. "oldName": "delivery_at"
  7525. },
  7526. {
  7527. "objectType": "TableField_MYSQL",
  7528. "name": "trans_at",
  7529. "type": "datetime",
  7530. "length": -2147483648,
  7531. "decimals": -2147483648,
  7532. "isUnsigned": false,
  7533. "isZeroFill": false,
  7534. "setEnumValues": "",
  7535. "isBinary": false,
  7536. "charset": "",
  7537. "collation": "",
  7538. "isNullable": true,
  7539. "defaultType": "Null",
  7540. "defaultValue": "",
  7541. "isOnUpdateCurrentTimestamp": false,
  7542. "isAutoInc": false,
  7543. "comment": "移交时间",
  7544. "columnFormat": "",
  7545. "storage": "",
  7546. "isVirtual": false,
  7547. "isGeneratedAlways": false,
  7548. "virtualExpr": "",
  7549. "virtualType": "",
  7550. "oldName": "trans_at"
  7551. },
  7552. {
  7553. "objectType": "TableField_MYSQL",
  7554. "name": "order_amount",
  7555. "type": "double",
  7556. "length": -2147483648,
  7557. "decimals": -2147483648,
  7558. "isUnsigned": false,
  7559. "isZeroFill": false,
  7560. "setEnumValues": "",
  7561. "isBinary": false,
  7562. "charset": "",
  7563. "collation": "",
  7564. "isNullable": true,
  7565. "defaultType": "Null",
  7566. "defaultValue": "",
  7567. "isOnUpdateCurrentTimestamp": false,
  7568. "isAutoInc": false,
  7569. "comment": "订单总金额",
  7570. "columnFormat": "",
  7571. "storage": "",
  7572. "isVirtual": false,
  7573. "isGeneratedAlways": false,
  7574. "virtualExpr": "",
  7575. "virtualType": "",
  7576. "oldName": "order_amount"
  7577. },
  7578. {
  7579. "objectType": "TableField_MYSQL",
  7580. "name": "tax_rate",
  7581. "type": "double",
  7582. "length": -2147483648,
  7583. "decimals": -2147483648,
  7584. "isUnsigned": false,
  7585. "isZeroFill": false,
  7586. "setEnumValues": "",
  7587. "isBinary": false,
  7588. "charset": "",
  7589. "collation": "",
  7590. "isNullable": true,
  7591. "defaultType": "Null",
  7592. "defaultValue": "",
  7593. "isOnUpdateCurrentTimestamp": false,
  7594. "isAutoInc": false,
  7595. "comment": "税率",
  7596. "columnFormat": "",
  7597. "storage": "",
  7598. "isVirtual": false,
  7599. "isGeneratedAlways": false,
  7600. "virtualExpr": "",
  7601. "virtualType": "",
  7602. "oldName": "tax_rate"
  7603. },
  7604. {
  7605. "objectType": "TableField_MYSQL",
  7606. "name": "procure_content",
  7607. "type": "varchar",
  7608. "length": 2000,
  7609. "decimals": -2147483648,
  7610. "isUnsigned": false,
  7611. "isZeroFill": false,
  7612. "setEnumValues": "",
  7613. "isBinary": false,
  7614. "charset": "utf8",
  7615. "collation": "utf8_general_ci",
  7616. "isNullable": true,
  7617. "defaultType": "Null",
  7618. "defaultValue": "",
  7619. "isOnUpdateCurrentTimestamp": false,
  7620. "isAutoInc": false,
  7621. "comment": "采购内容",
  7622. "columnFormat": "",
  7623. "storage": "",
  7624. "isVirtual": false,
  7625. "isGeneratedAlways": false,
  7626. "virtualExpr": "",
  7627. "virtualType": "",
  7628. "oldName": "procure_content"
  7629. },
  7630. {
  7631. "objectType": "TableField_MYSQL",
  7632. "name": "procure_file",
  7633. "type": "text",
  7634. "length": -2147483648,
  7635. "decimals": -2147483648,
  7636. "isUnsigned": false,
  7637. "isZeroFill": false,
  7638. "setEnumValues": "",
  7639. "isBinary": false,
  7640. "charset": "utf8",
  7641. "collation": "utf8_general_ci",
  7642. "isNullable": true,
  7643. "defaultType": "Null",
  7644. "defaultValue": "",
  7645. "isOnUpdateCurrentTimestamp": false,
  7646. "isAutoInc": false,
  7647. "comment": "采购附件",
  7648. "columnFormat": "",
  7649. "storage": "",
  7650. "isVirtual": false,
  7651. "isGeneratedAlways": false,
  7652. "virtualExpr": "",
  7653. "virtualType": "",
  7654. "oldName": "procure_file"
  7655. },
  7656. {
  7657. "objectType": "TableField_MYSQL",
  7658. "name": "pid_amount",
  7659. "type": "double",
  7660. "length": -2147483648,
  7661. "decimals": -2147483648,
  7662. "isUnsigned": false,
  7663. "isZeroFill": false,
  7664. "setEnumValues": "",
  7665. "isBinary": false,
  7666. "charset": "",
  7667. "collation": "",
  7668. "isNullable": true,
  7669. "defaultType": "Null",
  7670. "defaultValue": "",
  7671. "isOnUpdateCurrentTimestamp": false,
  7672. "isAutoInc": false,
  7673. "comment": "已付款",
  7674. "columnFormat": "",
  7675. "storage": "",
  7676. "isVirtual": false,
  7677. "isGeneratedAlways": false,
  7678. "virtualExpr": "",
  7679. "virtualType": "",
  7680. "oldName": "pid_amount"
  7681. },
  7682. {
  7683. "objectType": "TableField_MYSQL",
  7684. "name": "should_amount",
  7685. "type": "double",
  7686. "length": -2147483648,
  7687. "decimals": -2147483648,
  7688. "isUnsigned": false,
  7689. "isZeroFill": false,
  7690. "setEnumValues": "",
  7691. "isBinary": false,
  7692. "charset": "",
  7693. "collation": "",
  7694. "isNullable": true,
  7695. "defaultType": "Null",
  7696. "defaultValue": "",
  7697. "isOnUpdateCurrentTimestamp": false,
  7698. "isAutoInc": false,
  7699. "comment": "应付款",
  7700. "columnFormat": "",
  7701. "storage": "",
  7702. "isVirtual": false,
  7703. "isGeneratedAlways": false,
  7704. "virtualExpr": "",
  7705. "virtualType": "",
  7706. "oldName": "should_amount"
  7707. },
  7708. {
  7709. "objectType": "TableField_MYSQL",
  7710. "name": "pay_type",
  7711. "type": "varchar",
  7712. "length": 255,
  7713. "decimals": -2147483648,
  7714. "isUnsigned": false,
  7715. "isZeroFill": false,
  7716. "setEnumValues": "",
  7717. "isBinary": false,
  7718. "charset": "utf8",
  7719. "collation": "utf8_general_ci",
  7720. "isNullable": true,
  7721. "defaultType": "Null",
  7722. "defaultValue": "",
  7723. "isOnUpdateCurrentTimestamp": false,
  7724. "isAutoInc": false,
  7725. "comment": "支付方式",
  7726. "columnFormat": "",
  7727. "storage": "",
  7728. "isVirtual": false,
  7729. "isGeneratedAlways": false,
  7730. "virtualExpr": "",
  7731. "virtualType": "",
  7732. "oldName": "pay_type"
  7733. },
  7734. {
  7735. "objectType": "TableField_MYSQL",
  7736. "name": "deal_by",
  7737. "type": "varchar",
  7738. "length": 50,
  7739. "decimals": -2147483648,
  7740. "isUnsigned": false,
  7741. "isZeroFill": false,
  7742. "setEnumValues": "",
  7743. "isBinary": false,
  7744. "charset": "utf8",
  7745. "collation": "utf8_general_ci",
  7746. "isNullable": true,
  7747. "defaultType": "Null",
  7748. "defaultValue": "",
  7749. "isOnUpdateCurrentTimestamp": false,
  7750. "isAutoInc": false,
  7751. "comment": "发包人",
  7752. "columnFormat": "",
  7753. "storage": "",
  7754. "isVirtual": false,
  7755. "isGeneratedAlways": false,
  7756. "virtualExpr": "",
  7757. "virtualType": "",
  7758. "oldName": "deal_by"
  7759. },
  7760. {
  7761. "objectType": "TableField_MYSQL",
  7762. "name": "created_at",
  7763. "type": "datetime",
  7764. "length": -2147483648,
  7765. "decimals": -2147483648,
  7766. "isUnsigned": false,
  7767. "isZeroFill": false,
  7768. "setEnumValues": "",
  7769. "isBinary": false,
  7770. "charset": "",
  7771. "collation": "",
  7772. "isNullable": true,
  7773. "defaultType": "Null",
  7774. "defaultValue": "",
  7775. "isOnUpdateCurrentTimestamp": false,
  7776. "isAutoInc": false,
  7777. "comment": "创建时间",
  7778. "columnFormat": "",
  7779. "storage": "",
  7780. "isVirtual": false,
  7781. "isGeneratedAlways": false,
  7782. "virtualExpr": "",
  7783. "virtualType": "",
  7784. "oldName": "created_at"
  7785. },
  7786. {
  7787. "objectType": "TableField_MYSQL",
  7788. "name": "created_by",
  7789. "type": "varchar",
  7790. "length": 50,
  7791. "decimals": -2147483648,
  7792. "isUnsigned": false,
  7793. "isZeroFill": false,
  7794. "setEnumValues": "",
  7795. "isBinary": false,
  7796. "charset": "utf8",
  7797. "collation": "utf8_general_ci",
  7798. "isNullable": true,
  7799. "defaultType": "Null",
  7800. "defaultValue": "",
  7801. "isOnUpdateCurrentTimestamp": false,
  7802. "isAutoInc": false,
  7803. "comment": "创建人",
  7804. "columnFormat": "",
  7805. "storage": "",
  7806. "isVirtual": false,
  7807. "isGeneratedAlways": false,
  7808. "virtualExpr": "",
  7809. "virtualType": "",
  7810. "oldName": "created_by"
  7811. },
  7812. {
  7813. "objectType": "TableField_MYSQL",
  7814. "name": "updated_by",
  7815. "type": "varchar",
  7816. "length": 50,
  7817. "decimals": -2147483648,
  7818. "isUnsigned": false,
  7819. "isZeroFill": false,
  7820. "setEnumValues": "",
  7821. "isBinary": false,
  7822. "charset": "utf8",
  7823. "collation": "utf8_general_ci",
  7824. "isNullable": true,
  7825. "defaultType": "Null",
  7826. "defaultValue": "",
  7827. "isOnUpdateCurrentTimestamp": false,
  7828. "isAutoInc": false,
  7829. "comment": "更新人",
  7830. "columnFormat": "",
  7831. "storage": "",
  7832. "isVirtual": false,
  7833. "isGeneratedAlways": false,
  7834. "virtualExpr": "",
  7835. "virtualType": "",
  7836. "oldName": "updated_by"
  7837. },
  7838. {
  7839. "objectType": "TableField_MYSQL",
  7840. "name": "updated_at",
  7841. "type": "datetime",
  7842. "length": -2147483648,
  7843. "decimals": -2147483648,
  7844. "isUnsigned": false,
  7845. "isZeroFill": false,
  7846. "setEnumValues": "",
  7847. "isBinary": false,
  7848. "charset": "",
  7849. "collation": "",
  7850. "isNullable": true,
  7851. "defaultType": "Null",
  7852. "defaultValue": "",
  7853. "isOnUpdateCurrentTimestamp": false,
  7854. "isAutoInc": false,
  7855. "comment": "更新时间",
  7856. "columnFormat": "",
  7857. "storage": "",
  7858. "isVirtual": false,
  7859. "isGeneratedAlways": false,
  7860. "virtualExpr": "",
  7861. "virtualType": "",
  7862. "oldName": "updated_at"
  7863. },
  7864. {
  7865. "objectType": "TableField_MYSQL",
  7866. "name": "first",
  7867. "type": "varchar",
  7868. "length": 255,
  7869. "decimals": -2147483648,
  7870. "isUnsigned": false,
  7871. "isZeroFill": false,
  7872. "setEnumValues": "",
  7873. "isBinary": false,
  7874. "charset": "utf8",
  7875. "collation": "utf8_general_ci",
  7876. "isNullable": true,
  7877. "defaultType": "Null",
  7878. "defaultValue": "",
  7879. "isOnUpdateCurrentTimestamp": false,
  7880. "isAutoInc": false,
  7881. "comment": "备用字段",
  7882. "columnFormat": "",
  7883. "storage": "",
  7884. "isVirtual": false,
  7885. "isGeneratedAlways": false,
  7886. "virtualExpr": "",
  7887. "virtualType": "",
  7888. "oldName": "first"
  7889. },
  7890. {
  7891. "objectType": "TableField_MYSQL",
  7892. "name": "second",
  7893. "type": "varchar",
  7894. "length": 255,
  7895. "decimals": -2147483648,
  7896. "isUnsigned": false,
  7897. "isZeroFill": false,
  7898. "setEnumValues": "",
  7899. "isBinary": false,
  7900. "charset": "utf8",
  7901. "collation": "utf8_general_ci",
  7902. "isNullable": true,
  7903. "defaultType": "Null",
  7904. "defaultValue": "",
  7905. "isOnUpdateCurrentTimestamp": false,
  7906. "isAutoInc": false,
  7907. "comment": "备用字段",
  7908. "columnFormat": "",
  7909. "storage": "",
  7910. "isVirtual": false,
  7911. "isGeneratedAlways": false,
  7912. "virtualExpr": "",
  7913. "virtualType": "",
  7914. "oldName": "second"
  7915. },
  7916. {
  7917. "objectType": "TableField_MYSQL",
  7918. "name": "remark",
  7919. "type": "varchar",
  7920. "length": 255,
  7921. "decimals": -2147483648,
  7922. "isUnsigned": false,
  7923. "isZeroFill": false,
  7924. "setEnumValues": "",
  7925. "isBinary": false,
  7926. "charset": "utf8",
  7927. "collation": "utf8_general_ci",
  7928. "isNullable": true,
  7929. "defaultType": "Null",
  7930. "defaultValue": "",
  7931. "isOnUpdateCurrentTimestamp": false,
  7932. "isAutoInc": false,
  7933. "comment": "备注",
  7934. "columnFormat": "",
  7935. "storage": "",
  7936. "isVirtual": false,
  7937. "isGeneratedAlways": false,
  7938. "virtualExpr": "",
  7939. "virtualType": "",
  7940. "oldName": "remark"
  7941. },
  7942. {
  7943. "objectType": "TableField_MYSQL",
  7944. "name": "source",
  7945. "type": "varchar",
  7946. "length": 255,
  7947. "decimals": -2147483648,
  7948. "isUnsigned": false,
  7949. "isZeroFill": false,
  7950. "setEnumValues": "",
  7951. "isBinary": false,
  7952. "charset": "utf8",
  7953. "collation": "utf8_general_ci",
  7954. "isNullable": true,
  7955. "defaultType": "Null",
  7956. "defaultValue": "",
  7957. "isOnUpdateCurrentTimestamp": false,
  7958. "isAutoInc": false,
  7959. "comment": "来源",
  7960. "columnFormat": "",
  7961. "storage": "",
  7962. "isVirtual": false,
  7963. "isGeneratedAlways": false,
  7964. "virtualExpr": "",
  7965. "virtualType": "",
  7966. "oldName": "source"
  7967. },
  7968. {
  7969. "objectType": "TableField_MYSQL",
  7970. "name": "group_id",
  7971. "type": "varchar",
  7972. "length": 50,
  7973. "decimals": -2147483648,
  7974. "isUnsigned": false,
  7975. "isZeroFill": false,
  7976. "setEnumValues": "",
  7977. "isBinary": false,
  7978. "charset": "utf8",
  7979. "collation": "utf8_general_ci",
  7980. "isNullable": true,
  7981. "defaultType": "Null",
  7982. "defaultValue": "",
  7983. "isOnUpdateCurrentTimestamp": false,
  7984. "isAutoInc": false,
  7985. "comment": "集团ID",
  7986. "columnFormat": "",
  7987. "storage": "",
  7988. "isVirtual": false,
  7989. "isGeneratedAlways": false,
  7990. "virtualExpr": "",
  7991. "virtualType": "",
  7992. "oldName": "group_id"
  7993. },
  7994. {
  7995. "objectType": "TableField_MYSQL",
  7996. "name": "supplier_id",
  7997. "type": "varchar",
  7998. "length": 100,
  7999. "decimals": -2147483648,
  8000. "isUnsigned": false,
  8001. "isZeroFill": false,
  8002. "setEnumValues": "",
  8003. "isBinary": false,
  8004. "charset": "utf8",
  8005. "collation": "utf8_general_ci",
  8006. "isNullable": true,
  8007. "defaultType": "Null",
  8008. "defaultValue": "",
  8009. "isOnUpdateCurrentTimestamp": false,
  8010. "isAutoInc": false,
  8011. "comment": "供应商id",
  8012. "columnFormat": "",
  8013. "storage": "",
  8014. "isVirtual": false,
  8015. "isGeneratedAlways": false,
  8016. "virtualExpr": "",
  8017. "virtualType": "",
  8018. "oldName": "supplier_id"
  8019. },
  8020. {
  8021. "objectType": "TableField_MYSQL",
  8022. "name": "amount_belong",
  8023. "type": "varchar",
  8024. "length": 100,
  8025. "decimals": -2147483648,
  8026. "isUnsigned": false,
  8027. "isZeroFill": false,
  8028. "setEnumValues": "",
  8029. "isBinary": false,
  8030. "charset": "utf8",
  8031. "collation": "utf8_general_ci",
  8032. "isNullable": true,
  8033. "defaultType": "Null",
  8034. "defaultValue": "",
  8035. "isOnUpdateCurrentTimestamp": false,
  8036. "isAutoInc": false,
  8037. "comment": "费用、成本归属",
  8038. "columnFormat": "",
  8039. "storage": "",
  8040. "isVirtual": false,
  8041. "isGeneratedAlways": false,
  8042. "virtualExpr": "",
  8043. "virtualType": "",
  8044. "oldName": "amount_belong"
  8045. },
  8046. {
  8047. "objectType": "TableField_MYSQL",
  8048. "name": "amount_belong_type",
  8049. "type": "varchar",
  8050. "length": 100,
  8051. "decimals": -2147483648,
  8052. "isUnsigned": false,
  8053. "isZeroFill": false,
  8054. "setEnumValues": "",
  8055. "isBinary": false,
  8056. "charset": "utf8",
  8057. "collation": "utf8_general_ci",
  8058. "isNullable": true,
  8059. "defaultType": "Null",
  8060. "defaultValue": "",
  8061. "isOnUpdateCurrentTimestamp": false,
  8062. "isAutoInc": false,
  8063. "comment": "费用、成本归属类型",
  8064. "columnFormat": "",
  8065. "storage": "",
  8066. "isVirtual": false,
  8067. "isGeneratedAlways": false,
  8068. "virtualExpr": "",
  8069. "virtualType": "",
  8070. "oldName": "amount_belong_type"
  8071. },
  8072. {
  8073. "objectType": "TableField_MYSQL",
  8074. "name": "excluding_order_amount",
  8075. "type": "double",
  8076. "length": -2147483648,
  8077. "decimals": -2147483648,
  8078. "isUnsigned": false,
  8079. "isZeroFill": false,
  8080. "setEnumValues": "",
  8081. "isBinary": false,
  8082. "charset": "",
  8083. "collation": "",
  8084. "isNullable": true,
  8085. "defaultType": "Null",
  8086. "defaultValue": "",
  8087. "isOnUpdateCurrentTimestamp": false,
  8088. "isAutoInc": false,
  8089. "comment": "采购金额(不含税)",
  8090. "columnFormat": "",
  8091. "storage": "",
  8092. "isVirtual": false,
  8093. "isGeneratedAlways": false,
  8094. "virtualExpr": "",
  8095. "virtualType": "",
  8096. "oldName": "excluding_order_amount"
  8097. }
  8098. ],
  8099. "indexes": [],
  8100. "primaryKey": {
  8101. "objectType": "PrimaryKey_MYSQL",
  8102. "name": "",
  8103. "fields": [
  8104. {
  8105. "objectType": "IndexField_MYSQL",
  8106. "name": "id",
  8107. "keyLength": 0,
  8108. "order": "",
  8109. "oldName": "id"
  8110. }
  8111. ],
  8112. "oldName": "",
  8113. "indexMethod": "BTREE",
  8114. "comment": ""
  8115. },
  8116. "foreignKeys": [],
  8117. "triggers": [],
  8118. "tablePartitions": []
  8119. },
  8120. {
  8121. "objectType": "Table_MYSQL",
  8122. "name": "out_order_pay",
  8123. "comment": "支付明细",
  8124. "engine": "InnoDB",
  8125. "characterSet": "utf8",
  8126. "collation": "utf8_general_ci",
  8127. "autoIncrement": 0,
  8128. "tablespace": "",
  8129. "storage": "",
  8130. "insertMethod": "",
  8131. "connection": "",
  8132. "checksum": false,
  8133. "rowFormat": "DYNAMIC",
  8134. "avgRowLength": 0,
  8135. "maxRows": 0,
  8136. "minRows": 0,
  8137. "keyBlockSize": 0,
  8138. "packKeys": "",
  8139. "delayKeyWrite": false,
  8140. "dataDirectory": "",
  8141. "indexDirectory": "",
  8142. "statsAutoRecalc": "",
  8143. "statsPersistent": "",
  8144. "statsSamplePages": 0,
  8145. "union": "",
  8146. "pageCheckSum": false,
  8147. "transactional": false,
  8148. "compression": "",
  8149. "oldName": "out_order_pay",
  8150. "encryption": false,
  8151. "createOptions": "row_format=DYNAMIC",
  8152. "createTime": "2024-12-01 00:20:45",
  8153. "checkTime": "",
  8154. "dataFree": 0,
  8155. "dataLength": 16384,
  8156. "indexLength": 0,
  8157. "maxDataLength": 0,
  8158. "rows": 68,
  8159. "updateTime": "",
  8160. "DDL": "CREATE TABLE `out_order_pay` (\n `id` varchar(50) NOT NULL,\n `out_order_main_id` varchar(50) DEFAULT NULL COMMENT '采购单ID',\n `pay_detail_type` varchar(255) DEFAULT NULL COMMENT '支付方式',\n `pay_at` datetime DEFAULT NULL COMMENT '付款日期',\n `pay_name` varchar(255) DEFAULT NULL COMMENT '付款名称',\n `pay_amount` double DEFAULT NULL COMMENT '付款金额',\n `invoice_amount` double DEFAULT NULL COMMENT '发票金额',\n `rate` double DEFAULT NULL COMMENT '税率',\n `invoice_no` varchar(255) DEFAULT NULL COMMENT '发票号',\n `apply_time` datetime DEFAULT NULL COMMENT '申请时间',\n `apply_by` varchar(50) DEFAULT NULL COMMENT '申请人',\n `status` varchar(50) DEFAULT NULL COMMENT '付款状态(1-未付款 2-已付款)',\n `plan_pay_amount` double DEFAULT NULL COMMENT '计划付款金额',\n `plan_pay_time` datetime DEFAULT NULL COMMENT '计划付款时间',\n `remind_time` datetime DEFAULT NULL COMMENT '提醒时间',\n `invoice_file` text COMMENT '发票附件',\n `pay_info` text COMMENT '支付说明',\n `remark` text COMMENT '备注',\n `registrant_person` varchar(50) DEFAULT NULL COMMENT '登记人',\n `created_at` datetime DEFAULT NULL COMMENT '创建时间',\n `created_by` varchar(50) DEFAULT NULL COMMENT '创建人',\n `updated_by` varchar(50) DEFAULT NULL COMMENT '更新人',\n `updated_at` datetime DEFAULT NULL COMMENT '更新时间',\n `group_id` varchar(50) DEFAULT NULL COMMENT '集团ID',\n `source` varchar(50) DEFAULT NULL COMMENT '来源 (2-流程)',\n `excluding_pay_amount` double DEFAULT NULL COMMENT '支付金额(不含税)',\n PRIMARY KEY (`id`) USING BTREE\n) ENGINE=InnoDB DEFAULT CHARSET=utf8 ROW_FORMAT=DYNAMIC COMMENT='支付明细'",
  8161. "partitionBy": "",
  8162. "partitionByExpr": "",
  8163. "partitions": 0,
  8164. "partitionKeyAlgorithm": "",
  8165. "subPartitionBy": "",
  8166. "subPartitionByExpr": "",
  8167. "subPartitions": 0,
  8168. "subPartitionKeyAlgorithm": "",
  8169. "fields": [
  8170. {
  8171. "objectType": "TableField_MYSQL",
  8172. "name": "id",
  8173. "type": "varchar",
  8174. "length": 50,
  8175. "decimals": -2147483648,
  8176. "isUnsigned": false,
  8177. "isZeroFill": false,
  8178. "setEnumValues": "",
  8179. "isBinary": false,
  8180. "charset": "utf8",
  8181. "collation": "utf8_general_ci",
  8182. "isNullable": false,
  8183. "defaultType": "Others",
  8184. "defaultValue": "",
  8185. "isOnUpdateCurrentTimestamp": false,
  8186. "isAutoInc": false,
  8187. "comment": "",
  8188. "columnFormat": "",
  8189. "storage": "",
  8190. "isVirtual": false,
  8191. "isGeneratedAlways": false,
  8192. "virtualExpr": "",
  8193. "virtualType": "",
  8194. "oldName": "id"
  8195. },
  8196. {
  8197. "objectType": "TableField_MYSQL",
  8198. "name": "out_order_main_id",
  8199. "type": "varchar",
  8200. "length": 50,
  8201. "decimals": -2147483648,
  8202. "isUnsigned": false,
  8203. "isZeroFill": false,
  8204. "setEnumValues": "",
  8205. "isBinary": false,
  8206. "charset": "utf8",
  8207. "collation": "utf8_general_ci",
  8208. "isNullable": true,
  8209. "defaultType": "Null",
  8210. "defaultValue": "",
  8211. "isOnUpdateCurrentTimestamp": false,
  8212. "isAutoInc": false,
  8213. "comment": "采购单ID",
  8214. "columnFormat": "",
  8215. "storage": "",
  8216. "isVirtual": false,
  8217. "isGeneratedAlways": false,
  8218. "virtualExpr": "",
  8219. "virtualType": "",
  8220. "oldName": "out_order_main_id"
  8221. },
  8222. {
  8223. "objectType": "TableField_MYSQL",
  8224. "name": "pay_detail_type",
  8225. "type": "varchar",
  8226. "length": 255,
  8227. "decimals": -2147483648,
  8228. "isUnsigned": false,
  8229. "isZeroFill": false,
  8230. "setEnumValues": "",
  8231. "isBinary": false,
  8232. "charset": "utf8",
  8233. "collation": "utf8_general_ci",
  8234. "isNullable": true,
  8235. "defaultType": "Null",
  8236. "defaultValue": "",
  8237. "isOnUpdateCurrentTimestamp": false,
  8238. "isAutoInc": false,
  8239. "comment": "支付方式",
  8240. "columnFormat": "",
  8241. "storage": "",
  8242. "isVirtual": false,
  8243. "isGeneratedAlways": false,
  8244. "virtualExpr": "",
  8245. "virtualType": "",
  8246. "oldName": "pay_detail_type"
  8247. },
  8248. {
  8249. "objectType": "TableField_MYSQL",
  8250. "name": "pay_at",
  8251. "type": "datetime",
  8252. "length": -2147483648,
  8253. "decimals": -2147483648,
  8254. "isUnsigned": false,
  8255. "isZeroFill": false,
  8256. "setEnumValues": "",
  8257. "isBinary": false,
  8258. "charset": "",
  8259. "collation": "",
  8260. "isNullable": true,
  8261. "defaultType": "Null",
  8262. "defaultValue": "",
  8263. "isOnUpdateCurrentTimestamp": false,
  8264. "isAutoInc": false,
  8265. "comment": "付款日期",
  8266. "columnFormat": "",
  8267. "storage": "",
  8268. "isVirtual": false,
  8269. "isGeneratedAlways": false,
  8270. "virtualExpr": "",
  8271. "virtualType": "",
  8272. "oldName": "pay_at"
  8273. },
  8274. {
  8275. "objectType": "TableField_MYSQL",
  8276. "name": "pay_name",
  8277. "type": "varchar",
  8278. "length": 255,
  8279. "decimals": -2147483648,
  8280. "isUnsigned": false,
  8281. "isZeroFill": false,
  8282. "setEnumValues": "",
  8283. "isBinary": false,
  8284. "charset": "utf8",
  8285. "collation": "utf8_general_ci",
  8286. "isNullable": true,
  8287. "defaultType": "Null",
  8288. "defaultValue": "",
  8289. "isOnUpdateCurrentTimestamp": false,
  8290. "isAutoInc": false,
  8291. "comment": "付款名称",
  8292. "columnFormat": "",
  8293. "storage": "",
  8294. "isVirtual": false,
  8295. "isGeneratedAlways": false,
  8296. "virtualExpr": "",
  8297. "virtualType": "",
  8298. "oldName": "pay_name"
  8299. },
  8300. {
  8301. "objectType": "TableField_MYSQL",
  8302. "name": "pay_amount",
  8303. "type": "double",
  8304. "length": -2147483648,
  8305. "decimals": -2147483648,
  8306. "isUnsigned": false,
  8307. "isZeroFill": false,
  8308. "setEnumValues": "",
  8309. "isBinary": false,
  8310. "charset": "",
  8311. "collation": "",
  8312. "isNullable": true,
  8313. "defaultType": "Null",
  8314. "defaultValue": "",
  8315. "isOnUpdateCurrentTimestamp": false,
  8316. "isAutoInc": false,
  8317. "comment": "付款金额",
  8318. "columnFormat": "",
  8319. "storage": "",
  8320. "isVirtual": false,
  8321. "isGeneratedAlways": false,
  8322. "virtualExpr": "",
  8323. "virtualType": "",
  8324. "oldName": "pay_amount"
  8325. },
  8326. {
  8327. "objectType": "TableField_MYSQL",
  8328. "name": "invoice_amount",
  8329. "type": "double",
  8330. "length": -2147483648,
  8331. "decimals": -2147483648,
  8332. "isUnsigned": false,
  8333. "isZeroFill": false,
  8334. "setEnumValues": "",
  8335. "isBinary": false,
  8336. "charset": "",
  8337. "collation": "",
  8338. "isNullable": true,
  8339. "defaultType": "Null",
  8340. "defaultValue": "",
  8341. "isOnUpdateCurrentTimestamp": false,
  8342. "isAutoInc": false,
  8343. "comment": "发票金额",
  8344. "columnFormat": "",
  8345. "storage": "",
  8346. "isVirtual": false,
  8347. "isGeneratedAlways": false,
  8348. "virtualExpr": "",
  8349. "virtualType": "",
  8350. "oldName": "invoice_amount"
  8351. },
  8352. {
  8353. "objectType": "TableField_MYSQL",
  8354. "name": "rate",
  8355. "type": "double",
  8356. "length": -2147483648,
  8357. "decimals": -2147483648,
  8358. "isUnsigned": false,
  8359. "isZeroFill": false,
  8360. "setEnumValues": "",
  8361. "isBinary": false,
  8362. "charset": "",
  8363. "collation": "",
  8364. "isNullable": true,
  8365. "defaultType": "Null",
  8366. "defaultValue": "",
  8367. "isOnUpdateCurrentTimestamp": false,
  8368. "isAutoInc": false,
  8369. "comment": "税率",
  8370. "columnFormat": "",
  8371. "storage": "",
  8372. "isVirtual": false,
  8373. "isGeneratedAlways": false,
  8374. "virtualExpr": "",
  8375. "virtualType": "",
  8376. "oldName": "rate"
  8377. },
  8378. {
  8379. "objectType": "TableField_MYSQL",
  8380. "name": "invoice_no",
  8381. "type": "varchar",
  8382. "length": 255,
  8383. "decimals": -2147483648,
  8384. "isUnsigned": false,
  8385. "isZeroFill": false,
  8386. "setEnumValues": "",
  8387. "isBinary": false,
  8388. "charset": "utf8",
  8389. "collation": "utf8_general_ci",
  8390. "isNullable": true,
  8391. "defaultType": "Null",
  8392. "defaultValue": "",
  8393. "isOnUpdateCurrentTimestamp": false,
  8394. "isAutoInc": false,
  8395. "comment": "发票号",
  8396. "columnFormat": "",
  8397. "storage": "",
  8398. "isVirtual": false,
  8399. "isGeneratedAlways": false,
  8400. "virtualExpr": "",
  8401. "virtualType": "",
  8402. "oldName": "invoice_no"
  8403. },
  8404. {
  8405. "objectType": "TableField_MYSQL",
  8406. "name": "apply_time",
  8407. "type": "datetime",
  8408. "length": -2147483648,
  8409. "decimals": -2147483648,
  8410. "isUnsigned": false,
  8411. "isZeroFill": false,
  8412. "setEnumValues": "",
  8413. "isBinary": false,
  8414. "charset": "",
  8415. "collation": "",
  8416. "isNullable": true,
  8417. "defaultType": "Null",
  8418. "defaultValue": "",
  8419. "isOnUpdateCurrentTimestamp": false,
  8420. "isAutoInc": false,
  8421. "comment": "申请时间",
  8422. "columnFormat": "",
  8423. "storage": "",
  8424. "isVirtual": false,
  8425. "isGeneratedAlways": false,
  8426. "virtualExpr": "",
  8427. "virtualType": "",
  8428. "oldName": "apply_time"
  8429. },
  8430. {
  8431. "objectType": "TableField_MYSQL",
  8432. "name": "apply_by",
  8433. "type": "varchar",
  8434. "length": 50,
  8435. "decimals": -2147483648,
  8436. "isUnsigned": false,
  8437. "isZeroFill": false,
  8438. "setEnumValues": "",
  8439. "isBinary": false,
  8440. "charset": "utf8",
  8441. "collation": "utf8_general_ci",
  8442. "isNullable": true,
  8443. "defaultType": "Null",
  8444. "defaultValue": "",
  8445. "isOnUpdateCurrentTimestamp": false,
  8446. "isAutoInc": false,
  8447. "comment": "申请人",
  8448. "columnFormat": "",
  8449. "storage": "",
  8450. "isVirtual": false,
  8451. "isGeneratedAlways": false,
  8452. "virtualExpr": "",
  8453. "virtualType": "",
  8454. "oldName": "apply_by"
  8455. },
  8456. {
  8457. "objectType": "TableField_MYSQL",
  8458. "name": "status",
  8459. "type": "varchar",
  8460. "length": 50,
  8461. "decimals": -2147483648,
  8462. "isUnsigned": false,
  8463. "isZeroFill": false,
  8464. "setEnumValues": "",
  8465. "isBinary": false,
  8466. "charset": "utf8",
  8467. "collation": "utf8_general_ci",
  8468. "isNullable": true,
  8469. "defaultType": "Null",
  8470. "defaultValue": "",
  8471. "isOnUpdateCurrentTimestamp": false,
  8472. "isAutoInc": false,
  8473. "comment": "付款状态(1-未付款 2-已付款)",
  8474. "columnFormat": "",
  8475. "storage": "",
  8476. "isVirtual": false,
  8477. "isGeneratedAlways": false,
  8478. "virtualExpr": "",
  8479. "virtualType": "",
  8480. "oldName": "status"
  8481. },
  8482. {
  8483. "objectType": "TableField_MYSQL",
  8484. "name": "plan_pay_amount",
  8485. "type": "double",
  8486. "length": -2147483648,
  8487. "decimals": -2147483648,
  8488. "isUnsigned": false,
  8489. "isZeroFill": false,
  8490. "setEnumValues": "",
  8491. "isBinary": false,
  8492. "charset": "",
  8493. "collation": "",
  8494. "isNullable": true,
  8495. "defaultType": "Null",
  8496. "defaultValue": "",
  8497. "isOnUpdateCurrentTimestamp": false,
  8498. "isAutoInc": false,
  8499. "comment": "计划付款金额",
  8500. "columnFormat": "",
  8501. "storage": "",
  8502. "isVirtual": false,
  8503. "isGeneratedAlways": false,
  8504. "virtualExpr": "",
  8505. "virtualType": "",
  8506. "oldName": "plan_pay_amount"
  8507. },
  8508. {
  8509. "objectType": "TableField_MYSQL",
  8510. "name": "plan_pay_time",
  8511. "type": "datetime",
  8512. "length": -2147483648,
  8513. "decimals": -2147483648,
  8514. "isUnsigned": false,
  8515. "isZeroFill": false,
  8516. "setEnumValues": "",
  8517. "isBinary": false,
  8518. "charset": "",
  8519. "collation": "",
  8520. "isNullable": true,
  8521. "defaultType": "Null",
  8522. "defaultValue": "",
  8523. "isOnUpdateCurrentTimestamp": false,
  8524. "isAutoInc": false,
  8525. "comment": "计划付款时间",
  8526. "columnFormat": "",
  8527. "storage": "",
  8528. "isVirtual": false,
  8529. "isGeneratedAlways": false,
  8530. "virtualExpr": "",
  8531. "virtualType": "",
  8532. "oldName": "plan_pay_time"
  8533. },
  8534. {
  8535. "objectType": "TableField_MYSQL",
  8536. "name": "remind_time",
  8537. "type": "datetime",
  8538. "length": -2147483648,
  8539. "decimals": -2147483648,
  8540. "isUnsigned": false,
  8541. "isZeroFill": false,
  8542. "setEnumValues": "",
  8543. "isBinary": false,
  8544. "charset": "",
  8545. "collation": "",
  8546. "isNullable": true,
  8547. "defaultType": "Null",
  8548. "defaultValue": "",
  8549. "isOnUpdateCurrentTimestamp": false,
  8550. "isAutoInc": false,
  8551. "comment": "提醒时间",
  8552. "columnFormat": "",
  8553. "storage": "",
  8554. "isVirtual": false,
  8555. "isGeneratedAlways": false,
  8556. "virtualExpr": "",
  8557. "virtualType": "",
  8558. "oldName": "remind_time"
  8559. },
  8560. {
  8561. "objectType": "TableField_MYSQL",
  8562. "name": "invoice_file",
  8563. "type": "text",
  8564. "length": -2147483648,
  8565. "decimals": -2147483648,
  8566. "isUnsigned": false,
  8567. "isZeroFill": false,
  8568. "setEnumValues": "",
  8569. "isBinary": false,
  8570. "charset": "utf8",
  8571. "collation": "utf8_general_ci",
  8572. "isNullable": true,
  8573. "defaultType": "Null",
  8574. "defaultValue": "",
  8575. "isOnUpdateCurrentTimestamp": false,
  8576. "isAutoInc": false,
  8577. "comment": "发票附件",
  8578. "columnFormat": "",
  8579. "storage": "",
  8580. "isVirtual": false,
  8581. "isGeneratedAlways": false,
  8582. "virtualExpr": "",
  8583. "virtualType": "",
  8584. "oldName": "invoice_file"
  8585. },
  8586. {
  8587. "objectType": "TableField_MYSQL",
  8588. "name": "pay_info",
  8589. "type": "text",
  8590. "length": -2147483648,
  8591. "decimals": -2147483648,
  8592. "isUnsigned": false,
  8593. "isZeroFill": false,
  8594. "setEnumValues": "",
  8595. "isBinary": false,
  8596. "charset": "utf8",
  8597. "collation": "utf8_general_ci",
  8598. "isNullable": true,
  8599. "defaultType": "Null",
  8600. "defaultValue": "",
  8601. "isOnUpdateCurrentTimestamp": false,
  8602. "isAutoInc": false,
  8603. "comment": "支付说明",
  8604. "columnFormat": "",
  8605. "storage": "",
  8606. "isVirtual": false,
  8607. "isGeneratedAlways": false,
  8608. "virtualExpr": "",
  8609. "virtualType": "",
  8610. "oldName": "pay_info"
  8611. },
  8612. {
  8613. "objectType": "TableField_MYSQL",
  8614. "name": "remark",
  8615. "type": "text",
  8616. "length": -2147483648,
  8617. "decimals": -2147483648,
  8618. "isUnsigned": false,
  8619. "isZeroFill": false,
  8620. "setEnumValues": "",
  8621. "isBinary": false,
  8622. "charset": "utf8",
  8623. "collation": "utf8_general_ci",
  8624. "isNullable": true,
  8625. "defaultType": "Null",
  8626. "defaultValue": "",
  8627. "isOnUpdateCurrentTimestamp": false,
  8628. "isAutoInc": false,
  8629. "comment": "备注",
  8630. "columnFormat": "",
  8631. "storage": "",
  8632. "isVirtual": false,
  8633. "isGeneratedAlways": false,
  8634. "virtualExpr": "",
  8635. "virtualType": "",
  8636. "oldName": "remark"
  8637. },
  8638. {
  8639. "objectType": "TableField_MYSQL",
  8640. "name": "registrant_person",
  8641. "type": "varchar",
  8642. "length": 50,
  8643. "decimals": -2147483648,
  8644. "isUnsigned": false,
  8645. "isZeroFill": false,
  8646. "setEnumValues": "",
  8647. "isBinary": false,
  8648. "charset": "utf8",
  8649. "collation": "utf8_general_ci",
  8650. "isNullable": true,
  8651. "defaultType": "Null",
  8652. "defaultValue": "",
  8653. "isOnUpdateCurrentTimestamp": false,
  8654. "isAutoInc": false,
  8655. "comment": "登记人",
  8656. "columnFormat": "",
  8657. "storage": "",
  8658. "isVirtual": false,
  8659. "isGeneratedAlways": false,
  8660. "virtualExpr": "",
  8661. "virtualType": "",
  8662. "oldName": "registrant_person"
  8663. },
  8664. {
  8665. "objectType": "TableField_MYSQL",
  8666. "name": "created_at",
  8667. "type": "datetime",
  8668. "length": -2147483648,
  8669. "decimals": -2147483648,
  8670. "isUnsigned": false,
  8671. "isZeroFill": false,
  8672. "setEnumValues": "",
  8673. "isBinary": false,
  8674. "charset": "",
  8675. "collation": "",
  8676. "isNullable": true,
  8677. "defaultType": "Null",
  8678. "defaultValue": "",
  8679. "isOnUpdateCurrentTimestamp": false,
  8680. "isAutoInc": false,
  8681. "comment": "创建时间",
  8682. "columnFormat": "",
  8683. "storage": "",
  8684. "isVirtual": false,
  8685. "isGeneratedAlways": false,
  8686. "virtualExpr": "",
  8687. "virtualType": "",
  8688. "oldName": "created_at"
  8689. },
  8690. {
  8691. "objectType": "TableField_MYSQL",
  8692. "name": "created_by",
  8693. "type": "varchar",
  8694. "length": 50,
  8695. "decimals": -2147483648,
  8696. "isUnsigned": false,
  8697. "isZeroFill": false,
  8698. "setEnumValues": "",
  8699. "isBinary": false,
  8700. "charset": "utf8",
  8701. "collation": "utf8_general_ci",
  8702. "isNullable": true,
  8703. "defaultType": "Null",
  8704. "defaultValue": "",
  8705. "isOnUpdateCurrentTimestamp": false,
  8706. "isAutoInc": false,
  8707. "comment": "创建人",
  8708. "columnFormat": "",
  8709. "storage": "",
  8710. "isVirtual": false,
  8711. "isGeneratedAlways": false,
  8712. "virtualExpr": "",
  8713. "virtualType": "",
  8714. "oldName": "created_by"
  8715. },
  8716. {
  8717. "objectType": "TableField_MYSQL",
  8718. "name": "updated_by",
  8719. "type": "varchar",
  8720. "length": 50,
  8721. "decimals": -2147483648,
  8722. "isUnsigned": false,
  8723. "isZeroFill": false,
  8724. "setEnumValues": "",
  8725. "isBinary": false,
  8726. "charset": "utf8",
  8727. "collation": "utf8_general_ci",
  8728. "isNullable": true,
  8729. "defaultType": "Null",
  8730. "defaultValue": "",
  8731. "isOnUpdateCurrentTimestamp": false,
  8732. "isAutoInc": false,
  8733. "comment": "更新人",
  8734. "columnFormat": "",
  8735. "storage": "",
  8736. "isVirtual": false,
  8737. "isGeneratedAlways": false,
  8738. "virtualExpr": "",
  8739. "virtualType": "",
  8740. "oldName": "updated_by"
  8741. },
  8742. {
  8743. "objectType": "TableField_MYSQL",
  8744. "name": "updated_at",
  8745. "type": "datetime",
  8746. "length": -2147483648,
  8747. "decimals": -2147483648,
  8748. "isUnsigned": false,
  8749. "isZeroFill": false,
  8750. "setEnumValues": "",
  8751. "isBinary": false,
  8752. "charset": "",
  8753. "collation": "",
  8754. "isNullable": true,
  8755. "defaultType": "Null",
  8756. "defaultValue": "",
  8757. "isOnUpdateCurrentTimestamp": false,
  8758. "isAutoInc": false,
  8759. "comment": "更新时间",
  8760. "columnFormat": "",
  8761. "storage": "",
  8762. "isVirtual": false,
  8763. "isGeneratedAlways": false,
  8764. "virtualExpr": "",
  8765. "virtualType": "",
  8766. "oldName": "updated_at"
  8767. },
  8768. {
  8769. "objectType": "TableField_MYSQL",
  8770. "name": "group_id",
  8771. "type": "varchar",
  8772. "length": 50,
  8773. "decimals": -2147483648,
  8774. "isUnsigned": false,
  8775. "isZeroFill": false,
  8776. "setEnumValues": "",
  8777. "isBinary": false,
  8778. "charset": "utf8",
  8779. "collation": "utf8_general_ci",
  8780. "isNullable": true,
  8781. "defaultType": "Null",
  8782. "defaultValue": "",
  8783. "isOnUpdateCurrentTimestamp": false,
  8784. "isAutoInc": false,
  8785. "comment": "集团ID",
  8786. "columnFormat": "",
  8787. "storage": "",
  8788. "isVirtual": false,
  8789. "isGeneratedAlways": false,
  8790. "virtualExpr": "",
  8791. "virtualType": "",
  8792. "oldName": "group_id"
  8793. },
  8794. {
  8795. "objectType": "TableField_MYSQL",
  8796. "name": "source",
  8797. "type": "varchar",
  8798. "length": 50,
  8799. "decimals": -2147483648,
  8800. "isUnsigned": false,
  8801. "isZeroFill": false,
  8802. "setEnumValues": "",
  8803. "isBinary": false,
  8804. "charset": "utf8",
  8805. "collation": "utf8_general_ci",
  8806. "isNullable": true,
  8807. "defaultType": "Null",
  8808. "defaultValue": "",
  8809. "isOnUpdateCurrentTimestamp": false,
  8810. "isAutoInc": false,
  8811. "comment": "来源 (2-流程)",
  8812. "columnFormat": "",
  8813. "storage": "",
  8814. "isVirtual": false,
  8815. "isGeneratedAlways": false,
  8816. "virtualExpr": "",
  8817. "virtualType": "",
  8818. "oldName": "source"
  8819. },
  8820. {
  8821. "objectType": "TableField_MYSQL",
  8822. "name": "excluding_pay_amount",
  8823. "type": "double",
  8824. "length": -2147483648,
  8825. "decimals": -2147483648,
  8826. "isUnsigned": false,
  8827. "isZeroFill": false,
  8828. "setEnumValues": "",
  8829. "isBinary": false,
  8830. "charset": "",
  8831. "collation": "",
  8832. "isNullable": true,
  8833. "defaultType": "Null",
  8834. "defaultValue": "",
  8835. "isOnUpdateCurrentTimestamp": false,
  8836. "isAutoInc": false,
  8837. "comment": "支付金额(不含税)",
  8838. "columnFormat": "",
  8839. "storage": "",
  8840. "isVirtual": false,
  8841. "isGeneratedAlways": false,
  8842. "virtualExpr": "",
  8843. "virtualType": "",
  8844. "oldName": "excluding_pay_amount"
  8845. }
  8846. ],
  8847. "indexes": [],
  8848. "primaryKey": {
  8849. "objectType": "PrimaryKey_MYSQL",
  8850. "name": "",
  8851. "fields": [
  8852. {
  8853. "objectType": "IndexField_MYSQL",
  8854. "name": "id",
  8855. "keyLength": 0,
  8856. "order": "",
  8857. "oldName": "id"
  8858. }
  8859. ],
  8860. "oldName": "",
  8861. "indexMethod": "BTREE",
  8862. "comment": ""
  8863. },
  8864. "foreignKeys": [],
  8865. "triggers": [],
  8866. "tablePartitions": []
  8867. },
  8868. {
  8869. "objectType": "Table_MYSQL",
  8870. "name": "resource_plan_staff",
  8871. "comment": "资源计划人员基础表",
  8872. "engine": "InnoDB",
  8873. "characterSet": "utf8",
  8874. "collation": "utf8_general_ci",
  8875. "autoIncrement": 0,
  8876. "tablespace": "",
  8877. "storage": "",
  8878. "insertMethod": "",
  8879. "connection": "",
  8880. "checksum": false,
  8881. "rowFormat": "Dynamic",
  8882. "avgRowLength": 0,
  8883. "maxRows": 0,
  8884. "minRows": 0,
  8885. "keyBlockSize": 0,
  8886. "packKeys": "",
  8887. "delayKeyWrite": false,
  8888. "dataDirectory": "",
  8889. "indexDirectory": "",
  8890. "statsAutoRecalc": "",
  8891. "statsPersistent": "",
  8892. "statsSamplePages": 0,
  8893. "union": "",
  8894. "pageCheckSum": false,
  8895. "transactional": false,
  8896. "compression": "",
  8897. "oldName": "resource_plan_staff",
  8898. "encryption": false,
  8899. "createOptions": "",
  8900. "createTime": "2024-12-13 16:40:25",
  8901. "checkTime": "",
  8902. "dataFree": 0,
  8903. "dataLength": 16384,
  8904. "indexLength": 32768,
  8905. "maxDataLength": 0,
  8906. "rows": 0,
  8907. "updateTime": "",
  8908. "DDL": "CREATE TABLE `resource_plan_staff` (\n `id` varchar(50) NOT NULL,\n `user_id` varchar(50) DEFAULT NULL,\n `user_name` varchar(50) DEFAULT NULL COMMENT '用户名称',\n `oa_fun_classification_id` varchar(50) DEFAULT NULL COMMENT '职能分类ID',\n `oa_fun_classification_name` varchar(255) DEFAULT NULL COMMENT '职能分类名称',\n `post_id` varchar(50) DEFAULT NULL COMMENT '岗位职级(oa_user_cost)',\n `post_level_name` varchar(50) DEFAULT NULL COMMENT '岗位职级',\n `pro_id` varchar(50) DEFAULT NULL COMMENT '项目',\n `pro_name` varchar(255) DEFAULT NULL COMMENT '项目名称',\n `group_id` varchar(50) DEFAULT NULL COMMENT '集团',\n `cust_name` varchar(255) DEFAULT NULL COMMENT '客户',\n `created_at` datetime DEFAULT NULL COMMENT '创建时间',\n `create_by` varchar(255) DEFAULT NULL COMMENT '创建人',\n `update_at` datetime DEFAULT NULL COMMENT '修改时间',\n `update_by` varchar(100) DEFAULT NULL COMMENT '修改人',\n PRIMARY KEY (`id`),\n KEY `staff_pro_id_index` (`pro_id`) USING BTREE,\n KEY `staff_user_id_index` (`user_id`)\n) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='资源计划人员基础表'",
  8909. "partitionBy": "",
  8910. "partitionByExpr": "",
  8911. "partitions": 0,
  8912. "partitionKeyAlgorithm": "",
  8913. "subPartitionBy": "",
  8914. "subPartitionByExpr": "",
  8915. "subPartitions": 0,
  8916. "subPartitionKeyAlgorithm": "",
  8917. "fields": [
  8918. {
  8919. "objectType": "TableField_MYSQL",
  8920. "name": "id",
  8921. "type": "varchar",
  8922. "length": 50,
  8923. "decimals": -2147483648,
  8924. "isUnsigned": false,
  8925. "isZeroFill": false,
  8926. "setEnumValues": "",
  8927. "isBinary": false,
  8928. "charset": "utf8",
  8929. "collation": "utf8_general_ci",
  8930. "isNullable": false,
  8931. "defaultType": "Others",
  8932. "defaultValue": "",
  8933. "isOnUpdateCurrentTimestamp": false,
  8934. "isAutoInc": false,
  8935. "comment": "",
  8936. "columnFormat": "",
  8937. "storage": "",
  8938. "isVirtual": false,
  8939. "isGeneratedAlways": false,
  8940. "virtualExpr": "",
  8941. "virtualType": "",
  8942. "oldName": "id"
  8943. },
  8944. {
  8945. "objectType": "TableField_MYSQL",
  8946. "name": "user_id",
  8947. "type": "varchar",
  8948. "length": 50,
  8949. "decimals": -2147483648,
  8950. "isUnsigned": false,
  8951. "isZeroFill": false,
  8952. "setEnumValues": "",
  8953. "isBinary": false,
  8954. "charset": "utf8",
  8955. "collation": "utf8_general_ci",
  8956. "isNullable": true,
  8957. "defaultType": "Null",
  8958. "defaultValue": "",
  8959. "isOnUpdateCurrentTimestamp": false,
  8960. "isAutoInc": false,
  8961. "comment": "",
  8962. "columnFormat": "",
  8963. "storage": "",
  8964. "isVirtual": false,
  8965. "isGeneratedAlways": false,
  8966. "virtualExpr": "",
  8967. "virtualType": "",
  8968. "oldName": "user_id"
  8969. },
  8970. {
  8971. "objectType": "TableField_MYSQL",
  8972. "name": "user_name",
  8973. "type": "varchar",
  8974. "length": 50,
  8975. "decimals": -2147483648,
  8976. "isUnsigned": false,
  8977. "isZeroFill": false,
  8978. "setEnumValues": "",
  8979. "isBinary": false,
  8980. "charset": "utf8",
  8981. "collation": "utf8_general_ci",
  8982. "isNullable": true,
  8983. "defaultType": "Null",
  8984. "defaultValue": "",
  8985. "isOnUpdateCurrentTimestamp": false,
  8986. "isAutoInc": false,
  8987. "comment": "用户名称",
  8988. "columnFormat": "",
  8989. "storage": "",
  8990. "isVirtual": false,
  8991. "isGeneratedAlways": false,
  8992. "virtualExpr": "",
  8993. "virtualType": "",
  8994. "oldName": "user_name"
  8995. },
  8996. {
  8997. "objectType": "TableField_MYSQL",
  8998. "name": "oa_fun_classification_id",
  8999. "type": "varchar",
  9000. "length": 50,
  9001. "decimals": -2147483648,
  9002. "isUnsigned": false,
  9003. "isZeroFill": false,
  9004. "setEnumValues": "",
  9005. "isBinary": false,
  9006. "charset": "utf8",
  9007. "collation": "utf8_general_ci",
  9008. "isNullable": true,
  9009. "defaultType": "Null",
  9010. "defaultValue": "",
  9011. "isOnUpdateCurrentTimestamp": false,
  9012. "isAutoInc": false,
  9013. "comment": "职能分类ID",
  9014. "columnFormat": "",
  9015. "storage": "",
  9016. "isVirtual": false,
  9017. "isGeneratedAlways": false,
  9018. "virtualExpr": "",
  9019. "virtualType": "",
  9020. "oldName": "oa_fun_classification_id"
  9021. },
  9022. {
  9023. "objectType": "TableField_MYSQL",
  9024. "name": "oa_fun_classification_name",
  9025. "type": "varchar",
  9026. "length": 255,
  9027. "decimals": -2147483648,
  9028. "isUnsigned": false,
  9029. "isZeroFill": false,
  9030. "setEnumValues": "",
  9031. "isBinary": false,
  9032. "charset": "utf8",
  9033. "collation": "utf8_general_ci",
  9034. "isNullable": true,
  9035. "defaultType": "Null",
  9036. "defaultValue": "",
  9037. "isOnUpdateCurrentTimestamp": false,
  9038. "isAutoInc": false,
  9039. "comment": "职能分类名称",
  9040. "columnFormat": "",
  9041. "storage": "",
  9042. "isVirtual": false,
  9043. "isGeneratedAlways": false,
  9044. "virtualExpr": "",
  9045. "virtualType": "",
  9046. "oldName": "oa_fun_classification_name"
  9047. },
  9048. {
  9049. "objectType": "TableField_MYSQL",
  9050. "name": "post_id",
  9051. "type": "varchar",
  9052. "length": 50,
  9053. "decimals": -2147483648,
  9054. "isUnsigned": false,
  9055. "isZeroFill": false,
  9056. "setEnumValues": "",
  9057. "isBinary": false,
  9058. "charset": "utf8",
  9059. "collation": "utf8_general_ci",
  9060. "isNullable": true,
  9061. "defaultType": "Null",
  9062. "defaultValue": "",
  9063. "isOnUpdateCurrentTimestamp": false,
  9064. "isAutoInc": false,
  9065. "comment": "岗位职级(oa_user_cost)",
  9066. "columnFormat": "",
  9067. "storage": "",
  9068. "isVirtual": false,
  9069. "isGeneratedAlways": false,
  9070. "virtualExpr": "",
  9071. "virtualType": "",
  9072. "oldName": "post_id"
  9073. },
  9074. {
  9075. "objectType": "TableField_MYSQL",
  9076. "name": "post_level_name",
  9077. "type": "varchar",
  9078. "length": 50,
  9079. "decimals": -2147483648,
  9080. "isUnsigned": false,
  9081. "isZeroFill": false,
  9082. "setEnumValues": "",
  9083. "isBinary": false,
  9084. "charset": "utf8",
  9085. "collation": "utf8_general_ci",
  9086. "isNullable": true,
  9087. "defaultType": "Null",
  9088. "defaultValue": "",
  9089. "isOnUpdateCurrentTimestamp": false,
  9090. "isAutoInc": false,
  9091. "comment": "岗位职级",
  9092. "columnFormat": "",
  9093. "storage": "",
  9094. "isVirtual": false,
  9095. "isGeneratedAlways": false,
  9096. "virtualExpr": "",
  9097. "virtualType": "",
  9098. "oldName": "post_level_name"
  9099. },
  9100. {
  9101. "objectType": "TableField_MYSQL",
  9102. "name": "pro_id",
  9103. "type": "varchar",
  9104. "length": 50,
  9105. "decimals": -2147483648,
  9106. "isUnsigned": false,
  9107. "isZeroFill": false,
  9108. "setEnumValues": "",
  9109. "isBinary": false,
  9110. "charset": "utf8",
  9111. "collation": "utf8_general_ci",
  9112. "isNullable": true,
  9113. "defaultType": "Null",
  9114. "defaultValue": "",
  9115. "isOnUpdateCurrentTimestamp": false,
  9116. "isAutoInc": false,
  9117. "comment": "项目",
  9118. "columnFormat": "",
  9119. "storage": "",
  9120. "isVirtual": false,
  9121. "isGeneratedAlways": false,
  9122. "virtualExpr": "",
  9123. "virtualType": "",
  9124. "oldName": "pro_id"
  9125. },
  9126. {
  9127. "objectType": "TableField_MYSQL",
  9128. "name": "pro_name",
  9129. "type": "varchar",
  9130. "length": 255,
  9131. "decimals": -2147483648,
  9132. "isUnsigned": false,
  9133. "isZeroFill": false,
  9134. "setEnumValues": "",
  9135. "isBinary": false,
  9136. "charset": "utf8",
  9137. "collation": "utf8_general_ci",
  9138. "isNullable": true,
  9139. "defaultType": "Null",
  9140. "defaultValue": "",
  9141. "isOnUpdateCurrentTimestamp": false,
  9142. "isAutoInc": false,
  9143. "comment": "项目名称",
  9144. "columnFormat": "",
  9145. "storage": "",
  9146. "isVirtual": false,
  9147. "isGeneratedAlways": false,
  9148. "virtualExpr": "",
  9149. "virtualType": "",
  9150. "oldName": "pro_name"
  9151. },
  9152. {
  9153. "objectType": "TableField_MYSQL",
  9154. "name": "group_id",
  9155. "type": "varchar",
  9156. "length": 50,
  9157. "decimals": -2147483648,
  9158. "isUnsigned": false,
  9159. "isZeroFill": false,
  9160. "setEnumValues": "",
  9161. "isBinary": false,
  9162. "charset": "utf8",
  9163. "collation": "utf8_general_ci",
  9164. "isNullable": true,
  9165. "defaultType": "Null",
  9166. "defaultValue": "",
  9167. "isOnUpdateCurrentTimestamp": false,
  9168. "isAutoInc": false,
  9169. "comment": "集团",
  9170. "columnFormat": "",
  9171. "storage": "",
  9172. "isVirtual": false,
  9173. "isGeneratedAlways": false,
  9174. "virtualExpr": "",
  9175. "virtualType": "",
  9176. "oldName": "group_id"
  9177. },
  9178. {
  9179. "objectType": "TableField_MYSQL",
  9180. "name": "cust_name",
  9181. "type": "varchar",
  9182. "length": 255,
  9183. "decimals": -2147483648,
  9184. "isUnsigned": false,
  9185. "isZeroFill": false,
  9186. "setEnumValues": "",
  9187. "isBinary": false,
  9188. "charset": "utf8",
  9189. "collation": "utf8_general_ci",
  9190. "isNullable": true,
  9191. "defaultType": "Null",
  9192. "defaultValue": "",
  9193. "isOnUpdateCurrentTimestamp": false,
  9194. "isAutoInc": false,
  9195. "comment": "客户",
  9196. "columnFormat": "",
  9197. "storage": "",
  9198. "isVirtual": false,
  9199. "isGeneratedAlways": false,
  9200. "virtualExpr": "",
  9201. "virtualType": "",
  9202. "oldName": "cust_name"
  9203. },
  9204. {
  9205. "objectType": "TableField_MYSQL",
  9206. "name": "created_at",
  9207. "type": "datetime",
  9208. "length": -2147483648,
  9209. "decimals": -2147483648,
  9210. "isUnsigned": false,
  9211. "isZeroFill": false,
  9212. "setEnumValues": "",
  9213. "isBinary": false,
  9214. "charset": "",
  9215. "collation": "",
  9216. "isNullable": true,
  9217. "defaultType": "Null",
  9218. "defaultValue": "",
  9219. "isOnUpdateCurrentTimestamp": false,
  9220. "isAutoInc": false,
  9221. "comment": "创建时间",
  9222. "columnFormat": "",
  9223. "storage": "",
  9224. "isVirtual": false,
  9225. "isGeneratedAlways": false,
  9226. "virtualExpr": "",
  9227. "virtualType": "",
  9228. "oldName": "created_at"
  9229. },
  9230. {
  9231. "objectType": "TableField_MYSQL",
  9232. "name": "create_by",
  9233. "type": "varchar",
  9234. "length": 255,
  9235. "decimals": -2147483648,
  9236. "isUnsigned": false,
  9237. "isZeroFill": false,
  9238. "setEnumValues": "",
  9239. "isBinary": false,
  9240. "charset": "utf8",
  9241. "collation": "utf8_general_ci",
  9242. "isNullable": true,
  9243. "defaultType": "Null",
  9244. "defaultValue": "",
  9245. "isOnUpdateCurrentTimestamp": false,
  9246. "isAutoInc": false,
  9247. "comment": "创建人",
  9248. "columnFormat": "",
  9249. "storage": "",
  9250. "isVirtual": false,
  9251. "isGeneratedAlways": false,
  9252. "virtualExpr": "",
  9253. "virtualType": "",
  9254. "oldName": "create_by"
  9255. },
  9256. {
  9257. "objectType": "TableField_MYSQL",
  9258. "name": "update_at",
  9259. "type": "datetime",
  9260. "length": -2147483648,
  9261. "decimals": -2147483648,
  9262. "isUnsigned": false,
  9263. "isZeroFill": false,
  9264. "setEnumValues": "",
  9265. "isBinary": false,
  9266. "charset": "",
  9267. "collation": "",
  9268. "isNullable": true,
  9269. "defaultType": "Null",
  9270. "defaultValue": "",
  9271. "isOnUpdateCurrentTimestamp": false,
  9272. "isAutoInc": false,
  9273. "comment": "修改时间",
  9274. "columnFormat": "",
  9275. "storage": "",
  9276. "isVirtual": false,
  9277. "isGeneratedAlways": false,
  9278. "virtualExpr": "",
  9279. "virtualType": "",
  9280. "oldName": "update_at"
  9281. },
  9282. {
  9283. "objectType": "TableField_MYSQL",
  9284. "name": "update_by",
  9285. "type": "varchar",
  9286. "length": 100,
  9287. "decimals": -2147483648,
  9288. "isUnsigned": false,
  9289. "isZeroFill": false,
  9290. "setEnumValues": "",
  9291. "isBinary": false,
  9292. "charset": "utf8",
  9293. "collation": "utf8_general_ci",
  9294. "isNullable": true,
  9295. "defaultType": "Null",
  9296. "defaultValue": "",
  9297. "isOnUpdateCurrentTimestamp": false,
  9298. "isAutoInc": false,
  9299. "comment": "修改人",
  9300. "columnFormat": "",
  9301. "storage": "",
  9302. "isVirtual": false,
  9303. "isGeneratedAlways": false,
  9304. "virtualExpr": "",
  9305. "virtualType": "",
  9306. "oldName": "update_by"
  9307. }
  9308. ],
  9309. "indexes": [
  9310. {
  9311. "objectType": "Index_MYSQL",
  9312. "name": "staff_pro_id_index",
  9313. "type": "NORMAL",
  9314. "method": "BTREE",
  9315. "comment": "",
  9316. "oldName": "staff_pro_id_index",
  9317. "online": false,
  9318. "keyBlockSize": 0,
  9319. "parser": "",
  9320. "algorithm": "",
  9321. "lock": "",
  9322. "collation": "A",
  9323. "cardinality": "0",
  9324. "packed": "",
  9325. "fields": [
  9326. {
  9327. "objectType": "IndexField_MYSQL",
  9328. "name": "pro_id",
  9329. "keyLength": 0,
  9330. "order": "",
  9331. "oldName": "pro_id"
  9332. }
  9333. ]
  9334. },
  9335. {
  9336. "objectType": "Index_MYSQL",
  9337. "name": "staff_user_id_index",
  9338. "type": "NORMAL",
  9339. "method": "BTREE",
  9340. "comment": "",
  9341. "oldName": "staff_user_id_index",
  9342. "online": false,
  9343. "keyBlockSize": 0,
  9344. "parser": "",
  9345. "algorithm": "",
  9346. "lock": "",
  9347. "collation": "A",
  9348. "cardinality": "0",
  9349. "packed": "",
  9350. "fields": [
  9351. {
  9352. "objectType": "IndexField_MYSQL",
  9353. "name": "user_id",
  9354. "keyLength": 0,
  9355. "order": "",
  9356. "oldName": "user_id"
  9357. }
  9358. ]
  9359. }
  9360. ],
  9361. "primaryKey": {
  9362. "objectType": "PrimaryKey_MYSQL",
  9363. "name": "",
  9364. "fields": [
  9365. {
  9366. "objectType": "IndexField_MYSQL",
  9367. "name": "id",
  9368. "keyLength": 0,
  9369. "order": "",
  9370. "oldName": "id"
  9371. }
  9372. ],
  9373. "oldName": "",
  9374. "indexMethod": "BTREE",
  9375. "comment": ""
  9376. },
  9377. "foreignKeys": [],
  9378. "triggers": [],
  9379. "tablePartitions": []
  9380. },
  9381. {
  9382. "objectType": "Table_MYSQL",
  9383. "name": "resource_plan_staff_detail",
  9384. "comment": "资源计划人员详情表",
  9385. "engine": "InnoDB",
  9386. "characterSet": "utf8",
  9387. "collation": "utf8_general_ci",
  9388. "autoIncrement": 0,
  9389. "tablespace": "",
  9390. "storage": "",
  9391. "insertMethod": "",
  9392. "connection": "",
  9393. "checksum": false,
  9394. "rowFormat": "Dynamic",
  9395. "avgRowLength": 0,
  9396. "maxRows": 0,
  9397. "minRows": 0,
  9398. "keyBlockSize": 0,
  9399. "packKeys": "",
  9400. "delayKeyWrite": false,
  9401. "dataDirectory": "",
  9402. "indexDirectory": "",
  9403. "statsAutoRecalc": "",
  9404. "statsPersistent": "",
  9405. "statsSamplePages": 0,
  9406. "union": "",
  9407. "pageCheckSum": false,
  9408. "transactional": false,
  9409. "compression": "",
  9410. "oldName": "resource_plan_staff_detail",
  9411. "encryption": false,
  9412. "createOptions": "",
  9413. "createTime": "2024-12-13 16:40:25",
  9414. "checkTime": "",
  9415. "dataFree": 0,
  9416. "dataLength": 16384,
  9417. "indexLength": 0,
  9418. "maxDataLength": 0,
  9419. "rows": 0,
  9420. "updateTime": "",
  9421. "DDL": "CREATE TABLE `resource_plan_staff_detail` (\n `id` varchar(50) NOT NULL,\n `plan_staff_id` varchar(50) DEFAULT NULL COMMENT '资源计划人员ID',\n `user_id` varchar(50) DEFAULT NULL,\n `pro_id` varchar(50) DEFAULT NULL,\n `year_no` int(11) DEFAULT NULL COMMENT '年',\n `month_no` int(11) DEFAULT NULL COMMENT '月',\n `year_month_str` varchar(50) DEFAULT NULL COMMENT '年月',\n `year_mon` int(11) DEFAULT NULL COMMENT '年月',\n `multiple_hour` double DEFAULT NULL COMMENT '倍数',\n `workload` double DEFAULT NULL COMMENT '工作量 (倍数*工作天数)',\n `cost` double DEFAULT NULL COMMENT '成本',\n `group_id` varchar(50) DEFAULT NULL,\n `created_at` datetime DEFAULT NULL COMMENT '创建时间',\n `create_by` varchar(255) DEFAULT NULL COMMENT '创建人',\n `update_at` datetime DEFAULT NULL COMMENT '修改时间',\n `update_by` varchar(100) DEFAULT NULL COMMENT '修改人',\n `month_days` int(11) DEFAULT NULL COMMENT '每月工作天数',\n PRIMARY KEY (`id`)\n) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='资源计划人员详情表'",
  9422. "partitionBy": "",
  9423. "partitionByExpr": "",
  9424. "partitions": 0,
  9425. "partitionKeyAlgorithm": "",
  9426. "subPartitionBy": "",
  9427. "subPartitionByExpr": "",
  9428. "subPartitions": 0,
  9429. "subPartitionKeyAlgorithm": "",
  9430. "fields": [
  9431. {
  9432. "objectType": "TableField_MYSQL",
  9433. "name": "id",
  9434. "type": "varchar",
  9435. "length": 50,
  9436. "decimals": -2147483648,
  9437. "isUnsigned": false,
  9438. "isZeroFill": false,
  9439. "setEnumValues": "",
  9440. "isBinary": false,
  9441. "charset": "utf8",
  9442. "collation": "utf8_general_ci",
  9443. "isNullable": false,
  9444. "defaultType": "Others",
  9445. "defaultValue": "",
  9446. "isOnUpdateCurrentTimestamp": false,
  9447. "isAutoInc": false,
  9448. "comment": "",
  9449. "columnFormat": "",
  9450. "storage": "",
  9451. "isVirtual": false,
  9452. "isGeneratedAlways": false,
  9453. "virtualExpr": "",
  9454. "virtualType": "",
  9455. "oldName": "id"
  9456. },
  9457. {
  9458. "objectType": "TableField_MYSQL",
  9459. "name": "plan_staff_id",
  9460. "type": "varchar",
  9461. "length": 50,
  9462. "decimals": -2147483648,
  9463. "isUnsigned": false,
  9464. "isZeroFill": false,
  9465. "setEnumValues": "",
  9466. "isBinary": false,
  9467. "charset": "utf8",
  9468. "collation": "utf8_general_ci",
  9469. "isNullable": true,
  9470. "defaultType": "Null",
  9471. "defaultValue": "",
  9472. "isOnUpdateCurrentTimestamp": false,
  9473. "isAutoInc": false,
  9474. "comment": "资源计划人员ID",
  9475. "columnFormat": "",
  9476. "storage": "",
  9477. "isVirtual": false,
  9478. "isGeneratedAlways": false,
  9479. "virtualExpr": "",
  9480. "virtualType": "",
  9481. "oldName": "plan_staff_id"
  9482. },
  9483. {
  9484. "objectType": "TableField_MYSQL",
  9485. "name": "user_id",
  9486. "type": "varchar",
  9487. "length": 50,
  9488. "decimals": -2147483648,
  9489. "isUnsigned": false,
  9490. "isZeroFill": false,
  9491. "setEnumValues": "",
  9492. "isBinary": false,
  9493. "charset": "utf8",
  9494. "collation": "utf8_general_ci",
  9495. "isNullable": true,
  9496. "defaultType": "Null",
  9497. "defaultValue": "",
  9498. "isOnUpdateCurrentTimestamp": false,
  9499. "isAutoInc": false,
  9500. "comment": "",
  9501. "columnFormat": "",
  9502. "storage": "",
  9503. "isVirtual": false,
  9504. "isGeneratedAlways": false,
  9505. "virtualExpr": "",
  9506. "virtualType": "",
  9507. "oldName": "user_id"
  9508. },
  9509. {
  9510. "objectType": "TableField_MYSQL",
  9511. "name": "pro_id",
  9512. "type": "varchar",
  9513. "length": 50,
  9514. "decimals": -2147483648,
  9515. "isUnsigned": false,
  9516. "isZeroFill": false,
  9517. "setEnumValues": "",
  9518. "isBinary": false,
  9519. "charset": "utf8",
  9520. "collation": "utf8_general_ci",
  9521. "isNullable": true,
  9522. "defaultType": "Null",
  9523. "defaultValue": "",
  9524. "isOnUpdateCurrentTimestamp": false,
  9525. "isAutoInc": false,
  9526. "comment": "",
  9527. "columnFormat": "",
  9528. "storage": "",
  9529. "isVirtual": false,
  9530. "isGeneratedAlways": false,
  9531. "virtualExpr": "",
  9532. "virtualType": "",
  9533. "oldName": "pro_id"
  9534. },
  9535. {
  9536. "objectType": "TableField_MYSQL",
  9537. "name": "year_no",
  9538. "type": "int",
  9539. "length": 11,
  9540. "decimals": -2147483648,
  9541. "isUnsigned": false,
  9542. "isZeroFill": false,
  9543. "setEnumValues": "",
  9544. "isBinary": false,
  9545. "charset": "",
  9546. "collation": "",
  9547. "isNullable": true,
  9548. "defaultType": "Null",
  9549. "defaultValue": "",
  9550. "isOnUpdateCurrentTimestamp": false,
  9551. "isAutoInc": false,
  9552. "comment": "年",
  9553. "columnFormat": "",
  9554. "storage": "",
  9555. "isVirtual": false,
  9556. "isGeneratedAlways": false,
  9557. "virtualExpr": "",
  9558. "virtualType": "",
  9559. "oldName": "year_no"
  9560. },
  9561. {
  9562. "objectType": "TableField_MYSQL",
  9563. "name": "month_no",
  9564. "type": "int",
  9565. "length": 11,
  9566. "decimals": -2147483648,
  9567. "isUnsigned": false,
  9568. "isZeroFill": false,
  9569. "setEnumValues": "",
  9570. "isBinary": false,
  9571. "charset": "",
  9572. "collation": "",
  9573. "isNullable": true,
  9574. "defaultType": "Null",
  9575. "defaultValue": "",
  9576. "isOnUpdateCurrentTimestamp": false,
  9577. "isAutoInc": false,
  9578. "comment": "月",
  9579. "columnFormat": "",
  9580. "storage": "",
  9581. "isVirtual": false,
  9582. "isGeneratedAlways": false,
  9583. "virtualExpr": "",
  9584. "virtualType": "",
  9585. "oldName": "month_no"
  9586. },
  9587. {
  9588. "objectType": "TableField_MYSQL",
  9589. "name": "year_month_str",
  9590. "type": "varchar",
  9591. "length": 50,
  9592. "decimals": -2147483648,
  9593. "isUnsigned": false,
  9594. "isZeroFill": false,
  9595. "setEnumValues": "",
  9596. "isBinary": false,
  9597. "charset": "utf8",
  9598. "collation": "utf8_general_ci",
  9599. "isNullable": true,
  9600. "defaultType": "Null",
  9601. "defaultValue": "",
  9602. "isOnUpdateCurrentTimestamp": false,
  9603. "isAutoInc": false,
  9604. "comment": "年月",
  9605. "columnFormat": "",
  9606. "storage": "",
  9607. "isVirtual": false,
  9608. "isGeneratedAlways": false,
  9609. "virtualExpr": "",
  9610. "virtualType": "",
  9611. "oldName": "year_month_str"
  9612. },
  9613. {
  9614. "objectType": "TableField_MYSQL",
  9615. "name": "year_mon",
  9616. "type": "int",
  9617. "length": 11,
  9618. "decimals": -2147483648,
  9619. "isUnsigned": false,
  9620. "isZeroFill": false,
  9621. "setEnumValues": "",
  9622. "isBinary": false,
  9623. "charset": "",
  9624. "collation": "",
  9625. "isNullable": true,
  9626. "defaultType": "Null",
  9627. "defaultValue": "",
  9628. "isOnUpdateCurrentTimestamp": false,
  9629. "isAutoInc": false,
  9630. "comment": "年月",
  9631. "columnFormat": "",
  9632. "storage": "",
  9633. "isVirtual": false,
  9634. "isGeneratedAlways": false,
  9635. "virtualExpr": "",
  9636. "virtualType": "",
  9637. "oldName": "year_mon"
  9638. },
  9639. {
  9640. "objectType": "TableField_MYSQL",
  9641. "name": "multiple_hour",
  9642. "type": "double",
  9643. "length": -2147483648,
  9644. "decimals": -2147483648,
  9645. "isUnsigned": false,
  9646. "isZeroFill": false,
  9647. "setEnumValues": "",
  9648. "isBinary": false,
  9649. "charset": "",
  9650. "collation": "",
  9651. "isNullable": true,
  9652. "defaultType": "Null",
  9653. "defaultValue": "",
  9654. "isOnUpdateCurrentTimestamp": false,
  9655. "isAutoInc": false,
  9656. "comment": "倍数",
  9657. "columnFormat": "",
  9658. "storage": "",
  9659. "isVirtual": false,
  9660. "isGeneratedAlways": false,
  9661. "virtualExpr": "",
  9662. "virtualType": "",
  9663. "oldName": "multiple_hour"
  9664. },
  9665. {
  9666. "objectType": "TableField_MYSQL",
  9667. "name": "workload",
  9668. "type": "double",
  9669. "length": -2147483648,
  9670. "decimals": -2147483648,
  9671. "isUnsigned": false,
  9672. "isZeroFill": false,
  9673. "setEnumValues": "",
  9674. "isBinary": false,
  9675. "charset": "",
  9676. "collation": "",
  9677. "isNullable": true,
  9678. "defaultType": "Null",
  9679. "defaultValue": "",
  9680. "isOnUpdateCurrentTimestamp": false,
  9681. "isAutoInc": false,
  9682. "comment": "工作量 (倍数*工作天数)",
  9683. "columnFormat": "",
  9684. "storage": "",
  9685. "isVirtual": false,
  9686. "isGeneratedAlways": false,
  9687. "virtualExpr": "",
  9688. "virtualType": "",
  9689. "oldName": "workload"
  9690. },
  9691. {
  9692. "objectType": "TableField_MYSQL",
  9693. "name": "cost",
  9694. "type": "double",
  9695. "length": -2147483648,
  9696. "decimals": -2147483648,
  9697. "isUnsigned": false,
  9698. "isZeroFill": false,
  9699. "setEnumValues": "",
  9700. "isBinary": false,
  9701. "charset": "",
  9702. "collation": "",
  9703. "isNullable": true,
  9704. "defaultType": "Null",
  9705. "defaultValue": "",
  9706. "isOnUpdateCurrentTimestamp": false,
  9707. "isAutoInc": false,
  9708. "comment": "成本",
  9709. "columnFormat": "",
  9710. "storage": "",
  9711. "isVirtual": false,
  9712. "isGeneratedAlways": false,
  9713. "virtualExpr": "",
  9714. "virtualType": "",
  9715. "oldName": "cost"
  9716. },
  9717. {
  9718. "objectType": "TableField_MYSQL",
  9719. "name": "group_id",
  9720. "type": "varchar",
  9721. "length": 50,
  9722. "decimals": -2147483648,
  9723. "isUnsigned": false,
  9724. "isZeroFill": false,
  9725. "setEnumValues": "",
  9726. "isBinary": false,
  9727. "charset": "utf8",
  9728. "collation": "utf8_general_ci",
  9729. "isNullable": true,
  9730. "defaultType": "Null",
  9731. "defaultValue": "",
  9732. "isOnUpdateCurrentTimestamp": false,
  9733. "isAutoInc": false,
  9734. "comment": "",
  9735. "columnFormat": "",
  9736. "storage": "",
  9737. "isVirtual": false,
  9738. "isGeneratedAlways": false,
  9739. "virtualExpr": "",
  9740. "virtualType": "",
  9741. "oldName": "group_id"
  9742. },
  9743. {
  9744. "objectType": "TableField_MYSQL",
  9745. "name": "created_at",
  9746. "type": "datetime",
  9747. "length": -2147483648,
  9748. "decimals": -2147483648,
  9749. "isUnsigned": false,
  9750. "isZeroFill": false,
  9751. "setEnumValues": "",
  9752. "isBinary": false,
  9753. "charset": "",
  9754. "collation": "",
  9755. "isNullable": true,
  9756. "defaultType": "Null",
  9757. "defaultValue": "",
  9758. "isOnUpdateCurrentTimestamp": false,
  9759. "isAutoInc": false,
  9760. "comment": "创建时间",
  9761. "columnFormat": "",
  9762. "storage": "",
  9763. "isVirtual": false,
  9764. "isGeneratedAlways": false,
  9765. "virtualExpr": "",
  9766. "virtualType": "",
  9767. "oldName": "created_at"
  9768. },
  9769. {
  9770. "objectType": "TableField_MYSQL",
  9771. "name": "create_by",
  9772. "type": "varchar",
  9773. "length": 255,
  9774. "decimals": -2147483648,
  9775. "isUnsigned": false,
  9776. "isZeroFill": false,
  9777. "setEnumValues": "",
  9778. "isBinary": false,
  9779. "charset": "utf8",
  9780. "collation": "utf8_general_ci",
  9781. "isNullable": true,
  9782. "defaultType": "Null",
  9783. "defaultValue": "",
  9784. "isOnUpdateCurrentTimestamp": false,
  9785. "isAutoInc": false,
  9786. "comment": "创建人",
  9787. "columnFormat": "",
  9788. "storage": "",
  9789. "isVirtual": false,
  9790. "isGeneratedAlways": false,
  9791. "virtualExpr": "",
  9792. "virtualType": "",
  9793. "oldName": "create_by"
  9794. },
  9795. {
  9796. "objectType": "TableField_MYSQL",
  9797. "name": "update_at",
  9798. "type": "datetime",
  9799. "length": -2147483648,
  9800. "decimals": -2147483648,
  9801. "isUnsigned": false,
  9802. "isZeroFill": false,
  9803. "setEnumValues": "",
  9804. "isBinary": false,
  9805. "charset": "",
  9806. "collation": "",
  9807. "isNullable": true,
  9808. "defaultType": "Null",
  9809. "defaultValue": "",
  9810. "isOnUpdateCurrentTimestamp": false,
  9811. "isAutoInc": false,
  9812. "comment": "修改时间",
  9813. "columnFormat": "",
  9814. "storage": "",
  9815. "isVirtual": false,
  9816. "isGeneratedAlways": false,
  9817. "virtualExpr": "",
  9818. "virtualType": "",
  9819. "oldName": "update_at"
  9820. },
  9821. {
  9822. "objectType": "TableField_MYSQL",
  9823. "name": "update_by",
  9824. "type": "varchar",
  9825. "length": 100,
  9826. "decimals": -2147483648,
  9827. "isUnsigned": false,
  9828. "isZeroFill": false,
  9829. "setEnumValues": "",
  9830. "isBinary": false,
  9831. "charset": "utf8",
  9832. "collation": "utf8_general_ci",
  9833. "isNullable": true,
  9834. "defaultType": "Null",
  9835. "defaultValue": "",
  9836. "isOnUpdateCurrentTimestamp": false,
  9837. "isAutoInc": false,
  9838. "comment": "修改人",
  9839. "columnFormat": "",
  9840. "storage": "",
  9841. "isVirtual": false,
  9842. "isGeneratedAlways": false,
  9843. "virtualExpr": "",
  9844. "virtualType": "",
  9845. "oldName": "update_by"
  9846. },
  9847. {
  9848. "objectType": "TableField_MYSQL",
  9849. "name": "month_days",
  9850. "type": "int",
  9851. "length": 11,
  9852. "decimals": -2147483648,
  9853. "isUnsigned": false,
  9854. "isZeroFill": false,
  9855. "setEnumValues": "",
  9856. "isBinary": false,
  9857. "charset": "",
  9858. "collation": "",
  9859. "isNullable": true,
  9860. "defaultType": "Null",
  9861. "defaultValue": "",
  9862. "isOnUpdateCurrentTimestamp": false,
  9863. "isAutoInc": false,
  9864. "comment": "每月工作天数",
  9865. "columnFormat": "",
  9866. "storage": "",
  9867. "isVirtual": false,
  9868. "isGeneratedAlways": false,
  9869. "virtualExpr": "",
  9870. "virtualType": "",
  9871. "oldName": "month_days"
  9872. }
  9873. ],
  9874. "indexes": [],
  9875. "primaryKey": {
  9876. "objectType": "PrimaryKey_MYSQL",
  9877. "name": "",
  9878. "fields": [
  9879. {
  9880. "objectType": "IndexField_MYSQL",
  9881. "name": "id",
  9882. "keyLength": 0,
  9883. "order": "",
  9884. "oldName": "id"
  9885. }
  9886. ],
  9887. "oldName": "",
  9888. "indexMethod": "BTREE",
  9889. "comment": ""
  9890. },
  9891. "foreignKeys": [],
  9892. "triggers": [],
  9893. "tablePartitions": []
  9894. }
  9895. ],
  9896. "views": []
  9897. }
  9898. ]
  9899. },
  9900. "diagrams": [
  9901. {
  9902. "name": "Diagram 1",
  9903. "paperWidth": 2,
  9904. "paperHeight": 1,
  9905. "tableFont": "Arial Unicode MS",
  9906. "tableFontSize": 14,
  9907. "isBalckWhite": false,
  9908. "showDBSchemaName": false,
  9909. "showViewRelations": true,
  9910. "notation": "default",
  9911. "showFieldComment": false,
  9912. "showTableComment": false,
  9913. "shapes": [
  9914. {
  9915. "type": "table",
  9916. "schemaName": "zt",
  9917. "tableName": "pro_main",
  9918. "x": 0,
  9919. "y": 50,
  9920. "width": 300,
  9921. "height": 931,
  9922. "isBold": false,
  9923. "titleColor": {
  9924. "r": 55,
  9925. "g": 131,
  9926. "b": 192,
  9927. "a": 1
  9928. }
  9929. },
  9930. {
  9931. "type": "table",
  9932. "schemaName": "zt",
  9933. "tableName": "pro_main_extend",
  9934. "x": 370,
  9935. "y": 30,
  9936. "width": 225,
  9937. "height": 571,
  9938. "isBold": false,
  9939. "titleColor": {
  9940. "r": 55,
  9941. "g": 131,
  9942. "b": 192,
  9943. "a": 1
  9944. }
  9945. },
  9946. {
  9947. "type": "table",
  9948. "schemaName": "zt",
  9949. "tableName": "oa_pro_task_hour",
  9950. "x": 940,
  9951. "y": 60,
  9952. "width": 204,
  9953. "height": 351,
  9954. "isBold": false,
  9955. "titleColor": {
  9956. "r": 55,
  9957. "g": 131,
  9958. "b": 192,
  9959. "a": 1
  9960. }
  9961. },
  9962. {
  9963. "type": "table",
  9964. "schemaName": "zt",
  9965. "tableName": "acc_receivable",
  9966. "x": 670,
  9967. "y": 580,
  9968. "width": 210,
  9969. "height": 851,
  9970. "isBold": false,
  9971. "titleColor": {
  9972. "r": 55,
  9973. "g": 131,
  9974. "b": 192,
  9975. "a": 1
  9976. }
  9977. },
  9978. {
  9979. "type": "table",
  9980. "schemaName": "zt",
  9981. "tableName": "ctr_main",
  9982. "x": 1820,
  9983. "y": 30,
  9984. "width": 230,
  9985. "height": 711,
  9986. "isBold": false,
  9987. "titleColor": {
  9988. "r": 55,
  9989. "g": 131,
  9990. "b": 192,
  9991. "a": 1
  9992. }
  9993. },
  9994. {
  9995. "type": "table",
  9996. "schemaName": "zt",
  9997. "tableName": "oa_expense_ledger",
  9998. "x": 1550,
  9999. "y": 40,
  10000. "width": 218,
  10001. "height": 311,
  10002. "isBold": false,
  10003. "titleColor": {
  10004. "r": 55,
  10005. "g": 131,
  10006. "b": 192,
  10007. "a": 1
  10008. }
  10009. },
  10010. {
  10011. "type": "table",
  10012. "schemaName": "zt",
  10013. "tableName": "oa_pro_task",
  10014. "x": 1560,
  10015. "y": 460,
  10016. "width": 232,
  10017. "height": 951,
  10018. "isBold": false,
  10019. "titleColor": {
  10020. "r": 55,
  10021. "g": 131,
  10022. "b": 192,
  10023. "a": 1
  10024. }
  10025. },
  10026. {
  10027. "type": "table",
  10028. "schemaName": "zt",
  10029. "tableName": "oa_pro_type",
  10030. "x": 950,
  10031. "y": 570,
  10032. "width": 177,
  10033. "height": 291,
  10034. "isBold": false,
  10035. "titleColor": {
  10036. "r": 55,
  10037. "g": 131,
  10038. "b": 192,
  10039. "a": 1
  10040. }
  10041. },
  10042. {
  10043. "type": "table",
  10044. "schemaName": "zt",
  10045. "tableName": "oa_user_cost",
  10046. "x": 370,
  10047. "y": 630,
  10048. "width": 188,
  10049. "height": 271,
  10050. "isBold": false,
  10051. "titleColor": {
  10052. "r": 55,
  10053. "g": 131,
  10054. "b": 192,
  10055. "a": 1
  10056. }
  10057. },
  10058. {
  10059. "type": "table",
  10060. "schemaName": "zt",
  10061. "tableName": "out_order_main",
  10062. "x": 1280,
  10063. "y": 530,
  10064. "width": 235,
  10065. "height": 731,
  10066. "isBold": false,
  10067. "titleColor": {
  10068. "r": 55,
  10069. "g": 131,
  10070. "b": 192,
  10071. "a": 1
  10072. }
  10073. },
  10074. {
  10075. "type": "table",
  10076. "schemaName": "zt",
  10077. "tableName": "out_order_pay",
  10078. "x": 350,
  10079. "y": 930,
  10080. "width": 215,
  10081. "height": 571,
  10082. "isBold": false,
  10083. "titleColor": {
  10084. "r": 55,
  10085. "g": 131,
  10086. "b": 192,
  10087. "a": 1
  10088. }
  10089. },
  10090. {
  10091. "type": "table",
  10092. "schemaName": "zt",
  10093. "tableName": "resource_plan_staff",
  10094. "x": 620,
  10095. "y": 70,
  10096. "width": 271,
  10097. "height": 351,
  10098. "isBold": false,
  10099. "titleColor": {
  10100. "r": 55,
  10101. "g": 131,
  10102. "b": 192,
  10103. "a": 1
  10104. }
  10105. },
  10106. {
  10107. "type": "table",
  10108. "schemaName": "zt",
  10109. "tableName": "resource_plan_staff_detail",
  10110. "x": 1290,
  10111. "y": 50,
  10112. "width": 217,
  10113. "height": 391,
  10114. "isBold": false,
  10115. "titleColor": {
  10116. "r": 55,
  10117. "g": 131,
  10118. "b": 192,
  10119. "a": 1
  10120. }
  10121. }
  10122. ],
  10123. "layers": [],
  10124. "relations": [
  10125. {
  10126. "name": "FK_CONSTRAINTS_CTR_MAIN",
  10127. "sourceTableName": "acc_receivable",
  10128. "sourceSchemaName": "zt",
  10129. "lineWidth": 1,
  10130. "visible": true,
  10131. "vertices": [
  10132. {
  10133. "x": 780,
  10134. "y": 565
  10135. },
  10136. {
  10137. "x": 780,
  10138. "y": 120
  10139. },
  10140. {
  10141. "x": 1920,
  10142. "y": 120
  10143. },
  10144. {
  10145. "x": 1920,
  10146. "y": 756
  10147. }
  10148. ],
  10149. "label": {
  10150. "x": 788,
  10151. "y": 560,
  10152. "width": 209,
  10153. "height": 40,
  10154. "fontName": "Arial Unicode MS",
  10155. "fontSize": 14,
  10156. "fontColor": {
  10157. "r": 51,
  10158. "g": 51,
  10159. "b": 51,
  10160. "a": 1
  10161. },
  10162. "isFontBold": false,
  10163. "isFontItalic": false,
  10164. "isVisible": false
  10165. }
  10166. },
  10167. {
  10168. "name": "FK_CONSTRAINT_CTR_PRO",
  10169. "sourceTableName": "ctr_main",
  10170. "sourceSchemaName": "zt",
  10171. "lineWidth": 1,
  10172. "visible": true,
  10173. "vertices": [
  10174. {
  10175. "x": 1930,
  10176. "y": 756
  10177. },
  10178. {
  10179. "x": 1930,
  10180. "y": 125
  10181. },
  10182. {
  10183. "x": 150,
  10184. "y": 125
  10185. },
  10186. {
  10187. "x": 150,
  10188. "y": 35
  10189. }
  10190. ],
  10191. "label": {
  10192. "x": 1854,
  10193. "y": 746,
  10194. "width": 196,
  10195. "height": 40,
  10196. "fontName": "Arial Unicode MS",
  10197. "fontSize": 14,
  10198. "fontColor": {
  10199. "r": 51,
  10200. "g": 51,
  10201. "b": 51,
  10202. "a": 1
  10203. },
  10204. "isFontBold": false,
  10205. "isFontItalic": false,
  10206. "isVisible": false
  10207. }
  10208. }
  10209. ],
  10210. "viewRelations": []
  10211. }
  10212. ]
  10213. }