fedd8a32-a0fb-49fe-8270-6dd84b1fc558.xml 478 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252125312541255125612571258125912601261126212631264126512661267126812691270127112721273127412751276127712781279128012811282128312841285128612871288128912901291129212931294129512961297129812991300130113021303130413051306130713081309131013111312131313141315131613171318131913201321132213231324132513261327132813291330133113321333133413351336133713381339134013411342134313441345134613471348134913501351135213531354135513561357135813591360136113621363136413651366136713681369137013711372137313741375137613771378137913801381138213831384138513861387138813891390139113921393139413951396139713981399140014011402140314041405140614071408140914101411141214131414141514161417141814191420142114221423142414251426142714281429143014311432143314341435143614371438143914401441144214431444144514461447144814491450145114521453145414551456145714581459146014611462146314641465146614671468146914701471147214731474147514761477147814791480148114821483148414851486148714881489149014911492149314941495149614971498149915001501150215031504150515061507150815091510151115121513151415151516151715181519152015211522152315241525152615271528152915301531153215331534153515361537153815391540154115421543154415451546154715481549155015511552155315541555155615571558155915601561156215631564156515661567156815691570157115721573157415751576157715781579158015811582158315841585158615871588158915901591159215931594159515961597159815991600160116021603160416051606160716081609161016111612161316141615161616171618161916201621162216231624162516261627162816291630163116321633163416351636163716381639164016411642164316441645164616471648164916501651165216531654165516561657165816591660166116621663166416651666166716681669167016711672167316741675167616771678167916801681168216831684168516861687168816891690169116921693169416951696169716981699170017011702170317041705170617071708170917101711171217131714171517161717171817191720172117221723172417251726172717281729173017311732173317341735173617371738173917401741174217431744174517461747174817491750175117521753175417551756175717581759176017611762176317641765176617671768176917701771177217731774177517761777177817791780178117821783178417851786178717881789179017911792179317941795179617971798179918001801180218031804180518061807180818091810181118121813181418151816181718181819182018211822182318241825182618271828182918301831183218331834183518361837183818391840184118421843184418451846184718481849185018511852185318541855185618571858185918601861186218631864186518661867186818691870187118721873187418751876187718781879188018811882188318841885188618871888188918901891189218931894189518961897189818991900190119021903190419051906190719081909191019111912191319141915191619171918191919201921192219231924192519261927192819291930193119321933193419351936193719381939194019411942194319441945194619471948194919501951195219531954195519561957195819591960196119621963196419651966196719681969197019711972197319741975197619771978197919801981198219831984198519861987198819891990199119921993199419951996199719981999200020012002200320042005200620072008200920102011201220132014201520162017201820192020202120222023202420252026202720282029203020312032203320342035203620372038203920402041204220432044204520462047204820492050205120522053205420552056205720582059206020612062206320642065206620672068206920702071207220732074207520762077207820792080208120822083208420852086208720882089209020912092209320942095209620972098209921002101210221032104210521062107210821092110211121122113211421152116211721182119212021212122212321242125212621272128212921302131213221332134213521362137213821392140214121422143214421452146214721482149215021512152215321542155215621572158215921602161216221632164216521662167216821692170217121722173217421752176217721782179218021812182218321842185218621872188218921902191219221932194219521962197219821992200220122022203220422052206220722082209221022112212221322142215221622172218221922202221222222232224222522262227222822292230223122322233223422352236223722382239224022412242224322442245224622472248224922502251225222532254225522562257225822592260226122622263226422652266226722682269227022712272227322742275227622772278227922802281228222832284228522862287228822892290229122922293229422952296229722982299230023012302230323042305230623072308230923102311231223132314231523162317231823192320232123222323232423252326232723282329233023312332233323342335233623372338233923402341234223432344234523462347234823492350235123522353235423552356235723582359236023612362236323642365236623672368236923702371237223732374237523762377237823792380238123822383238423852386238723882389239023912392239323942395239623972398239924002401240224032404240524062407240824092410241124122413241424152416241724182419242024212422242324242425242624272428242924302431243224332434243524362437243824392440244124422443244424452446244724482449245024512452245324542455245624572458245924602461246224632464246524662467246824692470247124722473247424752476247724782479248024812482248324842485248624872488248924902491249224932494249524962497249824992500250125022503250425052506250725082509251025112512251325142515251625172518251925202521252225232524252525262527252825292530253125322533253425352536253725382539254025412542254325442545254625472548254925502551255225532554255525562557255825592560256125622563256425652566256725682569257025712572257325742575257625772578257925802581258225832584258525862587258825892590259125922593259425952596259725982599260026012602260326042605260626072608260926102611261226132614261526162617261826192620262126222623262426252626262726282629263026312632263326342635263626372638263926402641264226432644264526462647264826492650265126522653265426552656265726582659266026612662266326642665266626672668266926702671267226732674267526762677267826792680268126822683268426852686268726882689269026912692269326942695269626972698269927002701270227032704270527062707270827092710271127122713271427152716271727182719272027212722272327242725272627272728272927302731273227332734273527362737273827392740274127422743274427452746274727482749275027512752275327542755275627572758275927602761276227632764276527662767276827692770277127722773277427752776277727782779278027812782278327842785278627872788278927902791279227932794279527962797279827992800280128022803280428052806280728082809281028112812281328142815281628172818281928202821282228232824282528262827282828292830283128322833283428352836283728382839284028412842284328442845284628472848284928502851285228532854285528562857285828592860286128622863286428652866286728682869287028712872287328742875287628772878287928802881288228832884288528862887288828892890289128922893289428952896289728982899290029012902290329042905290629072908290929102911291229132914291529162917291829192920292129222923292429252926292729282929293029312932293329342935293629372938293929402941294229432944294529462947294829492950295129522953295429552956295729582959296029612962296329642965296629672968296929702971297229732974297529762977297829792980298129822983298429852986298729882989299029912992299329942995299629972998299930003001300230033004300530063007300830093010301130123013301430153016301730183019302030213022302330243025302630273028302930303031303230333034303530363037303830393040304130423043304430453046304730483049305030513052305330543055305630573058305930603061306230633064306530663067306830693070307130723073307430753076307730783079308030813082308330843085308630873088308930903091309230933094309530963097309830993100310131023103310431053106310731083109311031113112311331143115311631173118311931203121312231233124312531263127312831293130313131323133313431353136313731383139314031413142314331443145314631473148314931503151315231533154315531563157315831593160316131623163316431653166316731683169317031713172317331743175317631773178317931803181318231833184318531863187318831893190319131923193319431953196319731983199320032013202320332043205320632073208320932103211321232133214321532163217321832193220322132223223322432253226322732283229323032313232323332343235323632373238323932403241324232433244324532463247324832493250325132523253325432553256325732583259326032613262326332643265326632673268326932703271327232733274327532763277327832793280328132823283328432853286328732883289329032913292329332943295329632973298329933003301330233033304330533063307330833093310331133123313331433153316331733183319332033213322332333243325332633273328332933303331333233333334333533363337333833393340334133423343334433453346334733483349335033513352335333543355335633573358335933603361336233633364336533663367336833693370337133723373337433753376337733783379338033813382338333843385338633873388338933903391339233933394339533963397339833993400340134023403340434053406340734083409341034113412341334143415341634173418341934203421342234233424342534263427342834293430343134323433343434353436343734383439344034413442344334443445344634473448344934503451345234533454345534563457345834593460346134623463346434653466346734683469347034713472347334743475347634773478347934803481348234833484348534863487348834893490349134923493349434953496349734983499350035013502350335043505350635073508350935103511351235133514351535163517351835193520352135223523352435253526352735283529353035313532353335343535353635373538353935403541354235433544354535463547354835493550355135523553355435553556355735583559356035613562356335643565356635673568356935703571357235733574357535763577357835793580358135823583358435853586358735883589359035913592359335943595359635973598359936003601360236033604360536063607360836093610361136123613361436153616361736183619362036213622362336243625362636273628362936303631363236333634363536363637363836393640364136423643364436453646364736483649365036513652365336543655365636573658365936603661366236633664366536663667366836693670367136723673367436753676367736783679368036813682368336843685368636873688368936903691369236933694369536963697369836993700370137023703370437053706370737083709371037113712371337143715371637173718371937203721372237233724372537263727372837293730373137323733373437353736373737383739374037413742374337443745374637473748374937503751375237533754375537563757375837593760376137623763376437653766376737683769377037713772377337743775377637773778377937803781378237833784378537863787378837893790379137923793379437953796379737983799380038013802380338043805380638073808380938103811381238133814381538163817381838193820382138223823382438253826382738283829383038313832383338343835383638373838383938403841384238433844384538463847384838493850385138523853385438553856385738583859386038613862386338643865386638673868386938703871387238733874387538763877387838793880388138823883388438853886388738883889389038913892389338943895389638973898389939003901390239033904390539063907390839093910391139123913391439153916391739183919392039213922392339243925392639273928392939303931393239333934393539363937393839393940394139423943394439453946394739483949395039513952395339543955395639573958395939603961396239633964396539663967396839693970397139723973397439753976397739783979398039813982398339843985398639873988398939903991399239933994399539963997399839994000400140024003400440054006400740084009401040114012401340144015401640174018401940204021402240234024402540264027402840294030403140324033403440354036403740384039404040414042404340444045404640474048404940504051405240534054405540564057405840594060406140624063406440654066406740684069407040714072407340744075407640774078407940804081408240834084408540864087408840894090409140924093409440954096409740984099410041014102410341044105410641074108410941104111411241134114411541164117411841194120412141224123412441254126412741284129413041314132413341344135413641374138413941404141414241434144414541464147414841494150415141524153415441554156415741584159416041614162416341644165416641674168416941704171417241734174417541764177417841794180418141824183418441854186418741884189419041914192419341944195419641974198419942004201420242034204420542064207420842094210421142124213421442154216421742184219422042214222422342244225422642274228422942304231423242334234423542364237423842394240424142424243424442454246424742484249425042514252425342544255425642574258425942604261426242634264426542664267426842694270427142724273427442754276427742784279428042814282428342844285428642874288428942904291429242934294429542964297429842994300430143024303430443054306430743084309431043114312431343144315431643174318431943204321432243234324432543264327432843294330433143324333433443354336433743384339434043414342434343444345434643474348434943504351435243534354435543564357435843594360436143624363436443654366436743684369437043714372437343744375437643774378437943804381438243834384438543864387438843894390439143924393439443954396439743984399440044014402440344044405440644074408440944104411441244134414441544164417441844194420442144224423442444254426442744284429443044314432443344344435443644374438443944404441444244434444444544464447444844494450445144524453445444554456445744584459446044614462446344644465446644674468446944704471447244734474447544764477447844794480448144824483448444854486448744884489449044914492449344944495449644974498449945004501450245034504450545064507450845094510451145124513451445154516451745184519452045214522452345244525452645274528452945304531453245334534453545364537453845394540454145424543454445454546454745484549455045514552455345544555455645574558455945604561456245634564456545664567456845694570457145724573457445754576457745784579458045814582458345844585458645874588458945904591459245934594459545964597459845994600460146024603460446054606460746084609461046114612461346144615461646174618461946204621462246234624462546264627462846294630463146324633463446354636463746384639464046414642464346444645464646474648464946504651465246534654465546564657465846594660466146624663466446654666466746684669467046714672467346744675467646774678467946804681468246834684468546864687468846894690469146924693469446954696469746984699470047014702470347044705470647074708470947104711471247134714471547164717471847194720472147224723472447254726472747284729473047314732473347344735473647374738473947404741474247434744474547464747474847494750475147524753475447554756475747584759476047614762476347644765476647674768476947704771477247734774477547764777477847794780478147824783478447854786478747884789479047914792479347944795479647974798479948004801480248034804480548064807480848094810481148124813481448154816481748184819482048214822482348244825482648274828482948304831483248334834483548364837483848394840484148424843484448454846484748484849485048514852485348544855485648574858485948604861486248634864486548664867486848694870487148724873487448754876487748784879488048814882488348844885488648874888488948904891489248934894489548964897489848994900490149024903490449054906490749084909491049114912491349144915491649174918491949204921492249234924492549264927492849294930493149324933493449354936493749384939494049414942494349444945494649474948494949504951495249534954495549564957495849594960496149624963496449654966496749684969497049714972497349744975497649774978497949804981498249834984498549864987498849894990499149924993499449954996499749984999500050015002500350045005500650075008500950105011501250135014501550165017501850195020502150225023502450255026502750285029503050315032503350345035503650375038503950405041504250435044504550465047504850495050505150525053505450555056505750585059506050615062506350645065506650675068506950705071507250735074507550765077507850795080508150825083508450855086508750885089509050915092509350945095509650975098509951005101510251035104510551065107510851095110511151125113511451155116511751185119512051215122512351245125512651275128512951305131513251335134513551365137513851395140514151425143514451455146514751485149515051515152515351545155515651575158515951605161516251635164516551665167516851695170517151725173517451755176517751785179518051815182518351845185518651875188518951905191519251935194519551965197519851995200520152025203520452055206520752085209521052115212521352145215521652175218521952205221522252235224522552265227522852295230523152325233523452355236523752385239524052415242524352445245524652475248524952505251525252535254525552565257525852595260526152625263526452655266526752685269527052715272527352745275527652775278527952805281528252835284528552865287528852895290529152925293529452955296529752985299530053015302530353045305530653075308530953105311531253135314531553165317531853195320532153225323532453255326532753285329533053315332533353345335533653375338533953405341534253435344534553465347534853495350535153525353535453555356535753585359536053615362536353645365536653675368536953705371537253735374537553765377537853795380538153825383538453855386538753885389539053915392539353945395539653975398539954005401540254035404540554065407540854095410541154125413541454155416541754185419542054215422542354245425542654275428542954305431543254335434543554365437543854395440544154425443544454455446544754485449545054515452545354545455545654575458545954605461546254635464546554665467546854695470547154725473547454755476547754785479548054815482548354845485548654875488548954905491549254935494549554965497549854995500550155025503550455055506550755085509551055115512551355145515551655175518551955205521552255235524552555265527552855295530553155325533553455355536553755385539554055415542554355445545554655475548554955505551555255535554555555565557555855595560556155625563556455655566556755685569557055715572557355745575557655775578557955805581558255835584558555865587558855895590559155925593559455955596559755985599560056015602560356045605560656075608560956105611561256135614561556165617561856195620562156225623562456255626562756285629563056315632563356345635563656375638563956405641564256435644564556465647564856495650565156525653565456555656565756585659566056615662566356645665566656675668566956705671567256735674567556765677567856795680568156825683568456855686568756885689569056915692569356945695569656975698569957005701570257035704570557065707570857095710571157125713571457155716571757185719572057215722572357245725572657275728572957305731573257335734573557365737573857395740574157425743574457455746574757485749575057515752575357545755575657575758575957605761576257635764576557665767576857695770577157725773577457755776577757785779578057815782578357845785578657875788578957905791579257935794579557965797579857995800580158025803580458055806580758085809581058115812581358145815581658175818581958205821582258235824582558265827582858295830583158325833583458355836583758385839584058415842584358445845584658475848584958505851585258535854585558565857585858595860586158625863586458655866586758685869587058715872587358745875587658775878587958805881588258835884588558865887588858895890589158925893589458955896589758985899590059015902590359045905590659075908590959105911591259135914591559165917591859195920592159225923592459255926592759285929593059315932593359345935593659375938593959405941594259435944594559465947594859495950595159525953595459555956595759585959596059615962596359645965596659675968596959705971597259735974597559765977597859795980598159825983598459855986598759885989599059915992599359945995599659975998599960006001600260036004600560066007600860096010601160126013601460156016601760186019602060216022602360246025602660276028602960306031603260336034603560366037603860396040604160426043604460456046604760486049605060516052605360546055605660576058605960606061606260636064606560666067606860696070607160726073607460756076607760786079608060816082608360846085608660876088608960906091609260936094609560966097609860996100610161026103610461056106610761086109611061116112611361146115611661176118611961206121612261236124612561266127612861296130613161326133613461356136613761386139614061416142614361446145614661476148614961506151615261536154615561566157615861596160616161626163616461656166616761686169617061716172617361746175617661776178617961806181618261836184618561866187618861896190619161926193619461956196619761986199620062016202620362046205620662076208620962106211621262136214621562166217621862196220622162226223622462256226622762286229623062316232623362346235623662376238623962406241624262436244624562466247624862496250625162526253625462556256625762586259626062616262626362646265626662676268626962706271627262736274627562766277627862796280628162826283628462856286628762886289629062916292629362946295629662976298629963006301630263036304630563066307630863096310631163126313631463156316631763186319632063216322632363246325632663276328632963306331633263336334633563366337633863396340634163426343634463456346634763486349635063516352635363546355635663576358635963606361636263636364636563666367636863696370637163726373637463756376637763786379638063816382638363846385638663876388638963906391639263936394639563966397639863996400640164026403640464056406640764086409641064116412641364146415641664176418641964206421642264236424642564266427642864296430643164326433643464356436643764386439644064416442644364446445644664476448644964506451645264536454645564566457645864596460646164626463646464656466646764686469647064716472647364746475647664776478647964806481648264836484648564866487648864896490649164926493649464956496649764986499650065016502650365046505650665076508650965106511651265136514651565166517651865196520652165226523652465256526652765286529653065316532653365346535653665376538653965406541654265436544654565466547654865496550655165526553655465556556655765586559656065616562656365646565656665676568656965706571657265736574657565766577657865796580658165826583658465856586658765886589659065916592659365946595659665976598659966006601660266036604660566066607660866096610661166126613661466156616661766186619662066216622662366246625662666276628662966306631663266336634663566366637663866396640664166426643664466456646664766486649665066516652665366546655665666576658665966606661666266636664666566666667666866696670667166726673667466756676667766786679668066816682668366846685668666876688668966906691669266936694669566966697669866996700670167026703670467056706670767086709671067116712671367146715671667176718671967206721672267236724672567266727672867296730673167326733673467356736673767386739674067416742674367446745674667476748674967506751675267536754675567566757675867596760676167626763676467656766676767686769677067716772677367746775677667776778677967806781678267836784678567866787678867896790679167926793679467956796679767986799680068016802680368046805680668076808680968106811681268136814681568166817681868196820682168226823682468256826682768286829683068316832683368346835683668376838683968406841684268436844684568466847684868496850685168526853685468556856685768586859686068616862686368646865686668676868686968706871687268736874687568766877687868796880688168826883688468856886688768886889689068916892689368946895689668976898689969006901690269036904690569066907690869096910691169126913691469156916691769186919692069216922692369246925692669276928692969306931693269336934693569366937693869396940694169426943694469456946694769486949695069516952695369546955695669576958695969606961696269636964696569666967696869696970697169726973697469756976697769786979698069816982698369846985698669876988698969906991699269936994699569966997699869997000700170027003700470057006700770087009701070117012701370147015701670177018701970207021702270237024702570267027702870297030703170327033703470357036703770387039704070417042704370447045704670477048704970507051705270537054705570567057705870597060706170627063706470657066706770687069707070717072707370747075707670777078707970807081708270837084708570867087708870897090709170927093709470957096709770987099710071017102710371047105710671077108710971107111711271137114711571167117711871197120712171227123712471257126712771287129713071317132713371347135713671377138713971407141714271437144714571467147714871497150715171527153715471557156715771587159716071617162716371647165716671677168716971707171717271737174717571767177717871797180718171827183718471857186718771887189719071917192719371947195719671977198719972007201720272037204720572067207720872097210721172127213721472157216721772187219722072217222722372247225722672277228722972307231723272337234723572367237723872397240724172427243724472457246724772487249725072517252725372547255725672577258725972607261726272637264726572667267726872697270727172727273727472757276727772787279728072817282728372847285728672877288728972907291729272937294729572967297729872997300730173027303730473057306730773087309731073117312731373147315731673177318731973207321732273237324732573267327732873297330733173327333733473357336733773387339734073417342734373447345734673477348734973507351735273537354735573567357735873597360736173627363736473657366736773687369737073717372737373747375737673777378737973807381738273837384738573867387738873897390739173927393739473957396739773987399740074017402740374047405740674077408740974107411741274137414741574167417741874197420742174227423742474257426742774287429743074317432743374347435743674377438743974407441744274437444744574467447744874497450745174527453745474557456745774587459746074617462746374647465746674677468746974707471747274737474747574767477747874797480748174827483748474857486748774887489749074917492749374947495749674977498749975007501750275037504750575067507750875097510751175127513751475157516751775187519752075217522752375247525752675277528752975307531753275337534753575367537753875397540754175427543754475457546754775487549755075517552755375547555755675577558755975607561756275637564756575667567756875697570757175727573757475757576757775787579758075817582758375847585758675877588758975907591759275937594759575967597759875997600760176027603760476057606760776087609761076117612761376147615761676177618761976207621762276237624762576267627762876297630763176327633763476357636763776387639764076417642764376447645764676477648764976507651765276537654765576567657765876597660766176627663766476657666766776687669767076717672767376747675767676777678767976807681768276837684768576867687768876897690769176927693769476957696769776987699770077017702770377047705770677077708770977107711771277137714771577167717771877197720772177227723772477257726772777287729773077317732773377347735773677377738773977407741774277437744774577467747774877497750775177527753775477557756775777587759776077617762776377647765776677677768776977707771777277737774777577767777777877797780778177827783778477857786778777887789779077917792779377947795779677977798779978007801780278037804780578067807780878097810781178127813781478157816781778187819782078217822782378247825782678277828782978307831783278337834783578367837783878397840784178427843784478457846784778487849785078517852785378547855785678577858785978607861786278637864786578667867786878697870787178727873787478757876787778787879788078817882788378847885788678877888788978907891789278937894789578967897789878997900790179027903790479057906790779087909791079117912791379147915791679177918791979207921792279237924792579267927792879297930793179327933793479357936793779387939794079417942794379447945794679477948794979507951795279537954795579567957795879597960796179627963796479657966796779687969797079717972797379747975797679777978797979807981798279837984798579867987798879897990799179927993799479957996799779987999800080018002800380048005800680078008800980108011801280138014801580168017801880198020802180228023802480258026802780288029803080318032803380348035803680378038803980408041804280438044804580468047804880498050805180528053805480558056805780588059806080618062806380648065806680678068806980708071807280738074807580768077807880798080808180828083808480858086808780888089809080918092809380948095809680978098809981008101810281038104810581068107810881098110811181128113811481158116811781188119812081218122812381248125812681278128812981308131813281338134813581368137813881398140814181428143814481458146814781488149815081518152815381548155815681578158815981608161816281638164816581668167816881698170817181728173817481758176817781788179818081818182818381848185818681878188818981908191819281938194819581968197819881998200820182028203820482058206820782088209821082118212821382148215821682178218821982208221822282238224822582268227822882298230823182328233823482358236823782388239824082418242824382448245824682478248824982508251825282538254825582568257825882598260826182628263826482658266826782688269827082718272827382748275827682778278827982808281828282838284828582868287828882898290829182928293829482958296829782988299830083018302830383048305830683078308830983108311831283138314831583168317831883198320832183228323832483258326832783288329833083318332833383348335833683378338833983408341834283438344834583468347834883498350835183528353835483558356835783588359836083618362836383648365836683678368836983708371837283738374837583768377837883798380838183828383838483858386838783888389839083918392839383948395839683978398839984008401840284038404840584068407840884098410841184128413841484158416841784188419842084218422842384248425842684278428842984308431843284338434843584368437843884398440844184428443844484458446844784488449845084518452845384548455845684578458845984608461846284638464846584668467846884698470847184728473847484758476847784788479848084818482848384848485848684878488848984908491849284938494849584968497849884998500850185028503850485058506850785088509851085118512851385148515851685178518851985208521852285238524852585268527852885298530853185328533853485358536853785388539854085418542854385448545854685478548854985508551855285538554855585568557855885598560856185628563856485658566856785688569857085718572857385748575857685778578857985808581858285838584858585868587858885898590859185928593859485958596859785988599860086018602860386048605860686078608860986108611861286138614861586168617861886198620862186228623862486258626862786288629863086318632863386348635863686378638863986408641864286438644864586468647864886498650865186528653865486558656865786588659866086618662866386648665866686678668866986708671867286738674867586768677867886798680868186828683868486858686868786888689869086918692869386948695869686978698869987008701870287038704870587068707870887098710871187128713871487158716871787188719872087218722872387248725872687278728872987308731873287338734873587368737873887398740874187428743874487458746874787488749875087518752875387548755875687578758875987608761876287638764876587668767876887698770877187728773877487758776877787788779878087818782878387848785878687878788878987908791879287938794879587968797879887998800880188028803880488058806880788088809881088118812881388148815881688178818881988208821882288238824882588268827882888298830883188328833883488358836883788388839884088418842884388448845884688478848884988508851885288538854885588568857885888598860886188628863886488658866886788688869887088718872887388748875887688778878887988808881888288838884888588868887888888898890889188928893889488958896889788988899890089018902890389048905890689078908890989108911891289138914891589168917891889198920892189228923892489258926892789288929893089318932893389348935893689378938893989408941894289438944894589468947894889498950895189528953895489558956895789588959896089618962896389648965896689678968896989708971897289738974897589768977897889798980898189828983898489858986898789888989899089918992899389948995899689978998899990009001900290039004900590069007900890099010901190129013901490159016901790189019902090219022902390249025902690279028902990309031903290339034903590369037903890399040904190429043904490459046904790489049905090519052905390549055905690579058905990609061906290639064906590669067906890699070907190729073907490759076907790789079908090819082908390849085908690879088908990909091909290939094909590969097909890999100910191029103910491059106910791089109911091119112911391149115911691179118911991209121912291239124912591269127912891299130913191329133913491359136913791389139914091419142914391449145914691479148914991509151915291539154915591569157915891599160916191629163916491659166916791689169917091719172917391749175917691779178917991809181918291839184918591869187918891899190919191929193919491959196919791989199920092019202920392049205920692079208920992109211921292139214921592169217921892199220922192229223922492259226922792289229923092319232923392349235923692379238923992409241924292439244924592469247924892499250925192529253925492559256925792589259926092619262926392649265926692679268926992709271927292739274927592769277927892799280928192829283928492859286928792889289929092919292929392949295929692979298929993009301930293039304930593069307930893099310931193129313931493159316931793189319932093219322932393249325932693279328932993309331933293339334933593369337933893399340934193429343934493459346934793489349935093519352935393549355935693579358935993609361936293639364936593669367936893699370937193729373937493759376937793789379938093819382938393849385938693879388938993909391939293939394939593969397939893999400940194029403940494059406940794089409941094119412941394149415941694179418941994209421942294239424942594269427942894299430943194329433943494359436943794389439944094419442944394449445944694479448944994509451945294539454945594569457945894599460946194629463946494659466946794689469947094719472947394749475947694779478947994809481948294839484948594869487948894899490949194929493949494959496949794989499950095019502950395049505950695079508950995109511951295139514951595169517951895199520952195229523952495259526952795289529953095319532953395349535953695379538953995409541954295439544954595469547954895499550955195529553955495559556955795589559956095619562956395649565956695679568956995709571957295739574957595769577957895799580958195829583958495859586958795889589959095919592959395949595959695979598959996009601960296039604960596069607960896099610961196129613961496159616961796189619962096219622962396249625962696279628962996309631963296339634963596369637963896399640964196429643964496459646964796489649965096519652965396549655965696579658965996609661966296639664966596669667966896699670967196729673967496759676967796789679968096819682968396849685968696879688968996909691969296939694969596969697969896999700970197029703970497059706970797089709971097119712971397149715971697179718971997209721972297239724972597269727972897299730973197329733973497359736973797389739974097419742974397449745974697479748974997509751975297539754975597569757975897599760976197629763976497659766976797689769977097719772977397749775977697779778977997809781978297839784978597869787978897899790979197929793979497959796979797989799980098019802980398049805980698079808980998109811981298139814981598169817981898199820982198229823982498259826982798289829983098319832983398349835983698379838983998409841984298439844984598469847984898499850985198529853985498559856985798589859986098619862986398649865986698679868986998709871987298739874987598769877987898799880988198829883988498859886988798889889989098919892989398949895989698979898989999009901990299039904990599069907990899099910991199129913991499159916991799189919992099219922992399249925992699279928992999309931993299339934993599369937993899399940994199429943994499459946994799489949995099519952995399549955995699579958995999609961996299639964996599669967996899699970997199729973997499759976997799789979998099819982998399849985998699879988998999909991999299939994999599969997999899991000010001100021000310004100051000610007100081000910010100111001210013100141001510016100171001810019100201002110022100231002410025100261002710028100291003010031100321003310034100351003610037100381003910040100411004210043100441004510046100471004810049100501005110052100531005410055100561005710058100591006010061100621006310064100651006610067100681006910070100711007210073100741007510076100771007810079100801008110082100831008410085100861008710088100891009010091100921009310094100951009610097100981009910100101011010210103101041010510106101071010810109101101011110112101131011410115101161011710118101191012010121101221012310124101251012610127101281012910130101311013210133101341013510136101371013810139101401014110142101431014410145101461014710148101491015010151101521015310154101551015610157101581015910160101611016210163101641016510166101671016810169101701017110172101731017410175101761017710178101791018010181101821018310184101851018610187101881018910190101911019210193101941019510196101971019810199102001020110202102031020410205102061020710208102091021010211102121021310214102151021610217102181021910220102211022210223102241022510226102271022810229102301023110232102331023410235102361023710238102391024010241102421024310244102451024610247102481024910250102511025210253102541025510256102571025810259102601026110262102631026410265102661026710268102691027010271102721027310274102751027610277102781027910280102811028210283102841028510286102871028810289102901029110292102931029410295102961029710298102991030010301103021030310304103051030610307103081030910310103111031210313103141031510316103171031810319103201032110322103231032410325103261032710328103291033010331103321033310334103351033610337103381033910340103411034210343103441034510346103471034810349103501035110352103531035410355103561035710358103591036010361103621036310364103651036610367103681036910370103711037210373103741037510376103771037810379103801038110382103831038410385103861038710388103891039010391103921039310394103951039610397103981039910400104011040210403104041040510406104071040810409104101041110412104131041410415104161041710418104191042010421104221042310424104251042610427104281042910430104311043210433104341043510436104371043810439104401044110442104431044410445104461044710448104491045010451104521045310454104551045610457104581045910460104611046210463104641046510466104671046810469104701047110472104731047410475104761047710478104791048010481104821048310484104851048610487104881048910490104911049210493104941049510496104971049810499105001050110502105031050410505105061050710508105091051010511105121051310514105151051610517105181051910520105211052210523105241052510526105271052810529105301053110532105331053410535105361053710538105391054010541105421054310544105451054610547105481054910550105511055210553105541055510556105571055810559105601056110562105631056410565105661056710568105691057010571105721057310574105751057610577105781057910580105811058210583105841058510586105871058810589105901059110592105931059410595105961059710598105991060010601106021060310604106051060610607106081060910610106111061210613106141061510616106171061810619106201062110622106231062410625106261062710628106291063010631106321063310634106351063610637106381063910640106411064210643106441064510646106471064810649106501065110652106531065410655106561065710658106591066010661106621066310664106651066610667106681066910670106711067210673106741067510676106771067810679106801068110682106831068410685106861068710688106891069010691106921069310694106951069610697106981069910700107011070210703107041070510706107071070810709107101071110712107131071410715107161071710718107191072010721107221072310724107251072610727107281072910730107311073210733107341073510736107371073810739107401074110742107431074410745107461074710748107491075010751107521075310754107551075610757107581075910760107611076210763107641076510766107671076810769107701077110772107731077410775107761077710778107791078010781107821078310784107851078610787107881078910790107911079210793107941079510796107971079810799108001080110802108031080410805108061080710808108091081010811108121081310814108151081610817108181081910820108211082210823108241082510826108271082810829108301083110832108331083410835108361083710838108391084010841108421084310844108451084610847108481084910850108511085210853108541085510856108571085810859108601086110862108631086410865108661086710868108691087010871108721087310874108751087610877108781087910880108811088210883108841088510886108871088810889108901089110892108931089410895108961089710898108991090010901109021090310904109051090610907109081090910910109111091210913109141091510916109171091810919109201092110922109231092410925109261092710928109291093010931109321093310934109351093610937109381093910940109411094210943109441094510946109471094810949109501095110952109531095410955109561095710958109591096010961109621096310964109651096610967109681096910970109711097210973109741097510976109771097810979109801098110982109831098410985109861098710988109891099010991109921099310994109951099610997109981099911000110011100211003110041100511006110071100811009110101101111012110131101411015110161101711018110191102011021110221102311024110251102611027110281102911030110311103211033110341103511036110371103811039110401104111042110431104411045110461104711048110491105011051110521105311054110551105611057110581105911060110611106211063110641106511066110671106811069110701107111072110731107411075110761107711078110791108011081110821108311084110851108611087110881108911090110911109211093110941109511096110971109811099111001110111102111031110411105111061110711108111091111011111111121111311114111151111611117111181111911120111211112211123111241112511126111271112811129111301113111132111331113411135111361113711138111391114011141111421114311144111451114611147111481114911150111511115211153111541115511156111571115811159111601116111162111631116411165111661116711168111691117011171111721117311174111751117611177111781117911180111811118211183111841118511186111871118811189111901119111192111931119411195111961119711198111991120011201112021120311204112051120611207112081120911210112111121211213112141121511216112171121811219112201122111222112231122411225112261122711228112291123011231112321123311234112351123611237112381123911240112411124211243112441124511246112471124811249112501125111252112531125411255112561125711258112591126011261112621126311264112651126611267112681126911270112711127211273112741127511276112771127811279112801128111282112831128411285112861128711288112891129011291112921129311294112951129611297112981129911300113011130211303113041130511306113071130811309113101131111312113131131411315113161131711318113191132011321113221132311324113251132611327113281132911330113311133211333113341133511336113371133811339113401134111342113431134411345113461134711348113491135011351113521135311354113551135611357113581135911360113611136211363113641136511366113671136811369113701137111372113731137411375113761137711378113791138011381113821138311384113851138611387113881138911390113911139211393113941139511396113971139811399114001140111402114031140411405114061140711408114091141011411114121141311414114151141611417114181141911420114211142211423114241142511426114271142811429114301143111432114331143411435114361143711438114391144011441114421144311444114451144611447114481144911450114511145211453114541145511456114571145811459114601146111462114631146411465114661146711468114691147011471114721147311474114751147611477114781147911480114811148211483114841148511486114871148811489114901149111492114931149411495114961149711498114991150011501115021150311504115051150611507115081150911510115111151211513115141151511516115171151811519115201152111522115231152411525115261152711528115291153011531115321153311534115351153611537115381153911540115411154211543115441154511546115471154811549115501155111552115531155411555115561155711558115591156011561115621156311564115651156611567115681156911570115711157211573115741157511576115771157811579115801158111582115831158411585115861158711588115891159011591115921159311594115951159611597115981159911600116011160211603116041160511606116071160811609116101161111612116131161411615116161161711618116191162011621116221162311624116251162611627116281162911630116311163211633116341163511636116371163811639116401164111642116431164411645116461164711648116491165011651116521165311654116551165611657116581165911660116611166211663116641166511666116671166811669116701167111672116731167411675116761167711678116791168011681116821168311684116851168611687116881168911690116911169211693116941169511696116971169811699117001170111702117031170411705117061170711708117091171011711117121171311714117151171611717117181171911720117211172211723117241172511726117271172811729117301173111732117331173411735117361173711738117391174011741117421174311744117451174611747117481174911750117511175211753117541175511756117571175811759117601176111762117631176411765117661176711768117691177011771117721177311774117751177611777117781177911780117811178211783117841178511786117871178811789117901179111792117931179411795117961179711798117991180011801118021180311804118051180611807118081180911810118111181211813118141181511816118171181811819118201182111822118231182411825118261182711828118291183011831118321183311834118351183611837118381183911840118411184211843118441184511846118471184811849118501185111852118531185411855118561185711858118591186011861118621186311864118651186611867118681186911870118711187211873118741187511876118771187811879118801188111882118831188411885118861188711888118891189011891118921189311894118951189611897118981189911900119011190211903119041190511906119071190811909119101191111912119131191411915119161191711918119191192011921119221192311924119251192611927119281192911930119311193211933119341193511936119371193811939119401194111942119431194411945119461194711948119491195011951119521195311954119551195611957119581195911960119611196211963119641196511966119671196811969119701197111972119731197411975119761197711978119791198011981119821198311984119851198611987119881198911990119911199211993119941199511996119971199811999120001200112002120031200412005120061200712008120091201012011120121201312014120151201612017120181201912020120211202212023120241202512026120271202812029120301203112032120331203412035120361203712038120391204012041120421204312044120451204612047120481204912050120511205212053120541205512056120571205812059120601206112062120631206412065120661206712068120691207012071120721207312074120751207612077120781207912080120811208212083120841208512086120871208812089120901209112092120931209412095120961209712098120991210012101121021210312104121051210612107121081210912110121111211212113121141211512116121171211812119121201212112122121231212412125121261212712128121291213012131121321213312134121351213612137121381213912140121411214212143121441214512146121471214812149121501215112152121531215412155121561215712158121591216012161121621216312164121651216612167121681216912170121711217212173121741217512176121771217812179121801218112182121831218412185121861218712188121891219012191121921219312194121951219612197121981219912200122011220212203122041220512206122071220812209122101221112212122131221412215122161221712218122191222012221122221222312224122251222612227122281222912230122311223212233122341223512236122371223812239122401224112242122431224412245122461224712248122491225012251122521225312254122551225612257122581225912260122611226212263122641226512266122671226812269122701227112272122731227412275122761227712278122791228012281122821228312284122851228612287122881228912290122911229212293122941229512296122971229812299123001230112302123031230412305123061230712308123091231012311123121231312314123151231612317123181231912320123211232212323123241232512326123271232812329123301233112332123331233412335123361233712338123391234012341123421234312344123451234612347123481234912350123511235212353123541235512356123571235812359123601236112362123631236412365123661236712368123691237012371123721237312374123751237612377123781237912380123811238212383123841238512386123871238812389123901239112392123931239412395123961239712398123991240012401124021240312404124051240612407124081240912410124111241212413124141241512416124171241812419124201242112422124231242412425124261242712428124291243012431124321243312434124351243612437124381243912440124411244212443124441244512446124471244812449124501245112452124531245412455124561245712458124591246012461124621246312464124651246612467124681246912470124711247212473124741247512476124771247812479124801248112482124831248412485124861248712488124891249012491124921249312494124951249612497124981249912500125011250212503125041250512506125071250812509125101251112512125131251412515125161251712518125191252012521125221252312524125251252612527125281252912530125311253212533125341253512536125371253812539125401254112542125431254412545125461254712548125491255012551125521255312554125551255612557125581255912560125611256212563125641256512566125671256812569125701257112572125731257412575125761257712578125791258012581125821258312584125851258612587125881258912590125911259212593125941259512596125971259812599126001260112602126031260412605126061260712608126091261012611126121261312614126151261612617126181261912620126211262212623126241262512626126271262812629126301263112632126331263412635126361263712638126391264012641126421264312644126451264612647126481264912650126511265212653126541265512656126571265812659126601266112662126631266412665126661266712668126691267012671126721267312674126751267612677126781267912680126811268212683126841268512686126871268812689126901269112692126931269412695126961269712698126991270012701127021270312704127051270612707127081270912710127111271212713127141271512716127171271812719127201272112722127231272412725127261272712728127291273012731127321273312734127351273612737127381273912740127411274212743127441274512746127471274812749127501275112752127531275412755127561275712758127591276012761127621276312764127651276612767127681276912770127711277212773127741277512776127771277812779127801278112782127831278412785127861278712788127891279012791127921279312794127951279612797127981279912800128011280212803128041280512806128071280812809128101281112812128131281412815128161281712818128191282012821128221282312824128251282612827128281282912830128311283212833128341283512836128371283812839128401284112842128431284412845128461284712848128491285012851128521285312854128551285612857128581285912860128611286212863128641286512866128671286812869128701287112872128731287412875128761287712878128791288012881128821288312884128851288612887128881288912890128911289212893128941289512896128971289812899129001290112902129031290412905129061290712908129091291012911129121291312914129151291612917129181291912920129211292212923129241292512926129271292812929129301293112932129331293412935129361293712938129391294012941129421294312944129451294612947129481294912950129511295212953129541295512956129571295812959129601296112962
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <dataSource name="@localhost">
  3. <database-model serializer="dbm" dbms="MYSQL" family-id="MYSQL" format-version="4.55">
  4. <root id="1">
  5. <DefaultEngine>InnoDB</DefaultEngine>
  6. <DefaultTmpEngine>InnoDB</DefaultTmpEngine>
  7. <ServerVersion>5.7.9</ServerVersion>
  8. </root>
  9. <collation id="2" parent="1" name="armscii8_bin">
  10. <Charset>armscii8</Charset>
  11. </collation>
  12. <collation id="3" parent="1" name="armscii8_general_ci">
  13. <Charset>armscii8</Charset>
  14. <DefaultForCharset>1</DefaultForCharset>
  15. </collation>
  16. <collation id="4" parent="1" name="ascii_bin">
  17. <Charset>ascii</Charset>
  18. </collation>
  19. <collation id="5" parent="1" name="ascii_general_ci">
  20. <Charset>ascii</Charset>
  21. <DefaultForCharset>1</DefaultForCharset>
  22. </collation>
  23. <collation id="6" parent="1" name="big5_bin">
  24. <Charset>big5</Charset>
  25. </collation>
  26. <collation id="7" parent="1" name="big5_chinese_ci">
  27. <Charset>big5</Charset>
  28. <DefaultForCharset>1</DefaultForCharset>
  29. </collation>
  30. <collation id="8" parent="1" name="binary">
  31. <Charset>binary</Charset>
  32. <DefaultForCharset>1</DefaultForCharset>
  33. </collation>
  34. <collation id="9" parent="1" name="cp1250_bin">
  35. <Charset>cp1250</Charset>
  36. </collation>
  37. <collation id="10" parent="1" name="cp1250_croatian_ci">
  38. <Charset>cp1250</Charset>
  39. </collation>
  40. <collation id="11" parent="1" name="cp1250_czech_cs">
  41. <Charset>cp1250</Charset>
  42. </collation>
  43. <collation id="12" parent="1" name="cp1250_general_ci">
  44. <Charset>cp1250</Charset>
  45. <DefaultForCharset>1</DefaultForCharset>
  46. </collation>
  47. <collation id="13" parent="1" name="cp1250_polish_ci">
  48. <Charset>cp1250</Charset>
  49. </collation>
  50. <collation id="14" parent="1" name="cp1251_bin">
  51. <Charset>cp1251</Charset>
  52. </collation>
  53. <collation id="15" parent="1" name="cp1251_bulgarian_ci">
  54. <Charset>cp1251</Charset>
  55. </collation>
  56. <collation id="16" parent="1" name="cp1251_general_ci">
  57. <Charset>cp1251</Charset>
  58. <DefaultForCharset>1</DefaultForCharset>
  59. </collation>
  60. <collation id="17" parent="1" name="cp1251_general_cs">
  61. <Charset>cp1251</Charset>
  62. </collation>
  63. <collation id="18" parent="1" name="cp1251_ukrainian_ci">
  64. <Charset>cp1251</Charset>
  65. </collation>
  66. <collation id="19" parent="1" name="cp1256_bin">
  67. <Charset>cp1256</Charset>
  68. </collation>
  69. <collation id="20" parent="1" name="cp1256_general_ci">
  70. <Charset>cp1256</Charset>
  71. <DefaultForCharset>1</DefaultForCharset>
  72. </collation>
  73. <collation id="21" parent="1" name="cp1257_bin">
  74. <Charset>cp1257</Charset>
  75. </collation>
  76. <collation id="22" parent="1" name="cp1257_general_ci">
  77. <Charset>cp1257</Charset>
  78. <DefaultForCharset>1</DefaultForCharset>
  79. </collation>
  80. <collation id="23" parent="1" name="cp1257_lithuanian_ci">
  81. <Charset>cp1257</Charset>
  82. </collation>
  83. <collation id="24" parent="1" name="cp850_bin">
  84. <Charset>cp850</Charset>
  85. </collation>
  86. <collation id="25" parent="1" name="cp850_general_ci">
  87. <Charset>cp850</Charset>
  88. <DefaultForCharset>1</DefaultForCharset>
  89. </collation>
  90. <collation id="26" parent="1" name="cp852_bin">
  91. <Charset>cp852</Charset>
  92. </collation>
  93. <collation id="27" parent="1" name="cp852_general_ci">
  94. <Charset>cp852</Charset>
  95. <DefaultForCharset>1</DefaultForCharset>
  96. </collation>
  97. <collation id="28" parent="1" name="cp866_bin">
  98. <Charset>cp866</Charset>
  99. </collation>
  100. <collation id="29" parent="1" name="cp866_general_ci">
  101. <Charset>cp866</Charset>
  102. <DefaultForCharset>1</DefaultForCharset>
  103. </collation>
  104. <collation id="30" parent="1" name="cp932_bin">
  105. <Charset>cp932</Charset>
  106. </collation>
  107. <collation id="31" parent="1" name="cp932_japanese_ci">
  108. <Charset>cp932</Charset>
  109. <DefaultForCharset>1</DefaultForCharset>
  110. </collation>
  111. <collation id="32" parent="1" name="dec8_bin">
  112. <Charset>dec8</Charset>
  113. </collation>
  114. <collation id="33" parent="1" name="dec8_swedish_ci">
  115. <Charset>dec8</Charset>
  116. <DefaultForCharset>1</DefaultForCharset>
  117. </collation>
  118. <collation id="34" parent="1" name="eucjpms_bin">
  119. <Charset>eucjpms</Charset>
  120. </collation>
  121. <collation id="35" parent="1" name="eucjpms_japanese_ci">
  122. <Charset>eucjpms</Charset>
  123. <DefaultForCharset>1</DefaultForCharset>
  124. </collation>
  125. <collation id="36" parent="1" name="euckr_bin">
  126. <Charset>euckr</Charset>
  127. </collation>
  128. <collation id="37" parent="1" name="euckr_korean_ci">
  129. <Charset>euckr</Charset>
  130. <DefaultForCharset>1</DefaultForCharset>
  131. </collation>
  132. <collation id="38" parent="1" name="gb18030_bin">
  133. <Charset>gb18030</Charset>
  134. </collation>
  135. <collation id="39" parent="1" name="gb18030_chinese_ci">
  136. <Charset>gb18030</Charset>
  137. <DefaultForCharset>1</DefaultForCharset>
  138. </collation>
  139. <collation id="40" parent="1" name="gb18030_unicode_520_ci">
  140. <Charset>gb18030</Charset>
  141. </collation>
  142. <collation id="41" parent="1" name="gb2312_bin">
  143. <Charset>gb2312</Charset>
  144. </collation>
  145. <collation id="42" parent="1" name="gb2312_chinese_ci">
  146. <Charset>gb2312</Charset>
  147. <DefaultForCharset>1</DefaultForCharset>
  148. </collation>
  149. <collation id="43" parent="1" name="gbk_bin">
  150. <Charset>gbk</Charset>
  151. </collation>
  152. <collation id="44" parent="1" name="gbk_chinese_ci">
  153. <Charset>gbk</Charset>
  154. <DefaultForCharset>1</DefaultForCharset>
  155. </collation>
  156. <collation id="45" parent="1" name="geostd8_bin">
  157. <Charset>geostd8</Charset>
  158. </collation>
  159. <collation id="46" parent="1" name="geostd8_general_ci">
  160. <Charset>geostd8</Charset>
  161. <DefaultForCharset>1</DefaultForCharset>
  162. </collation>
  163. <collation id="47" parent="1" name="greek_bin">
  164. <Charset>greek</Charset>
  165. </collation>
  166. <collation id="48" parent="1" name="greek_general_ci">
  167. <Charset>greek</Charset>
  168. <DefaultForCharset>1</DefaultForCharset>
  169. </collation>
  170. <collation id="49" parent="1" name="hebrew_bin">
  171. <Charset>hebrew</Charset>
  172. </collation>
  173. <collation id="50" parent="1" name="hebrew_general_ci">
  174. <Charset>hebrew</Charset>
  175. <DefaultForCharset>1</DefaultForCharset>
  176. </collation>
  177. <collation id="51" parent="1" name="hp8_bin">
  178. <Charset>hp8</Charset>
  179. </collation>
  180. <collation id="52" parent="1" name="hp8_english_ci">
  181. <Charset>hp8</Charset>
  182. <DefaultForCharset>1</DefaultForCharset>
  183. </collation>
  184. <collation id="53" parent="1" name="keybcs2_bin">
  185. <Charset>keybcs2</Charset>
  186. </collation>
  187. <collation id="54" parent="1" name="keybcs2_general_ci">
  188. <Charset>keybcs2</Charset>
  189. <DefaultForCharset>1</DefaultForCharset>
  190. </collation>
  191. <collation id="55" parent="1" name="koi8r_bin">
  192. <Charset>koi8r</Charset>
  193. </collation>
  194. <collation id="56" parent="1" name="koi8r_general_ci">
  195. <Charset>koi8r</Charset>
  196. <DefaultForCharset>1</DefaultForCharset>
  197. </collation>
  198. <collation id="57" parent="1" name="koi8u_bin">
  199. <Charset>koi8u</Charset>
  200. </collation>
  201. <collation id="58" parent="1" name="koi8u_general_ci">
  202. <Charset>koi8u</Charset>
  203. <DefaultForCharset>1</DefaultForCharset>
  204. </collation>
  205. <collation id="59" parent="1" name="latin1_bin">
  206. <Charset>latin1</Charset>
  207. </collation>
  208. <collation id="60" parent="1" name="latin1_danish_ci">
  209. <Charset>latin1</Charset>
  210. </collation>
  211. <collation id="61" parent="1" name="latin1_general_ci">
  212. <Charset>latin1</Charset>
  213. </collation>
  214. <collation id="62" parent="1" name="latin1_general_cs">
  215. <Charset>latin1</Charset>
  216. </collation>
  217. <collation id="63" parent="1" name="latin1_german1_ci">
  218. <Charset>latin1</Charset>
  219. </collation>
  220. <collation id="64" parent="1" name="latin1_german2_ci">
  221. <Charset>latin1</Charset>
  222. </collation>
  223. <collation id="65" parent="1" name="latin1_spanish_ci">
  224. <Charset>latin1</Charset>
  225. </collation>
  226. <collation id="66" parent="1" name="latin1_swedish_ci">
  227. <Charset>latin1</Charset>
  228. <DefaultForCharset>1</DefaultForCharset>
  229. </collation>
  230. <collation id="67" parent="1" name="latin2_bin">
  231. <Charset>latin2</Charset>
  232. </collation>
  233. <collation id="68" parent="1" name="latin2_croatian_ci">
  234. <Charset>latin2</Charset>
  235. </collation>
  236. <collation id="69" parent="1" name="latin2_czech_cs">
  237. <Charset>latin2</Charset>
  238. </collation>
  239. <collation id="70" parent="1" name="latin2_general_ci">
  240. <Charset>latin2</Charset>
  241. <DefaultForCharset>1</DefaultForCharset>
  242. </collation>
  243. <collation id="71" parent="1" name="latin2_hungarian_ci">
  244. <Charset>latin2</Charset>
  245. </collation>
  246. <collation id="72" parent="1" name="latin5_bin">
  247. <Charset>latin5</Charset>
  248. </collation>
  249. <collation id="73" parent="1" name="latin5_turkish_ci">
  250. <Charset>latin5</Charset>
  251. <DefaultForCharset>1</DefaultForCharset>
  252. </collation>
  253. <collation id="74" parent="1" name="latin7_bin">
  254. <Charset>latin7</Charset>
  255. </collation>
  256. <collation id="75" parent="1" name="latin7_estonian_cs">
  257. <Charset>latin7</Charset>
  258. </collation>
  259. <collation id="76" parent="1" name="latin7_general_ci">
  260. <Charset>latin7</Charset>
  261. <DefaultForCharset>1</DefaultForCharset>
  262. </collation>
  263. <collation id="77" parent="1" name="latin7_general_cs">
  264. <Charset>latin7</Charset>
  265. </collation>
  266. <collation id="78" parent="1" name="macce_bin">
  267. <Charset>macce</Charset>
  268. </collation>
  269. <collation id="79" parent="1" name="macce_general_ci">
  270. <Charset>macce</Charset>
  271. <DefaultForCharset>1</DefaultForCharset>
  272. </collation>
  273. <collation id="80" parent="1" name="macroman_bin">
  274. <Charset>macroman</Charset>
  275. </collation>
  276. <collation id="81" parent="1" name="macroman_general_ci">
  277. <Charset>macroman</Charset>
  278. <DefaultForCharset>1</DefaultForCharset>
  279. </collation>
  280. <collation id="82" parent="1" name="sjis_bin">
  281. <Charset>sjis</Charset>
  282. </collation>
  283. <collation id="83" parent="1" name="sjis_japanese_ci">
  284. <Charset>sjis</Charset>
  285. <DefaultForCharset>1</DefaultForCharset>
  286. </collation>
  287. <collation id="84" parent="1" name="swe7_bin">
  288. <Charset>swe7</Charset>
  289. </collation>
  290. <collation id="85" parent="1" name="swe7_swedish_ci">
  291. <Charset>swe7</Charset>
  292. <DefaultForCharset>1</DefaultForCharset>
  293. </collation>
  294. <collation id="86" parent="1" name="tis620_bin">
  295. <Charset>tis620</Charset>
  296. </collation>
  297. <collation id="87" parent="1" name="tis620_thai_ci">
  298. <Charset>tis620</Charset>
  299. <DefaultForCharset>1</DefaultForCharset>
  300. </collation>
  301. <collation id="88" parent="1" name="ucs2_bin">
  302. <Charset>ucs2</Charset>
  303. </collation>
  304. <collation id="89" parent="1" name="ucs2_croatian_ci">
  305. <Charset>ucs2</Charset>
  306. </collation>
  307. <collation id="90" parent="1" name="ucs2_czech_ci">
  308. <Charset>ucs2</Charset>
  309. </collation>
  310. <collation id="91" parent="1" name="ucs2_danish_ci">
  311. <Charset>ucs2</Charset>
  312. </collation>
  313. <collation id="92" parent="1" name="ucs2_esperanto_ci">
  314. <Charset>ucs2</Charset>
  315. </collation>
  316. <collation id="93" parent="1" name="ucs2_estonian_ci">
  317. <Charset>ucs2</Charset>
  318. </collation>
  319. <collation id="94" parent="1" name="ucs2_general_ci">
  320. <Charset>ucs2</Charset>
  321. <DefaultForCharset>1</DefaultForCharset>
  322. </collation>
  323. <collation id="95" parent="1" name="ucs2_general_mysql500_ci">
  324. <Charset>ucs2</Charset>
  325. </collation>
  326. <collation id="96" parent="1" name="ucs2_german2_ci">
  327. <Charset>ucs2</Charset>
  328. </collation>
  329. <collation id="97" parent="1" name="ucs2_hungarian_ci">
  330. <Charset>ucs2</Charset>
  331. </collation>
  332. <collation id="98" parent="1" name="ucs2_icelandic_ci">
  333. <Charset>ucs2</Charset>
  334. </collation>
  335. <collation id="99" parent="1" name="ucs2_latvian_ci">
  336. <Charset>ucs2</Charset>
  337. </collation>
  338. <collation id="100" parent="1" name="ucs2_lithuanian_ci">
  339. <Charset>ucs2</Charset>
  340. </collation>
  341. <collation id="101" parent="1" name="ucs2_persian_ci">
  342. <Charset>ucs2</Charset>
  343. </collation>
  344. <collation id="102" parent="1" name="ucs2_polish_ci">
  345. <Charset>ucs2</Charset>
  346. </collation>
  347. <collation id="103" parent="1" name="ucs2_roman_ci">
  348. <Charset>ucs2</Charset>
  349. </collation>
  350. <collation id="104" parent="1" name="ucs2_romanian_ci">
  351. <Charset>ucs2</Charset>
  352. </collation>
  353. <collation id="105" parent="1" name="ucs2_sinhala_ci">
  354. <Charset>ucs2</Charset>
  355. </collation>
  356. <collation id="106" parent="1" name="ucs2_slovak_ci">
  357. <Charset>ucs2</Charset>
  358. </collation>
  359. <collation id="107" parent="1" name="ucs2_slovenian_ci">
  360. <Charset>ucs2</Charset>
  361. </collation>
  362. <collation id="108" parent="1" name="ucs2_spanish2_ci">
  363. <Charset>ucs2</Charset>
  364. </collation>
  365. <collation id="109" parent="1" name="ucs2_spanish_ci">
  366. <Charset>ucs2</Charset>
  367. </collation>
  368. <collation id="110" parent="1" name="ucs2_swedish_ci">
  369. <Charset>ucs2</Charset>
  370. </collation>
  371. <collation id="111" parent="1" name="ucs2_turkish_ci">
  372. <Charset>ucs2</Charset>
  373. </collation>
  374. <collation id="112" parent="1" name="ucs2_unicode_520_ci">
  375. <Charset>ucs2</Charset>
  376. </collation>
  377. <collation id="113" parent="1" name="ucs2_unicode_ci">
  378. <Charset>ucs2</Charset>
  379. </collation>
  380. <collation id="114" parent="1" name="ucs2_vietnamese_ci">
  381. <Charset>ucs2</Charset>
  382. </collation>
  383. <collation id="115" parent="1" name="ujis_bin">
  384. <Charset>ujis</Charset>
  385. </collation>
  386. <collation id="116" parent="1" name="ujis_japanese_ci">
  387. <Charset>ujis</Charset>
  388. <DefaultForCharset>1</DefaultForCharset>
  389. </collation>
  390. <collation id="117" parent="1" name="utf16_bin">
  391. <Charset>utf16</Charset>
  392. </collation>
  393. <collation id="118" parent="1" name="utf16_croatian_ci">
  394. <Charset>utf16</Charset>
  395. </collation>
  396. <collation id="119" parent="1" name="utf16_czech_ci">
  397. <Charset>utf16</Charset>
  398. </collation>
  399. <collation id="120" parent="1" name="utf16_danish_ci">
  400. <Charset>utf16</Charset>
  401. </collation>
  402. <collation id="121" parent="1" name="utf16_esperanto_ci">
  403. <Charset>utf16</Charset>
  404. </collation>
  405. <collation id="122" parent="1" name="utf16_estonian_ci">
  406. <Charset>utf16</Charset>
  407. </collation>
  408. <collation id="123" parent="1" name="utf16_general_ci">
  409. <Charset>utf16</Charset>
  410. <DefaultForCharset>1</DefaultForCharset>
  411. </collation>
  412. <collation id="124" parent="1" name="utf16_german2_ci">
  413. <Charset>utf16</Charset>
  414. </collation>
  415. <collation id="125" parent="1" name="utf16_hungarian_ci">
  416. <Charset>utf16</Charset>
  417. </collation>
  418. <collation id="126" parent="1" name="utf16_icelandic_ci">
  419. <Charset>utf16</Charset>
  420. </collation>
  421. <collation id="127" parent="1" name="utf16_latvian_ci">
  422. <Charset>utf16</Charset>
  423. </collation>
  424. <collation id="128" parent="1" name="utf16_lithuanian_ci">
  425. <Charset>utf16</Charset>
  426. </collation>
  427. <collation id="129" parent="1" name="utf16_persian_ci">
  428. <Charset>utf16</Charset>
  429. </collation>
  430. <collation id="130" parent="1" name="utf16_polish_ci">
  431. <Charset>utf16</Charset>
  432. </collation>
  433. <collation id="131" parent="1" name="utf16_roman_ci">
  434. <Charset>utf16</Charset>
  435. </collation>
  436. <collation id="132" parent="1" name="utf16_romanian_ci">
  437. <Charset>utf16</Charset>
  438. </collation>
  439. <collation id="133" parent="1" name="utf16_sinhala_ci">
  440. <Charset>utf16</Charset>
  441. </collation>
  442. <collation id="134" parent="1" name="utf16_slovak_ci">
  443. <Charset>utf16</Charset>
  444. </collation>
  445. <collation id="135" parent="1" name="utf16_slovenian_ci">
  446. <Charset>utf16</Charset>
  447. </collation>
  448. <collation id="136" parent="1" name="utf16_spanish2_ci">
  449. <Charset>utf16</Charset>
  450. </collation>
  451. <collation id="137" parent="1" name="utf16_spanish_ci">
  452. <Charset>utf16</Charset>
  453. </collation>
  454. <collation id="138" parent="1" name="utf16_swedish_ci">
  455. <Charset>utf16</Charset>
  456. </collation>
  457. <collation id="139" parent="1" name="utf16_turkish_ci">
  458. <Charset>utf16</Charset>
  459. </collation>
  460. <collation id="140" parent="1" name="utf16_unicode_520_ci">
  461. <Charset>utf16</Charset>
  462. </collation>
  463. <collation id="141" parent="1" name="utf16_unicode_ci">
  464. <Charset>utf16</Charset>
  465. </collation>
  466. <collation id="142" parent="1" name="utf16_vietnamese_ci">
  467. <Charset>utf16</Charset>
  468. </collation>
  469. <collation id="143" parent="1" name="utf16le_bin">
  470. <Charset>utf16le</Charset>
  471. </collation>
  472. <collation id="144" parent="1" name="utf16le_general_ci">
  473. <Charset>utf16le</Charset>
  474. <DefaultForCharset>1</DefaultForCharset>
  475. </collation>
  476. <collation id="145" parent="1" name="utf32_bin">
  477. <Charset>utf32</Charset>
  478. </collation>
  479. <collation id="146" parent="1" name="utf32_croatian_ci">
  480. <Charset>utf32</Charset>
  481. </collation>
  482. <collation id="147" parent="1" name="utf32_czech_ci">
  483. <Charset>utf32</Charset>
  484. </collation>
  485. <collation id="148" parent="1" name="utf32_danish_ci">
  486. <Charset>utf32</Charset>
  487. </collation>
  488. <collation id="149" parent="1" name="utf32_esperanto_ci">
  489. <Charset>utf32</Charset>
  490. </collation>
  491. <collation id="150" parent="1" name="utf32_estonian_ci">
  492. <Charset>utf32</Charset>
  493. </collation>
  494. <collation id="151" parent="1" name="utf32_general_ci">
  495. <Charset>utf32</Charset>
  496. <DefaultForCharset>1</DefaultForCharset>
  497. </collation>
  498. <collation id="152" parent="1" name="utf32_german2_ci">
  499. <Charset>utf32</Charset>
  500. </collation>
  501. <collation id="153" parent="1" name="utf32_hungarian_ci">
  502. <Charset>utf32</Charset>
  503. </collation>
  504. <collation id="154" parent="1" name="utf32_icelandic_ci">
  505. <Charset>utf32</Charset>
  506. </collation>
  507. <collation id="155" parent="1" name="utf32_latvian_ci">
  508. <Charset>utf32</Charset>
  509. </collation>
  510. <collation id="156" parent="1" name="utf32_lithuanian_ci">
  511. <Charset>utf32</Charset>
  512. </collation>
  513. <collation id="157" parent="1" name="utf32_persian_ci">
  514. <Charset>utf32</Charset>
  515. </collation>
  516. <collation id="158" parent="1" name="utf32_polish_ci">
  517. <Charset>utf32</Charset>
  518. </collation>
  519. <collation id="159" parent="1" name="utf32_roman_ci">
  520. <Charset>utf32</Charset>
  521. </collation>
  522. <collation id="160" parent="1" name="utf32_romanian_ci">
  523. <Charset>utf32</Charset>
  524. </collation>
  525. <collation id="161" parent="1" name="utf32_sinhala_ci">
  526. <Charset>utf32</Charset>
  527. </collation>
  528. <collation id="162" parent="1" name="utf32_slovak_ci">
  529. <Charset>utf32</Charset>
  530. </collation>
  531. <collation id="163" parent="1" name="utf32_slovenian_ci">
  532. <Charset>utf32</Charset>
  533. </collation>
  534. <collation id="164" parent="1" name="utf32_spanish2_ci">
  535. <Charset>utf32</Charset>
  536. </collation>
  537. <collation id="165" parent="1" name="utf32_spanish_ci">
  538. <Charset>utf32</Charset>
  539. </collation>
  540. <collation id="166" parent="1" name="utf32_swedish_ci">
  541. <Charset>utf32</Charset>
  542. </collation>
  543. <collation id="167" parent="1" name="utf32_turkish_ci">
  544. <Charset>utf32</Charset>
  545. </collation>
  546. <collation id="168" parent="1" name="utf32_unicode_520_ci">
  547. <Charset>utf32</Charset>
  548. </collation>
  549. <collation id="169" parent="1" name="utf32_unicode_ci">
  550. <Charset>utf32</Charset>
  551. </collation>
  552. <collation id="170" parent="1" name="utf32_vietnamese_ci">
  553. <Charset>utf32</Charset>
  554. </collation>
  555. <collation id="171" parent="1" name="utf8_bin">
  556. <Charset>utf8</Charset>
  557. </collation>
  558. <collation id="172" parent="1" name="utf8_croatian_ci">
  559. <Charset>utf8</Charset>
  560. </collation>
  561. <collation id="173" parent="1" name="utf8_czech_ci">
  562. <Charset>utf8</Charset>
  563. </collation>
  564. <collation id="174" parent="1" name="utf8_danish_ci">
  565. <Charset>utf8</Charset>
  566. </collation>
  567. <collation id="175" parent="1" name="utf8_esperanto_ci">
  568. <Charset>utf8</Charset>
  569. </collation>
  570. <collation id="176" parent="1" name="utf8_estonian_ci">
  571. <Charset>utf8</Charset>
  572. </collation>
  573. <collation id="177" parent="1" name="utf8_general_ci">
  574. <Charset>utf8</Charset>
  575. <DefaultForCharset>1</DefaultForCharset>
  576. </collation>
  577. <collation id="178" parent="1" name="utf8_general_mysql500_ci">
  578. <Charset>utf8</Charset>
  579. </collation>
  580. <collation id="179" parent="1" name="utf8_german2_ci">
  581. <Charset>utf8</Charset>
  582. </collation>
  583. <collation id="180" parent="1" name="utf8_hungarian_ci">
  584. <Charset>utf8</Charset>
  585. </collation>
  586. <collation id="181" parent="1" name="utf8_icelandic_ci">
  587. <Charset>utf8</Charset>
  588. </collation>
  589. <collation id="182" parent="1" name="utf8_latvian_ci">
  590. <Charset>utf8</Charset>
  591. </collation>
  592. <collation id="183" parent="1" name="utf8_lithuanian_ci">
  593. <Charset>utf8</Charset>
  594. </collation>
  595. <collation id="184" parent="1" name="utf8_persian_ci">
  596. <Charset>utf8</Charset>
  597. </collation>
  598. <collation id="185" parent="1" name="utf8_polish_ci">
  599. <Charset>utf8</Charset>
  600. </collation>
  601. <collation id="186" parent="1" name="utf8_roman_ci">
  602. <Charset>utf8</Charset>
  603. </collation>
  604. <collation id="187" parent="1" name="utf8_romanian_ci">
  605. <Charset>utf8</Charset>
  606. </collation>
  607. <collation id="188" parent="1" name="utf8_sinhala_ci">
  608. <Charset>utf8</Charset>
  609. </collation>
  610. <collation id="189" parent="1" name="utf8_slovak_ci">
  611. <Charset>utf8</Charset>
  612. </collation>
  613. <collation id="190" parent="1" name="utf8_slovenian_ci">
  614. <Charset>utf8</Charset>
  615. </collation>
  616. <collation id="191" parent="1" name="utf8_spanish2_ci">
  617. <Charset>utf8</Charset>
  618. </collation>
  619. <collation id="192" parent="1" name="utf8_spanish_ci">
  620. <Charset>utf8</Charset>
  621. </collation>
  622. <collation id="193" parent="1" name="utf8_swedish_ci">
  623. <Charset>utf8</Charset>
  624. </collation>
  625. <collation id="194" parent="1" name="utf8_turkish_ci">
  626. <Charset>utf8</Charset>
  627. </collation>
  628. <collation id="195" parent="1" name="utf8_unicode_520_ci">
  629. <Charset>utf8</Charset>
  630. </collation>
  631. <collation id="196" parent="1" name="utf8_unicode_ci">
  632. <Charset>utf8</Charset>
  633. </collation>
  634. <collation id="197" parent="1" name="utf8_vietnamese_ci">
  635. <Charset>utf8</Charset>
  636. </collation>
  637. <collation id="198" parent="1" name="utf8mb4_bin">
  638. <Charset>utf8mb4</Charset>
  639. </collation>
  640. <collation id="199" parent="1" name="utf8mb4_croatian_ci">
  641. <Charset>utf8mb4</Charset>
  642. </collation>
  643. <collation id="200" parent="1" name="utf8mb4_czech_ci">
  644. <Charset>utf8mb4</Charset>
  645. </collation>
  646. <collation id="201" parent="1" name="utf8mb4_danish_ci">
  647. <Charset>utf8mb4</Charset>
  648. </collation>
  649. <collation id="202" parent="1" name="utf8mb4_esperanto_ci">
  650. <Charset>utf8mb4</Charset>
  651. </collation>
  652. <collation id="203" parent="1" name="utf8mb4_estonian_ci">
  653. <Charset>utf8mb4</Charset>
  654. </collation>
  655. <collation id="204" parent="1" name="utf8mb4_general_ci">
  656. <Charset>utf8mb4</Charset>
  657. <DefaultForCharset>1</DefaultForCharset>
  658. </collation>
  659. <collation id="205" parent="1" name="utf8mb4_german2_ci">
  660. <Charset>utf8mb4</Charset>
  661. </collation>
  662. <collation id="206" parent="1" name="utf8mb4_hungarian_ci">
  663. <Charset>utf8mb4</Charset>
  664. </collation>
  665. <collation id="207" parent="1" name="utf8mb4_icelandic_ci">
  666. <Charset>utf8mb4</Charset>
  667. </collation>
  668. <collation id="208" parent="1" name="utf8mb4_latvian_ci">
  669. <Charset>utf8mb4</Charset>
  670. </collation>
  671. <collation id="209" parent="1" name="utf8mb4_lithuanian_ci">
  672. <Charset>utf8mb4</Charset>
  673. </collation>
  674. <collation id="210" parent="1" name="utf8mb4_persian_ci">
  675. <Charset>utf8mb4</Charset>
  676. </collation>
  677. <collation id="211" parent="1" name="utf8mb4_polish_ci">
  678. <Charset>utf8mb4</Charset>
  679. </collation>
  680. <collation id="212" parent="1" name="utf8mb4_roman_ci">
  681. <Charset>utf8mb4</Charset>
  682. </collation>
  683. <collation id="213" parent="1" name="utf8mb4_romanian_ci">
  684. <Charset>utf8mb4</Charset>
  685. </collation>
  686. <collation id="214" parent="1" name="utf8mb4_sinhala_ci">
  687. <Charset>utf8mb4</Charset>
  688. </collation>
  689. <collation id="215" parent="1" name="utf8mb4_slovak_ci">
  690. <Charset>utf8mb4</Charset>
  691. </collation>
  692. <collation id="216" parent="1" name="utf8mb4_slovenian_ci">
  693. <Charset>utf8mb4</Charset>
  694. </collation>
  695. <collation id="217" parent="1" name="utf8mb4_spanish2_ci">
  696. <Charset>utf8mb4</Charset>
  697. </collation>
  698. <collation id="218" parent="1" name="utf8mb4_spanish_ci">
  699. <Charset>utf8mb4</Charset>
  700. </collation>
  701. <collation id="219" parent="1" name="utf8mb4_swedish_ci">
  702. <Charset>utf8mb4</Charset>
  703. </collation>
  704. <collation id="220" parent="1" name="utf8mb4_turkish_ci">
  705. <Charset>utf8mb4</Charset>
  706. </collation>
  707. <collation id="221" parent="1" name="utf8mb4_unicode_520_ci">
  708. <Charset>utf8mb4</Charset>
  709. </collation>
  710. <collation id="222" parent="1" name="utf8mb4_unicode_ci">
  711. <Charset>utf8mb4</Charset>
  712. </collation>
  713. <collation id="223" parent="1" name="utf8mb4_vietnamese_ci">
  714. <Charset>utf8mb4</Charset>
  715. </collation>
  716. <schema id="224" parent="1" name="aft">
  717. <Current>1</Current>
  718. <LastIntrospectionLocalTimestamp>2026-01-22.00:42:48</LastIntrospectionLocalTimestamp>
  719. <CollationName>utf8_general_ci</CollationName>
  720. </schema>
  721. <schema id="225" parent="1" name="aft20221026">
  722. <CollationName>utf8_general_ci</CollationName>
  723. </schema>
  724. <schema id="226" parent="1" name="aft_count">
  725. <CollationName>utf8_general_ci</CollationName>
  726. </schema>
  727. <schema id="227" parent="1" name="aft_ow">
  728. <CollationName>utf8_general_ci</CollationName>
  729. </schema>
  730. <schema id="228" parent="1" name="aft_ry">
  731. <CollationName>utf8_general_ci</CollationName>
  732. </schema>
  733. <schema id="229" parent="1" name="information_schema">
  734. <CollationName>utf8_general_ci</CollationName>
  735. </schema>
  736. <schema id="230" parent="1" name="jg">
  737. <CollationName>utf8_general_ci</CollationName>
  738. </schema>
  739. <schema id="231" parent="1" name="kd_rd">
  740. <CollationName>utf8mb4_general_ci</CollationName>
  741. </schema>
  742. <schema id="232" parent="1" name="kede-cloud">
  743. <CollationName>utf8mb4_general_ci</CollationName>
  744. </schema>
  745. <schema id="233" parent="1" name="kede-ruoyi">
  746. <CollationName>utf8_general_ci</CollationName>
  747. </schema>
  748. <schema id="234" parent="1" name="kitty">
  749. <CollationName>utf8_general_ci</CollationName>
  750. </schema>
  751. <schema id="235" parent="1" name="mysql">
  752. <CollationName>utf8_general_ci</CollationName>
  753. </schema>
  754. <schema id="236" parent="1" name="nacos">
  755. <CollationName>utf8_general_ci</CollationName>
  756. </schema>
  757. <schema id="237" parent="1" name="performance_schema">
  758. <CollationName>utf8_general_ci</CollationName>
  759. </schema>
  760. <schema id="238" parent="1" name="ruoyi">
  761. <CollationName>utf8_general_ci</CollationName>
  762. </schema>
  763. <schema id="239" parent="1" name="ry-cloud">
  764. <CollationName>utf8_general_ci</CollationName>
  765. </schema>
  766. <schema id="240" parent="1" name="ry-config">
  767. <CollationName>utf8mb4_general_ci</CollationName>
  768. </schema>
  769. <schema id="241" parent="1" name="ry-seata">
  770. <CollationName>utf8_general_ci</CollationName>
  771. </schema>
  772. <schema id="242" parent="1" name="sgxxz">
  773. <CollationName>utf8_general_ci</CollationName>
  774. </schema>
  775. <schema id="243" parent="1" name="sys">
  776. <CollationName>utf8_general_ci</CollationName>
  777. </schema>
  778. <user id="244" parent="1" name="mysql.sys">
  779. <Host>localhost</Host>
  780. </user>
  781. <user id="245" parent="1" name="root">
  782. <Host>localhost</Host>
  783. </user>
  784. <table id="246" parent="224" name="achievement_publish">
  785. <Comment>成果发布</Comment>
  786. <Engine>InnoDB</Engine>
  787. <CollationName>utf8mb4_general_ci</CollationName>
  788. </table>
  789. <table id="247" parent="224" name="admin">
  790. <Engine>InnoDB</Engine>
  791. <CollationName>utf8_general_ci</CollationName>
  792. </table>
  793. <table id="248" parent="224" name="admin_business_card">
  794. <Comment>用户名片表</Comment>
  795. <Engine>InnoDB</Engine>
  796. <CollationName>utf8mb4_general_ci</CollationName>
  797. </table>
  798. <table id="249" parent="224" name="admin_call_day">
  799. <Comment>外呼每天统计表</Comment>
  800. <Engine>InnoDB</Engine>
  801. <CollationName>utf8mb4_general_ci</CollationName>
  802. </table>
  803. <table id="250" parent="224" name="admin_project_statistics">
  804. <Comment>管理员用户项目评分表</Comment>
  805. <Engine>InnoDB</Engine>
  806. <CollationName>utf8mb4_general_ci</CollationName>
  807. </table>
  808. <table id="251" parent="224" name="admin_public_reviewer">
  809. <Comment>管理员公出审核人表</Comment>
  810. <Engine>InnoDB</Engine>
  811. <CollationName>utf8mb4_general_ci</CollationName>
  812. </table>
  813. <table id="252" parent="224" name="admin_user_count">
  814. <Comment>营销客户统计</Comment>
  815. <Engine>InnoDB</Engine>
  816. <CollationName>utf8_general_ci</CollationName>
  817. </table>
  818. <table id="253" parent="224" name="amb_invest">
  819. <Comment>阿米巴划拨日志</Comment>
  820. <Engine>InnoDB</Engine>
  821. <CollationName>utf8_general_ci</CollationName>
  822. </table>
  823. <table id="254" parent="224" name="amb_invest_log">
  824. <Comment>阿米巴审核日志</Comment>
  825. <Engine>InnoDB</Engine>
  826. <CollationName>utf8_general_ci</CollationName>
  827. </table>
  828. <table id="255" parent="224" name="amb_payment_application">
  829. <Comment>阿米巴付款申请表</Comment>
  830. <Engine>InnoDB</Engine>
  831. <CollationName>utf8_general_ci</CollationName>
  832. </table>
  833. <table id="256" parent="224" name="amb_payment_application_log">
  834. <Comment>阿米巴付款申请表日志</Comment>
  835. <Engine>InnoDB</Engine>
  836. <CollationName>utf8_general_ci</CollationName>
  837. </table>
  838. <table id="257" parent="224" name="amb_system">
  839. <Comment>阿米巴体系</Comment>
  840. <Engine>InnoDB</Engine>
  841. <CollationName>utf8_general_ci</CollationName>
  842. </table>
  843. <table id="258" parent="224" name="business_category">
  844. <Engine>InnoDB</Engine>
  845. <CollationName>utf8mb4_general_ci</CollationName>
  846. </table>
  847. <table id="259" parent="224" name="business_project">
  848. <Engine>InnoDB</Engine>
  849. <CollationName>utf8mb4_general_ci</CollationName>
  850. </table>
  851. <table id="260" parent="224" name="call_log">
  852. <Comment>呼叫记录</Comment>
  853. <Engine>InnoDB</Engine>
  854. <CollationName>utf8mb4_general_ci</CollationName>
  855. </table>
  856. <table id="261" parent="224" name="call_transfer_log">
  857. <Comment>呼叫转移记录</Comment>
  858. <Engine>InnoDB</Engine>
  859. <CollationName>utf8mb4_general_ci</CollationName>
  860. </table>
  861. <table id="262" parent="224" name="demand_publish">
  862. <Comment>需求发布</Comment>
  863. <Engine>InnoDB</Engine>
  864. <CollationName>utf8mb4_general_ci</CollationName>
  865. </table>
  866. <table id="263" parent="224" name="department">
  867. <Engine>InnoDB</Engine>
  868. <CollationName>utf8mb4_general_ci</CollationName>
  869. </table>
  870. <table id="264" parent="224" name="district_glossory">
  871. <Comment>地区数据字典</Comment>
  872. <Engine>InnoDB</Engine>
  873. <CollationName>utf8_general_ci</CollationName>
  874. </table>
  875. <table id="265" parent="224" name="ernie_bot_common">
  876. <Comment>文心一言常用例</Comment>
  877. <Engine>InnoDB</Engine>
  878. <CollationName>utf8_general_ci</CollationName>
  879. </table>
  880. <table id="266" parent="224" name="expense_account">
  881. <Comment>报销表</Comment>
  882. <Engine>InnoDB</Engine>
  883. <CollationName>utf8_general_ci</CollationName>
  884. </table>
  885. <table id="267" parent="224" name="expense_account_details">
  886. <Comment>报销详情表</Comment>
  887. <Engine>InnoDB</Engine>
  888. <CollationName>utf8_general_ci</CollationName>
  889. </table>
  890. <table id="268" parent="224" name="expense_account_examine">
  891. <Comment>报销日志</Comment>
  892. <Engine>InnoDB</Engine>
  893. <CollationName>utf8mb4_general_ci</CollationName>
  894. </table>
  895. <table id="269" parent="224" name="expense_account_log">
  896. <Comment>报销日志</Comment>
  897. <Engine>InnoDB</Engine>
  898. <CollationName>utf8mb4_general_ci</CollationName>
  899. </table>
  900. <table id="270" parent="224" name="expense_account_private">
  901. <Comment>报销帐号表</Comment>
  902. <Engine>InnoDB</Engine>
  903. <CollationName>utf8_general_ci</CollationName>
  904. </table>
  905. <table id="271" parent="224" name="expense_config_details">
  906. <Comment>报销配置人员</Comment>
  907. <Engine>InnoDB</Engine>
  908. <CollationName>utf8_general_ci</CollationName>
  909. </table>
  910. <table id="272" parent="224" name="expense_relationship">
  911. <Comment>报销关系表</Comment>
  912. <Engine>InnoDB</Engine>
  913. <CollationName>utf8_general_ci</CollationName>
  914. </table>
  915. <table id="273" parent="224" name="finance_count">
  916. <Comment>财务客户统计</Comment>
  917. <Engine>InnoDB</Engine>
  918. <CollationName>utf8_general_ci</CollationName>
  919. </table>
  920. <table id="274" parent="224" name="high_tech_categories">
  921. <Engine>InnoDB</Engine>
  922. <CollationName>utf8_general_ci</CollationName>
  923. </table>
  924. <table id="275" parent="224" name="industry_category">
  925. <Comment>行业领域</Comment>
  926. <Engine>InnoDB</Engine>
  927. <CollationName>utf8_general_ci</CollationName>
  928. </table>
  929. <table id="276" parent="224" name="invoice_log">
  930. <Comment>开票日志</Comment>
  931. <Engine>InnoDB</Engine>
  932. <CollationName>utf8mb4_general_ci</CollationName>
  933. </table>
  934. <table id="277" parent="224" name="jt_news">
  935. <Comment>新闻信息</Comment>
  936. <Engine>InnoDB</Engine>
  937. <CollationName>utf8mb4_general_ci</CollationName>
  938. </table>
  939. <table id="278" parent="224" name="legal_holidays">
  940. <Comment>法定节假日</Comment>
  941. <Engine>InnoDB</Engine>
  942. <CollationName>utf8_general_ci</CollationName>
  943. </table>
  944. <table id="279" parent="224" name="member_log">
  945. <Comment>会员审核日志</Comment>
  946. <Engine>InnoDB</Engine>
  947. <CollationName>utf8mb4_general_ci</CollationName>
  948. </table>
  949. <table id="280" parent="224" name="new_order_change">
  950. <Comment>订单变更</Comment>
  951. <Engine>InnoDB</Engine>
  952. <CollationName>utf8mb4_general_ci</CollationName>
  953. </table>
  954. <table id="281" parent="224" name="new_order_dun">
  955. <Comment>新催款统表</Comment>
  956. <Engine>InnoDB</Engine>
  957. <CollationName>utf8mb4_general_ci</CollationName>
  958. </table>
  959. <table id="282" parent="224" name="notice">
  960. <Comment>流转状态通知表</Comment>
  961. <Engine>InnoDB</Engine>
  962. <CollationName>utf8_general_ci</CollationName>
  963. </table>
  964. <table id="283" parent="224" name="official_fee_price">
  965. <Comment>官费表</Comment>
  966. <Engine>InnoDB</Engine>
  967. <CollationName>utf8mb4_general_ci</CollationName>
  968. </table>
  969. <table id="284" parent="224" name="order_change_log">
  970. <Comment>订单变更日志</Comment>
  971. <Engine>InnoDB</Engine>
  972. <CollationName>utf8mb4_general_ci</CollationName>
  973. </table>
  974. <table id="285" parent="224" name="order_year_max_duration">
  975. <Comment>订单最大公出表</Comment>
  976. <Engine>InnoDB</Engine>
  977. <CollationName>utf8mb4_general_ci</CollationName>
  978. </table>
  979. <table id="286" parent="224" name="organization_business_scope">
  980. <Comment>客户主营产品表</Comment>
  981. <Engine>InnoDB</Engine>
  982. <CollationName>utf8mb4_general_ci</CollationName>
  983. </table>
  984. <table id="287" parent="224" name="organization_contact_book">
  985. <Engine>InnoDB</Engine>
  986. <CollationName>utf8mb4_general_ci</CollationName>
  987. </table>
  988. <table id="288" parent="224" name="organization_identity">
  989. <Engine>InnoDB</Engine>
  990. <CollationName>utf8mb4_general_ci</CollationName>
  991. </table>
  992. <table id="289" parent="224" name="organization_sales_target">
  993. <Comment>客户销售目标表</Comment>
  994. <Engine>InnoDB</Engine>
  995. <CollationName>utf8mb4_general_ci</CollationName>
  996. </table>
  997. <table id="290" parent="224" name="patent_new">
  998. <Comment>专利</Comment>
  999. <Engine>InnoDB</Engine>
  1000. <CollationName>utf8_general_ci</CollationName>
  1001. </table>
  1002. <table id="291" parent="224" name="patent_new_log">
  1003. <Comment>专利提醒日志</Comment>
  1004. <Engine>InnoDB</Engine>
  1005. <CollationName>utf8_general_ci</CollationName>
  1006. </table>
  1007. <table id="292" parent="224" name="patent_payment_details">
  1008. <Comment>专利缴费详情</Comment>
  1009. <Engine>InnoDB</Engine>
  1010. <CollationName>utf8mb4_general_ci</CollationName>
  1011. </table>
  1012. <table id="293" parent="224" name="patent_year_payment">
  1013. <Comment>专利年费表</Comment>
  1014. <Engine>InnoDB</Engine>
  1015. <CollationName>utf8mb4_general_ci</CollationName>
  1016. </table>
  1017. <table id="294" parent="224" name="payment_log">
  1018. <Comment>支付日志</Comment>
  1019. <Engine>InnoDB</Engine>
  1020. <CollationName>utf8mb4_general_ci</CollationName>
  1021. </table>
  1022. <table id="295" parent="224" name="projcet_check_log">
  1023. <Comment>项目核对日志</Comment>
  1024. <Engine>InnoDB</Engine>
  1025. <CollationName>utf8mb4_general_ci</CollationName>
  1026. </table>
  1027. <table id="296" parent="224" name="public_assist_advice">
  1028. <Comment>公出协单意见表</Comment>
  1029. <Engine>InnoDB</Engine>
  1030. <CollationName>utf8mb4_general_ci</CollationName>
  1031. </table>
  1032. <table id="297" parent="224" name="public_assist_details">
  1033. <Comment>公出协单详情表</Comment>
  1034. <Engine>InnoDB</Engine>
  1035. <CollationName>utf8mb4_general_ci</CollationName>
  1036. </table>
  1037. <table id="298" parent="224" name="public_config">
  1038. <Comment>公出神最大审核配置</Comment>
  1039. <Engine>InnoDB</Engine>
  1040. <CollationName>utf8mb4_general_ci</CollationName>
  1041. </table>
  1042. <table id="299" parent="224" name="public_examine">
  1043. <Comment>公出审核表(非自己客户审核)</Comment>
  1044. <Engine>InnoDB</Engine>
  1045. <CollationName>utf8_general_ci</CollationName>
  1046. </table>
  1047. <table id="300" parent="224" name="public_release">
  1048. <Comment>公出表</Comment>
  1049. <Engine>InnoDB</Engine>
  1050. <CollationName>utf8mb4_general_ci</CollationName>
  1051. </table>
  1052. <table id="301" parent="224" name="public_release_clock">
  1053. <Comment>公出打卡表</Comment>
  1054. <Engine>InnoDB</Engine>
  1055. <CollationName>utf8mb4_general_ci</CollationName>
  1056. </table>
  1057. <table id="302" parent="224" name="public_release_content_type">
  1058. <Comment>公出内容表(查询列表多选使用)</Comment>
  1059. <Engine>InnoDB</Engine>
  1060. <CollationName>utf8mb4_general_ci</CollationName>
  1061. </table>
  1062. <table id="303" parent="224" name="public_release_count">
  1063. <Comment>外出统计表</Comment>
  1064. <Engine>InnoDB</Engine>
  1065. <CollationName>utf8mb4_general_ci</CollationName>
  1066. </table>
  1067. <table id="304" parent="224" name="public_release_date_clock">
  1068. <Comment>公出日期打卡表</Comment>
  1069. <Engine>InnoDB</Engine>
  1070. <CollationName>utf8mb4_general_ci</CollationName>
  1071. </table>
  1072. <table id="305" parent="224" name="public_release_details">
  1073. <Comment>公出详情表</Comment>
  1074. <Engine>InnoDB</Engine>
  1075. <CollationName>utf8_general_ci</CollationName>
  1076. </table>
  1077. <table id="306" parent="224" name="public_release_log">
  1078. <Comment>公出审核日志</Comment>
  1079. <Engine>InnoDB</Engine>
  1080. <CollationName>utf8mb4_general_ci</CollationName>
  1081. </table>
  1082. <table id="307" parent="224" name="public_release_type">
  1083. <Comment>公出协单项目表(查询列表多选使用)</Comment>
  1084. <Engine>InnoDB</Engine>
  1085. <CollationName>utf8mb4_general_ci</CollationName>
  1086. </table>
  1087. <table id="308" parent="224" name="rd_details">
  1088. <Comment>研发活动表</Comment>
  1089. <Engine>InnoDB</Engine>
  1090. <CollationName>utf8_general_ci</CollationName>
  1091. </table>
  1092. <table id="309" parent="224" name="restrict_project">
  1093. <Comment>限定项目表</Comment>
  1094. <Engine>InnoDB</Engine>
  1095. <CollationName>utf8mb4_general_ci</CollationName>
  1096. </table>
  1097. <table id="310" parent="224" name="role_resources">
  1098. <Comment>角色资源表</Comment>
  1099. <Engine>InnoDB</Engine>
  1100. <CollationName>utf8mb4_general_ci</CollationName>
  1101. </table>
  1102. <table id="311" parent="224" name="sales_team">
  1103. <Comment>营销团队</Comment>
  1104. <Engine>InnoDB</Engine>
  1105. <CollationName>utf8mb4_general_ci</CollationName>
  1106. </table>
  1107. <table id="312" parent="224" name="standard_document">
  1108. <Comment>标准文档列表</Comment>
  1109. <Engine>InnoDB</Engine>
  1110. <CollationName>utf8mb4_general_ci</CollationName>
  1111. </table>
  1112. <table id="313" parent="224" name="standard_platform_link">
  1113. <Comment>标准平台连接</Comment>
  1114. <Engine>InnoDB</Engine>
  1115. <CollationName>utf8mb4_general_ci</CollationName>
  1116. </table>
  1117. <table id="314" parent="224" name="t_change_task">
  1118. <Comment>变更任务表</Comment>
  1119. <Engine>InnoDB</Engine>
  1120. <CollationName>utf8mb4_general_ci</CollationName>
  1121. </table>
  1122. <table id="315" parent="224" name="t_dun_log">
  1123. <Comment>催款记录</Comment>
  1124. <Engine>InnoDB</Engine>
  1125. <CollationName>utf8mb4_general_ci</CollationName>
  1126. </table>
  1127. <table id="316" parent="224" name="t_order_approval">
  1128. <Comment>订单特批分类表</Comment>
  1129. <Engine>InnoDB</Engine>
  1130. <CollationName>utf8mb4_general_ci</CollationName>
  1131. </table>
  1132. <table id="317" parent="224" name="t_order_assist">
  1133. <Comment>订单协助表</Comment>
  1134. <Engine>InnoDB</Engine>
  1135. <CollationName>utf8mb4_general_ci</CollationName>
  1136. </table>
  1137. <table id="318" parent="224" name="t_order_bill_new">
  1138. <Comment>订单流水表</Comment>
  1139. <Engine>InnoDB</Engine>
  1140. <CollationName>utf8mb4_general_ci</CollationName>
  1141. </table>
  1142. <table id="319" parent="224" name="t_order_examine">
  1143. <Comment>订单审核人员</Comment>
  1144. <Engine>InnoDB</Engine>
  1145. <CollationName>utf8_general_ci</CollationName>
  1146. </table>
  1147. <table id="320" parent="224" name="t_order_high_tech">
  1148. <Comment>订单高新纯咨询信息</Comment>
  1149. <Engine>InnoDB</Engine>
  1150. <CollationName>utf8_general_ci</CollationName>
  1151. </table>
  1152. <table id="321" parent="224" name="t_order_invoice">
  1153. <Comment>订单开票信息</Comment>
  1154. <Engine>InnoDB</Engine>
  1155. <CollationName>utf8_general_ci</CollationName>
  1156. </table>
  1157. <table id="322" parent="224" name="t_order_legal_affairs">
  1158. <Comment>订单法务日志表</Comment>
  1159. <Engine>InnoDB</Engine>
  1160. <CollationName>utf8mb4_general_ci</CollationName>
  1161. </table>
  1162. <table id="323" parent="224" name="t_order_log">
  1163. <Comment>订单日志</Comment>
  1164. <Engine>InnoDB</Engine>
  1165. <CollationName>utf8_general_ci</CollationName>
  1166. </table>
  1167. <table id="324" parent="224" name="t_order_mid">
  1168. <Comment>订单中间表</Comment>
  1169. <Engine>InnoDB</Engine>
  1170. <CollationName>utf8mb4_general_ci</CollationName>
  1171. </table>
  1172. <table id="325" parent="224" name="t_order_new">
  1173. <Comment>订单表</Comment>
  1174. <Engine>InnoDB</Engine>
  1175. <CollationName>utf8mb4_general_ci</CollationName>
  1176. </table>
  1177. <table id="326" parent="224" name="t_order_payment">
  1178. <Comment>订单支付列表</Comment>
  1179. <Engine>InnoDB</Engine>
  1180. <CollationName>utf8mb4_general_ci</CollationName>
  1181. </table>
  1182. <table id="327" parent="224" name="t_order_public_release_count">
  1183. <Comment>订单公出信息表</Comment>
  1184. <Engine>InnoDB</Engine>
  1185. <CollationName>utf8mb4_general_ci</CollationName>
  1186. </table>
  1187. <table id="328" parent="224" name="t_order_service">
  1188. <Comment>订单上门服务表</Comment>
  1189. <Engine>InnoDB</Engine>
  1190. <CollationName>utf8mb4_general_ci</CollationName>
  1191. </table>
  1192. <table id="329" parent="224" name="t_order_task">
  1193. <Comment>订单任务表</Comment>
  1194. <Engine>InnoDB</Engine>
  1195. <CollationName>utf8mb4_general_ci</CollationName>
  1196. </table>
  1197. <table id="330" parent="224" name="t_task_log">
  1198. <Comment>项目任务日志</Comment>
  1199. <Engine>InnoDB</Engine>
  1200. <CollationName>utf8mb4_general_ci</CollationName>
  1201. </table>
  1202. <table id="331" parent="224" name="t_task_member">
  1203. <Comment>会员项目详情表</Comment>
  1204. <Engine>InnoDB</Engine>
  1205. <CollationName>utf8mb4_general_ci</CollationName>
  1206. </table>
  1207. <table id="332" parent="224" name="t_task_mid">
  1208. <Comment>项目中间表</Comment>
  1209. <Engine>InnoDB</Engine>
  1210. <CollationName>utf8mb4_general_ci</CollationName>
  1211. </table>
  1212. <table id="333" parent="224" name="task_annual_report">
  1213. <Comment>项目年报</Comment>
  1214. <Engine>InnoDB</Engine>
  1215. <CollationName>utf8mb4_general_ci</CollationName>
  1216. </table>
  1217. <table id="334" parent="224" name="task_attribution_log">
  1218. <Comment>项目归属日志</Comment>
  1219. <Engine>InnoDB</Engine>
  1220. <CollationName>utf8mb4_general_ci</CollationName>
  1221. </table>
  1222. <table id="335" parent="224" name="task_details">
  1223. <Comment>项目申报详情</Comment>
  1224. <Engine>InnoDB</Engine>
  1225. <CollationName>utf8mb4_general_ci</CollationName>
  1226. </table>
  1227. <table id="336" parent="224" name="task_details_log">
  1228. <Comment>项目申报详情日志</Comment>
  1229. <Engine>InnoDB</Engine>
  1230. <CollationName>utf8mb4_general_ci</CollationName>
  1231. </table>
  1232. <table id="337" parent="224" name="task_feature">
  1233. <Comment>项目申报详情日志</Comment>
  1234. <Engine>InnoDB</Engine>
  1235. <CollationName>utf8mb4_general_ci</CollationName>
  1236. </table>
  1237. <table id="338" parent="224" name="task_feature_log">
  1238. <Comment>项目申报详情日志</Comment>
  1239. <Engine>InnoDB</Engine>
  1240. <CollationName>utf8mb4_general_ci</CollationName>
  1241. </table>
  1242. <table id="339" parent="224" name="task_log">
  1243. <Comment>任务操作日志</Comment>
  1244. <Engine>InnoDB</Engine>
  1245. <CollationName>utf8_general_ci</CollationName>
  1246. </table>
  1247. <table id="340" parent="224" name="task_progress">
  1248. <Comment>任务申报进度表</Comment>
  1249. <Engine>InnoDB</Engine>
  1250. <CollationName>utf8_general_ci</CollationName>
  1251. </table>
  1252. <table id="341" parent="224" name="task_progress_log">
  1253. <Comment>项目进度日志</Comment>
  1254. <Engine>InnoDB</Engine>
  1255. <CollationName>utf8mb4_general_ci</CollationName>
  1256. </table>
  1257. <table id="342" parent="224" name="task_score">
  1258. <Comment>项目评分列表</Comment>
  1259. <Engine>InnoDB</Engine>
  1260. <CollationName>utf8mb4_general_ci</CollationName>
  1261. </table>
  1262. <table id="343" parent="224" name="task_stop">
  1263. <Comment>任务暂停表</Comment>
  1264. <Engine>InnoDB</Engine>
  1265. <CollationName>utf8_general_ci</CollationName>
  1266. </table>
  1267. <table id="344" parent="224" name="task_stop_log">
  1268. <Comment>任务暂停日志表</Comment>
  1269. <Engine>InnoDB</Engine>
  1270. <CollationName>utf8_general_ci</CollationName>
  1271. </table>
  1272. <table id="345" parent="224" name="task_time">
  1273. <Comment>项目操作日期记录</Comment>
  1274. <Engine>InnoDB</Engine>
  1275. <CollationName>utf8_general_ci</CollationName>
  1276. </table>
  1277. <table id="346" parent="224" name="temporary_receivables">
  1278. <Comment>临时收款表</Comment>
  1279. <Engine>InnoDB</Engine>
  1280. <CollationName>utf8mb4_general_ci</CollationName>
  1281. </table>
  1282. <table id="347" parent="224" name="uesr_bak">
  1283. <Engine>InnoDB</Engine>
  1284. <CollationName>utf8_general_ci</CollationName>
  1285. </table>
  1286. <table id="348" parent="224" name="user">
  1287. <Engine>InnoDB</Engine>
  1288. <CollationName>utf8mb4_general_ci</CollationName>
  1289. </table>
  1290. <table id="349" parent="224" name="user_archives">
  1291. <Comment>客户档案表</Comment>
  1292. <Engine>InnoDB</Engine>
  1293. <CollationName>utf8mb4_general_ci</CollationName>
  1294. </table>
  1295. <table id="350" parent="224" name="user_archives_interview">
  1296. <Comment>客户档案面谈表</Comment>
  1297. <Engine>InnoDB</Engine>
  1298. <CollationName>utf8mb4_general_ci</CollationName>
  1299. </table>
  1300. <table id="351" parent="224" name="user_channel">
  1301. <Comment>渠道客户表</Comment>
  1302. <Engine>InnoDB</Engine>
  1303. <CollationName>utf8mb4_general_ci</CollationName>
  1304. </table>
  1305. <table id="352" parent="224" name="user_commodity">
  1306. <Comment>商品表</Comment>
  1307. <Engine>InnoDB</Engine>
  1308. <CollationName>utf8_general_ci</CollationName>
  1309. </table>
  1310. <table id="353" parent="224" name="user_commodity_data">
  1311. <Comment>商品数据表</Comment>
  1312. <Engine>InnoDB</Engine>
  1313. <CollationName>utf8_general_ci</CollationName>
  1314. </table>
  1315. <table id="354" parent="224" name="user_commodity_log">
  1316. <Comment>商品日志表</Comment>
  1317. <Engine>InnoDB</Engine>
  1318. <CollationName>utf8_general_ci</CollationName>
  1319. </table>
  1320. <table id="355" parent="224" name="user_data">
  1321. <Comment>用户信息日志</Comment>
  1322. <Engine>InnoDB</Engine>
  1323. <CollationName>utf8mb4_general_ci</CollationName>
  1324. </table>
  1325. <table id="356" parent="224" name="user_data_log">
  1326. <Comment>用户信息日志</Comment>
  1327. <Engine>InnoDB</Engine>
  1328. <CollationName>utf8mb4_general_ci</CollationName>
  1329. </table>
  1330. <table id="357" parent="224" name="user_first_interview">
  1331. <Comment>客户首次面谈表</Comment>
  1332. <Engine>InnoDB</Engine>
  1333. <CollationName>utf8mb4_general_ci</CollationName>
  1334. </table>
  1335. <table id="358" parent="224" name="user_follow">
  1336. <Comment>客户跟进表</Comment>
  1337. <Engine>InnoDB</Engine>
  1338. <CollationName>utf8mb4_general_ci</CollationName>
  1339. </table>
  1340. <table id="359" parent="224" name="user_interview_project">
  1341. <Comment>客户面谈项目表</Comment>
  1342. <Engine>InnoDB</Engine>
  1343. <CollationName>utf8mb4_general_ci</CollationName>
  1344. </table>
  1345. <table id="360" parent="224" name="user_limit_check">
  1346. <Comment>客户分享查询表</Comment>
  1347. <Engine>InnoDB</Engine>
  1348. <CollationName>utf8mb4_general_ci</CollationName>
  1349. </table>
  1350. <table id="361" parent="224" name="user_lock_release">
  1351. <Comment>客户及业务锁定表</Comment>
  1352. <Engine>InnoDB</Engine>
  1353. <CollationName>utf8mb4_general_ci</CollationName>
  1354. </table>
  1355. <table id="362" parent="224" name="user_mid">
  1356. <Comment>用户中间表</Comment>
  1357. <Engine>InnoDB</Engine>
  1358. <CollationName>utf8mb4_general_ci</CollationName>
  1359. </table>
  1360. <table id="363" parent="224" name="user_names">
  1361. <Comment>企业名称集</Comment>
  1362. <Engine>InnoDB</Engine>
  1363. <CollationName>utf8mb4_general_ci</CollationName>
  1364. </table>
  1365. <table id="364" parent="224" name="user_receive_log">
  1366. <Comment>客户领取日志表</Comment>
  1367. <Engine>InnoDB</Engine>
  1368. <CollationName>utf8mb4_general_ci</CollationName>
  1369. </table>
  1370. <table id="365" parent="224" name="user_record">
  1371. <Comment>记录表</Comment>
  1372. <Engine>InnoDB</Engine>
  1373. <CollationName>utf8_general_ci</CollationName>
  1374. </table>
  1375. <table id="366" parent="224" name="user_service">
  1376. <Comment>客服信息表</Comment>
  1377. <Engine>InnoDB</Engine>
  1378. <CollationName>utf8mb4_general_ci</CollationName>
  1379. </table>
  1380. <table id="367" parent="224" name="user_service_follow">
  1381. <Comment>客服跟进表</Comment>
  1382. <Engine>InnoDB</Engine>
  1383. <CollationName>utf8mb4_general_ci</CollationName>
  1384. </table>
  1385. <table id="368" parent="224" name="user_super_evaluate">
  1386. <Comment>客户上级评价</Comment>
  1387. <Engine>InnoDB</Engine>
  1388. <CollationName>utf8mb4_general_ci</CollationName>
  1389. </table>
  1390. <table id="369" parent="224" name="user_transfer_log">
  1391. <Comment>转交日志</Comment>
  1392. <Engine>InnoDB</Engine>
  1393. <CollationName>utf8mb4_general_ci</CollationName>
  1394. </table>
  1395. <table id="370" parent="224" name="working_hours">
  1396. <Comment>部门上班时间</Comment>
  1397. <Engine>InnoDB</Engine>
  1398. <CollationName>utf8mb4_general_ci</CollationName>
  1399. </table>
  1400. <column id="371" parent="246" name="id">
  1401. <Comment>成果发布ID</Comment>
  1402. <NotNull>1</NotNull>
  1403. <Position>1</Position>
  1404. <StoredType>varchar(36)|0s</StoredType>
  1405. </column>
  1406. <column id="372" parent="246" name="achievement_id">
  1407. <Comment>成果ID</Comment>
  1408. <NotNull>1</NotNull>
  1409. <Position>2</Position>
  1410. <StoredType>varchar(36)|0s</StoredType>
  1411. </column>
  1412. <column id="373" parent="246" name="publish_platform">
  1413. <Comment>发布平台</Comment>
  1414. <NotNull>1</NotNull>
  1415. <Position>3</Position>
  1416. <StoredType>varchar(36)|0s</StoredType>
  1417. </column>
  1418. <column id="374" parent="246" name="publish_client">
  1419. <Comment>发布客户端 0-页面,1-APP</Comment>
  1420. <DefaultExpression>0</DefaultExpression>
  1421. <NotNull>1</NotNull>
  1422. <Position>4</Position>
  1423. <StoredType>int(1)|0s</StoredType>
  1424. </column>
  1425. <column id="375" parent="246" name="publish_page">
  1426. <Comment>发布页面</Comment>
  1427. <NotNull>1</NotNull>
  1428. <Position>5</Position>
  1429. <StoredType>varchar(36)|0s</StoredType>
  1430. </column>
  1431. <column id="376" parent="246" name="if_top">
  1432. <Comment>是否置顶 0-是,1-否</Comment>
  1433. <DefaultExpression>1</DefaultExpression>
  1434. <NotNull>1</NotNull>
  1435. <Position>6</Position>
  1436. <StoredType>int(1)|0s</StoredType>
  1437. </column>
  1438. <column id="377" parent="246" name="top_number">
  1439. <Comment>置顶序号</Comment>
  1440. <Position>7</Position>
  1441. <StoredType>int(1)|0s</StoredType>
  1442. </column>
  1443. <column id="378" parent="246" name="show_number">
  1444. <Comment>展示序号</Comment>
  1445. <Position>8</Position>
  1446. <StoredType>int(1)|0s</StoredType>
  1447. </column>
  1448. <column id="379" parent="246" name="publisher">
  1449. <Comment>发布人</Comment>
  1450. <NotNull>1</NotNull>
  1451. <Position>9</Position>
  1452. <StoredType>varchar(36)|0s</StoredType>
  1453. </column>
  1454. <column id="380" parent="246" name="publish_time">
  1455. <Comment>发布时间</Comment>
  1456. <NotNull>1</NotNull>
  1457. <Position>10</Position>
  1458. <StoredType>datetime|0s</StoredType>
  1459. </column>
  1460. <index id="381" parent="246" name="PRIMARY">
  1461. <ColNames>id</ColNames>
  1462. <Type>btree</Type>
  1463. <Unique>1</Unique>
  1464. </index>
  1465. <index id="382" parent="246" name="achievement_publish_achievement_id_IDX">
  1466. <ColNames>achievement_id</ColNames>
  1467. <Type>btree</Type>
  1468. </index>
  1469. <key id="383" parent="246" name="PRIMARY">
  1470. <NameSurrogate>1</NameSurrogate>
  1471. <Primary>1</Primary>
  1472. <UnderlyingIndexName>PRIMARY</UnderlyingIndexName>
  1473. </key>
  1474. <column id="384" parent="247" name="id">
  1475. <NotNull>1</NotNull>
  1476. <Position>1</Position>
  1477. <StoredType>varchar(36)|0s</StoredType>
  1478. </column>
  1479. <column id="385" parent="247" name="mobile">
  1480. <Comment>手机号(登录帐号)</Comment>
  1481. <Position>2</Position>
  1482. <StoredType>varchar(12)|0s</StoredType>
  1483. </column>
  1484. <column id="386" parent="247" name="name">
  1485. <Comment>用户名</Comment>
  1486. <Position>3</Position>
  1487. <StoredType>varchar(16)|0s</StoredType>
  1488. </column>
  1489. <column id="387" parent="247" name="password">
  1490. <Comment>密码</Comment>
  1491. <Position>4</Position>
  1492. <StoredType>varchar(32)|0s</StoredType>
  1493. </column>
  1494. <column id="388" parent="247" name="email">
  1495. <Comment>邮箱</Comment>
  1496. <Position>5</Position>
  1497. <StoredType>varchar(255)|0s</StoredType>
  1498. </column>
  1499. <column id="389" parent="247" name="create_time">
  1500. <Comment>创建时间</Comment>
  1501. <DefaultExpression>CURRENT_TIMESTAMP</DefaultExpression>
  1502. <Position>6</Position>
  1503. <StoredType>datetime|0s</StoredType>
  1504. </column>
  1505. <column id="390" parent="247" name="number">
  1506. <AutoIncrement>920</AutoIncrement>
  1507. <NotNull>1</NotNull>
  1508. <Position>7</Position>
  1509. <StoredType>int(6)|0s</StoredType>
  1510. </column>
  1511. <column id="391" parent="247" name="province">
  1512. <Comment>所在省份</Comment>
  1513. <Position>8</Position>
  1514. <StoredType>varchar(12)|0s</StoredType>
  1515. </column>
  1516. <column id="392" parent="247" name="position">
  1517. <Comment>职位 0=咨询,1=营销,2=外联,3=财务,4=助理,5=管理,6=工程师,7=人事,8=行政,9=内勤,10=业务</Comment>
  1518. <Position>9</Position>
  1519. <StoredType>varchar(32)|0s</StoredType>
  1520. </column>
  1521. <column id="393" parent="247" name="superior_id">
  1522. <Comment>上级管理用户ID</Comment>
  1523. <Position>10</Position>
  1524. <StoredType>varchar(36)|0s</StoredType>
  1525. </column>
  1526. <column id="394" parent="247" name="city">
  1527. <Comment>所在市</Comment>
  1528. <Position>11</Position>
  1529. <StoredType>varchar(16)|0s</StoredType>
  1530. </column>
  1531. <column id="395" parent="247" name="department_id">
  1532. <Comment>部门ID</Comment>
  1533. <Position>12</Position>
  1534. <StoredType>varchar(36)|0s</StoredType>
  1535. </column>
  1536. <column id="396" parent="247" name="status">
  1537. <Comment>用户状态</Comment>
  1538. <DefaultExpression>&apos;0&apos;</DefaultExpression>
  1539. <Position>13</Position>
  1540. <StoredType>varchar(32)|0s</StoredType>
  1541. </column>
  1542. <column id="397" parent="247" name="user_no">
  1543. <Comment>用户编号</Comment>
  1544. <Position>14</Position>
  1545. <StoredType>varchar(32)|0s</StoredType>
  1546. </column>
  1547. <column id="398" parent="247" name="duty">
  1548. <Comment>职务</Comment>
  1549. <Position>15</Position>
  1550. <StoredType>varchar(32)|0s</StoredType>
  1551. </column>
  1552. <column id="399" parent="247" name="district">
  1553. <Comment>地区</Comment>
  1554. <Position>16</Position>
  1555. <StoredType>varchar(32)|0s</StoredType>
  1556. </column>
  1557. <column id="400" parent="247" name="head_portrait_url">
  1558. <Comment>用户头像地址</Comment>
  1559. <Position>17</Position>
  1560. <StoredType>varchar(128)|0s</StoredType>
  1561. </column>
  1562. <column id="401" parent="247" name="contact_mobile">
  1563. <Comment>联系电话</Comment>
  1564. <Position>18</Position>
  1565. <StoredType>varchar(11)|0s</StoredType>
  1566. </column>
  1567. <column id="402" parent="247" name="last_login_time">
  1568. <Comment>最后登录时间</Comment>
  1569. <Position>19</Position>
  1570. <StoredType>datetime|0s</StoredType>
  1571. </column>
  1572. <column id="403" parent="247" name="open_id">
  1573. <Comment>打卡小程序微信公共编号</Comment>
  1574. <Position>20</Position>
  1575. <StoredType>varchar(64)|0s</StoredType>
  1576. </column>
  1577. <column id="404" parent="247" name="type">
  1578. <Comment>0普通 1营销 2财务 3咨询</Comment>
  1579. <DefaultExpression>0</DefaultExpression>
  1580. <Position>21</Position>
  1581. <StoredType>int(11)|0s</StoredType>
  1582. </column>
  1583. <column id="405" parent="247" name="reviewer">
  1584. <Comment>公出审核人</Comment>
  1585. <Position>22</Position>
  1586. <StoredType>varchar(36)|0s</StoredType>
  1587. </column>
  1588. <column id="406" parent="247" name="amb_id">
  1589. <Comment>阿米巴编号</Comment>
  1590. <Position>23</Position>
  1591. <StoredType>varchar(36)|0s</StoredType>
  1592. </column>
  1593. <column id="407" parent="247" name="amb_role">
  1594. <Comment>阿米巴权限</Comment>
  1595. <Position>24</Position>
  1596. <StoredType>varchar(36)|0s</StoredType>
  1597. </column>
  1598. <column id="408" parent="247" name="amb_manage">
  1599. <Comment>阿米巴管理者 0巴员 1巴主</Comment>
  1600. <DefaultExpression>0</DefaultExpression>
  1601. <Position>25</Position>
  1602. <StoredType>int(1)|0s</StoredType>
  1603. </column>
  1604. <column id="409" parent="247" name="manager_id">
  1605. <Comment>经理审核人员</Comment>
  1606. <Position>26</Position>
  1607. <StoredType>varchar(36)|0s</StoredType>
  1608. </column>
  1609. <column id="410" parent="247" name="senior_staff">
  1610. <Comment>员工分类 0新员工 1老员工</Comment>
  1611. <DefaultExpression>0</DefaultExpression>
  1612. <Position>27</Position>
  1613. <StoredType>int(1)|0s</StoredType>
  1614. </column>
  1615. <column id="411" parent="247" name="public_purview">
  1616. <Comment>公出权限 0正常 1全部</Comment>
  1617. <DefaultExpression>0</DefaultExpression>
  1618. <Position>28</Position>
  1619. <StoredType>int(1)|0s</StoredType>
  1620. </column>
  1621. <column id="412" parent="247" name="expense_open_id">
  1622. <Comment>报销小程序微信公共编号</Comment>
  1623. <Position>29</Position>
  1624. <StoredType>varchar(64)|0s</StoredType>
  1625. </column>
  1626. <column id="413" parent="247" name="expense_super_examine">
  1627. <Comment>报销上级审核 0-不需要 ,1-需要</Comment>
  1628. <DefaultExpression>1</DefaultExpression>
  1629. <NotNull>1</NotNull>
  1630. <Position>30</Position>
  1631. <StoredType>int(1)|0s</StoredType>
  1632. </column>
  1633. <column id="414" parent="247" name="public_carbon_copy">
  1634. <Comment>公出抄送人</Comment>
  1635. <Position>31</Position>
  1636. <StoredType>varchar(36)|0s</StoredType>
  1637. </column>
  1638. <column id="415" parent="247" name="call_no">
  1639. <Comment>外呼号码</Comment>
  1640. <Position>32</Position>
  1641. <StoredType>varchar(64)|0s</StoredType>
  1642. </column>
  1643. <column id="416" parent="247" name="team_id">
  1644. <Comment>团队编号</Comment>
  1645. <Position>33</Position>
  1646. <StoredType>int(11)|0s</StoredType>
  1647. </column>
  1648. <index id="417" parent="247" name="PRIMARY">
  1649. <ColNames>id</ColNames>
  1650. <Type>btree</Type>
  1651. <Unique>1</Unique>
  1652. </index>
  1653. <index id="418" parent="247" name="index_number">
  1654. <ColNames>number</ColNames>
  1655. <Type>btree</Type>
  1656. </index>
  1657. <index id="419" parent="247" name="IDX_Admin_Department_Id">
  1658. <ColNames>department_id</ColNames>
  1659. <Type>btree</Type>
  1660. </index>
  1661. <key id="420" parent="247" name="PRIMARY">
  1662. <NameSurrogate>1</NameSurrogate>
  1663. <Primary>1</Primary>
  1664. <UnderlyingIndexName>PRIMARY</UnderlyingIndexName>
  1665. </key>
  1666. <column id="421" parent="248" name="id">
  1667. <AutoIncrement>1</AutoIncrement>
  1668. <NotNull>1</NotNull>
  1669. <Position>1</Position>
  1670. <StoredType>int(11)|0s</StoredType>
  1671. </column>
  1672. <column id="422" parent="248" name="aid">
  1673. <Comment>卡片编号</Comment>
  1674. <NotNull>1</NotNull>
  1675. <Position>2</Position>
  1676. <StoredType>varchar(36)|0s</StoredType>
  1677. </column>
  1678. <column id="423" parent="248" name="name">
  1679. <Comment>名称</Comment>
  1680. <Position>3</Position>
  1681. <StoredType>varchar(64)|0s</StoredType>
  1682. </column>
  1683. <column id="424" parent="248" name="position">
  1684. <Comment>职位</Comment>
  1685. <Position>4</Position>
  1686. <StoredType>varchar(64)|0s</StoredType>
  1687. </column>
  1688. <column id="425" parent="248" name="company">
  1689. <Comment>公司名称</Comment>
  1690. <Position>5</Position>
  1691. <StoredType>varchar(64)|0s</StoredType>
  1692. </column>
  1693. <column id="426" parent="248" name="phone">
  1694. <Comment>电话</Comment>
  1695. <Position>6</Position>
  1696. <StoredType>varchar(64)|0s</StoredType>
  1697. </column>
  1698. <column id="427" parent="248" name="land_line">
  1699. <Comment>座机</Comment>
  1700. <Position>7</Position>
  1701. <StoredType>varchar(64)|0s</StoredType>
  1702. </column>
  1703. <column id="428" parent="248" name="email">
  1704. <Comment>邮箱</Comment>
  1705. <Position>8</Position>
  1706. <StoredType>varchar(255)|0s</StoredType>
  1707. </column>
  1708. <column id="429" parent="248" name="area">
  1709. <Comment>地区</Comment>
  1710. <Position>9</Position>
  1711. <StoredType>varchar(64)|0s</StoredType>
  1712. </column>
  1713. <column id="430" parent="248" name="content">
  1714. <Comment>个人简介</Comment>
  1715. <Position>10</Position>
  1716. <StoredType>longtext|0s</StoredType>
  1717. </column>
  1718. <column id="431" parent="248" name="create_time">
  1719. <Comment>创建时间</Comment>
  1720. <DefaultExpression>CURRENT_TIMESTAMP</DefaultExpression>
  1721. <Position>11</Position>
  1722. <StoredType>datetime|0s</StoredType>
  1723. </column>
  1724. <index id="432" parent="248" name="PRIMARY">
  1725. <ColNames>id</ColNames>
  1726. <Type>btree</Type>
  1727. <Unique>1</Unique>
  1728. </index>
  1729. <key id="433" parent="248" name="PRIMARY">
  1730. <NameSurrogate>1</NameSurrogate>
  1731. <Primary>1</Primary>
  1732. <UnderlyingIndexName>PRIMARY</UnderlyingIndexName>
  1733. </key>
  1734. <column id="434" parent="249" name="id">
  1735. <AutoIncrement>1</AutoIncrement>
  1736. <Comment>id</Comment>
  1737. <NotNull>1</NotNull>
  1738. <Position>1</Position>
  1739. <StoredType>int(11)|0s</StoredType>
  1740. </column>
  1741. <column id="435" parent="249" name="name">
  1742. <Comment>外呼人名称</Comment>
  1743. <NotNull>1</NotNull>
  1744. <Position>2</Position>
  1745. <StoredType>varchar(36)|0s</StoredType>
  1746. </column>
  1747. <column id="436" parent="249" name="aid">
  1748. <Comment>外呼人编号</Comment>
  1749. <Position>3</Position>
  1750. <StoredType>varchar(36)|0s</StoredType>
  1751. </column>
  1752. <column id="437" parent="249" name="team_id">
  1753. <Comment>团队编号</Comment>
  1754. <DefaultExpression>0</DefaultExpression>
  1755. <Position>4</Position>
  1756. <StoredType>int(11)|0s</StoredType>
  1757. </column>
  1758. <column id="438" parent="249" name="team_name">
  1759. <Comment>团队名称</Comment>
  1760. <NotNull>1</NotNull>
  1761. <Position>5</Position>
  1762. <StoredType>varchar(36)|0s</StoredType>
  1763. </column>
  1764. <column id="439" parent="249" name="call_sum">
  1765. <Comment>外呼次数</Comment>
  1766. <Position>6</Position>
  1767. <StoredType>int(11)|0s</StoredType>
  1768. </column>
  1769. <column id="440" parent="249" name="connect_sum">
  1770. <Comment>接通次数</Comment>
  1771. <Position>7</Position>
  1772. <StoredType>int(11)|0s</StoredType>
  1773. </column>
  1774. <column id="441" parent="249" name="valid_sum">
  1775. <Comment>有效次数</Comment>
  1776. <Position>8</Position>
  1777. <StoredType>int(11)|0s</StoredType>
  1778. </column>
  1779. <column id="442" parent="249" name="call_duration_sum">
  1780. <Comment>时长</Comment>
  1781. <Position>9</Position>
  1782. <StoredType>int(11)|0s</StoredType>
  1783. </column>
  1784. <column id="443" parent="249" name="day_date">
  1785. <Comment>记录时间</Comment>
  1786. <NotNull>1</NotNull>
  1787. <Position>10</Position>
  1788. <StoredType>date|0s</StoredType>
  1789. </column>
  1790. <column id="444" parent="249" name="create_time">
  1791. <Comment>创建时间</Comment>
  1792. <DefaultExpression>CURRENT_TIMESTAMP</DefaultExpression>
  1793. <Position>11</Position>
  1794. <StoredType>datetime|0s</StoredType>
  1795. </column>
  1796. <index id="445" parent="249" name="PRIMARY">
  1797. <ColNames>id</ColNames>
  1798. <Type>btree</Type>
  1799. <Unique>1</Unique>
  1800. </index>
  1801. <key id="446" parent="249" name="PRIMARY">
  1802. <NameSurrogate>1</NameSurrogate>
  1803. <Primary>1</Primary>
  1804. <UnderlyingIndexName>PRIMARY</UnderlyingIndexName>
  1805. </key>
  1806. <column id="447" parent="250" name="id">
  1807. <AutoIncrement>1</AutoIncrement>
  1808. <Comment>id</Comment>
  1809. <NotNull>1</NotNull>
  1810. <Position>1</Position>
  1811. <StoredType>int(11)|0s</StoredType>
  1812. </column>
  1813. <column id="448" parent="250" name="aid">
  1814. <Comment>管理员编号</Comment>
  1815. <NotNull>1</NotNull>
  1816. <Position>2</Position>
  1817. <StoredType>varchar(36)|0s</StoredType>
  1818. </column>
  1819. <column id="449" parent="250" name="ht_sat_count">
  1820. <Comment>高新&amp;科技数</Comment>
  1821. <DefaultExpression>0</DefaultExpression>
  1822. <Position>3</Position>
  1823. <StoredType>int(11)|0s</StoredType>
  1824. </column>
  1825. <column id="450" parent="250" name="ht_sat_not_score_count">
  1826. <Comment>高新&amp;科技评分数</Comment>
  1827. <DefaultExpression>0</DefaultExpression>
  1828. <Position>4</Position>
  1829. <StoredType>int(11)|0s</StoredType>
  1830. </column>
  1831. <column id="451" parent="250" name="ht_sat_score_count">
  1832. <Comment>高新&amp;科技评分数</Comment>
  1833. <DefaultExpression>0</DefaultExpression>
  1834. <Position>5</Position>
  1835. <StoredType>int(11)|0s</StoredType>
  1836. </column>
  1837. <column id="452" parent="250" name="ht_sat_score_average">
  1838. <Comment>高新&amp;科技平均分</Comment>
  1839. <DefaultExpression>0</DefaultExpression>
  1840. <Position>6</Position>
  1841. <StoredType>double|0s</StoredType>
  1842. </column>
  1843. <column id="453" parent="250" name="member_count">
  1844. <Comment>会员数</Comment>
  1845. <DefaultExpression>0</DefaultExpression>
  1846. <Position>7</Position>
  1847. <StoredType>int(11)|0s</StoredType>
  1848. </column>
  1849. <column id="454" parent="250" name="member_not_score_count">
  1850. <Comment>会员评分数</Comment>
  1851. <DefaultExpression>0</DefaultExpression>
  1852. <Position>8</Position>
  1853. <StoredType>int(11)|0s</StoredType>
  1854. </column>
  1855. <column id="455" parent="250" name="member_score_count">
  1856. <Comment>会员评分数</Comment>
  1857. <DefaultExpression>0</DefaultExpression>
  1858. <Position>9</Position>
  1859. <StoredType>int(11)|0s</StoredType>
  1860. </column>
  1861. <column id="456" parent="250" name="member_score_average">
  1862. <Comment>会员平均分</Comment>
  1863. <DefaultExpression>0</DefaultExpression>
  1864. <Position>10</Position>
  1865. <StoredType>double|0s</StoredType>
  1866. </column>
  1867. <column id="457" parent="250" name="create_time">
  1868. <Comment>创建时间</Comment>
  1869. <DefaultExpression>CURRENT_TIMESTAMP</DefaultExpression>
  1870. <Position>11</Position>
  1871. <StoredType>datetime|0s</StoredType>
  1872. </column>
  1873. <index id="458" parent="250" name="PRIMARY">
  1874. <ColNames>id</ColNames>
  1875. <Type>btree</Type>
  1876. <Unique>1</Unique>
  1877. </index>
  1878. <key id="459" parent="250" name="PRIMARY">
  1879. <NameSurrogate>1</NameSurrogate>
  1880. <Primary>1</Primary>
  1881. <UnderlyingIndexName>PRIMARY</UnderlyingIndexName>
  1882. </key>
  1883. <column id="460" parent="251" name="id">
  1884. <AutoIncrement>62</AutoIncrement>
  1885. <NotNull>1</NotNull>
  1886. <Position>1</Position>
  1887. <StoredType>int(11)|0s</StoredType>
  1888. </column>
  1889. <column id="461" parent="251" name="aid">
  1890. <Comment>人员编号</Comment>
  1891. <NotNull>1</NotNull>
  1892. <Position>2</Position>
  1893. <StoredType>varchar(36)|0s</StoredType>
  1894. </column>
  1895. <column id="462" parent="251" name="type">
  1896. <Comment>审核类型 0=公出审核人列表,1=协单审核人,2=上级,3=抄送,4=公出二级审核</Comment>
  1897. <DefaultExpression>0</DefaultExpression>
  1898. <Position>3</Position>
  1899. <StoredType>int(1)|0s</StoredType>
  1900. </column>
  1901. <column id="463" parent="251" name="reviewer_id">
  1902. <Comment>审核人编号</Comment>
  1903. <Position>4</Position>
  1904. <StoredType>varchar(36)|0s</StoredType>
  1905. </column>
  1906. <column id="464" parent="251" name="create_time">
  1907. <Comment>创建时间</Comment>
  1908. <DefaultExpression>CURRENT_TIMESTAMP</DefaultExpression>
  1909. <Position>5</Position>
  1910. <StoredType>datetime|0s</StoredType>
  1911. </column>
  1912. <index id="465" parent="251" name="PRIMARY">
  1913. <ColNames>id</ColNames>
  1914. <Type>btree</Type>
  1915. <Unique>1</Unique>
  1916. </index>
  1917. <key id="466" parent="251" name="PRIMARY">
  1918. <NameSurrogate>1</NameSurrogate>
  1919. <Primary>1</Primary>
  1920. <UnderlyingIndexName>PRIMARY</UnderlyingIndexName>
  1921. </key>
  1922. <column id="467" parent="252" name="id">
  1923. <AutoIncrement>641</AutoIncrement>
  1924. <NotNull>1</NotNull>
  1925. <Position>1</Position>
  1926. <StoredType>int(11)|0s</StoredType>
  1927. </column>
  1928. <column id="468" parent="252" name="aid">
  1929. <Comment>管理员编号</Comment>
  1930. <NotNull>1</NotNull>
  1931. <Position>2</Position>
  1932. <StoredType>varchar(36)|0s</StoredType>
  1933. </column>
  1934. <column id="469" parent="252" name="private_count">
  1935. <Comment>私有数</Comment>
  1936. <DefaultExpression>0</DefaultExpression>
  1937. <NotNull>1</NotNull>
  1938. <Position>3</Position>
  1939. <StoredType>int(11)|0s</StoredType>
  1940. </column>
  1941. <column id="470" parent="252" name="sign_count">
  1942. <Comment>签单数</Comment>
  1943. <DefaultExpression>0</DefaultExpression>
  1944. <NotNull>1</NotNull>
  1945. <Position>4</Position>
  1946. <StoredType>int(11)|0s</StoredType>
  1947. </column>
  1948. <column id="471" parent="252" name="channel_count">
  1949. <Comment>渠道数</Comment>
  1950. <DefaultExpression>0</DefaultExpression>
  1951. <NotNull>1</NotNull>
  1952. <Position>5</Position>
  1953. <StoredType>int(11)|0s</StoredType>
  1954. </column>
  1955. <column id="472" parent="252" name="public_release_count">
  1956. <Comment>公出数</Comment>
  1957. <DefaultExpression>0</DefaultExpression>
  1958. <NotNull>1</NotNull>
  1959. <Position>6</Position>
  1960. <StoredType>int(11)|0s</StoredType>
  1961. </column>
  1962. <column id="473" parent="252" name="follow_count">
  1963. <Comment>跟进数</Comment>
  1964. <DefaultExpression>0</DefaultExpression>
  1965. <NotNull>1</NotNull>
  1966. <Position>7</Position>
  1967. <StoredType>int(11)|0s</StoredType>
  1968. </column>
  1969. <column id="474" parent="252" name="order_count">
  1970. <Comment>订单数</Comment>
  1971. <DefaultExpression>0</DefaultExpression>
  1972. <NotNull>1</NotNull>
  1973. <Position>8</Position>
  1974. <StoredType>int(11)|0s</StoredType>
  1975. </column>
  1976. <column id="475" parent="252" name="date_time">
  1977. <Comment>日期</Comment>
  1978. <NotNull>1</NotNull>
  1979. <Position>9</Position>
  1980. <StoredType>date|0s</StoredType>
  1981. </column>
  1982. <column id="476" parent="252" name="create_time">
  1983. <Comment>创建时间</Comment>
  1984. <DefaultExpression>CURRENT_TIMESTAMP</DefaultExpression>
  1985. <Position>10</Position>
  1986. <StoredType>datetime|0s</StoredType>
  1987. </column>
  1988. <index id="477" parent="252" name="PRIMARY">
  1989. <ColNames>id</ColNames>
  1990. <Type>btree</Type>
  1991. <Unique>1</Unique>
  1992. </index>
  1993. <index id="478" parent="252" name="admin_user_count_aid_IDX">
  1994. <ColNames>aid
  1995. date_time</ColNames>
  1996. <Type>btree</Type>
  1997. </index>
  1998. <key id="479" parent="252" name="PRIMARY">
  1999. <NameSurrogate>1</NameSurrogate>
  2000. <Primary>1</Primary>
  2001. <UnderlyingIndexName>PRIMARY</UnderlyingIndexName>
  2002. </key>
  2003. <column id="480" parent="253" name="id">
  2004. <AutoIncrement>9</AutoIncrement>
  2005. <NotNull>1</NotNull>
  2006. <Position>1</Position>
  2007. <StoredType>bigint(20)|0s</StoredType>
  2008. </column>
  2009. <column id="481" parent="253" name="initiate_amb_id">
  2010. <Comment>发起阿米巴</Comment>
  2011. <Position>2</Position>
  2012. <StoredType>bigint(20)|0s</StoredType>
  2013. </column>
  2014. <column id="482" parent="253" name="accept_amb_id">
  2015. <Comment>接受阿米巴</Comment>
  2016. <Position>3</Position>
  2017. <StoredType>bigint(20)|0s</StoredType>
  2018. </column>
  2019. <column id="483" parent="253" name="amount">
  2020. <Comment>金额</Comment>
  2021. <DefaultExpression>0.000000</DefaultExpression>
  2022. <NotNull>1</NotNull>
  2023. <Position>4</Position>
  2024. <StoredType>decimal(14,6 digit)|0s</StoredType>
  2025. </column>
  2026. <column id="484" parent="253" name="status">
  2027. <Comment>状态 0=草稿,1=待审核,2=同意,3=驳回</Comment>
  2028. <Position>5</Position>
  2029. <StoredType>int(1)|0s</StoredType>
  2030. </column>
  2031. <column id="485" parent="253" name="operator">
  2032. <Comment>操作人</Comment>
  2033. <Position>6</Position>
  2034. <StoredType>varchar(36)|0s</StoredType>
  2035. </column>
  2036. <column id="486" parent="253" name="comment">
  2037. <Comment>备注</Comment>
  2038. <Position>7</Position>
  2039. <StoredType>varchar(128)|0s</StoredType>
  2040. </column>
  2041. <column id="487" parent="253" name="create_time">
  2042. <Comment>创建时间</Comment>
  2043. <DefaultExpression>CURRENT_TIMESTAMP</DefaultExpression>
  2044. <Position>8</Position>
  2045. <StoredType>datetime|0s</StoredType>
  2046. </column>
  2047. <column id="488" parent="253" name="count_amount">
  2048. <Comment>累计金额</Comment>
  2049. <DefaultExpression>0.000000</DefaultExpression>
  2050. <NotNull>1</NotNull>
  2051. <Position>9</Position>
  2052. <StoredType>decimal(14,6 digit)|0s</StoredType>
  2053. </column>
  2054. <index id="489" parent="253" name="PRIMARY">
  2055. <ColNames>id</ColNames>
  2056. <Type>btree</Type>
  2057. <Unique>1</Unique>
  2058. </index>
  2059. <key id="490" parent="253" name="PRIMARY">
  2060. <NameSurrogate>1</NameSurrogate>
  2061. <Primary>1</Primary>
  2062. <UnderlyingIndexName>PRIMARY</UnderlyingIndexName>
  2063. </key>
  2064. <column id="491" parent="254" name="id">
  2065. <AutoIncrement>14</AutoIncrement>
  2066. <NotNull>1</NotNull>
  2067. <Position>1</Position>
  2068. <StoredType>bigint(20)|0s</StoredType>
  2069. </column>
  2070. <column id="492" parent="254" name="amb_invest_id">
  2071. <NotNull>1</NotNull>
  2072. <Position>2</Position>
  2073. <StoredType>bigint(20)|0s</StoredType>
  2074. </column>
  2075. <column id="493" parent="254" name="status">
  2076. <Comment>状态 0=草稿,1=发起,2=同意,3=驳回</Comment>
  2077. <Position>3</Position>
  2078. <StoredType>int(1)|0s</StoredType>
  2079. </column>
  2080. <column id="494" parent="254" name="comment">
  2081. <Comment>备注</Comment>
  2082. <Position>4</Position>
  2083. <StoredType>varchar(128)|0s</StoredType>
  2084. </column>
  2085. <column id="495" parent="254" name="operator">
  2086. <Comment>操作人</Comment>
  2087. <Position>5</Position>
  2088. <StoredType>varchar(36)|0s</StoredType>
  2089. </column>
  2090. <column id="496" parent="254" name="create_time">
  2091. <Comment>创建时间</Comment>
  2092. <DefaultExpression>CURRENT_TIMESTAMP</DefaultExpression>
  2093. <Position>6</Position>
  2094. <StoredType>datetime|0s</StoredType>
  2095. </column>
  2096. <index id="497" parent="254" name="PRIMARY">
  2097. <ColNames>id</ColNames>
  2098. <Type>btree</Type>
  2099. <Unique>1</Unique>
  2100. </index>
  2101. <key id="498" parent="254" name="PRIMARY">
  2102. <NameSurrogate>1</NameSurrogate>
  2103. <Primary>1</Primary>
  2104. <UnderlyingIndexName>PRIMARY</UnderlyingIndexName>
  2105. </key>
  2106. <column id="499" parent="255" name="id">
  2107. <AutoIncrement>1</AutoIncrement>
  2108. <NotNull>1</NotNull>
  2109. <Position>1</Position>
  2110. <StoredType>bigint(20)|0s</StoredType>
  2111. </column>
  2112. <column id="500" parent="255" name="type">
  2113. <Comment>类型 0=其他费用,1=内部结算,2=差旅(公对私报销),3=招待费,4=借款,5=工资奖金</Comment>
  2114. <DefaultExpression>0</DefaultExpression>
  2115. <Position>2</Position>
  2116. <StoredType>int(1)|0s</StoredType>
  2117. </column>
  2118. <column id="501" parent="255" name="total_amount">
  2119. <Comment>金额</Comment>
  2120. <DefaultExpression>0.000000</DefaultExpression>
  2121. <NotNull>1</NotNull>
  2122. <Position>3</Position>
  2123. <StoredType>decimal(12,6 digit)|0s</StoredType>
  2124. </column>
  2125. <column id="502" parent="255" name="initiate_amb_id">
  2126. <Comment>发起阿米巴</Comment>
  2127. <Position>4</Position>
  2128. <StoredType>bigint(20)|0s</StoredType>
  2129. </column>
  2130. <column id="503" parent="255" name="accept_amb_id">
  2131. <Comment>接受阿米巴</Comment>
  2132. <Position>5</Position>
  2133. <StoredType>bigint(20)|0s</StoredType>
  2134. </column>
  2135. <column id="504" parent="255" name="content">
  2136. <Comment>内容及说明</Comment>
  2137. <DefaultExpression>&apos;&apos;</DefaultExpression>
  2138. <Position>6</Position>
  2139. <StoredType>varchar(512)|0s</StoredType>
  2140. </column>
  2141. <column id="505" parent="255" name="remarks">
  2142. <Comment>内容及说明</Comment>
  2143. <DefaultExpression>&apos;&apos;</DefaultExpression>
  2144. <Position>7</Position>
  2145. <StoredType>varchar(512)|0s</StoredType>
  2146. </column>
  2147. <column id="506" parent="255" name="annex_url">
  2148. <Comment>附件地址</Comment>
  2149. <Position>8</Position>
  2150. <StoredType>longtext|0s</StoredType>
  2151. </column>
  2152. <column id="507" parent="255" name="process_status">
  2153. <Comment>审核流程 0=发起,1=本巴主,2=付款巴主,3=付款事业部总,4=财务总监,5=集团副总,</Comment>
  2154. <DefaultExpression>0</DefaultExpression>
  2155. <Position>9</Position>
  2156. <StoredType>int(4)|0s</StoredType>
  2157. </column>
  2158. <column id="508" parent="255" name="status">
  2159. <Comment>审核状态 0=审核,1=通过,2=拒绝</Comment>
  2160. <DefaultExpression>0</DefaultExpression>
  2161. <Position>10</Position>
  2162. <StoredType>int(4)|0s</StoredType>
  2163. </column>
  2164. <column id="509" parent="255" name="create_by">
  2165. <Comment>创建者</Comment>
  2166. <DefaultExpression>&apos;&apos;</DefaultExpression>
  2167. <Position>11</Position>
  2168. <StoredType>varchar(36)|0s</StoredType>
  2169. </column>
  2170. <column id="510" parent="255" name="create_time">
  2171. <Comment>创建时间</Comment>
  2172. <Position>12</Position>
  2173. <StoredType>datetime|0s</StoredType>
  2174. </column>
  2175. <column id="511" parent="255" name="update_by">
  2176. <Comment>更新者</Comment>
  2177. <DefaultExpression>&apos;&apos;</DefaultExpression>
  2178. <Position>13</Position>
  2179. <StoredType>varchar(36)|0s</StoredType>
  2180. </column>
  2181. <column id="512" parent="255" name="update_time">
  2182. <Comment>更新时间</Comment>
  2183. <Position>14</Position>
  2184. <StoredType>datetime|0s</StoredType>
  2185. </column>
  2186. <index id="513" parent="255" name="PRIMARY">
  2187. <ColNames>id</ColNames>
  2188. <Type>btree</Type>
  2189. <Unique>1</Unique>
  2190. </index>
  2191. <key id="514" parent="255" name="PRIMARY">
  2192. <NameSurrogate>1</NameSurrogate>
  2193. <Primary>1</Primary>
  2194. <UnderlyingIndexName>PRIMARY</UnderlyingIndexName>
  2195. </key>
  2196. <column id="515" parent="256" name="id">
  2197. <AutoIncrement>1</AutoIncrement>
  2198. <NotNull>1</NotNull>
  2199. <Position>1</Position>
  2200. <StoredType>bigint(20)|0s</StoredType>
  2201. </column>
  2202. <column id="516" parent="256" name="remarks">
  2203. <Comment>内容及说明</Comment>
  2204. <DefaultExpression>&apos;&apos;</DefaultExpression>
  2205. <Position>2</Position>
  2206. <StoredType>varchar(512)|0s</StoredType>
  2207. </column>
  2208. <column id="517" parent="256" name="process_status">
  2209. <Comment>审核流程 0=发起,1=分管会计,2=本巴主,3=付款巴主,4=付款事业部总,5=财务总监,6=集团副总</Comment>
  2210. <DefaultExpression>0</DefaultExpression>
  2211. <Position>3</Position>
  2212. <StoredType>int(4)|0s</StoredType>
  2213. </column>
  2214. <column id="518" parent="256" name="status">
  2215. <Comment>审核状态 0=待审核,1=通过,2=拒绝</Comment>
  2216. <DefaultExpression>0</DefaultExpression>
  2217. <Position>4</Position>
  2218. <StoredType>int(4)|0s</StoredType>
  2219. </column>
  2220. <column id="519" parent="256" name="operator">
  2221. <Comment>操作者</Comment>
  2222. <DefaultExpression>&apos;&apos;</DefaultExpression>
  2223. <Position>5</Position>
  2224. <StoredType>varchar(36)|0s</StoredType>
  2225. </column>
  2226. <column id="520" parent="256" name="create_time">
  2227. <Comment>创建时间</Comment>
  2228. <DefaultExpression>CURRENT_TIMESTAMP</DefaultExpression>
  2229. <Position>6</Position>
  2230. <StoredType>datetime|0s</StoredType>
  2231. </column>
  2232. <index id="521" parent="256" name="PRIMARY">
  2233. <ColNames>id</ColNames>
  2234. <Type>btree</Type>
  2235. <Unique>1</Unique>
  2236. </index>
  2237. <key id="522" parent="256" name="PRIMARY">
  2238. <NameSurrogate>1</NameSurrogate>
  2239. <Primary>1</Primary>
  2240. <UnderlyingIndexName>PRIMARY</UnderlyingIndexName>
  2241. </key>
  2242. <column id="523" parent="257" name="id">
  2243. <AutoIncrement>21</AutoIncrement>
  2244. <Comment>部门id</Comment>
  2245. <NotNull>1</NotNull>
  2246. <Position>1</Position>
  2247. <StoredType>bigint(20)|0s</StoredType>
  2248. </column>
  2249. <column id="524" parent="257" name="parent_id">
  2250. <Comment>父部门id</Comment>
  2251. <DefaultExpression>0</DefaultExpression>
  2252. <Position>2</Position>
  2253. <StoredType>bigint(20)|0s</StoredType>
  2254. </column>
  2255. <column id="525" parent="257" name="ancestors">
  2256. <Comment>祖级列表</Comment>
  2257. <DefaultExpression>&apos;&apos;</DefaultExpression>
  2258. <Position>3</Position>
  2259. <StoredType>varchar(50)|0s</StoredType>
  2260. </column>
  2261. <column id="526" parent="257" name="name">
  2262. <Comment>部门名称</Comment>
  2263. <DefaultExpression>&apos;&apos;</DefaultExpression>
  2264. <Position>4</Position>
  2265. <StoredType>varchar(30)|0s</StoredType>
  2266. </column>
  2267. <column id="527" parent="257" name="order_num">
  2268. <Comment>显示顺序</Comment>
  2269. <DefaultExpression>0</DefaultExpression>
  2270. <Position>5</Position>
  2271. <StoredType>int(4)|0s</StoredType>
  2272. </column>
  2273. <column id="528" parent="257" name="leader">
  2274. <Comment>负责人</Comment>
  2275. <Position>6</Position>
  2276. <StoredType>varchar(36)|0s</StoredType>
  2277. </column>
  2278. <column id="529" parent="257" name="status">
  2279. <Comment>部门状态(0正常 1停用)</Comment>
  2280. <DefaultExpression>&apos;0&apos;</DefaultExpression>
  2281. <Position>7</Position>
  2282. <StoredType>char(1)|0s</StoredType>
  2283. </column>
  2284. <column id="530" parent="257" name="create_by">
  2285. <Comment>创建者</Comment>
  2286. <DefaultExpression>&apos;&apos;</DefaultExpression>
  2287. <Position>8</Position>
  2288. <StoredType>varchar(64)|0s</StoredType>
  2289. </column>
  2290. <column id="531" parent="257" name="create_time">
  2291. <Comment>创建时间</Comment>
  2292. <Position>9</Position>
  2293. <StoredType>datetime|0s</StoredType>
  2294. </column>
  2295. <column id="532" parent="257" name="update_by">
  2296. <Comment>更新者</Comment>
  2297. <DefaultExpression>&apos;&apos;</DefaultExpression>
  2298. <Position>10</Position>
  2299. <StoredType>varchar(64)|0s</StoredType>
  2300. </column>
  2301. <column id="533" parent="257" name="update_time">
  2302. <Comment>更新时间</Comment>
  2303. <Position>11</Position>
  2304. <StoredType>datetime|0s</StoredType>
  2305. </column>
  2306. <column id="534" parent="257" name="lvl">
  2307. <Comment>层级 0=集团,1=管综经开总,2=大区总,3=区总,4=事业部总,5=战区总,6=巴总</Comment>
  2308. <DefaultExpression>0</DefaultExpression>
  2309. <Position>12</Position>
  2310. <StoredType>int(1)|0s</StoredType>
  2311. </column>
  2312. <column id="535" parent="257" name="finance_id">
  2313. <Comment>财务id</Comment>
  2314. <Position>13</Position>
  2315. <StoredType>varchar(36)|0s</StoredType>
  2316. </column>
  2317. <column id="536" parent="257" name="ancestors_names">
  2318. <Comment>祖级名称</Comment>
  2319. <Position>14</Position>
  2320. <StoredType>varchar(128)|0s</StoredType>
  2321. </column>
  2322. <column id="537" parent="257" name="accountant">
  2323. <Comment>会计id</Comment>
  2324. <Position>15</Position>
  2325. <StoredType>varchar(36)|0s</StoredType>
  2326. </column>
  2327. <column id="538" parent="257" name="remarks">
  2328. <Comment>说明</Comment>
  2329. <Position>16</Position>
  2330. <StoredType>varchar(512)|0s</StoredType>
  2331. </column>
  2332. <column id="539" parent="257" name="total_amount">
  2333. <Comment>总金额</Comment>
  2334. <DefaultExpression>0.000000</DefaultExpression>
  2335. <NotNull>1</NotNull>
  2336. <Position>17</Position>
  2337. <StoredType>decimal(12,6 digit)|0s</StoredType>
  2338. </column>
  2339. <column id="540" parent="257" name="members_count">
  2340. <Comment>成员数</Comment>
  2341. <DefaultExpression>0</DefaultExpression>
  2342. <NotNull>1</NotNull>
  2343. <Position>18</Position>
  2344. <StoredType>int(11)|0s</StoredType>
  2345. </column>
  2346. <column id="541" parent="257" name="received">
  2347. <Comment>我收到的投资款</Comment>
  2348. <DefaultExpression>0.000000</DefaultExpression>
  2349. <NotNull>1</NotNull>
  2350. <Position>19</Position>
  2351. <StoredType>decimal(12,6 digit)|0s</StoredType>
  2352. </column>
  2353. <column id="542" parent="257" name="foreign">
  2354. <Comment>我对外的投资款</Comment>
  2355. <DefaultExpression>0.000000</DefaultExpression>
  2356. <NotNull>1</NotNull>
  2357. <Position>20</Position>
  2358. <StoredType>decimal(12,6 digit)|0s</StoredType>
  2359. </column>
  2360. <column id="543" parent="257" name="surplus">
  2361. <Comment>我剩余的投资款</Comment>
  2362. <DefaultExpression>0.000000</DefaultExpression>
  2363. <NotNull>1</NotNull>
  2364. <Position>21</Position>
  2365. <StoredType>decimal(12,6 digit)|0s</StoredType>
  2366. </column>
  2367. <index id="544" parent="257" name="PRIMARY">
  2368. <ColNames>id</ColNames>
  2369. <Type>btree</Type>
  2370. <Unique>1</Unique>
  2371. </index>
  2372. <key id="545" parent="257" name="PRIMARY">
  2373. <NameSurrogate>1</NameSurrogate>
  2374. <Primary>1</Primary>
  2375. <UnderlyingIndexName>PRIMARY</UnderlyingIndexName>
  2376. </key>
  2377. <column id="546" parent="258" name="id">
  2378. <Comment>分类ID</Comment>
  2379. <NotNull>1</NotNull>
  2380. <Position>1</Position>
  2381. <StoredType>varchar(36)|0s</StoredType>
  2382. </column>
  2383. <column id="547" parent="258" name="create_id">
  2384. <Comment>创建人</Comment>
  2385. <NotNull>1</NotNull>
  2386. <Position>2</Position>
  2387. <StoredType>varchar(36)|0s</StoredType>
  2388. </column>
  2389. <column id="548" parent="258" name="create_time">
  2390. <Comment>创建时间</Comment>
  2391. <Position>3</Position>
  2392. <StoredType>datetime|0s</StoredType>
  2393. </column>
  2394. <column id="549" parent="258" name="update_time">
  2395. <Comment>更新时间</Comment>
  2396. <Position>4</Position>
  2397. <StoredType>datetime|0s</StoredType>
  2398. </column>
  2399. <column id="550" parent="258" name="delete_sign">
  2400. <Comment>删除标识</Comment>
  2401. <DefaultExpression>0</DefaultExpression>
  2402. <Position>5</Position>
  2403. <StoredType>int(11)|0s</StoredType>
  2404. </column>
  2405. <column id="551" parent="258" name="cid">
  2406. <Comment>分类编号</Comment>
  2407. <Position>6</Position>
  2408. <StoredType>varchar(36)|0s</StoredType>
  2409. </column>
  2410. <column id="552" parent="258" name="cname">
  2411. <Comment>分类名称</Comment>
  2412. <Position>7</Position>
  2413. <StoredType>varchar(36)|0s</StoredType>
  2414. </column>
  2415. <column id="553" parent="258" name="super_id">
  2416. <Comment>父分类</Comment>
  2417. <Position>8</Position>
  2418. <StoredType>varchar(36)|0s</StoredType>
  2419. </column>
  2420. <column id="554" parent="258" name="layer">
  2421. <Comment>分类层级</Comment>
  2422. <Position>9</Position>
  2423. <StoredType>int(11)|0s</StoredType>
  2424. </column>
  2425. <column id="555" parent="258" name="status">
  2426. <Comment>分类状态</Comment>
  2427. <Position>10</Position>
  2428. <StoredType>varchar(20)|0s</StoredType>
  2429. </column>
  2430. <column id="556" parent="258" name="varieties_logo">
  2431. <Comment>业务品类图标</Comment>
  2432. <Position>11</Position>
  2433. <StoredType>varchar(255)|0s</StoredType>
  2434. </column>
  2435. <column id="557" parent="258" name="sort">
  2436. <Comment>排序编号</Comment>
  2437. <Position>12</Position>
  2438. <StoredType>int(1)|0s</StoredType>
  2439. </column>
  2440. <index id="558" parent="258" name="PRIMARY">
  2441. <ColNames>id</ColNames>
  2442. <Type>btree</Type>
  2443. <Unique>1</Unique>
  2444. </index>
  2445. <key id="559" parent="258" name="PRIMARY">
  2446. <NameSurrogate>1</NameSurrogate>
  2447. <Primary>1</Primary>
  2448. <UnderlyingIndexName>PRIMARY</UnderlyingIndexName>
  2449. </key>
  2450. <column id="560" parent="259" name="id">
  2451. <Comment>业务项目ID</Comment>
  2452. <NotNull>1</NotNull>
  2453. <Position>1</Position>
  2454. <StoredType>varchar(36)|0s</StoredType>
  2455. </column>
  2456. <column id="561" parent="259" name="create_id">
  2457. <Comment>创建人</Comment>
  2458. <NotNull>1</NotNull>
  2459. <Position>2</Position>
  2460. <StoredType>varchar(36)|0s</StoredType>
  2461. </column>
  2462. <column id="562" parent="259" name="create_time">
  2463. <Comment>创建时间</Comment>
  2464. <Position>3</Position>
  2465. <StoredType>datetime|0s</StoredType>
  2466. </column>
  2467. <column id="563" parent="259" name="update_time">
  2468. <Comment>更新时间</Comment>
  2469. <Position>4</Position>
  2470. <StoredType>datetime|0s</StoredType>
  2471. </column>
  2472. <column id="564" parent="259" name="delete_sign">
  2473. <Comment>删除标识</Comment>
  2474. <DefaultExpression>0</DefaultExpression>
  2475. <Position>5</Position>
  2476. <StoredType>int(11)|0s</StoredType>
  2477. </column>
  2478. <column id="565" parent="259" name="bname">
  2479. <Comment>业务名称</Comment>
  2480. <Position>6</Position>
  2481. <StoredType>varchar(36)|0s</StoredType>
  2482. </column>
  2483. <column id="566" parent="259" name="cid">
  2484. <Comment>业务分类</Comment>
  2485. <Position>7</Position>
  2486. <StoredType>varchar(36)|0s</StoredType>
  2487. </column>
  2488. <column id="567" parent="259" name="price">
  2489. <Comment>市场价</Comment>
  2490. <Position>8</Position>
  2491. <StoredType>decimal(10,4 digit)|0s</StoredType>
  2492. </column>
  2493. <column id="568" parent="259" name="offset">
  2494. <Comment>最低折扣</Comment>
  2495. <Position>9</Position>
  2496. <StoredType>decimal(10,4 digit)|0s</StoredType>
  2497. </column>
  2498. <column id="569" parent="259" name="activity_price">
  2499. <Comment>活动价</Comment>
  2500. <Position>10</Position>
  2501. <StoredType>decimal(10,4 digit)|0s</StoredType>
  2502. </column>
  2503. <column id="570" parent="259" name="activity_flag">
  2504. <Comment>活动价生效标识</Comment>
  2505. <Position>11</Position>
  2506. <StoredType>varchar(20)|0s</StoredType>
  2507. </column>
  2508. <column id="571" parent="259" name="member_price">
  2509. <Comment>会员价</Comment>
  2510. <Position>12</Position>
  2511. <StoredType>decimal(16,2 digit)|0s</StoredType>
  2512. </column>
  2513. <column id="572" parent="259" name="introduce">
  2514. <Comment>业务项目介绍</Comment>
  2515. <Position>13</Position>
  2516. <StoredType>varchar(2048)|0s</StoredType>
  2517. </column>
  2518. <column id="573" parent="259" name="status">
  2519. <Comment>业务项目状态</Comment>
  2520. <Position>14</Position>
  2521. <StoredType>varchar(20)|0s</StoredType>
  2522. </column>
  2523. <column id="574" parent="259" name="country">
  2524. <Comment>是否全国</Comment>
  2525. <Position>15</Position>
  2526. <StoredType>varchar(20)|0s</StoredType>
  2527. </column>
  2528. <column id="575" parent="259" name="province">
  2529. <Comment>业务地区-省</Comment>
  2530. <Position>16</Position>
  2531. <StoredType>varchar(20)|0s</StoredType>
  2532. </column>
  2533. <column id="576" parent="259" name="city">
  2534. <Comment>业务地区-市</Comment>
  2535. <Position>17</Position>
  2536. <StoredType>varchar(20)|0s</StoredType>
  2537. </column>
  2538. <column id="577" parent="259" name="district">
  2539. <Comment>业务地区-区</Comment>
  2540. <Position>18</Position>
  2541. <StoredType>varchar(20)|0s</StoredType>
  2542. </column>
  2543. <column id="578" parent="259" name="principal_id">
  2544. <Comment>业务负责人ID</Comment>
  2545. <Position>19</Position>
  2546. <StoredType>varchar(36)|0s</StoredType>
  2547. </column>
  2548. <column id="579" parent="259" name="Value_effect">
  2549. <Comment>价值及作用</Comment>
  2550. <Position>20</Position>
  2551. <StoredType>varchar(2048)|0s</StoredType>
  2552. </column>
  2553. <column id="580" parent="259" name="client_size">
  2554. <Comment>客户基本条件</Comment>
  2555. <Position>21</Position>
  2556. <StoredType>varchar(2048)|0s</StoredType>
  2557. </column>
  2558. <column id="581" parent="259" name="min_logo">
  2559. <Comment>业务项目图标35*35</Comment>
  2560. <Position>22</Position>
  2561. <StoredType>varchar(240)|0s</StoredType>
  2562. </column>
  2563. <column id="582" parent="259" name="max_logo">
  2564. <Comment>业务项目图标200*200</Comment>
  2565. <Position>23</Position>
  2566. <StoredType>varchar(240)|0s</StoredType>
  2567. </column>
  2568. <column id="583" parent="259" name="project_url">
  2569. <Comment>项目地址</Comment>
  2570. <Position>24</Position>
  2571. <StoredType>varchar(128)|0s</StoredType>
  2572. </column>
  2573. <column id="584" parent="259" name="boutique">
  2574. <Comment>是否精品 0-否,1-是</Comment>
  2575. <DefaultExpression>0</DefaultExpression>
  2576. <Position>25</Position>
  2577. <StoredType>int(1)|0s</StoredType>
  2578. </column>
  2579. <column id="585" parent="259" name="first_payment">
  2580. <Comment>首付金额</Comment>
  2581. <DefaultExpression>0.00</DefaultExpression>
  2582. <NotNull>1</NotNull>
  2583. <Position>26</Position>
  2584. <StoredType>decimal(8,2 digit)|0s</StoredType>
  2585. </column>
  2586. <column id="586" parent="259" name="type">
  2587. <Comment>0 正常 1专利 2软著 3审计 4双软 5高新 6商标 7会员</Comment>
  2588. <DefaultExpression>0</DefaultExpression>
  2589. <Position>27</Position>
  2590. <StoredType>int(11)|0s</StoredType>
  2591. </column>
  2592. <column id="587" parent="259" name="patent_transfer">
  2593. <Comment>专利转让 0否1是</Comment>
  2594. <DefaultExpression>0</DefaultExpression>
  2595. <Position>28</Position>
  2596. <StoredType>int(11)|0s</StoredType>
  2597. </column>
  2598. <column id="588" parent="259" name="restrict_status">
  2599. <Comment>限定 0否 1是</Comment>
  2600. <DefaultExpression>0</DefaultExpression>
  2601. <Position>29</Position>
  2602. <StoredType>int(1)|0s</StoredType>
  2603. </column>
  2604. <column id="589" parent="259" name="lvl_type">
  2605. <Comment>完成状态 0否 1国家级,2=省级,3=市级</Comment>
  2606. <DefaultExpression>0</DefaultExpression>
  2607. <Position>30</Position>
  2608. <StoredType>int(1)|0s</StoredType>
  2609. </column>
  2610. <column id="590" parent="259" name="project_type">
  2611. <Comment>项目类型 0=其他,1=高新会员,2=简单会员,3=单边会员</Comment>
  2612. <DefaultExpression>0</DefaultExpression>
  2613. <NotNull>1</NotNull>
  2614. <Position>31</Position>
  2615. <StoredType>int(11)|0s</StoredType>
  2616. </column>
  2617. <index id="591" parent="259" name="PRIMARY">
  2618. <ColNames>id</ColNames>
  2619. <Type>btree</Type>
  2620. <Unique>1</Unique>
  2621. </index>
  2622. <key id="592" parent="259" name="PRIMARY">
  2623. <NameSurrogate>1</NameSurrogate>
  2624. <Primary>1</Primary>
  2625. <UnderlyingIndexName>PRIMARY</UnderlyingIndexName>
  2626. </key>
  2627. <column id="593" parent="260" name="id">
  2628. <AutoIncrement>1</AutoIncrement>
  2629. <Comment>id</Comment>
  2630. <NotNull>1</NotNull>
  2631. <Position>1</Position>
  2632. <StoredType>int(11)|0s</StoredType>
  2633. </column>
  2634. <column id="594" parent="260" name="uid">
  2635. <Comment>公司编号</Comment>
  2636. <NotNull>1</NotNull>
  2637. <Position>2</Position>
  2638. <StoredType>varchar(36)|0s</StoredType>
  2639. </column>
  2640. <column id="595" parent="260" name="aid">
  2641. <Comment>通话人编号</Comment>
  2642. <Position>3</Position>
  2643. <StoredType>varchar(36)|0s</StoredType>
  2644. </column>
  2645. <column id="596" parent="260" name="admin_name">
  2646. <Comment>通话人名称</Comment>
  2647. <NotNull>1</NotNull>
  2648. <Position>4</Position>
  2649. <StoredType>varchar(36)|0s</StoredType>
  2650. </column>
  2651. <column id="597" parent="260" name="contacts">
  2652. <Comment>联系人</Comment>
  2653. <Position>5</Position>
  2654. <StoredType>varchar(36)|0s</StoredType>
  2655. </column>
  2656. <column id="598" parent="260" name="mobile_last_digits">
  2657. <Comment>联系方式(尾号)</Comment>
  2658. <Position>6</Position>
  2659. <StoredType>varchar(36)|0s</StoredType>
  2660. </column>
  2661. <column id="599" parent="260" name="status">
  2662. <Comment>状态 0=正常,1=转移</Comment>
  2663. <DefaultExpression>0</DefaultExpression>
  2664. <Position>7</Position>
  2665. <StoredType>int(11)|0s</StoredType>
  2666. </column>
  2667. <column id="600" parent="260" name="duration">
  2668. <Comment>时长</Comment>
  2669. <Position>8</Position>
  2670. <StoredType>int(11)|0s</StoredType>
  2671. </column>
  2672. <column id="601" parent="260" name="remarks">
  2673. <Comment>备注</Comment>
  2674. <Position>9</Position>
  2675. <StoredType>varchar(1024)|0s</StoredType>
  2676. </column>
  2677. <column id="602" parent="260" name="create_time">
  2678. <Comment>创建时间</Comment>
  2679. <DefaultExpression>CURRENT_TIMESTAMP</DefaultExpression>
  2680. <Position>10</Position>
  2681. <StoredType>datetime|0s</StoredType>
  2682. </column>
  2683. <column id="603" parent="260" name="mobile">
  2684. <Comment>联系方式(尾号)</Comment>
  2685. <Position>11</Position>
  2686. <StoredType>varchar(36)|0s</StoredType>
  2687. </column>
  2688. <column id="604" parent="260" name="call_no">
  2689. <Comment>外呼坐席号</Comment>
  2690. <Position>12</Position>
  2691. <StoredType>varchar(36)|0s</StoredType>
  2692. </column>
  2693. <index id="605" parent="260" name="PRIMARY">
  2694. <ColNames>id</ColNames>
  2695. <Type>btree</Type>
  2696. <Unique>1</Unique>
  2697. </index>
  2698. <key id="606" parent="260" name="PRIMARY">
  2699. <NameSurrogate>1</NameSurrogate>
  2700. <Primary>1</Primary>
  2701. <UnderlyingIndexName>PRIMARY</UnderlyingIndexName>
  2702. </key>
  2703. <column id="607" parent="261" name="id">
  2704. <AutoIncrement>1</AutoIncrement>
  2705. <Comment>id</Comment>
  2706. <NotNull>1</NotNull>
  2707. <Position>1</Position>
  2708. <StoredType>int(11)|0s</StoredType>
  2709. </column>
  2710. <column id="608" parent="261" name="clid">
  2711. <Comment>呼叫编号</Comment>
  2712. <NotNull>1</NotNull>
  2713. <Position>2</Position>
  2714. <StoredType>varchar(32)|0s</StoredType>
  2715. </column>
  2716. <column id="609" parent="261" name="transfer_aid">
  2717. <Comment>通话人</Comment>
  2718. <NotNull>1</NotNull>
  2719. <Position>3</Position>
  2720. <StoredType>varchar(32)|0s</StoredType>
  2721. </column>
  2722. <column id="610" parent="261" name="transfer_name">
  2723. <Comment>通话人名称</Comment>
  2724. <Position>4</Position>
  2725. <StoredType>varchar(32)|0s</StoredType>
  2726. </column>
  2727. <column id="611" parent="261" name="remarks">
  2728. <Comment>备注</Comment>
  2729. <Position>5</Position>
  2730. <StoredType>varchar(1024)|0s</StoredType>
  2731. </column>
  2732. <column id="612" parent="261" name="create_time">
  2733. <Comment>创建时间</Comment>
  2734. <DefaultExpression>CURRENT_TIMESTAMP</DefaultExpression>
  2735. <Position>6</Position>
  2736. <StoredType>datetime|0s</StoredType>
  2737. </column>
  2738. <index id="613" parent="261" name="PRIMARY">
  2739. <ColNames>id</ColNames>
  2740. <Type>btree</Type>
  2741. <Unique>1</Unique>
  2742. </index>
  2743. <key id="614" parent="261" name="PRIMARY">
  2744. <NameSurrogate>1</NameSurrogate>
  2745. <Primary>1</Primary>
  2746. <UnderlyingIndexName>PRIMARY</UnderlyingIndexName>
  2747. </key>
  2748. <column id="615" parent="262" name="id">
  2749. <Comment>需求发布ID</Comment>
  2750. <NotNull>1</NotNull>
  2751. <Position>1</Position>
  2752. <StoredType>varchar(36)|0s</StoredType>
  2753. </column>
  2754. <column id="616" parent="262" name="demand_id">
  2755. <Comment>需求ID</Comment>
  2756. <NotNull>1</NotNull>
  2757. <Position>2</Position>
  2758. <StoredType>varchar(36)|0s</StoredType>
  2759. </column>
  2760. <column id="617" parent="262" name="publish_platform">
  2761. <Comment>发布平台</Comment>
  2762. <NotNull>1</NotNull>
  2763. <Position>3</Position>
  2764. <StoredType>varchar(36)|0s</StoredType>
  2765. </column>
  2766. <column id="618" parent="262" name="publish_client">
  2767. <Comment>发布客户端 0-页面,1-APP</Comment>
  2768. <DefaultExpression>0</DefaultExpression>
  2769. <NotNull>1</NotNull>
  2770. <Position>4</Position>
  2771. <StoredType>int(1)|0s</StoredType>
  2772. </column>
  2773. <column id="619" parent="262" name="publish_page">
  2774. <Comment>发布页面</Comment>
  2775. <NotNull>1</NotNull>
  2776. <Position>5</Position>
  2777. <StoredType>varchar(36)|0s</StoredType>
  2778. </column>
  2779. <column id="620" parent="262" name="if_top">
  2780. <Comment>是否置顶 0-是,1-否</Comment>
  2781. <DefaultExpression>1</DefaultExpression>
  2782. <NotNull>1</NotNull>
  2783. <Position>6</Position>
  2784. <StoredType>int(1)|0s</StoredType>
  2785. </column>
  2786. <column id="621" parent="262" name="top_number">
  2787. <Comment>置顶序号</Comment>
  2788. <Position>7</Position>
  2789. <StoredType>int(1)|0s</StoredType>
  2790. </column>
  2791. <column id="622" parent="262" name="show_number">
  2792. <Comment>展示序号</Comment>
  2793. <Position>8</Position>
  2794. <StoredType>int(1)|0s</StoredType>
  2795. </column>
  2796. <column id="623" parent="262" name="publisher">
  2797. <Comment>发布人</Comment>
  2798. <NotNull>1</NotNull>
  2799. <Position>9</Position>
  2800. <StoredType>varchar(36)|0s</StoredType>
  2801. </column>
  2802. <column id="624" parent="262" name="publish_time">
  2803. <Comment>发布时间</Comment>
  2804. <NotNull>1</NotNull>
  2805. <Position>10</Position>
  2806. <StoredType>datetime|0s</StoredType>
  2807. </column>
  2808. <index id="625" parent="262" name="PRIMARY">
  2809. <ColNames>id</ColNames>
  2810. <Type>btree</Type>
  2811. <Unique>1</Unique>
  2812. </index>
  2813. <index id="626" parent="262" name="demand_publish_demand_id_IDX">
  2814. <ColNames>demand_id</ColNames>
  2815. <Type>btree</Type>
  2816. </index>
  2817. <key id="627" parent="262" name="PRIMARY">
  2818. <NameSurrogate>1</NameSurrogate>
  2819. <Primary>1</Primary>
  2820. <UnderlyingIndexName>PRIMARY</UnderlyingIndexName>
  2821. </key>
  2822. <column id="628" parent="263" name="id">
  2823. <Comment>组织ID</Comment>
  2824. <NotNull>1</NotNull>
  2825. <Position>1</Position>
  2826. <StoredType>varchar(36)|0s</StoredType>
  2827. </column>
  2828. <column id="629" parent="263" name="create_id">
  2829. <Comment>创建人</Comment>
  2830. <Position>2</Position>
  2831. <StoredType>varchar(36)|0s</StoredType>
  2832. </column>
  2833. <column id="630" parent="263" name="create_time">
  2834. <Comment>创建时间</Comment>
  2835. <Position>3</Position>
  2836. <StoredType>datetime|0s</StoredType>
  2837. </column>
  2838. <column id="631" parent="263" name="update_time">
  2839. <Comment>更新时间</Comment>
  2840. <Position>4</Position>
  2841. <StoredType>datetime|0s</StoredType>
  2842. </column>
  2843. <column id="632" parent="263" name="deleted_sign">
  2844. <Comment>删除标识</Comment>
  2845. <NotNull>1</NotNull>
  2846. <Position>5</Position>
  2847. <StoredType>int(1)|0s</StoredType>
  2848. </column>
  2849. <column id="633" parent="263" name="name">
  2850. <Comment>组织名称</Comment>
  2851. <Position>6</Position>
  2852. <StoredType>varchar(36)|0s</StoredType>
  2853. </column>
  2854. <column id="634" parent="263" name="type">
  2855. <Comment>组织类型</Comment>
  2856. <DefaultExpression>&apos;0&apos;</DefaultExpression>
  2857. <Position>7</Position>
  2858. <StoredType>varchar(20)|0s</StoredType>
  2859. </column>
  2860. <column id="635" parent="263" name="manager_id">
  2861. <Comment>组织负责人ID</Comment>
  2862. <Position>8</Position>
  2863. <StoredType>varchar(36)|0s</StoredType>
  2864. </column>
  2865. <column id="636" parent="263" name="dep_no">
  2866. <Comment>组织编号</Comment>
  2867. <Position>9</Position>
  2868. <StoredType>varchar(32)|0s</StoredType>
  2869. </column>
  2870. <column id="637" parent="263" name="super_id">
  2871. <Comment>上级组织</Comment>
  2872. <Position>10</Position>
  2873. <StoredType>varchar(36)|0s</StoredType>
  2874. </column>
  2875. <column id="638" parent="263" name="remarks">
  2876. <Comment>组织职能说明</Comment>
  2877. <Position>11</Position>
  2878. <StoredType>varchar(200)|0s</StoredType>
  2879. </column>
  2880. <column id="639" parent="263" name="status">
  2881. <Comment>组织状态</Comment>
  2882. <Position>12</Position>
  2883. <StoredType>varchar(20)|0s</StoredType>
  2884. </column>
  2885. <column id="640" parent="263" name="abbreviation">
  2886. <Comment>缩写</Comment>
  2887. <Position>13</Position>
  2888. <StoredType>varchar(12)|0s</StoredType>
  2889. </column>
  2890. <column id="641" parent="263" name="finance_id">
  2891. <Comment>财务id(指定跳转的财务)</Comment>
  2892. <Position>14</Position>
  2893. <StoredType>varchar(36)|0s</StoredType>
  2894. </column>
  2895. <column id="642" parent="263" name="province">
  2896. <Comment>所在省份</Comment>
  2897. <Position>15</Position>
  2898. <StoredType>int(4)|0s</StoredType>
  2899. </column>
  2900. <column id="643" parent="263" name="working_hours_type">
  2901. <Comment>工作时间</Comment>
  2902. <DefaultExpression>0</DefaultExpression>
  2903. <Position>16</Position>
  2904. <StoredType>int(11)|0s</StoredType>
  2905. </column>
  2906. <column id="644" parent="263" name="hide_sign">
  2907. <Comment>隐藏 0否 1是</Comment>
  2908. <DefaultExpression>0</DefaultExpression>
  2909. <NotNull>1</NotNull>
  2910. <Position>17</Position>
  2911. <StoredType>int(11)|0s</StoredType>
  2912. </column>
  2913. <column id="645" parent="263" name="lvl">
  2914. <Comment>层级</Comment>
  2915. <DefaultExpression>0</DefaultExpression>
  2916. <NotNull>1</NotNull>
  2917. <Position>18</Position>
  2918. <StoredType>int(11)|0s</StoredType>
  2919. </column>
  2920. <column id="646" parent="263" name="current_amount">
  2921. <Comment>当前金额</Comment>
  2922. <DefaultExpression>0.000000</DefaultExpression>
  2923. <Position>19</Position>
  2924. <StoredType>decimal(12,6 digit)|0s</StoredType>
  2925. </column>
  2926. <column id="647" parent="263" name="subordinate_amount">
  2927. <Comment>下级累计金额</Comment>
  2928. <DefaultExpression>0.000000</DefaultExpression>
  2929. <Position>20</Position>
  2930. <StoredType>decimal(12,6 digit)|0s</StoredType>
  2931. </column>
  2932. <column id="648" parent="263" name="total_amount">
  2933. <Comment>总计金额</Comment>
  2934. <DefaultExpression>0.000000</DefaultExpression>
  2935. <Position>21</Position>
  2936. <StoredType>decimal(12,6 digit)|0s</StoredType>
  2937. </column>
  2938. <column id="649" parent="263" name="retrial_finance_id">
  2939. <Comment>复审财务id</Comment>
  2940. <Position>22</Position>
  2941. <StoredType>varchar(36)|0s</StoredType>
  2942. </column>
  2943. <column id="650" parent="263" name="approval">
  2944. <Comment>特批审核状态 0=无需特批,1=需要特批</Comment>
  2945. <DefaultExpression>0</DefaultExpression>
  2946. <NotNull>1</NotNull>
  2947. <Position>23</Position>
  2948. <StoredType>int(11)|0s</StoredType>
  2949. </column>
  2950. <column id="651" parent="263" name="approval_aid">
  2951. <Comment>特批审核人</Comment>
  2952. <Position>24</Position>
  2953. <StoredType>varchar(36)|0s</StoredType>
  2954. </column>
  2955. <column id="652" parent="263" name="expense_finance_id">
  2956. <Comment>报销财务审核人</Comment>
  2957. <Position>25</Position>
  2958. <StoredType>varchar(36)|0s</StoredType>
  2959. </column>
  2960. <column id="653" parent="263" name="expense_retrial_finance_examine">
  2961. <Comment>财务复审 0-不需要 ,1-需要</Comment>
  2962. <DefaultExpression>0</DefaultExpression>
  2963. <NotNull>1</NotNull>
  2964. <Position>26</Position>
  2965. <StoredType>int(1)|0s</StoredType>
  2966. </column>
  2967. <column id="654" parent="263" name="ceo_examine">
  2968. <Comment>董事长审核 0-不需要 ,1-需要</Comment>
  2969. <DefaultExpression>0</DefaultExpression>
  2970. <NotNull>1</NotNull>
  2971. <Position>27</Position>
  2972. <StoredType>int(1)|0s</StoredType>
  2973. </column>
  2974. <column id="655" parent="263" name="cfo_examine">
  2975. <Comment>财务总监出纳状态 0-不需要 ,1-需要</Comment>
  2976. <DefaultExpression>0</DefaultExpression>
  2977. <NotNull>1</NotNull>
  2978. <Position>28</Position>
  2979. <StoredType>int(1)|0s</StoredType>
  2980. </column>
  2981. <column id="656" parent="263" name="vice_ceo_examine">
  2982. <Comment>公司副总出纳状态 0-不需要 ,1-需要</Comment>
  2983. <DefaultExpression>0</DefaultExpression>
  2984. <NotNull>1</NotNull>
  2985. <Position>29</Position>
  2986. <StoredType>int(1)|0s</StoredType>
  2987. </column>
  2988. <column id="657" parent="263" name="cashier_examine">
  2989. <Comment>出纳审核 0-不需要 ,1-需要</Comment>
  2990. <DefaultExpression>0</DefaultExpression>
  2991. <NotNull>1</NotNull>
  2992. <Position>30</Position>
  2993. <StoredType>int(1)|0s</StoredType>
  2994. </column>
  2995. <column id="658" parent="263" name="tech_admin_id">
  2996. <Comment>技术总监审核人</Comment>
  2997. <Position>31</Position>
  2998. <StoredType>varchar(36)|0s</StoredType>
  2999. </column>
  3000. <column id="659" parent="263" name="operation_guarantee_id">
  3001. <Comment>运营保障审核人</Comment>
  3002. <Position>32</Position>
  3003. <StoredType>varchar(36)|0s</StoredType>
  3004. </column>
  3005. <index id="660" parent="263" name="PRIMARY">
  3006. <ColNames>id</ColNames>
  3007. <Type>btree</Type>
  3008. <Unique>1</Unique>
  3009. </index>
  3010. <key id="661" parent="263" name="PRIMARY">
  3011. <NameSurrogate>1</NameSurrogate>
  3012. <Primary>1</Primary>
  3013. <UnderlyingIndexName>PRIMARY</UnderlyingIndexName>
  3014. </key>
  3015. <column id="662" parent="264" name="id">
  3016. <NotNull>1</NotNull>
  3017. <Position>1</Position>
  3018. <StoredType>int(4)|0s</StoredType>
  3019. </column>
  3020. <column id="663" parent="264" name="name">
  3021. <Comment>名称</Comment>
  3022. <Position>2</Position>
  3023. <StoredType>varchar(16)|0s</StoredType>
  3024. </column>
  3025. <column id="664" parent="264" name="pid">
  3026. <Comment>上级ID</Comment>
  3027. <Position>3</Position>
  3028. <StoredType>int(4)|0s</StoredType>
  3029. </column>
  3030. <column id="665" parent="264" name="level">
  3031. <Comment>层级</Comment>
  3032. <Position>4</Position>
  3033. <StoredType>int(1)|0s</StoredType>
  3034. </column>
  3035. <index id="666" parent="264" name="PRIMARY">
  3036. <ColNames>id</ColNames>
  3037. <Type>btree</Type>
  3038. <Unique>1</Unique>
  3039. </index>
  3040. <key id="667" parent="264" name="PRIMARY">
  3041. <NameSurrogate>1</NameSurrogate>
  3042. <Primary>1</Primary>
  3043. <UnderlyingIndexName>PRIMARY</UnderlyingIndexName>
  3044. </key>
  3045. <column id="668" parent="265" name="id">
  3046. <AutoIncrement>11</AutoIncrement>
  3047. <NotNull>1</NotNull>
  3048. <Position>1</Position>
  3049. <StoredType>int(11)|0s</StoredType>
  3050. </column>
  3051. <column id="669" parent="265" name="content">
  3052. <Comment>帐号名称</Comment>
  3053. <Position>2</Position>
  3054. <StoredType>varchar(128)|0s</StoredType>
  3055. </column>
  3056. <column id="670" parent="265" name="create_time">
  3057. <Comment>创建时间</Comment>
  3058. <DefaultExpression>CURRENT_TIMESTAMP</DefaultExpression>
  3059. <Position>3</Position>
  3060. <StoredType>datetime|0s</StoredType>
  3061. </column>
  3062. <index id="671" parent="265" name="PRIMARY">
  3063. <ColNames>id</ColNames>
  3064. <Type>btree</Type>
  3065. <Unique>1</Unique>
  3066. </index>
  3067. <key id="672" parent="265" name="PRIMARY">
  3068. <NameSurrogate>1</NameSurrogate>
  3069. <Primary>1</Primary>
  3070. <UnderlyingIndexName>PRIMARY</UnderlyingIndexName>
  3071. </key>
  3072. <column id="673" parent="266" name="id">
  3073. <AutoIncrement>4</AutoIncrement>
  3074. <NotNull>1</NotNull>
  3075. <Position>1</Position>
  3076. <StoredType>int(11)|0s</StoredType>
  3077. </column>
  3078. <column id="674" parent="266" name="prid">
  3079. <Comment>公出编号</Comment>
  3080. <Position>2</Position>
  3081. <StoredType>int(11)|0s</StoredType>
  3082. </column>
  3083. <column id="675" parent="266" name="order_no">
  3084. <Comment>订单编号</Comment>
  3085. <Position>3</Position>
  3086. <StoredType>varchar(20)|0s</StoredType>
  3087. </column>
  3088. <column id="676" parent="266" name="aid">
  3089. <Comment>报销人</Comment>
  3090. <Position>4</Position>
  3091. <StoredType>varchar(36)|0s</StoredType>
  3092. </column>
  3093. <column id="677" parent="266" name="aname">
  3094. <Comment>报销人名称</Comment>
  3095. <Position>5</Position>
  3096. <StoredType>varchar(36)|0s</StoredType>
  3097. </column>
  3098. <column id="678" parent="266" name="type">
  3099. <Comment>分类 0=其他,1=差旅费,2=非业务报销, 3=第三方付款,4=申请借支,5=抵扣</Comment>
  3100. <DefaultExpression>0</DefaultExpression>
  3101. <Position>6</Position>
  3102. <StoredType>int(1)|0s</StoredType>
  3103. </column>
  3104. <column id="679" parent="266" name="type_other">
  3105. <Comment>其他状态说明</Comment>
  3106. <Position>7</Position>
  3107. <StoredType>varchar(128)|0s</StoredType>
  3108. </column>
  3109. <column id="680" parent="266" name="status">
  3110. <Comment>状态 0=草稿,1=审核中,2=完成,3=驳回 ,4=撤销</Comment>
  3111. <DefaultExpression>0</DefaultExpression>
  3112. <Position>8</Position>
  3113. <StoredType>int(1)|0s</StoredType>
  3114. </column>
  3115. <column id="681" parent="266" name="process_status">
  3116. <Comment>流程状态 0=成员发起,1=上级审核,2=部门负责人审核,3=财务审核,4=财务复审,5=董事长,6=财务管理员,7=公司副总,8=出纳</Comment>
  3117. <DefaultExpression>0</DefaultExpression>
  3118. <Position>9</Position>
  3119. <StoredType>int(11)|0s</StoredType>
  3120. </column>
  3121. <column id="682" parent="266" name="total_amount">
  3122. <Comment>总金额</Comment>
  3123. <DefaultExpression>0.000000</DefaultExpression>
  3124. <NotNull>1</NotNull>
  3125. <Position>10</Position>
  3126. <StoredType>decimal(12,6 digit)|0s</StoredType>
  3127. </column>
  3128. <column id="683" parent="266" name="attachment_url">
  3129. <Comment>合同图片</Comment>
  3130. <Position>11</Position>
  3131. <StoredType>longtext|0s</StoredType>
  3132. </column>
  3133. <column id="684" parent="266" name="apply_dep">
  3134. <Comment>申请部门</Comment>
  3135. <Position>12</Position>
  3136. <StoredType>varchar(36)|0s</StoredType>
  3137. </column>
  3138. <column id="685" parent="266" name="pay_dep">
  3139. <Comment>支付部门</Comment>
  3140. <Position>13</Position>
  3141. <StoredType>varchar(36)|0s</StoredType>
  3142. </column>
  3143. <column id="686" parent="266" name="eaaid">
  3144. <Comment>报销帐号编号</Comment>
  3145. <Position>14</Position>
  3146. <StoredType>int(11)|0s</StoredType>
  3147. </column>
  3148. <column id="687" parent="266" name="create_time">
  3149. <Comment>创建时间</Comment>
  3150. <DefaultExpression>CURRENT_TIMESTAMP</DefaultExpression>
  3151. <Position>15</Position>
  3152. <StoredType>datetime|0s</StoredType>
  3153. </column>
  3154. <column id="688" parent="266" name="district_name">
  3155. <Comment>公出企业地址</Comment>
  3156. <Position>16</Position>
  3157. <StoredType>varchar(64)|0s</StoredType>
  3158. </column>
  3159. <column id="689" parent="266" name="user_names">
  3160. <Comment>公司名称</Comment>
  3161. <Position>17</Position>
  3162. <StoredType>varchar(512)|0s</StoredType>
  3163. </column>
  3164. <column id="690" parent="266" name="release_start">
  3165. <Comment>公出开始时间</Comment>
  3166. <Position>18</Position>
  3167. <StoredType>datetime|0s</StoredType>
  3168. </column>
  3169. <column id="691" parent="266" name="release_end">
  3170. <Comment>公出结束时间</Comment>
  3171. <Position>19</Position>
  3172. <StoredType>datetime|0s</StoredType>
  3173. </column>
  3174. <column id="692" parent="266" name="duration">
  3175. <Comment>时长</Comment>
  3176. <DefaultExpression>0</DefaultExpression>
  3177. <Position>20</Position>
  3178. <StoredType>double|0s</StoredType>
  3179. </column>
  3180. <column id="693" parent="266" name="examine_name">
  3181. <Comment>审核人员名称</Comment>
  3182. <Position>21</Position>
  3183. <StoredType>varchar(100)|0s</StoredType>
  3184. </column>
  3185. <column id="694" parent="266" name="settlement_amount">
  3186. <Comment>已付金额(申请借支)</Comment>
  3187. <DefaultExpression>0.000000</DefaultExpression>
  3188. <NotNull>1</NotNull>
  3189. <Position>22</Position>
  3190. <StoredType>decimal(12,6 digit)|0s</StoredType>
  3191. </column>
  3192. <column id="695" parent="266" name="debit_id">
  3193. <Comment>抵扣编号</Comment>
  3194. <Position>23</Position>
  3195. <StoredType>int(11)|0s</StoredType>
  3196. </column>
  3197. <column id="696" parent="266" name="target_type">
  3198. <Comment>目标分类 0=固定费用,1=报销到订单</Comment>
  3199. <DefaultExpression>0</DefaultExpression>
  3200. <Position>24</Position>
  3201. <StoredType>int(1)|0s</StoredType>
  3202. </column>
  3203. <column id="697" parent="266" name="liquidation_status">
  3204. <Comment>清算状态 0-未抵扣,1=已抵扣,未全款,2=已全款,未审核,3已全款,已审核</Comment>
  3205. <DefaultExpression>0</DefaultExpression>
  3206. <NotNull>1</NotNull>
  3207. <Position>25</Position>
  3208. <StoredType>int(11)|0s</StoredType>
  3209. </column>
  3210. <column id="698" parent="266" name="remarks">
  3211. <Comment>备注</Comment>
  3212. <Position>26</Position>
  3213. <StoredType>varchar(512)|0s</StoredType>
  3214. </column>
  3215. <column id="699" parent="266" name="check_no">
  3216. <Comment>报销查询编号</Comment>
  3217. <Position>27</Position>
  3218. <StoredType>varchar(64)|0s</StoredType>
  3219. </column>
  3220. <column id="700" parent="266" name="expense_main">
  3221. <Comment>0=子表,1=主表</Comment>
  3222. <DefaultExpression>0</DefaultExpression>
  3223. <Position>28</Position>
  3224. <StoredType>int(1)|0s</StoredType>
  3225. </column>
  3226. <column id="701" parent="266" name="real_amount">
  3227. <Comment>真实金额</Comment>
  3228. <Position>29</Position>
  3229. <StoredType>decimal(12,6 digit)|0s</StoredType>
  3230. </column>
  3231. <column id="702" parent="266" name="secondary_type">
  3232. <Comment>0=无,8=招待费,9=办公费,10=福利费,11=物业水电费,12=打印费</Comment>
  3233. <DefaultExpression>0</DefaultExpression>
  3234. <Position>30</Position>
  3235. <StoredType>int(1)|0s</StoredType>
  3236. </column>
  3237. <column id="703" parent="266" name="secondary_type_other">
  3238. <Comment>次要分类其他说明</Comment>
  3239. <Position>31</Position>
  3240. <StoredType>varchar(36)|0s</StoredType>
  3241. </column>
  3242. <column id="704" parent="266" name="amount">
  3243. <Comment>报销金额</Comment>
  3244. <Position>32</Position>
  3245. <StoredType>decimal(12,6 digit)|0s</StoredType>
  3246. </column>
  3247. <column id="705" parent="266" name="approval">
  3248. <Comment>特批状态 0-非特批 ,1-特批</Comment>
  3249. <DefaultExpression>0</DefaultExpression>
  3250. <NotNull>1</NotNull>
  3251. <Position>33</Position>
  3252. <StoredType>int(1)|0s</StoredType>
  3253. </column>
  3254. <index id="706" parent="266" name="PRIMARY">
  3255. <ColNames>id</ColNames>
  3256. <Type>btree</Type>
  3257. <Unique>1</Unique>
  3258. </index>
  3259. <key id="707" parent="266" name="PRIMARY">
  3260. <NameSurrogate>1</NameSurrogate>
  3261. <Primary>1</Primary>
  3262. <UnderlyingIndexName>PRIMARY</UnderlyingIndexName>
  3263. </key>
  3264. <column id="708" parent="267" name="id">
  3265. <AutoIncrement>2</AutoIncrement>
  3266. <NotNull>1</NotNull>
  3267. <Position>1</Position>
  3268. <StoredType>int(11)|0s</StoredType>
  3269. </column>
  3270. <column id="709" parent="267" name="eaid">
  3271. <Comment>报销编号</Comment>
  3272. <NotNull>1</NotNull>
  3273. <Position>2</Position>
  3274. <StoredType>int(11)|0s</StoredType>
  3275. </column>
  3276. <column id="710" parent="267" name="type">
  3277. <Comment>0=其他,1=交通费,2=住宿费,3=市内车费,4=餐费,5=出差补贴,6=预借支,7=油费&#xd;
  3278. 8=招待费,9=办公费,10=福利费,11=物业水电费,12=打印费</Comment>
  3279. <DefaultExpression>0</DefaultExpression>
  3280. <Position>3</Position>
  3281. <StoredType>int(1)|0s</StoredType>
  3282. </column>
  3283. <column id="711" parent="267" name="start_time">
  3284. <Comment>开始时间</Comment>
  3285. <Position>4</Position>
  3286. <StoredType>datetime|0s</StoredType>
  3287. </column>
  3288. <column id="712" parent="267" name="end_time">
  3289. <Comment>结束时间</Comment>
  3290. <Position>5</Position>
  3291. <StoredType>datetime|0s</StoredType>
  3292. </column>
  3293. <column id="713" parent="267" name="start_district">
  3294. <Comment>始发地</Comment>
  3295. <Position>6</Position>
  3296. <StoredType>varchar(128)|0s</StoredType>
  3297. </column>
  3298. <column id="714" parent="267" name="end_district">
  3299. <Comment>终点站</Comment>
  3300. <Position>7</Position>
  3301. <StoredType>varchar(128)|0s</StoredType>
  3302. </column>
  3303. <column id="715" parent="267" name="amount">
  3304. <Comment>金额</Comment>
  3305. <DefaultExpression>0.000000</DefaultExpression>
  3306. <NotNull>1</NotNull>
  3307. <Position>8</Position>
  3308. <StoredType>decimal(12,6 digit)|0s</StoredType>
  3309. </column>
  3310. <column id="716" parent="267" name="vehicle">
  3311. <Comment>交通工具 0=其他,1=飞机,2=火车或高铁,3=地铁,4=公交车</Comment>
  3312. <Position>9</Position>
  3313. <StoredType>int(1)|0s</StoredType>
  3314. </column>
  3315. <column id="717" parent="267" name="vehicle_other">
  3316. <Comment>其他交通工具说明</Comment>
  3317. <Position>10</Position>
  3318. <StoredType>varchar(36)|0s</StoredType>
  3319. </column>
  3320. <column id="718" parent="267" name="remarks">
  3321. <Comment>备注</Comment>
  3322. <Position>11</Position>
  3323. <StoredType>varchar(512)|0s</StoredType>
  3324. </column>
  3325. <column id="719" parent="267" name="agree_time">
  3326. <Comment>约定时间</Comment>
  3327. <Position>12</Position>
  3328. <StoredType>datetime|0s</StoredType>
  3329. </column>
  3330. <column id="720" parent="267" name="pay_type">
  3331. <Comment>付款方式</Comment>
  3332. <Position>13</Position>
  3333. <StoredType>int(1)|0s</StoredType>
  3334. </column>
  3335. <column id="721" parent="267" name="invoice_type">
  3336. <Comment>发票类型 0普票 1专票</Comment>
  3337. <Position>14</Position>
  3338. <StoredType>int(1)|0s</StoredType>
  3339. </column>
  3340. <column id="722" parent="267" name="invoice_no">
  3341. <Comment>发票号</Comment>
  3342. <Position>15</Position>
  3343. <StoredType>varchar(128)|0s</StoredType>
  3344. </column>
  3345. <column id="723" parent="267" name="payer_name">
  3346. <Comment>付款单位</Comment>
  3347. <Position>16</Position>
  3348. <StoredType>varchar(128)|0s</StoredType>
  3349. </column>
  3350. <column id="724" parent="267" name="open_bank">
  3351. <Comment>开户行名称</Comment>
  3352. <Position>17</Position>
  3353. <StoredType>varchar(128)|0s</StoredType>
  3354. </column>
  3355. <column id="725" parent="267" name="bank_accounts">
  3356. <Comment>银行账户</Comment>
  3357. <Position>18</Position>
  3358. <StoredType>varchar(128)|0s</StoredType>
  3359. </column>
  3360. <column id="726" parent="267" name="open_bank_address">
  3361. <Comment>开户行地址</Comment>
  3362. <Position>19</Position>
  3363. <StoredType>varchar(128)|0s</StoredType>
  3364. </column>
  3365. <column id="727" parent="267" name="lend_id">
  3366. <Comment>借支编号</Comment>
  3367. <Position>20</Position>
  3368. <StoredType>int(11)|0s</StoredType>
  3369. </column>
  3370. <column id="728" parent="267" name="create_time">
  3371. <Comment>创建时间</Comment>
  3372. <DefaultExpression>CURRENT_TIMESTAMP</DefaultExpression>
  3373. <Position>21</Position>
  3374. <StoredType>datetime|0s</StoredType>
  3375. </column>
  3376. <column id="729" parent="267" name="real_amount">
  3377. <Comment>真实金额</Comment>
  3378. <Position>22</Position>
  3379. <StoredType>decimal(12,6 digit)|0s</StoredType>
  3380. </column>
  3381. <column id="730" parent="267" name="type_other">
  3382. <Comment>其他状态说明</Comment>
  3383. <Position>23</Position>
  3384. <StoredType>varchar(36)|0s</StoredType>
  3385. </column>
  3386. <index id="731" parent="267" name="PRIMARY">
  3387. <ColNames>id</ColNames>
  3388. <Type>btree</Type>
  3389. <Unique>1</Unique>
  3390. </index>
  3391. <key id="732" parent="267" name="PRIMARY">
  3392. <NameSurrogate>1</NameSurrogate>
  3393. <Primary>1</Primary>
  3394. <UnderlyingIndexName>PRIMARY</UnderlyingIndexName>
  3395. </key>
  3396. <column id="733" parent="268" name="id">
  3397. <AutoIncrement>7</AutoIncrement>
  3398. <Comment>id</Comment>
  3399. <NotNull>1</NotNull>
  3400. <Position>1</Position>
  3401. <StoredType>int(11)|0s</StoredType>
  3402. </column>
  3403. <column id="734" parent="268" name="eaid">
  3404. <Comment>报销编号</Comment>
  3405. <NotNull>1</NotNull>
  3406. <Position>2</Position>
  3407. <StoredType>int(11)|0s</StoredType>
  3408. </column>
  3409. <column id="735" parent="268" name="process_status">
  3410. <Comment>流程状态 0=巴员发起,1=巴主发起或审核,2=总经理审核,3=财务审核,4=董事长审核</Comment>
  3411. <DefaultExpression>0</DefaultExpression>
  3412. <NotNull>1</NotNull>
  3413. <Position>3</Position>
  3414. <StoredType>int(1)|0s</StoredType>
  3415. </column>
  3416. <column id="736" parent="268" name="status">
  3417. <Comment>状态 0=未审核,1=已审核</Comment>
  3418. <DefaultExpression>0</DefaultExpression>
  3419. <NotNull>1</NotNull>
  3420. <Position>4</Position>
  3421. <StoredType>int(1)|0s</StoredType>
  3422. </column>
  3423. <column id="737" parent="268" name="auditor">
  3424. <Comment>审核人</Comment>
  3425. <Position>5</Position>
  3426. <StoredType>varchar(36)|0s</StoredType>
  3427. </column>
  3428. <column id="738" parent="268" name="auditorName">
  3429. <Comment>审核人名称</Comment>
  3430. <Position>6</Position>
  3431. <StoredType>varchar(36)|0s</StoredType>
  3432. </column>
  3433. <column id="739" parent="268" name="create_time">
  3434. <Comment>创建时间</Comment>
  3435. <DefaultExpression>CURRENT_TIMESTAMP</DefaultExpression>
  3436. <Position>7</Position>
  3437. <StoredType>datetime|0s</StoredType>
  3438. </column>
  3439. <index id="740" parent="268" name="PRIMARY">
  3440. <ColNames>id</ColNames>
  3441. <Type>btree</Type>
  3442. <Unique>1</Unique>
  3443. </index>
  3444. <key id="741" parent="268" name="PRIMARY">
  3445. <NameSurrogate>1</NameSurrogate>
  3446. <Primary>1</Primary>
  3447. <UnderlyingIndexName>PRIMARY</UnderlyingIndexName>
  3448. </key>
  3449. <column id="742" parent="269" name="id">
  3450. <AutoIncrement>5</AutoIncrement>
  3451. <Comment>id</Comment>
  3452. <NotNull>1</NotNull>
  3453. <Position>1</Position>
  3454. <StoredType>int(11)|0s</StoredType>
  3455. </column>
  3456. <column id="743" parent="269" name="eaid">
  3457. <Comment>报销编号</Comment>
  3458. <NotNull>1</NotNull>
  3459. <Position>2</Position>
  3460. <StoredType>int(11)|0s</StoredType>
  3461. </column>
  3462. <column id="744" parent="269" name="process_status">
  3463. <Comment>流程状态 0=成员发起,1=上级审核,2=部门负责人审核,3=财务审核,4=财务复审,5=董事长,6=财务管理员,7=公司副总,8=出纳</Comment>
  3464. <DefaultExpression>0</DefaultExpression>
  3465. <NotNull>1</NotNull>
  3466. <Position>3</Position>
  3467. <StoredType>int(1)|0s</StoredType>
  3468. </column>
  3469. <column id="745" parent="269" name="status">
  3470. <Comment>状态 0发起 1通过 2完成 3驳回 4撤销 5修改</Comment>
  3471. <NotNull>1</NotNull>
  3472. <Position>4</Position>
  3473. <StoredType>int(11)|0s</StoredType>
  3474. </column>
  3475. <column id="746" parent="269" name="remarks">
  3476. <Comment>备注</Comment>
  3477. <Position>5</Position>
  3478. <StoredType>varchar(512)|0s</StoredType>
  3479. </column>
  3480. <column id="747" parent="269" name="auditor">
  3481. <Comment>审核人</Comment>
  3482. <Position>6</Position>
  3483. <StoredType>varchar(36)|0s</StoredType>
  3484. </column>
  3485. <column id="748" parent="269" name="create_time">
  3486. <Comment>创建时间</Comment>
  3487. <DefaultExpression>CURRENT_TIMESTAMP</DefaultExpression>
  3488. <Position>7</Position>
  3489. <StoredType>datetime|0s</StoredType>
  3490. </column>
  3491. <column id="749" parent="269" name="show_status">
  3492. <Comment>0=正常,1=旧日志,2=跳过日志</Comment>
  3493. <DefaultExpression>0</DefaultExpression>
  3494. <Position>8</Position>
  3495. <StoredType>int(1)|0s</StoredType>
  3496. </column>
  3497. <index id="750" parent="269" name="PRIMARY">
  3498. <ColNames>id</ColNames>
  3499. <Type>btree</Type>
  3500. <Unique>1</Unique>
  3501. </index>
  3502. <key id="751" parent="269" name="PRIMARY">
  3503. <NameSurrogate>1</NameSurrogate>
  3504. <Primary>1</Primary>
  3505. <UnderlyingIndexName>PRIMARY</UnderlyingIndexName>
  3506. </key>
  3507. <column id="752" parent="270" name="id">
  3508. <AutoIncrement>19</AutoIncrement>
  3509. <NotNull>1</NotNull>
  3510. <Position>1</Position>
  3511. <StoredType>int(11)|0s</StoredType>
  3512. </column>
  3513. <column id="753" parent="270" name="aid">
  3514. <Comment>报销人</Comment>
  3515. <NotNull>1</NotNull>
  3516. <Position>2</Position>
  3517. <StoredType>varchar(36)|0s</StoredType>
  3518. </column>
  3519. <column id="754" parent="270" name="name">
  3520. <Comment>帐号名称</Comment>
  3521. <Position>3</Position>
  3522. <StoredType>varchar(36)|0s</StoredType>
  3523. </column>
  3524. <column id="755" parent="270" name="bank">
  3525. <Comment>银行名称</Comment>
  3526. <Position>4</Position>
  3527. <StoredType>varchar(64)|0s</StoredType>
  3528. </column>
  3529. <column id="756" parent="270" name="accounts">
  3530. <Comment>帐号</Comment>
  3531. <Position>5</Position>
  3532. <StoredType>varchar(64)|0s</StoredType>
  3533. </column>
  3534. <column id="757" parent="270" name="open_bank">
  3535. <Comment>开户行名称</Comment>
  3536. <Position>6</Position>
  3537. <StoredType>varchar(128)|0s</StoredType>
  3538. </column>
  3539. <column id="758" parent="270" name="status">
  3540. <Comment>状态 0=正常,1=默认</Comment>
  3541. <DefaultExpression>0</DefaultExpression>
  3542. <NotNull>1</NotNull>
  3543. <Position>7</Position>
  3544. <StoredType>int(1)|0s</StoredType>
  3545. </column>
  3546. <column id="759" parent="270" name="create_time">
  3547. <Comment>创建时间</Comment>
  3548. <DefaultExpression>CURRENT_TIMESTAMP</DefaultExpression>
  3549. <Position>8</Position>
  3550. <StoredType>datetime|0s</StoredType>
  3551. </column>
  3552. <index id="760" parent="270" name="PRIMARY">
  3553. <ColNames>id</ColNames>
  3554. <Type>btree</Type>
  3555. <Unique>1</Unique>
  3556. </index>
  3557. <key id="761" parent="270" name="PRIMARY">
  3558. <NameSurrogate>1</NameSurrogate>
  3559. <Primary>1</Primary>
  3560. <UnderlyingIndexName>PRIMARY</UnderlyingIndexName>
  3561. </key>
  3562. <column id="762" parent="271" name="id">
  3563. <AutoIncrement>21</AutoIncrement>
  3564. <NotNull>1</NotNull>
  3565. <Position>1</Position>
  3566. <StoredType>int(11)|0s</StoredType>
  3567. </column>
  3568. <column id="763" parent="271" name="type">
  3569. <Comment>1=财务复审,2=董事长审核,3=财务总监,4=集团副总,5=出纳</Comment>
  3570. <DefaultExpression>0</DefaultExpression>
  3571. <NotNull>1</NotNull>
  3572. <Position>2</Position>
  3573. <StoredType>int(1)|0s</StoredType>
  3574. </column>
  3575. <column id="764" parent="271" name="aid">
  3576. <Comment>管理员编号</Comment>
  3577. <Position>3</Position>
  3578. <StoredType>varchar(36)|0s</StoredType>
  3579. </column>
  3580. <column id="765" parent="271" name="dep_id">
  3581. <Comment>部门编号</Comment>
  3582. <Position>4</Position>
  3583. <StoredType>varchar(36)|0s</StoredType>
  3584. </column>
  3585. <column id="766" parent="271" name="admin_name">
  3586. <Comment>管理员名称编号牌</Comment>
  3587. <Position>5</Position>
  3588. <StoredType>varchar(64)|0s</StoredType>
  3589. </column>
  3590. <column id="767" parent="271" name="create_time">
  3591. <Comment>创建时间</Comment>
  3592. <DefaultExpression>CURRENT_TIMESTAMP</DefaultExpression>
  3593. <Position>6</Position>
  3594. <StoredType>datetime|0s</StoredType>
  3595. </column>
  3596. <index id="768" parent="271" name="PRIMARY">
  3597. <ColNames>id</ColNames>
  3598. <Type>btree</Type>
  3599. <Unique>1</Unique>
  3600. </index>
  3601. <key id="769" parent="271" name="PRIMARY">
  3602. <NameSurrogate>1</NameSurrogate>
  3603. <Primary>1</Primary>
  3604. <UnderlyingIndexName>PRIMARY</UnderlyingIndexName>
  3605. </key>
  3606. <column id="770" parent="272" name="id">
  3607. <Comment>主编号</Comment>
  3608. <NotNull>1</NotNull>
  3609. <Position>1</Position>
  3610. <StoredType>int(11)|0s</StoredType>
  3611. </column>
  3612. <column id="771" parent="272" name="ea_id">
  3613. <Comment>子编号</Comment>
  3614. <NotNull>1</NotNull>
  3615. <Position>2</Position>
  3616. <StoredType>int(11)|0s</StoredType>
  3617. </column>
  3618. <column id="772" parent="272" name="create_time">
  3619. <Comment>创建时间</Comment>
  3620. <DefaultExpression>CURRENT_TIMESTAMP</DefaultExpression>
  3621. <Position>3</Position>
  3622. <StoredType>datetime|0s</StoredType>
  3623. </column>
  3624. <column id="773" parent="273" name="id">
  3625. <AutoIncrement>167</AutoIncrement>
  3626. <NotNull>1</NotNull>
  3627. <Position>1</Position>
  3628. <StoredType>int(11)|0s</StoredType>
  3629. </column>
  3630. <column id="774" parent="273" name="aid">
  3631. <Comment>管理员编号</Comment>
  3632. <NotNull>1</NotNull>
  3633. <Position>2</Position>
  3634. <StoredType>varchar(36)|0s</StoredType>
  3635. </column>
  3636. <column id="775" parent="273" name="order_count">
  3637. <Comment>订单数</Comment>
  3638. <DefaultExpression>0</DefaultExpression>
  3639. <NotNull>1</NotNull>
  3640. <Position>3</Position>
  3641. <StoredType>int(11)|0s</StoredType>
  3642. </column>
  3643. <column id="776" parent="273" name="order_unaudited_count">
  3644. <Comment>订单未审核数</Comment>
  3645. <DefaultExpression>0</DefaultExpression>
  3646. <NotNull>1</NotNull>
  3647. <Position>4</Position>
  3648. <StoredType>int(11)|0s</StoredType>
  3649. </column>
  3650. <column id="777" parent="273" name="expense_count">
  3651. <Comment>报销数</Comment>
  3652. <DefaultExpression>0</DefaultExpression>
  3653. <NotNull>1</NotNull>
  3654. <Position>5</Position>
  3655. <StoredType>int(11)|0s</StoredType>
  3656. </column>
  3657. <column id="778" parent="273" name="expense_unaudited_count">
  3658. <Comment>报销未审核数</Comment>
  3659. <DefaultExpression>0</DefaultExpression>
  3660. <NotNull>1</NotNull>
  3661. <Position>6</Position>
  3662. <StoredType>int(11)|0s</StoredType>
  3663. </column>
  3664. <column id="779" parent="273" name="invoice_count">
  3665. <Comment>开票数</Comment>
  3666. <DefaultExpression>0</DefaultExpression>
  3667. <NotNull>1</NotNull>
  3668. <Position>7</Position>
  3669. <StoredType>int(11)|0s</StoredType>
  3670. </column>
  3671. <column id="780" parent="273" name="invoice_unaudited_count">
  3672. <Comment>开票未审核数</Comment>
  3673. <DefaultExpression>0</DefaultExpression>
  3674. <NotNull>1</NotNull>
  3675. <Position>8</Position>
  3676. <StoredType>int(11)|0s</StoredType>
  3677. </column>
  3678. <column id="781" parent="273" name="member_count">
  3679. <Comment>会员审核数</Comment>
  3680. <DefaultExpression>0</DefaultExpression>
  3681. <NotNull>1</NotNull>
  3682. <Position>9</Position>
  3683. <StoredType>int(11)|0s</StoredType>
  3684. </column>
  3685. <column id="782" parent="273" name="member_unaudited_count">
  3686. <Comment>会员未审核数</Comment>
  3687. <DefaultExpression>0</DefaultExpression>
  3688. <NotNull>1</NotNull>
  3689. <Position>10</Position>
  3690. <StoredType>int(11)|0s</StoredType>
  3691. </column>
  3692. <column id="783" parent="273" name="payment_count">
  3693. <Comment>成本审核数</Comment>
  3694. <DefaultExpression>0</DefaultExpression>
  3695. <NotNull>1</NotNull>
  3696. <Position>11</Position>
  3697. <StoredType>int(11)|0s</StoredType>
  3698. </column>
  3699. <column id="784" parent="273" name="payment_unaudited_count">
  3700. <Comment>成本未审核数</Comment>
  3701. <DefaultExpression>0</DefaultExpression>
  3702. <NotNull>1</NotNull>
  3703. <Position>12</Position>
  3704. <StoredType>int(11)|0s</StoredType>
  3705. </column>
  3706. <column id="785" parent="273" name="date_time">
  3707. <Comment>日期</Comment>
  3708. <NotNull>1</NotNull>
  3709. <Position>13</Position>
  3710. <StoredType>date|0s</StoredType>
  3711. </column>
  3712. <column id="786" parent="273" name="create_time">
  3713. <Comment>创建时间</Comment>
  3714. <DefaultExpression>CURRENT_TIMESTAMP</DefaultExpression>
  3715. <Position>14</Position>
  3716. <StoredType>datetime|0s</StoredType>
  3717. </column>
  3718. <index id="787" parent="273" name="PRIMARY">
  3719. <ColNames>id</ColNames>
  3720. <Type>btree</Type>
  3721. <Unique>1</Unique>
  3722. </index>
  3723. <key id="788" parent="273" name="PRIMARY">
  3724. <NameSurrogate>1</NameSurrogate>
  3725. <Primary>1</Primary>
  3726. <UnderlyingIndexName>PRIMARY</UnderlyingIndexName>
  3727. </key>
  3728. <column id="789" parent="274" name="id">
  3729. <AutoIncrement>317</AutoIncrement>
  3730. <NotNull>1</NotNull>
  3731. <Position>1</Position>
  3732. <StoredType>int(11)|0s</StoredType>
  3733. </column>
  3734. <column id="790" parent="274" name="name">
  3735. <Comment>分类名称</Comment>
  3736. <NotNull>1</NotNull>
  3737. <Position>2</Position>
  3738. <StoredType>varchar(255)|0s</StoredType>
  3739. </column>
  3740. <column id="791" parent="274" name="level">
  3741. <Comment>层级(1-一级分类,2-二级分类,3-三级分类)</Comment>
  3742. <NotNull>1</NotNull>
  3743. <Position>3</Position>
  3744. <StoredType>tinyint(4)|0s</StoredType>
  3745. </column>
  3746. <column id="792" parent="274" name="parent_id">
  3747. <Comment>父级ID</Comment>
  3748. <Position>4</Position>
  3749. <StoredType>int(11)|0s</StoredType>
  3750. </column>
  3751. <column id="793" parent="274" name="created_at">
  3752. <DefaultExpression>CURRENT_TIMESTAMP</DefaultExpression>
  3753. <NotNull>1</NotNull>
  3754. <Position>5</Position>
  3755. <StoredType>timestamp|0s</StoredType>
  3756. </column>
  3757. <index id="794" parent="274" name="PRIMARY">
  3758. <ColNames>id</ColNames>
  3759. <Type>btree</Type>
  3760. <Unique>1</Unique>
  3761. </index>
  3762. <key id="795" parent="274" name="PRIMARY">
  3763. <NameSurrogate>1</NameSurrogate>
  3764. <Primary>1</Primary>
  3765. <UnderlyingIndexName>PRIMARY</UnderlyingIndexName>
  3766. </key>
  3767. <column id="796" parent="275" name="id">
  3768. <NotNull>1</NotNull>
  3769. <Position>1</Position>
  3770. <StoredType>int(11)|0s</StoredType>
  3771. </column>
  3772. <column id="797" parent="275" name="name">
  3773. <Position>2</Position>
  3774. <StoredType>varchar(45)|0s</StoredType>
  3775. </column>
  3776. <column id="798" parent="275" name="pid">
  3777. <Position>3</Position>
  3778. <StoredType>int(11)|0s</StoredType>
  3779. </column>
  3780. <column id="799" parent="275" name="value">
  3781. <Position>4</Position>
  3782. <StoredType>decimal(4,2 digit)|0s</StoredType>
  3783. </column>
  3784. <index id="800" parent="275" name="PRIMARY">
  3785. <ColNames>id</ColNames>
  3786. <Type>btree</Type>
  3787. <Unique>1</Unique>
  3788. </index>
  3789. <key id="801" parent="275" name="PRIMARY">
  3790. <NameSurrogate>1</NameSurrogate>
  3791. <Primary>1</Primary>
  3792. <UnderlyingIndexName>PRIMARY</UnderlyingIndexName>
  3793. </key>
  3794. <column id="802" parent="276" name="id">
  3795. <AutoIncrement>25</AutoIncrement>
  3796. <Comment>日志id</Comment>
  3797. <NotNull>1</NotNull>
  3798. <Position>1</Position>
  3799. <StoredType>int(11)|0s</StoredType>
  3800. </column>
  3801. <column id="803" parent="276" name="invoice_id">
  3802. <Comment>开票id</Comment>
  3803. <NotNull>1</NotNull>
  3804. <Position>2</Position>
  3805. <StoredType>int(11)|0s</StoredType>
  3806. </column>
  3807. <column id="804" parent="276" name="status">
  3808. <Comment>0发起 1开票通过 2开票拒绝 3特批通过 4特批拒绝 5修改提交</Comment>
  3809. <NotNull>1</NotNull>
  3810. <Position>3</Position>
  3811. <StoredType>int(11)|0s</StoredType>
  3812. </column>
  3813. <column id="805" parent="276" name="aid">
  3814. <Comment>操作人</Comment>
  3815. <NotNull>1</NotNull>
  3816. <Position>4</Position>
  3817. <StoredType>varchar(36)|0s</StoredType>
  3818. </column>
  3819. <column id="806" parent="276" name="create_time">
  3820. <Comment>创建时间</Comment>
  3821. <DefaultExpression>CURRENT_TIMESTAMP</DefaultExpression>
  3822. <NotNull>1</NotNull>
  3823. <Position>5</Position>
  3824. <StoredType>timestamp|0s</StoredType>
  3825. </column>
  3826. <index id="807" parent="276" name="PRIMARY">
  3827. <ColNames>id</ColNames>
  3828. <Type>btree</Type>
  3829. <Unique>1</Unique>
  3830. </index>
  3831. <key id="808" parent="276" name="PRIMARY">
  3832. <NameSurrogate>1</NameSurrogate>
  3833. <Primary>1</Primary>
  3834. <UnderlyingIndexName>PRIMARY</UnderlyingIndexName>
  3835. </key>
  3836. <column id="809" parent="277" name="id">
  3837. <AutoIncrement>238</AutoIncrement>
  3838. <NotNull>1</NotNull>
  3839. <Position>1</Position>
  3840. <StoredType>int(11)|0s</StoredType>
  3841. </column>
  3842. <column id="810" parent="277" name="title">
  3843. <Comment>标题</Comment>
  3844. <NotNull>1</NotNull>
  3845. <Position>2</Position>
  3846. <StoredType>varchar(64)|0s</StoredType>
  3847. </column>
  3848. <column id="811" parent="277" name="publisher">
  3849. <Comment>发布人</Comment>
  3850. <NotNull>1</NotNull>
  3851. <Position>3</Position>
  3852. <StoredType>varchar(64)|0s</StoredType>
  3853. </column>
  3854. <column id="812" parent="277" name="type">
  3855. <Comment>类型 0公司新闻 1行业新闻</Comment>
  3856. <NotNull>1</NotNull>
  3857. <Position>4</Position>
  3858. <StoredType>int(11)|0s</StoredType>
  3859. </column>
  3860. <column id="813" parent="277" name="picture_url">
  3861. <Comment>图片url</Comment>
  3862. <NotNull>1</NotNull>
  3863. <Position>5</Position>
  3864. <StoredType>varchar(128)|0s</StoredType>
  3865. </column>
  3866. <column id="814" parent="277" name="status">
  3867. <Comment>状态 0正常 1首页</Comment>
  3868. <DefaultExpression>0</DefaultExpression>
  3869. <Position>6</Position>
  3870. <StoredType>int(11)|0s</StoredType>
  3871. </column>
  3872. <column id="815" parent="277" name="sort">
  3873. <Comment>排序</Comment>
  3874. <DefaultExpression>0</DefaultExpression>
  3875. <Position>7</Position>
  3876. <StoredType>int(11)|0s</StoredType>
  3877. </column>
  3878. <column id="816" parent="277" name="content">
  3879. <Comment>内容</Comment>
  3880. <Position>8</Position>
  3881. <StoredType>longtext|0s</StoredType>
  3882. </column>
  3883. <column id="817" parent="277" name="release_status">
  3884. <Comment>发布状态 0否 1是</Comment>
  3885. <DefaultExpression>0</DefaultExpression>
  3886. <Position>9</Position>
  3887. <StoredType>int(11)|0s</StoredType>
  3888. </column>
  3889. <column id="818" parent="277" name="create_time">
  3890. <Comment>创建时间</Comment>
  3891. <DefaultExpression>CURRENT_TIMESTAMP</DefaultExpression>
  3892. <Position>10</Position>
  3893. <StoredType>datetime|0s</StoredType>
  3894. </column>
  3895. <column id="819" parent="277" name="release_time">
  3896. <Comment>发布时间</Comment>
  3897. <Position>11</Position>
  3898. <StoredType>datetime|0s</StoredType>
  3899. </column>
  3900. <index id="820" parent="277" name="PRIMARY">
  3901. <ColNames>id</ColNames>
  3902. <Type>btree</Type>
  3903. <Unique>1</Unique>
  3904. </index>
  3905. <key id="821" parent="277" name="PRIMARY">
  3906. <NameSurrogate>1</NameSurrogate>
  3907. <Primary>1</Primary>
  3908. <UnderlyingIndexName>PRIMARY</UnderlyingIndexName>
  3909. </key>
  3910. <column id="822" parent="278" name="id">
  3911. <AutoIncrement>34</AutoIncrement>
  3912. <Comment>编号</Comment>
  3913. <NotNull>1</NotNull>
  3914. <Position>1</Position>
  3915. <StoredType>int(11)|0s</StoredType>
  3916. </column>
  3917. <column id="823" parent="278" name="holidays">
  3918. <Comment>日期时间</Comment>
  3919. <Position>2</Position>
  3920. <StoredType>date|0s</StoredType>
  3921. </column>
  3922. <column id="824" parent="278" name="status">
  3923. <Comment>项目状态 1=法定节假日,2=补班</Comment>
  3924. <DefaultExpression>0</DefaultExpression>
  3925. <Position>3</Position>
  3926. <StoredType>int(2)|0s</StoredType>
  3927. </column>
  3928. <index id="825" parent="278" name="PRIMARY">
  3929. <ColNames>id</ColNames>
  3930. <Type>btree</Type>
  3931. <Unique>1</Unique>
  3932. </index>
  3933. <key id="826" parent="278" name="PRIMARY">
  3934. <NameSurrogate>1</NameSurrogate>
  3935. <Primary>1</Primary>
  3936. <UnderlyingIndexName>PRIMARY</UnderlyingIndexName>
  3937. </key>
  3938. <column id="827" parent="279" name="id">
  3939. <AutoIncrement>14</AutoIncrement>
  3940. <Comment>日志id</Comment>
  3941. <NotNull>1</NotNull>
  3942. <Position>1</Position>
  3943. <StoredType>int(11)|0s</StoredType>
  3944. </column>
  3945. <column id="828" parent="279" name="pid">
  3946. <Comment>开票id</Comment>
  3947. <NotNull>1</NotNull>
  3948. <Position>2</Position>
  3949. <StoredType>int(11)|0s</StoredType>
  3950. </column>
  3951. <column id="829" parent="279" name="aid">
  3952. <Comment>操作人id</Comment>
  3953. <Position>3</Position>
  3954. <StoredType>varchar(36)|0s</StoredType>
  3955. </column>
  3956. <column id="830" parent="279" name="status">
  3957. <Comment>审核状态 0=发起,1=通过,2=拒绝,3=完成</Comment>
  3958. <NotNull>1</NotNull>
  3959. <Position>4</Position>
  3960. <StoredType>int(11)|0s</StoredType>
  3961. </column>
  3962. <column id="831" parent="279" name="remarks">
  3963. <Comment>备注</Comment>
  3964. <NotNull>1</NotNull>
  3965. <Position>5</Position>
  3966. <StoredType>varchar(512)|0s</StoredType>
  3967. </column>
  3968. <column id="832" parent="279" name="create_time">
  3969. <Comment>创建时间</Comment>
  3970. <DefaultExpression>CURRENT_TIMESTAMP</DefaultExpression>
  3971. <NotNull>1</NotNull>
  3972. <Position>6</Position>
  3973. <StoredType>timestamp|0s</StoredType>
  3974. </column>
  3975. <index id="833" parent="279" name="PRIMARY">
  3976. <ColNames>id</ColNames>
  3977. <Type>btree</Type>
  3978. <Unique>1</Unique>
  3979. </index>
  3980. <key id="834" parent="279" name="PRIMARY">
  3981. <NameSurrogate>1</NameSurrogate>
  3982. <Primary>1</Primary>
  3983. <UnderlyingIndexName>PRIMARY</UnderlyingIndexName>
  3984. </key>
  3985. <column id="835" parent="280" name="id">
  3986. <AutoIncrement>136</AutoIncrement>
  3987. <Comment>id</Comment>
  3988. <NotNull>1</NotNull>
  3989. <Position>1</Position>
  3990. <StoredType>int(11)|0s</StoredType>
  3991. </column>
  3992. <column id="836" parent="280" name="order_no">
  3993. <Comment>订单编号</Comment>
  3994. <NotNull>1</NotNull>
  3995. <Position>2</Position>
  3996. <StoredType>varchar(20)|0s</StoredType>
  3997. </column>
  3998. <column id="837" parent="280" name="process_state">
  3999. <Comment>流程状态 0=营销员,1=营销经理,2=营销管理员,3=技术员,4=技术经理,5=技术总监,6=财务专员,7=财务总监,8=总裁,9=董事长</Comment>
  4000. <NotNull>1</NotNull>
  4001. <Position>3</Position>
  4002. <StoredType>int(11)|0s</StoredType>
  4003. </column>
  4004. <column id="838" parent="280" name="status">
  4005. <Comment>状态 0草稿 1审核中 2通过 3驳回 4完成 5撤销 6上传附件</Comment>
  4006. <NotNull>1</NotNull>
  4007. <Position>4</Position>
  4008. <StoredType>int(11)|0s</StoredType>
  4009. </column>
  4010. <column id="839" parent="280" name="type">
  4011. <Comment>变更类型 0退单退款 1项目及金额变更 2仅项目变更 3仅金额变更 4重报 5赠送</Comment>
  4012. <NotNull>1</NotNull>
  4013. <Position>5</Position>
  4014. <StoredType>int(11)|0s</StoredType>
  4015. </column>
  4016. <column id="840" parent="280" name="create_time">
  4017. <Comment>创建时间</Comment>
  4018. <DefaultExpression>CURRENT_TIMESTAMP</DefaultExpression>
  4019. <Position>6</Position>
  4020. <StoredType>datetime|0s</StoredType>
  4021. </column>
  4022. <column id="841" parent="280" name="remarks">
  4023. <Comment>备注</Comment>
  4024. <Position>7</Position>
  4025. <StoredType>varchar(512)|0s</StoredType>
  4026. </column>
  4027. <column id="842" parent="280" name="voucher_url">
  4028. <Comment>图片地址</Comment>
  4029. <Position>8</Position>
  4030. <StoredType>longtext|0s</StoredType>
  4031. </column>
  4032. <column id="843" parent="280" name="total_amount">
  4033. <Comment>总金额</Comment>
  4034. <Position>9</Position>
  4035. <StoredType>decimal(12,6 digit)|0s</StoredType>
  4036. </column>
  4037. <column id="844" parent="280" name="settlement_amount">
  4038. <Comment>已收款</Comment>
  4039. <Position>10</Position>
  4040. <StoredType>decimal(12,6 digit)|0s</StoredType>
  4041. </column>
  4042. <column id="845" parent="280" name="change_amount">
  4043. <Comment>申请金额</Comment>
  4044. <Position>11</Position>
  4045. <StoredType>decimal(12,6 digit)|0s</StoredType>
  4046. </column>
  4047. <column id="846" parent="280" name="applicant">
  4048. <Comment>申请人</Comment>
  4049. <Position>12</Position>
  4050. <StoredType>varchar(36)|0s</StoredType>
  4051. </column>
  4052. <column id="847" parent="280" name="dep_name">
  4053. <Comment>申请部门</Comment>
  4054. <Position>13</Position>
  4055. <StoredType>varchar(36)|0s</StoredType>
  4056. </column>
  4057. <column id="848" parent="280" name="project_state">
  4058. <Comment>项目进度</Comment>
  4059. <Position>14</Position>
  4060. <StoredType>varchar(64)|0s</StoredType>
  4061. </column>
  4062. <column id="849" parent="280" name="zxs_cost">
  4063. <Comment>发生成本费用</Comment>
  4064. <Position>15</Position>
  4065. <StoredType>decimal(12,6 digit)|0s</StoredType>
  4066. </column>
  4067. <column id="850" parent="280" name="zxs_remarks">
  4068. <Comment>咨询师备注(营销员日志备注)</Comment>
  4069. <Position>16</Position>
  4070. <StoredType>varchar(512)|0s</StoredType>
  4071. </column>
  4072. <column id="851" parent="280" name="payment_time">
  4073. <Comment>收款时间</Comment>
  4074. <Position>17</Position>
  4075. <StoredType>datetime|0s</StoredType>
  4076. </column>
  4077. <column id="852" parent="280" name="payment_amount">
  4078. <Comment>收款金额</Comment>
  4079. <Position>18</Position>
  4080. <StoredType>decimal(12,6 digit)|0s</StoredType>
  4081. </column>
  4082. <column id="853" parent="280" name="invoice_time">
  4083. <Comment>开票时间</Comment>
  4084. <Position>19</Position>
  4085. <StoredType>datetime|0s</StoredType>
  4086. </column>
  4087. <column id="854" parent="280" name="invoice_amount">
  4088. <Comment>已开票金额</Comment>
  4089. <Position>20</Position>
  4090. <StoredType>decimal(12,6 digit)|0s</StoredType>
  4091. </column>
  4092. <column id="855" parent="280" name="invoice_type">
  4093. <Comment>发票类型</Comment>
  4094. <Position>21</Position>
  4095. <StoredType>varchar(36)|0s</StoredType>
  4096. </column>
  4097. <column id="856" parent="280" name="cw_cost">
  4098. <Comment>发生直接成本</Comment>
  4099. <Position>22</Position>
  4100. <StoredType>decimal(12,6 digit)|0s</StoredType>
  4101. </column>
  4102. <column id="857" parent="280" name="refundable_amount">
  4103. <Comment>应退金额</Comment>
  4104. <Position>23</Position>
  4105. <StoredType>decimal(12,6 digit)|0s</StoredType>
  4106. </column>
  4107. <column id="858" parent="280" name="cw_remarks">
  4108. <Comment>财务备注</Comment>
  4109. <Position>24</Position>
  4110. <StoredType>varchar(512)|0s</StoredType>
  4111. </column>
  4112. <column id="859" parent="280" name="estimate_cost">
  4113. <Comment>预计成本费用</Comment>
  4114. <Position>25</Position>
  4115. <StoredType>decimal(12,6 digit)|0s</StoredType>
  4116. </column>
  4117. <column id="860" parent="280" name="estimate_refundable">
  4118. <Comment>预计退款</Comment>
  4119. <Position>26</Position>
  4120. <StoredType>decimal(12,6 digit)|0s</StoredType>
  4121. </column>
  4122. <column id="861" parent="280" name="refund_Invoice">
  4123. <Comment>累计退票</Comment>
  4124. <Position>27</Position>
  4125. <StoredType>decimal(12,6 digit)|0s</StoredType>
  4126. </column>
  4127. <column id="862" parent="280" name="used_order">
  4128. <Comment>原订单编号</Comment>
  4129. <Position>28</Position>
  4130. <StoredType>varchar(20)|0s</StoredType>
  4131. </column>
  4132. <column id="863" parent="280" name="refund_status">
  4133. <Comment>退款状态 0否 1是</Comment>
  4134. <DefaultExpression>0</DefaultExpression>
  4135. <NotNull>1</NotNull>
  4136. <Position>29</Position>
  4137. <StoredType>int(11)|0s</StoredType>
  4138. </column>
  4139. <column id="864" parent="280" name="refund_url">
  4140. <Comment>退款凭证</Comment>
  4141. <Position>30</Position>
  4142. <StoredType>varchar(1024)|0s</StoredType>
  4143. </column>
  4144. <column id="865" parent="280" name="back_status">
  4145. <Comment>驳回位置 (同流程状态)</Comment>
  4146. <DefaultExpression>0</DefaultExpression>
  4147. <NotNull>1</NotNull>
  4148. <Position>31</Position>
  4149. <StoredType>int(11)|0s</StoredType>
  4150. </column>
  4151. <column id="866" parent="280" name="attachment_url">
  4152. <Comment>附件地址</Comment>
  4153. <Position>32</Position>
  4154. <StoredType>longtext|0s</StoredType>
  4155. </column>
  4156. <column id="867" parent="280" name="contract_picture_url">
  4157. <Comment>合同图片</Comment>
  4158. <Position>33</Position>
  4159. <StoredType>longtext|0s</StoredType>
  4160. </column>
  4161. <column id="868" parent="280" name="first_amount">
  4162. <Comment>首付金额</Comment>
  4163. <Position>34</Position>
  4164. <StoredType>decimal(12,6 digit)|0s</StoredType>
  4165. </column>
  4166. <column id="869" parent="280" name="examine_name">
  4167. <Comment>审核人员名称</Comment>
  4168. <Position>35</Position>
  4169. <StoredType>varchar(100)|0s</StoredType>
  4170. </column>
  4171. <column id="870" parent="280" name="cw_indirect_cost">
  4172. <Comment>发生间接成本</Comment>
  4173. <Position>36</Position>
  4174. <StoredType>decimal(12,6 digit)|0s</StoredType>
  4175. </column>
  4176. <column id="871" parent="280" name="contacts">
  4177. <Comment>企业负责人</Comment>
  4178. <Position>37</Position>
  4179. <StoredType>varchar(16)|0s</StoredType>
  4180. </column>
  4181. <column id="872" parent="280" name="contact_mobile">
  4182. <Comment>负责人联系电话</Comment>
  4183. <Position>38</Position>
  4184. <StoredType>varchar(16)|0s</StoredType>
  4185. </column>
  4186. <column id="873" parent="280" name="manager_contacts">
  4187. <Comment>企业总经理</Comment>
  4188. <Position>39</Position>
  4189. <StoredType>varchar(16)|0s</StoredType>
  4190. </column>
  4191. <column id="874" parent="280" name="manager_contact_mobile">
  4192. <Comment>总经理联系电话</Comment>
  4193. <Position>40</Position>
  4194. <StoredType>varchar(16)|0s</StoredType>
  4195. </column>
  4196. <column id="875" parent="280" name="nda">
  4197. <Comment>是否签订保密协议:0=无,1=有</Comment>
  4198. <Position>41</Position>
  4199. <StoredType>int(1)|0s</StoredType>
  4200. </column>
  4201. <column id="876" parent="280" name="nda_url">
  4202. <Comment>保密协议地址</Comment>
  4203. <Position>42</Position>
  4204. <StoredType>varchar(256)|0s</StoredType>
  4205. </column>
  4206. <column id="877" parent="280" name="breach_clause">
  4207. <Comment>是否有违约条件:0=无,1=有,有限责任违约条款、与技术服务有关,2=有,有限责任违约条款、与技术服务无有关,3=有,无限责任违约条款、与技术服务无有关,4=有,无限责任违约条款、与技术服务有关</Comment>
  4208. <Position>43</Position>
  4209. <StoredType>int(1)|0s</StoredType>
  4210. </column>
  4211. <column id="878" parent="280" name="breach_clause_url">
  4212. <Comment>违约条款地址</Comment>
  4213. <Position>44</Position>
  4214. <StoredType>varchar(256)|0s</StoredType>
  4215. </column>
  4216. <index id="879" parent="280" name="PRIMARY">
  4217. <ColNames>id</ColNames>
  4218. <Type>btree</Type>
  4219. <Unique>1</Unique>
  4220. </index>
  4221. <key id="880" parent="280" name="PRIMARY">
  4222. <NameSurrogate>1</NameSurrogate>
  4223. <Primary>1</Primary>
  4224. <UnderlyingIndexName>PRIMARY</UnderlyingIndexName>
  4225. </key>
  4226. <column id="881" parent="281" name="id">
  4227. <AutoIncrement>537</AutoIncrement>
  4228. <Comment>id</Comment>
  4229. <NotNull>1</NotNull>
  4230. <Position>1</Position>
  4231. <StoredType>int(11)|0s</StoredType>
  4232. </column>
  4233. <column id="882" parent="281" name="order_no">
  4234. <Comment>订单编号</Comment>
  4235. <NotNull>1</NotNull>
  4236. <Position>2</Position>
  4237. <StoredType>varchar(20)|0s</StoredType>
  4238. </column>
  4239. <column id="883" parent="281" name="tid">
  4240. <Comment>项目编号</Comment>
  4241. <NotNull>1</NotNull>
  4242. <Position>3</Position>
  4243. <StoredType>int(11)|0s</StoredType>
  4244. </column>
  4245. <column id="884" parent="281" name="project_type">
  4246. <Comment>项目分类 </Comment>
  4247. <NotNull>1</NotNull>
  4248. <Position>4</Position>
  4249. <StoredType>int(11)|0s</StoredType>
  4250. </column>
  4251. <column id="885" parent="281" name="dun_type">
  4252. <Comment>催款分类</Comment>
  4253. <NotNull>1</NotNull>
  4254. <Position>5</Position>
  4255. <StoredType>int(11)|0s</StoredType>
  4256. </column>
  4257. <column id="886" parent="281" name="wait_day">
  4258. <Comment>等待天数</Comment>
  4259. <Position>6</Position>
  4260. <StoredType>int(11)|0s</StoredType>
  4261. </column>
  4262. <column id="887" parent="281" name="effective_count">
  4263. <Comment>有效次数</Comment>
  4264. <Position>7</Position>
  4265. <StoredType>int(11)|0s</StoredType>
  4266. </column>
  4267. <column id="888" parent="281" name="aid">
  4268. <Comment>人员id</Comment>
  4269. <NotNull>1</NotNull>
  4270. <Position>8</Position>
  4271. <StoredType>varchar(36)|0s</StoredType>
  4272. </column>
  4273. <column id="889" parent="281" name="status">
  4274. <Comment>0未启动 1已启动</Comment>
  4275. <DefaultExpression>0</DefaultExpression>
  4276. <Position>9</Position>
  4277. <StoredType>int(11)|0s</StoredType>
  4278. </column>
  4279. <column id="890" parent="281" name="create_time">
  4280. <Comment>创建时间</Comment>
  4281. <DefaultExpression>CURRENT_TIMESTAMP</DefaultExpression>
  4282. <Position>10</Position>
  4283. <StoredType>datetime|0s</StoredType>
  4284. </column>
  4285. <column id="891" parent="281" name="start_time">
  4286. <Comment>触发时间</Comment>
  4287. <Position>11</Position>
  4288. <StoredType>datetime|0s</StoredType>
  4289. </column>
  4290. <column id="892" parent="281" name="money">
  4291. <Comment>金额</Comment>
  4292. <Position>12</Position>
  4293. <StoredType>decimal(12,6 digit)|0s</StoredType>
  4294. </column>
  4295. <column id="893" parent="281" name="appropriation_ratio">
  4296. <Comment>拨款比列</Comment>
  4297. <Position>13</Position>
  4298. <StoredType>decimal(10,6 digit)|0s</StoredType>
  4299. </column>
  4300. <column id="894" parent="281" name="customize_name">
  4301. <Comment>自定义</Comment>
  4302. <Position>14</Position>
  4303. <StoredType>varchar(36)|0s</StoredType>
  4304. </column>
  4305. <column id="895" parent="281" name="customize_time">
  4306. <Comment>自定义时间</Comment>
  4307. <Position>15</Position>
  4308. <StoredType>datetime|0s</StoredType>
  4309. </column>
  4310. <index id="896" parent="281" name="PRIMARY">
  4311. <ColNames>id</ColNames>
  4312. <Type>btree</Type>
  4313. <Unique>1</Unique>
  4314. </index>
  4315. <key id="897" parent="281" name="PRIMARY">
  4316. <NameSurrogate>1</NameSurrogate>
  4317. <Primary>1</Primary>
  4318. <UnderlyingIndexName>PRIMARY</UnderlyingIndexName>
  4319. </key>
  4320. <column id="898" parent="282" name="id">
  4321. <NotNull>1</NotNull>
  4322. <Position>1</Position>
  4323. <StoredType>varchar(36)|0s</StoredType>
  4324. </column>
  4325. <column id="899" parent="282" name="aid">
  4326. <Position>2</Position>
  4327. <StoredType>varchar(36)|0s</StoredType>
  4328. </column>
  4329. <column id="900" parent="282" name="notice_type">
  4330. <Comment>通知类型</Comment>
  4331. <Position>3</Position>
  4332. <StoredType>int(1)|0s</StoredType>
  4333. </column>
  4334. <column id="901" parent="282" name="content">
  4335. <Comment>通知内容</Comment>
  4336. <Position>4</Position>
  4337. <StoredType>varchar(512)|0s</StoredType>
  4338. </column>
  4339. <column id="902" parent="282" name="create_time">
  4340. <Comment>创建时间</Comment>
  4341. <DefaultExpression>CURRENT_TIMESTAMP</DefaultExpression>
  4342. <Position>5</Position>
  4343. <StoredType>datetime|0s</StoredType>
  4344. </column>
  4345. <column id="903" parent="282" name="readed">
  4346. <Position>6</Position>
  4347. <StoredType>int(1)|0s</StoredType>
  4348. </column>
  4349. <column id="904" parent="282" name="uid">
  4350. <Comment>用户ID</Comment>
  4351. <Position>7</Position>
  4352. <StoredType>varchar(36)|0s</StoredType>
  4353. </column>
  4354. <column id="905" parent="282" name="pid">
  4355. <Comment>录入信息业务员ID</Comment>
  4356. <Position>8</Position>
  4357. <StoredType>varchar(36)|0s</StoredType>
  4358. </column>
  4359. <column id="906" parent="282" name="rid">
  4360. <Comment>业务记录ID</Comment>
  4361. <Position>9</Position>
  4362. <StoredType>varchar(36)|0s</StoredType>
  4363. </column>
  4364. <column id="907" parent="282" name="year">
  4365. <Comment>高企记录申报年份</Comment>
  4366. <Position>10</Position>
  4367. <StoredType>int(4)|0s</StoredType>
  4368. </column>
  4369. <column id="908" parent="282" name="type">
  4370. <Comment>通知分类 0其他 1专利提醒 2订单审核 3客户释放 4限时跟进 5催款\付款 6订单开票</Comment>
  4371. <DefaultExpression>0</DefaultExpression>
  4372. <Position>11</Position>
  4373. <StoredType>int(1)|0s</StoredType>
  4374. </column>
  4375. <index id="909" parent="282" name="PRIMARY">
  4376. <ColNames>id</ColNames>
  4377. <Type>btree</Type>
  4378. <Unique>1</Unique>
  4379. </index>
  4380. <key id="910" parent="282" name="PRIMARY">
  4381. <NameSurrogate>1</NameSurrogate>
  4382. <Primary>1</Primary>
  4383. <UnderlyingIndexName>PRIMARY</UnderlyingIndexName>
  4384. </key>
  4385. <column id="911" parent="283" name="id">
  4386. <AutoIncrement>33</AutoIncrement>
  4387. <Comment>编号</Comment>
  4388. <NotNull>1</NotNull>
  4389. <Position>1</Position>
  4390. <StoredType>int(11)|0s</StoredType>
  4391. </column>
  4392. <column id="912" parent="283" name="type">
  4393. <Comment>0实用新型 1发明专利 2外观专利</Comment>
  4394. <Position>2</Position>
  4395. <StoredType>int(11)|0s</StoredType>
  4396. </column>
  4397. <column id="913" parent="283" name="amount">
  4398. <Comment>金额</Comment>
  4399. <DefaultExpression>0.000000</DefaultExpression>
  4400. <Position>3</Position>
  4401. <StoredType>decimal(12,6 digit)|0s</StoredType>
  4402. </column>
  4403. <column id="914" parent="283" name="proportion85">
  4404. <Comment>减缴比例85%</Comment>
  4405. <DefaultExpression>0.000000</DefaultExpression>
  4406. <Position>4</Position>
  4407. <StoredType>decimal(12,6 digit)|0s</StoredType>
  4408. </column>
  4409. <column id="915" parent="283" name="remarks">
  4410. <Comment>备注</Comment>
  4411. <Position>5</Position>
  4412. <StoredType>varchar(512)|0s</StoredType>
  4413. </column>
  4414. <column id="916" parent="283" name="create_time">
  4415. <Comment>创建时间</Comment>
  4416. <DefaultExpression>CURRENT_TIMESTAMP</DefaultExpression>
  4417. <Position>6</Position>
  4418. <StoredType>datetime|0s</StoredType>
  4419. </column>
  4420. <column id="917" parent="283" name="patent_type">
  4421. <Comment>专利分类 0申请 1变更 2复审 3优先权 4恢复请求权 5无效宣告请求费 6强制许可请求费 7 强制许可使用裁决请求费 8登录、印刷费、印花税</Comment>
  4422. <DefaultExpression>0</DefaultExpression>
  4423. <Position>7</Position>
  4424. <StoredType>int(11)|0s</StoredType>
  4425. </column>
  4426. <index id="918" parent="283" name="PRIMARY">
  4427. <ColNames>id</ColNames>
  4428. <Type>btree</Type>
  4429. <Unique>1</Unique>
  4430. </index>
  4431. <key id="919" parent="283" name="PRIMARY">
  4432. <NameSurrogate>1</NameSurrogate>
  4433. <Primary>1</Primary>
  4434. <UnderlyingIndexName>PRIMARY</UnderlyingIndexName>
  4435. </key>
  4436. <column id="920" parent="284" name="id">
  4437. <AutoIncrement>952</AutoIncrement>
  4438. <Comment>id</Comment>
  4439. <NotNull>1</NotNull>
  4440. <Position>1</Position>
  4441. <StoredType>int(11)|0s</StoredType>
  4442. </column>
  4443. <column id="921" parent="284" name="change_id">
  4444. <Comment>变更id</Comment>
  4445. <NotNull>1</NotNull>
  4446. <Position>2</Position>
  4447. <StoredType>int(11)|0s</StoredType>
  4448. </column>
  4449. <column id="922" parent="284" name="order_no">
  4450. <Comment>订单编号</Comment>
  4451. <NotNull>1</NotNull>
  4452. <Position>3</Position>
  4453. <StoredType>varchar(20)|0s</StoredType>
  4454. </column>
  4455. <column id="923" parent="284" name="status">
  4456. <Comment>状态 0发起 1审核中 2通过 3驳回 4完成 5撤销</Comment>
  4457. <NotNull>1</NotNull>
  4458. <Position>4</Position>
  4459. <StoredType>int(11)|0s</StoredType>
  4460. </column>
  4461. <column id="924" parent="284" name="create_time">
  4462. <Comment>创建时间</Comment>
  4463. <DefaultExpression>CURRENT_TIMESTAMP</DefaultExpression>
  4464. <Position>5</Position>
  4465. <StoredType>datetime|0s</StoredType>
  4466. </column>
  4467. <column id="925" parent="284" name="remarks">
  4468. <Comment>备注</Comment>
  4469. <Position>6</Position>
  4470. <StoredType>varchar(512)|0s</StoredType>
  4471. </column>
  4472. <column id="926" parent="284" name="auditor">
  4473. <Comment>审核人</Comment>
  4474. <Position>7</Position>
  4475. <StoredType>varchar(36)|0s</StoredType>
  4476. </column>
  4477. <index id="927" parent="284" name="PRIMARY">
  4478. <ColNames>id</ColNames>
  4479. <Type>btree</Type>
  4480. <Unique>1</Unique>
  4481. </index>
  4482. <key id="928" parent="284" name="PRIMARY">
  4483. <NameSurrogate>1</NameSurrogate>
  4484. <Primary>1</Primary>
  4485. <UnderlyingIndexName>PRIMARY</UnderlyingIndexName>
  4486. </key>
  4487. <column id="929" parent="285" name="id">
  4488. <AutoIncrement>532</AutoIncrement>
  4489. <NotNull>1</NotNull>
  4490. <Position>1</Position>
  4491. <StoredType>int(11)|0s</StoredType>
  4492. </column>
  4493. <column id="930" parent="285" name="order_no">
  4494. <Comment>订单编号</Comment>
  4495. <NotNull>1</NotNull>
  4496. <Position>2</Position>
  4497. <StoredType>varchar(36)|0s</StoredType>
  4498. </column>
  4499. <column id="931" parent="285" name="year">
  4500. <Comment>年份</Comment>
  4501. <DefaultExpression>0</DefaultExpression>
  4502. <Position>3</Position>
  4503. <StoredType>int(1)|0s</StoredType>
  4504. </column>
  4505. <column id="932" parent="285" name="status">
  4506. <Comment>状态 0=限制,1=不限制</Comment>
  4507. <DefaultExpression>0</DefaultExpression>
  4508. <Position>4</Position>
  4509. <StoredType>int(1)|0s</StoredType>
  4510. </column>
  4511. <column id="933" parent="285" name="max_duration">
  4512. <Comment>最大公出时间</Comment>
  4513. <DefaultExpression>0</DefaultExpression>
  4514. <Position>5</Position>
  4515. <StoredType>decimal(10)|0s</StoredType>
  4516. </column>
  4517. <column id="934" parent="285" name="create_time">
  4518. <Comment>发起时间</Comment>
  4519. <DefaultExpression>CURRENT_TIMESTAMP</DefaultExpression>
  4520. <Position>6</Position>
  4521. <StoredType>datetime|0s</StoredType>
  4522. </column>
  4523. <index id="935" parent="285" name="PRIMARY">
  4524. <ColNames>id</ColNames>
  4525. <Type>btree</Type>
  4526. <Unique>1</Unique>
  4527. </index>
  4528. <key id="936" parent="285" name="PRIMARY">
  4529. <NameSurrogate>1</NameSurrogate>
  4530. <Primary>1</Primary>
  4531. <UnderlyingIndexName>PRIMARY</UnderlyingIndexName>
  4532. </key>
  4533. <column id="937" parent="286" name="id">
  4534. <AutoIncrement>140</AutoIncrement>
  4535. <NotNull>1</NotNull>
  4536. <Position>1</Position>
  4537. <StoredType>int(11)|0s</StoredType>
  4538. </column>
  4539. <column id="938" parent="286" name="uid">
  4540. <Comment>用户id</Comment>
  4541. <NotNull>1</NotNull>
  4542. <Position>2</Position>
  4543. <StoredType>varchar(36)|0s</StoredType>
  4544. </column>
  4545. <column id="939" parent="286" name="keyword">
  4546. <Comment>主营产品</Comment>
  4547. <NotNull>1</NotNull>
  4548. <Position>3</Position>
  4549. <StoredType>varchar(16)|0s</StoredType>
  4550. </column>
  4551. <index id="940" parent="286" name="PRIMARY">
  4552. <ColNames>id</ColNames>
  4553. <Type>btree</Type>
  4554. <Unique>1</Unique>
  4555. </index>
  4556. <key id="941" parent="286" name="PRIMARY">
  4557. <NameSurrogate>1</NameSurrogate>
  4558. <Primary>1</Primary>
  4559. <UnderlyingIndexName>PRIMARY</UnderlyingIndexName>
  4560. </key>
  4561. <column id="942" parent="287" name="id">
  4562. <NotNull>1</NotNull>
  4563. <Position>1</Position>
  4564. <StoredType>varchar(36)|0s</StoredType>
  4565. </column>
  4566. <column id="943" parent="287" name="uid">
  4567. <Comment>客户ID</Comment>
  4568. <Position>2</Position>
  4569. <StoredType>varchar(36)|0s</StoredType>
  4570. </column>
  4571. <column id="944" parent="287" name="name">
  4572. <Comment>联系人姓名</Comment>
  4573. <Position>3</Position>
  4574. <StoredType>varchar(32)|0s</StoredType>
  4575. </column>
  4576. <column id="945" parent="287" name="sex">
  4577. <Comment>联系人性别</Comment>
  4578. <Position>4</Position>
  4579. <StoredType>char(2)|0s</StoredType>
  4580. </column>
  4581. <column id="946" parent="287" name="mobile">
  4582. <Comment>联系人手机号</Comment>
  4583. <Position>5</Position>
  4584. <StoredType>varchar(16)|0s</StoredType>
  4585. </column>
  4586. <column id="947" parent="287" name="email">
  4587. <Comment>联系人邮箱</Comment>
  4588. <Position>6</Position>
  4589. <StoredType>varchar(64)|0s</StoredType>
  4590. </column>
  4591. <column id="948" parent="287" name="qq">
  4592. <Comment>联系人QQ</Comment>
  4593. <Position>7</Position>
  4594. <StoredType>varchar(16)|0s</StoredType>
  4595. </column>
  4596. <column id="949" parent="287" name="wechat">
  4597. <Comment>联系人微信</Comment>
  4598. <Position>8</Position>
  4599. <StoredType>varchar(64)|0s</StoredType>
  4600. </column>
  4601. <column id="950" parent="287" name="department">
  4602. <Comment>部门</Comment>
  4603. <Position>9</Position>
  4604. <StoredType>varchar(64)|0s</StoredType>
  4605. </column>
  4606. <column id="951" parent="287" name="position">
  4607. <Comment>职位</Comment>
  4608. <Position>10</Position>
  4609. <StoredType>varchar(64)|0s</StoredType>
  4610. </column>
  4611. <column id="952" parent="287" name="tel_num">
  4612. <Comment>手机号</Comment>
  4613. <Position>11</Position>
  4614. <StoredType>varchar(16)|0s</StoredType>
  4615. </column>
  4616. <column id="953" parent="287" name="major">
  4617. <Comment>主要联系人 0-否 1-是</Comment>
  4618. <DefaultExpression>0</DefaultExpression>
  4619. <NotNull>1</NotNull>
  4620. <Position>12</Position>
  4621. <StoredType>int(1)|0s</StoredType>
  4622. </column>
  4623. <column id="954" parent="287" name="aid">
  4624. <Comment>营销员ID</Comment>
  4625. <Position>13</Position>
  4626. <StoredType>varchar(36)|0s</StoredType>
  4627. </column>
  4628. <column id="955" parent="287" name="fixed_tel">
  4629. <Comment>固定电话</Comment>
  4630. <Position>14</Position>
  4631. <StoredType>varchar(16)|0s</StoredType>
  4632. </column>
  4633. <column id="956" parent="287" name="aname">
  4634. <Comment>营销员名称</Comment>
  4635. <Position>15</Position>
  4636. <StoredType>varchar(36)|0s</StoredType>
  4637. </column>
  4638. <column id="957" parent="287" name="create_time">
  4639. <Comment>创建时间</Comment>
  4640. <DefaultExpression>CURRENT_TIMESTAMP</DefaultExpression>
  4641. <Position>16</Position>
  4642. <StoredType>datetime|0s</StoredType>
  4643. </column>
  4644. <index id="958" parent="287" name="PRIMARY">
  4645. <ColNames>id</ColNames>
  4646. <Type>btree</Type>
  4647. <Unique>1</Unique>
  4648. </index>
  4649. <index id="959" parent="287" name="ocb_uid">
  4650. <ColNames>uid</ColNames>
  4651. <Type>btree</Type>
  4652. </index>
  4653. <key id="960" parent="287" name="PRIMARY">
  4654. <NameSurrogate>1</NameSurrogate>
  4655. <Primary>1</Primary>
  4656. <UnderlyingIndexName>PRIMARY</UnderlyingIndexName>
  4657. </key>
  4658. <column id="961" parent="288" name="id">
  4659. <NotNull>1</NotNull>
  4660. <Position>1</Position>
  4661. <StoredType>varchar(36)|0s</StoredType>
  4662. </column>
  4663. <column id="962" parent="288" name="uid">
  4664. <NotNull>1</NotNull>
  4665. <Position>2</Position>
  4666. <StoredType>varchar(36)|0s</StoredType>
  4667. </column>
  4668. <column id="963" parent="288" name="contacts">
  4669. <Comment>联系人</Comment>
  4670. <Position>3</Position>
  4671. <StoredType>varchar(16)|0s</StoredType>
  4672. </column>
  4673. <column id="964" parent="288" name="contact_mobile">
  4674. <Comment>联系方式</Comment>
  4675. <Position>4</Position>
  4676. <StoredType>varchar(32)|0s</StoredType>
  4677. </column>
  4678. <column id="965" parent="288" name="fixed_tel">
  4679. <Comment>固定电话</Comment>
  4680. <Position>5</Position>
  4681. <StoredType>varchar(16)|0s</StoredType>
  4682. </column>
  4683. <column id="966" parent="288" name="qq">
  4684. <Comment>QQ号</Comment>
  4685. <Position>6</Position>
  4686. <StoredType>varchar(16)|0s</StoredType>
  4687. </column>
  4688. <column id="967" parent="288" name="postal_address">
  4689. <Comment>通讯地址</Comment>
  4690. <Position>7</Position>
  4691. <StoredType>varchar(255)|0s</StoredType>
  4692. </column>
  4693. <column id="968" parent="288" name="postcode">
  4694. <Comment>邮政编码</Comment>
  4695. <Position>8</Position>
  4696. <StoredType>varchar(8)|0s</StoredType>
  4697. </column>
  4698. <column id="969" parent="288" name="unit_name">
  4699. <Comment>单位名称</Comment>
  4700. <Position>9</Position>
  4701. <StoredType>varchar(64)|0s</StoredType>
  4702. </column>
  4703. <column id="970" parent="288" name="registered_capital">
  4704. <Comment>注册资金</Comment>
  4705. <Position>10</Position>
  4706. <StoredType>decimal(8,2 digit)|0s</StoredType>
  4707. </column>
  4708. <column id="971" parent="288" name="licence_number">
  4709. <Comment>营业执照注册号</Comment>
  4710. <Position>11</Position>
  4711. <StoredType>varchar(32)|0s</StoredType>
  4712. </column>
  4713. <column id="972" parent="288" name="licence_province">
  4714. <Comment>营业执照所在地--省</Comment>
  4715. <Position>12</Position>
  4716. <StoredType>int(2)|0s</StoredType>
  4717. </column>
  4718. <column id="973" parent="288" name="licence_city">
  4719. <Comment>营业执照所在地-市</Comment>
  4720. <Position>13</Position>
  4721. <StoredType>int(3)|0s</StoredType>
  4722. </column>
  4723. <column id="974" parent="288" name="licence_area">
  4724. <Comment>营业执照所在地-区(县)</Comment>
  4725. <Position>14</Position>
  4726. <StoredType>int(4)|0s</StoredType>
  4727. </column>
  4728. <column id="975" parent="288" name="licence_scanning_url">
  4729. <Comment>营业执照副本扫描件URL</Comment>
  4730. <Position>15</Position>
  4731. <StoredType>varchar(255)|0s</StoredType>
  4732. </column>
  4733. <column id="976" parent="288" name="org_code">
  4734. <Comment>组织机构代码证号码</Comment>
  4735. <Position>16</Position>
  4736. <StoredType>varchar(32)|0s</StoredType>
  4737. </column>
  4738. <column id="977" parent="288" name="org_code_url">
  4739. <Comment>组织机构代码证URL</Comment>
  4740. <Position>17</Position>
  4741. <StoredType>varchar(255)|0s</StoredType>
  4742. </column>
  4743. <column id="978" parent="288" name="bank_account">
  4744. <Comment>银行账号</Comment>
  4745. <Position>18</Position>
  4746. <StoredType>varchar(32)|0s</StoredType>
  4747. </column>
  4748. <column id="979" parent="288" name="banks">
  4749. <Comment>开户行</Comment>
  4750. <Position>19</Position>
  4751. <StoredType>varchar(32)|0s</StoredType>
  4752. </column>
  4753. <column id="980" parent="288" name="bank_branch">
  4754. <Comment>开户行支行</Comment>
  4755. <Position>20</Position>
  4756. <StoredType>varchar(32)|0s</StoredType>
  4757. </column>
  4758. <column id="981" parent="288" name="bank_card_number">
  4759. <Comment>银行卡号</Comment>
  4760. <Position>21</Position>
  4761. <StoredType>varchar(32)|0s</StoredType>
  4762. </column>
  4763. <column id="982" parent="288" name="validation_amount">
  4764. <Comment>打入账内信息</Comment>
  4765. <DefaultExpression>0.0000</DefaultExpression>
  4766. <Position>22</Position>
  4767. <StoredType>decimal(6,4 digit)|0s</StoredType>
  4768. </column>
  4769. <column id="983" parent="288" name="identity_type">
  4770. <Comment>身份类型</Comment>
  4771. <Position>23</Position>
  4772. <StoredType>int(1)|0s</StoredType>
  4773. </column>
  4774. <column id="984" parent="288" name="location_province">
  4775. <Comment>开户行所在地-省</Comment>
  4776. <Position>24</Position>
  4777. <StoredType>int(2)|0s</StoredType>
  4778. </column>
  4779. <column id="985" parent="288" name="location_city">
  4780. <Comment>开户行所在地-市</Comment>
  4781. <Position>25</Position>
  4782. <StoredType>int(3)|0s</StoredType>
  4783. </column>
  4784. <column id="986" parent="288" name="location_area">
  4785. <Comment>开户行所在地-区(县)</Comment>
  4786. <Position>26</Position>
  4787. <StoredType>int(4)|0s</StoredType>
  4788. </column>
  4789. <column id="987" parent="288" name="legal_person">
  4790. <Comment>法人</Comment>
  4791. <Position>27</Position>
  4792. <StoredType>varchar(16)|0s</StoredType>
  4793. </column>
  4794. <column id="988" parent="288" name="legal_person_id_card">
  4795. <Comment>法人身份证号</Comment>
  4796. <Position>28</Position>
  4797. <StoredType>varchar(32)|0s</StoredType>
  4798. </column>
  4799. <column id="989" parent="288" name="last_year_tax_report_url">
  4800. <Comment>上年度纳税报表</Comment>
  4801. <Position>29</Position>
  4802. <StoredType>varchar(255)|0s</StoredType>
  4803. </column>
  4804. <column id="990" parent="288" name="audit_status">
  4805. <Comment>审核状态</Comment>
  4806. <DefaultExpression>0</DefaultExpression>
  4807. <Position>30</Position>
  4808. <StoredType>int(1)|0s</StoredType>
  4809. </column>
  4810. <column id="991" parent="288" name="process">
  4811. <Comment>实名认证流程</Comment>
  4812. <DefaultExpression>0</DefaultExpression>
  4813. <Position>31</Position>
  4814. <StoredType>int(1)|0s</StoredType>
  4815. </column>
  4816. <column id="992" parent="288" name="wrong_count">
  4817. <Comment>输入打款金额错误次数</Comment>
  4818. <DefaultExpression>0</DefaultExpression>
  4819. <Position>32</Position>
  4820. <StoredType>int(1)|0s</StoredType>
  4821. </column>
  4822. <column id="993" parent="288" name="payment_date">
  4823. <Comment>打款日期</Comment>
  4824. <Position>33</Position>
  4825. <StoredType>datetime|0s</StoredType>
  4826. </column>
  4827. <column id="994" parent="288" name="listed">
  4828. <Comment>是否上市</Comment>
  4829. <Position>34</Position>
  4830. <StoredType>int(1)|0s</StoredType>
  4831. </column>
  4832. <column id="995" parent="288" name="listed_date">
  4833. <Comment>上市时间</Comment>
  4834. <Position>35</Position>
  4835. <StoredType>datetime|0s</StoredType>
  4836. </column>
  4837. <column id="996" parent="288" name="listed_type">
  4838. <Comment>上市类型</Comment>
  4839. <Position>36</Position>
  4840. <StoredType>int(1)|0s</StoredType>
  4841. </column>
  4842. <column id="997" parent="288" name="stock_code">
  4843. <Comment>股票代码</Comment>
  4844. <Position>37</Position>
  4845. <StoredType>varchar(32)|0s</StoredType>
  4846. </column>
  4847. <column id="998" parent="288" name="certificate_number">
  4848. <Comment>高企认定证书编号</Comment>
  4849. <Position>38</Position>
  4850. <StoredType>varchar(36)|0s</StoredType>
  4851. </column>
  4852. <column id="999" parent="288" name="issuing_date">
  4853. <Comment>高企认定发证日期</Comment>
  4854. <Position>39</Position>
  4855. <StoredType>datetime|0s</StoredType>
  4856. </column>
  4857. <column id="1000" parent="288" name="cog_contacts">
  4858. <Comment>高企认定联系人及联系方式</Comment>
  4859. <Position>40</Position>
  4860. <StoredType>int(1)|0s</StoredType>
  4861. </column>
  4862. <column id="1001" parent="288" name="tech_principal">
  4863. <Comment>高企技术负责人</Comment>
  4864. <Position>41</Position>
  4865. <StoredType>varchar(36)|0s</StoredType>
  4866. </column>
  4867. <column id="1002" parent="288" name="contacts_fixed_tel">
  4868. <Comment>联系人固定电话</Comment>
  4869. <Position>42</Position>
  4870. <StoredType>varchar(16)|0s</StoredType>
  4871. </column>
  4872. <column id="1003" parent="288" name="contacts_fax">
  4873. <Comment>联系人传真</Comment>
  4874. <Position>43</Position>
  4875. <StoredType>varchar(16)|0s</StoredType>
  4876. </column>
  4877. <column id="1004" parent="288" name="legal_person_tel">
  4878. <Comment>法人电话</Comment>
  4879. <Position>44</Position>
  4880. <StoredType>varchar(16)|0s</StoredType>
  4881. </column>
  4882. <column id="1005" parent="288" name="legal_person_fax">
  4883. <Comment>法人传真</Comment>
  4884. <Position>45</Position>
  4885. <StoredType>varchar(16)|0s</StoredType>
  4886. </column>
  4887. <column id="1006" parent="288" name="legal_person_email">
  4888. <Comment>法人Email</Comment>
  4889. <Position>46</Position>
  4890. <StoredType>varchar(128)|0s</StoredType>
  4891. </column>
  4892. <column id="1007" parent="288" name="registration_time">
  4893. <Comment>注册时间</Comment>
  4894. <Position>47</Position>
  4895. <StoredType>datetime|0s</StoredType>
  4896. </column>
  4897. <column id="1008" parent="288" name="ratepay_code">
  4898. <Comment>税务登记号</Comment>
  4899. <Position>48</Position>
  4900. <StoredType>varchar(36)|0s</StoredType>
  4901. </column>
  4902. <column id="1009" parent="288" name="industry">
  4903. <Comment>所属行业</Comment>
  4904. <Position>49</Position>
  4905. <StoredType>varchar(64)|0s</StoredType>
  4906. </column>
  4907. <column id="1010" parent="288" name="enterprise_scale">
  4908. <Comment>企业规模</Comment>
  4909. <Position>50</Position>
  4910. <StoredType>varchar(16)|0s</StoredType>
  4911. </column>
  4912. <column id="1011" parent="288" name="register_type">
  4913. <Comment>注册类型</Comment>
  4914. <Position>51</Position>
  4915. <StoredType>varchar(8)|0s</StoredType>
  4916. </column>
  4917. <column id="1012" parent="288" name="foreign_investment">
  4918. <Comment>外资来源地</Comment>
  4919. <Position>52</Position>
  4920. <StoredType>varchar(32)|0s</StoredType>
  4921. </column>
  4922. <column id="1013" parent="288" name="field">
  4923. <Comment>领域</Comment>
  4924. <Position>53</Position>
  4925. <StoredType>varchar(16)|0s</StoredType>
  4926. </column>
  4927. <column id="1014" parent="288" name="tax_authority">
  4928. <Comment>企业所得税主管税务机关(0--国税,1--地税)</Comment>
  4929. <Position>54</Position>
  4930. <StoredType>int(1)|0s</StoredType>
  4931. </column>
  4932. <column id="1015" parent="288" name="ratepay_method">
  4933. <Comment>企业所得税征收方式(0--查账征收,1--核定征收)</Comment>
  4934. <Position>55</Position>
  4935. <StoredType>int(1)|0s</StoredType>
  4936. </column>
  4937. <column id="1016" parent="288" name="high_tech_zone">
  4938. <Comment>是否属于国家级高新区内企业(0--否,1--是)</Comment>
  4939. <Position>56</Position>
  4940. <StoredType>int(1)|0s</StoredType>
  4941. </column>
  4942. <column id="1017" parent="288" name="risk_investment">
  4943. <Comment>是否引入风险投资(0--否,1--是)</Comment>
  4944. <Position>57</Position>
  4945. <StoredType>int(1)|0s</StoredType>
  4946. </column>
  4947. <column id="1018" parent="288" name="business_scope">
  4948. <Comment>经营范围</Comment>
  4949. <Position>58</Position>
  4950. <StoredType>varchar(400)|0s</StoredType>
  4951. </column>
  4952. <column id="1019" parent="288" name="high_tech_name">
  4953. <Comment>国家级高新区名称</Comment>
  4954. <Position>59</Position>
  4955. <StoredType>varchar(32)|0s</StoredType>
  4956. </column>
  4957. <column id="1020" parent="288" name="patent_prory_statement_url">
  4958. <Comment>专利代理委托书URL</Comment>
  4959. <Position>60</Position>
  4960. <StoredType>varchar(255)|0s</StoredType>
  4961. </column>
  4962. <column id="1021" parent="288" name="international">
  4963. <Comment>国际化(0--否 1--是)</Comment>
  4964. <Position>61</Position>
  4965. <StoredType>int(1)|0s</StoredType>
  4966. </column>
  4967. <column id="1022" parent="288" name="review_instructions">
  4968. <Comment>审查说明</Comment>
  4969. <Position>62</Position>
  4970. <StoredType>varchar(128)|0s</StoredType>
  4971. </column>
  4972. <column id="1023" parent="288" name="investment">
  4973. <Comment>投资机构 0-否 1-是</Comment>
  4974. <DefaultExpression>0</DefaultExpression>
  4975. <Position>63</Position>
  4976. <StoredType>int(1)|0s</StoredType>
  4977. </column>
  4978. <column id="1024" parent="288" name="year_sales_amount">
  4979. <Comment>年度销售额</Comment>
  4980. <Position>64</Position>
  4981. <StoredType>decimal(8,2 digit)|0s</StoredType>
  4982. </column>
  4983. <column id="1025" parent="288" name="last_year_research_amount">
  4984. <Comment>上年度研发费用</Comment>
  4985. <Position>65</Position>
  4986. <StoredType>decimal(8,2 digit)|0s</StoredType>
  4987. </column>
  4988. <column id="1026" parent="288" name="assets">
  4989. <Comment>总资产情况</Comment>
  4990. <Position>66</Position>
  4991. <StoredType>decimal(8,2 digit)|0s</StoredType>
  4992. </column>
  4993. <column id="1027" parent="288" name="qualification">
  4994. <Comment>企业资质情况(特殊资质)</Comment>
  4995. <Position>67</Position>
  4996. <StoredType>varchar(1024)|0s</StoredType>
  4997. </column>
  4998. <column id="1028" parent="288" name="cooperation_situation">
  4999. <Comment>企业与高校院所(科研单位)合作情况</Comment>
  5000. <Position>68</Position>
  5001. <StoredType>varchar(1024)|0s</StoredType>
  5002. </column>
  5003. <column id="1029" parent="288" name="honor_picture">
  5004. <Comment>荣誉资质图片</Comment>
  5005. <Position>69</Position>
  5006. <StoredType>longtext|0s</StoredType>
  5007. </column>
  5008. <column id="1030" parent="288" name="sales_target">
  5009. <Comment>销售目标</Comment>
  5010. <Position>70</Position>
  5011. <StoredType>varchar(512)|0s</StoredType>
  5012. </column>
  5013. <column id="1031" parent="288" name="intended_project">
  5014. <Comment>意向项目</Comment>
  5015. <Position>71</Position>
  5016. <StoredType>varchar(512)|0s</StoredType>
  5017. </column>
  5018. <column id="1032" parent="288" name="contacts_dep">
  5019. <Comment>联系人部门</Comment>
  5020. <Position>72</Position>
  5021. <StoredType>varchar(64)|0s</StoredType>
  5022. </column>
  5023. <column id="1033" parent="288" name="contacts_position">
  5024. <Comment>联系人职位</Comment>
  5025. <Position>73</Position>
  5026. <StoredType>varchar(64)|0s</StoredType>
  5027. </column>
  5028. <column id="1034" parent="288" name="industry_name">
  5029. <Comment>所属行业名称</Comment>
  5030. <Position>74</Position>
  5031. <StoredType>varchar(64)|0s</StoredType>
  5032. </column>
  5033. <index id="1035" parent="288" name="PRIMARY">
  5034. <ColNames>id</ColNames>
  5035. <Type>btree</Type>
  5036. <Unique>1</Unique>
  5037. </index>
  5038. <index id="1036" parent="288" name="u_uid">
  5039. <ColNames>uid</ColNames>
  5040. <Type>btree</Type>
  5041. <Unique>1</Unique>
  5042. </index>
  5043. <index id="1037" parent="288" name="IDX_Organization_Identity_Uid">
  5044. <ColNames>uid</ColNames>
  5045. <Type>btree</Type>
  5046. </index>
  5047. <key id="1038" parent="288" name="PRIMARY">
  5048. <NameSurrogate>1</NameSurrogate>
  5049. <Primary>1</Primary>
  5050. <UnderlyingIndexName>PRIMARY</UnderlyingIndexName>
  5051. </key>
  5052. <key id="1039" parent="288" name="u_uid">
  5053. <UnderlyingIndexName>u_uid</UnderlyingIndexName>
  5054. </key>
  5055. <column id="1040" parent="289" name="id">
  5056. <AutoIncrement>22</AutoIncrement>
  5057. <NotNull>1</NotNull>
  5058. <Position>1</Position>
  5059. <StoredType>int(11)|0s</StoredType>
  5060. </column>
  5061. <column id="1041" parent="289" name="uid">
  5062. <Comment>用户id</Comment>
  5063. <NotNull>1</NotNull>
  5064. <Position>2</Position>
  5065. <StoredType>varchar(36)|0s</StoredType>
  5066. </column>
  5067. <column id="1042" parent="289" name="keyword">
  5068. <Comment>销售目标</Comment>
  5069. <NotNull>1</NotNull>
  5070. <Position>3</Position>
  5071. <StoredType>varchar(16)|0s</StoredType>
  5072. </column>
  5073. <index id="1043" parent="289" name="PRIMARY">
  5074. <ColNames>id</ColNames>
  5075. <Type>btree</Type>
  5076. <Unique>1</Unique>
  5077. </index>
  5078. <key id="1044" parent="289" name="PRIMARY">
  5079. <NameSurrogate>1</NameSurrogate>
  5080. <Primary>1</Primary>
  5081. <UnderlyingIndexName>PRIMARY</UnderlyingIndexName>
  5082. </key>
  5083. <column id="1045" parent="290" name="id">
  5084. <AutoIncrement>1705</AutoIncrement>
  5085. <NotNull>1</NotNull>
  5086. <Position>1</Position>
  5087. <StoredType>int(11)|0s</StoredType>
  5088. </column>
  5089. <column id="1046" parent="290" name="patent_no">
  5090. <Comment>专利编号</Comment>
  5091. <NotNull>1</NotNull>
  5092. <Position>2</Position>
  5093. <StoredType>varchar(20)|0s</StoredType>
  5094. </column>
  5095. <column id="1047" parent="290" name="name">
  5096. <Comment>名称</Comment>
  5097. <NotNull>1</NotNull>
  5098. <Position>3</Position>
  5099. <StoredType>varchar(64)|0s</StoredType>
  5100. </column>
  5101. <column id="1048" parent="290" name="type">
  5102. <Comment>专利名称 0实用新型 1发明专利 2外观专利 3 其他</Comment>
  5103. <NotNull>1</NotNull>
  5104. <Position>4</Position>
  5105. <StoredType>int(11)|0s</StoredType>
  5106. </column>
  5107. <column id="1049" parent="290" name="status">
  5108. <Comment>状态 0 未提醒 1 剩余90天 2剩余60天 3剩余30天 4剩余15天 5剩余7天</Comment>
  5109. <NotNull>1</NotNull>
  5110. <Position>5</Position>
  5111. <StoredType>int(11)|0s</StoredType>
  5112. </column>
  5113. <column id="1050" parent="290" name="apply_date">
  5114. <Comment>申请时间</Comment>
  5115. <Position>6</Position>
  5116. <StoredType>date|0s</StoredType>
  5117. </column>
  5118. <column id="1051" parent="290" name="authorization_date">
  5119. <Comment>授权时间</Comment>
  5120. <Position>7</Position>
  5121. <StoredType>date|0s</StoredType>
  5122. </column>
  5123. <column id="1052" parent="290" name="patent_amount">
  5124. <Comment>金额</Comment>
  5125. <DefaultExpression>0.0000</DefaultExpression>
  5126. <NotNull>1</NotNull>
  5127. <Position>8</Position>
  5128. <StoredType>decimal(10,4 digit)|0s</StoredType>
  5129. </column>
  5130. <column id="1053" parent="290" name="applicant">
  5131. <Comment>申请人</Comment>
  5132. <Position>9</Position>
  5133. <StoredType>varchar(20)|0s</StoredType>
  5134. </column>
  5135. <column id="1054" parent="290" name="province">
  5136. <Comment>所在地-省份</Comment>
  5137. <Position>10</Position>
  5138. <StoredType>int(2)|0s</StoredType>
  5139. </column>
  5140. <column id="1055" parent="290" name="contact_mobile">
  5141. <Comment>联系方式</Comment>
  5142. <Position>11</Position>
  5143. <StoredType>varchar(16)|0s</StoredType>
  5144. </column>
  5145. <column id="1056" parent="290" name="email">
  5146. <Comment>邮箱</Comment>
  5147. <Position>12</Position>
  5148. <StoredType>varchar(128)|0s</StoredType>
  5149. </column>
  5150. <column id="1057" parent="290" name="certificate_url">
  5151. <Comment>证件URL</Comment>
  5152. <Position>13</Position>
  5153. <StoredType>varchar(512)|0s</StoredType>
  5154. </column>
  5155. <column id="1058" parent="290" name="create_time">
  5156. <Comment>创建时间</Comment>
  5157. <DefaultExpression>CURRENT_TIMESTAMP</DefaultExpression>
  5158. <Position>14</Position>
  5159. <StoredType>datetime|0s</StoredType>
  5160. </column>
  5161. <column id="1059" parent="290" name="update_time">
  5162. <Comment>更新时间</Comment>
  5163. <DefaultExpression>CURRENT_TIMESTAMP</DefaultExpression>
  5164. <OnUpdate>CURRENT_TIMESTAMP</OnUpdate>
  5165. <Position>15</Position>
  5166. <StoredType>datetime|0s</StoredType>
  5167. </column>
  5168. <column id="1060" parent="290" name="aid">
  5169. <Comment>操作人</Comment>
  5170. <NotNull>1</NotNull>
  5171. <Position>16</Position>
  5172. <StoredType>varchar(36)|0s</StoredType>
  5173. </column>
  5174. <column id="1061" parent="290" name="years">
  5175. <Comment>年份</Comment>
  5176. <DefaultExpression>0</DefaultExpression>
  5177. <Position>17</Position>
  5178. <StoredType>int(11)|0s</StoredType>
  5179. </column>
  5180. <column id="1062" parent="290" name="uid">
  5181. <Comment>客户编号</Comment>
  5182. <Position>18</Position>
  5183. <StoredType>varchar(36)|0s</StoredType>
  5184. </column>
  5185. <column id="1063" parent="290" name="holders">
  5186. <Comment>权利人</Comment>
  5187. <Position>19</Position>
  5188. <StoredType>varchar(64)|0s</StoredType>
  5189. </column>
  5190. <column id="1064" parent="290" name="inventor">
  5191. <Comment>发明人</Comment>
  5192. <Position>20</Position>
  5193. <StoredType>varchar(64)|0s</StoredType>
  5194. </column>
  5195. <column id="1065" parent="290" name="annual_fee_status">
  5196. <Comment>年费状态 0无信息 1代缴费</Comment>
  5197. <DefaultExpression>0</DefaultExpression>
  5198. <Position>21</Position>
  5199. <StoredType>int(1)|0s</StoredType>
  5200. </column>
  5201. <column id="1066" parent="290" name="salesman_remind">
  5202. <Comment>营销员是否提醒 0未通知 1已通知</Comment>
  5203. <DefaultExpression>0</DefaultExpression>
  5204. <Position>22</Position>
  5205. <StoredType>int(1)|0s</StoredType>
  5206. </column>
  5207. <column id="1067" parent="290" name="tid">
  5208. <Comment>项目编号</Comment>
  5209. <Position>23</Position>
  5210. <StoredType>int(11)|0s</StoredType>
  5211. </column>
  5212. <column id="1068" parent="290" name="new_type">
  5213. <Comment>是否为新专利</Comment>
  5214. <DefaultExpression>0</DefaultExpression>
  5215. <Position>24</Position>
  5216. <StoredType>int(1)|0s</StoredType>
  5217. </column>
  5218. <column id="1069" parent="290" name="delaying_amount">
  5219. <Comment>滞纳金</Comment>
  5220. <DefaultExpression>0.0000</DefaultExpression>
  5221. <NotNull>1</NotNull>
  5222. <Position>25</Position>
  5223. <StoredType>decimal(10,4 digit)|0s</StoredType>
  5224. </column>
  5225. <column id="1070" parent="290" name="recovery_amount">
  5226. <Comment>恢复金</Comment>
  5227. <DefaultExpression>0.0000</DefaultExpression>
  5228. <NotNull>1</NotNull>
  5229. <Position>26</Position>
  5230. <StoredType>decimal(10,4 digit)|0s</StoredType>
  5231. </column>
  5232. <column id="1071" parent="290" name="input_id">
  5233. <Comment>录入人</Comment>
  5234. <Position>27</Position>
  5235. <StoredType>varchar(64)|0s</StoredType>
  5236. </column>
  5237. <column id="1072" parent="290" name="end_date">
  5238. <Comment>结束时间</Comment>
  5239. <Position>28</Position>
  5240. <StoredType>date|0s</StoredType>
  5241. </column>
  5242. <index id="1073" parent="290" name="PRIMARY">
  5243. <ColNames>id</ColNames>
  5244. <Type>btree</Type>
  5245. <Unique>1</Unique>
  5246. </index>
  5247. <index id="1074" parent="290" name="patent_new_no">
  5248. <ColNames>patent_no</ColNames>
  5249. <Type>btree</Type>
  5250. </index>
  5251. <key id="1075" parent="290" name="PRIMARY">
  5252. <NameSurrogate>1</NameSurrogate>
  5253. <Primary>1</Primary>
  5254. <UnderlyingIndexName>PRIMARY</UnderlyingIndexName>
  5255. </key>
  5256. <column id="1076" parent="291" name="id">
  5257. <AutoIncrement>908</AutoIncrement>
  5258. <NotNull>1</NotNull>
  5259. <Position>1</Position>
  5260. <StoredType>int(11)|0s</StoredType>
  5261. </column>
  5262. <column id="1077" parent="291" name="content">
  5263. <Comment>内容</Comment>
  5264. <Position>2</Position>
  5265. <StoredType>varchar(512)|0s</StoredType>
  5266. </column>
  5267. <column id="1078" parent="291" name="create_time">
  5268. <Comment>创建时间</Comment>
  5269. <DefaultExpression>CURRENT_TIMESTAMP</DefaultExpression>
  5270. <Position>3</Position>
  5271. <StoredType>datetime|0s</StoredType>
  5272. </column>
  5273. <column id="1079" parent="291" name="pid">
  5274. <Comment>专利ID</Comment>
  5275. <Position>4</Position>
  5276. <StoredType>int(11)|0s</StoredType>
  5277. </column>
  5278. <index id="1080" parent="291" name="PRIMARY">
  5279. <ColNames>id</ColNames>
  5280. <Type>btree</Type>
  5281. <Unique>1</Unique>
  5282. </index>
  5283. <key id="1081" parent="291" name="PRIMARY">
  5284. <NameSurrogate>1</NameSurrogate>
  5285. <Primary>1</Primary>
  5286. <UnderlyingIndexName>PRIMARY</UnderlyingIndexName>
  5287. </key>
  5288. <column id="1082" parent="292" name="id">
  5289. <AutoIncrement>7441</AutoIncrement>
  5290. <NotNull>1</NotNull>
  5291. <Position>1</Position>
  5292. <StoredType>int(11)|0s</StoredType>
  5293. </column>
  5294. <column id="1083" parent="292" name="pid">
  5295. <Comment>专利id</Comment>
  5296. <NotNull>1</NotNull>
  5297. <Position>2</Position>
  5298. <StoredType>int(11)|0s</StoredType>
  5299. </column>
  5300. <column id="1084" parent="292" name="years">
  5301. <Comment>年份</Comment>
  5302. <Position>3</Position>
  5303. <StoredType>int(11)|0s</StoredType>
  5304. </column>
  5305. <column id="1085" parent="292" name="patent_amount">
  5306. <Comment>金额</Comment>
  5307. <DefaultExpression>0.0000</DefaultExpression>
  5308. <NotNull>1</NotNull>
  5309. <Position>4</Position>
  5310. <StoredType>decimal(10,4 digit)|0s</StoredType>
  5311. </column>
  5312. <column id="1086" parent="292" name="end_date">
  5313. <Comment>截止时间</Comment>
  5314. <NotNull>1</NotNull>
  5315. <Position>5</Position>
  5316. <StoredType>date|0s</StoredType>
  5317. </column>
  5318. <column id="1087" parent="292" name="status">
  5319. <Comment>状态 0未缴费 1已缴费</Comment>
  5320. <Position>6</Position>
  5321. <StoredType>int(11)|0s</StoredType>
  5322. </column>
  5323. <column id="1088" parent="292" name="create_time">
  5324. <Comment>发起时间</Comment>
  5325. <DefaultExpression>CURRENT_TIMESTAMP</DefaultExpression>
  5326. <Position>7</Position>
  5327. <StoredType>datetime|0s</StoredType>
  5328. </column>
  5329. <index id="1089" parent="292" name="PRIMARY">
  5330. <ColNames>id</ColNames>
  5331. <Type>btree</Type>
  5332. <Unique>1</Unique>
  5333. </index>
  5334. <index id="1090" parent="292" name="patent_payment_details_pid">
  5335. <ColNames>pid</ColNames>
  5336. <Type>btree</Type>
  5337. </index>
  5338. <key id="1091" parent="292" name="PRIMARY">
  5339. <NameSurrogate>1</NameSurrogate>
  5340. <Primary>1</Primary>
  5341. <UnderlyingIndexName>PRIMARY</UnderlyingIndexName>
  5342. </key>
  5343. <column id="1092" parent="293" name="id">
  5344. <AutoIncrement>41</AutoIncrement>
  5345. <NotNull>1</NotNull>
  5346. <Position>1</Position>
  5347. <StoredType>int(11)|0s</StoredType>
  5348. </column>
  5349. <column id="1093" parent="293" name="type">
  5350. <Comment>专利分类 0实用新型 1发明专利 2外观专利 </Comment>
  5351. <NotNull>1</NotNull>
  5352. <Position>2</Position>
  5353. <StoredType>int(11)|0s</StoredType>
  5354. </column>
  5355. <column id="1094" parent="293" name="year">
  5356. <Comment>年份</Comment>
  5357. <Position>3</Position>
  5358. <StoredType>int(11)|0s</StoredType>
  5359. </column>
  5360. <column id="1095" parent="293" name="patent_amount">
  5361. <Comment>金额</Comment>
  5362. <DefaultExpression>0.0000</DefaultExpression>
  5363. <NotNull>1</NotNull>
  5364. <Position>4</Position>
  5365. <StoredType>decimal(10,4 digit)|0s</StoredType>
  5366. </column>
  5367. <column id="1096" parent="293" name="reduction_amount">
  5368. <Comment>费减金额</Comment>
  5369. <DefaultExpression>0.0000</DefaultExpression>
  5370. <NotNull>1</NotNull>
  5371. <Position>5</Position>
  5372. <StoredType>decimal(10,4 digit)|0s</StoredType>
  5373. </column>
  5374. <column id="1097" parent="293" name="create_time">
  5375. <Comment>发起时间</Comment>
  5376. <DefaultExpression>CURRENT_TIMESTAMP</DefaultExpression>
  5377. <Position>6</Position>
  5378. <StoredType>datetime|0s</StoredType>
  5379. </column>
  5380. <index id="1098" parent="293" name="PRIMARY">
  5381. <ColNames>id</ColNames>
  5382. <Type>btree</Type>
  5383. <Unique>1</Unique>
  5384. </index>
  5385. <key id="1099" parent="293" name="PRIMARY">
  5386. <NameSurrogate>1</NameSurrogate>
  5387. <Primary>1</Primary>
  5388. <UnderlyingIndexName>PRIMARY</UnderlyingIndexName>
  5389. </key>
  5390. <column id="1100" parent="294" name="id">
  5391. <AutoIncrement>153</AutoIncrement>
  5392. <Comment>编号</Comment>
  5393. <NotNull>1</NotNull>
  5394. <Position>1</Position>
  5395. <StoredType>int(11)|0s</StoredType>
  5396. </column>
  5397. <column id="1101" parent="294" name="pid">
  5398. <Comment>付款编号</Comment>
  5399. <Position>2</Position>
  5400. <StoredType>int(11)|0s</StoredType>
  5401. </column>
  5402. <column id="1102" parent="294" name="status">
  5403. <Comment>0发起 1通过 2驳回</Comment>
  5404. <Position>3</Position>
  5405. <StoredType>int(11)|0s</StoredType>
  5406. </column>
  5407. <column id="1103" parent="294" name="remarks">
  5408. <Comment>备注</Comment>
  5409. <Position>4</Position>
  5410. <StoredType>varchar(512)|0s</StoredType>
  5411. </column>
  5412. <column id="1104" parent="294" name="aid">
  5413. <Comment>操作人</Comment>
  5414. <Position>5</Position>
  5415. <StoredType>varchar(36)|0s</StoredType>
  5416. </column>
  5417. <column id="1105" parent="294" name="aname">
  5418. <Comment>操作名称</Comment>
  5419. <Position>6</Position>
  5420. <StoredType>varchar(36)|0s</StoredType>
  5421. </column>
  5422. <column id="1106" parent="294" name="create_time">
  5423. <Comment>创建时间</Comment>
  5424. <DefaultExpression>CURRENT_TIMESTAMP</DefaultExpression>
  5425. <Position>7</Position>
  5426. <StoredType>datetime|0s</StoredType>
  5427. </column>
  5428. <index id="1107" parent="294" name="PRIMARY">
  5429. <ColNames>id</ColNames>
  5430. <Type>btree</Type>
  5431. <Unique>1</Unique>
  5432. </index>
  5433. <key id="1108" parent="294" name="PRIMARY">
  5434. <NameSurrogate>1</NameSurrogate>
  5435. <Primary>1</Primary>
  5436. <UnderlyingIndexName>PRIMARY</UnderlyingIndexName>
  5437. </key>
  5438. <column id="1109" parent="295" name="id">
  5439. <AutoIncrement>26</AutoIncrement>
  5440. <NotNull>1</NotNull>
  5441. <Position>1</Position>
  5442. <StoredType>int(11)|0s</StoredType>
  5443. </column>
  5444. <column id="1110" parent="295" name="tid">
  5445. <Comment>项目编号</Comment>
  5446. <NotNull>1</NotNull>
  5447. <Position>2</Position>
  5448. <StoredType>int(11)|0s</StoredType>
  5449. </column>
  5450. <column id="1111" parent="295" name="aid">
  5451. <Comment>操作人</Comment>
  5452. <Position>3</Position>
  5453. <StoredType>varchar(36)|0s</StoredType>
  5454. </column>
  5455. <column id="1112" parent="295" name="remarks">
  5456. <Comment>备注</Comment>
  5457. <Position>4</Position>
  5458. <StoredType>varchar(256)|0s</StoredType>
  5459. </column>
  5460. <column id="1113" parent="295" name="status">
  5461. <Comment>状态 0发起 1修改</Comment>
  5462. <Position>5</Position>
  5463. <StoredType>int(11)|0s</StoredType>
  5464. </column>
  5465. <column id="1114" parent="295" name="create_time">
  5466. <Comment>发起时间</Comment>
  5467. <DefaultExpression>CURRENT_TIMESTAMP</DefaultExpression>
  5468. <Position>6</Position>
  5469. <StoredType>datetime|0s</StoredType>
  5470. </column>
  5471. <index id="1115" parent="295" name="PRIMARY">
  5472. <ColNames>id</ColNames>
  5473. <Type>btree</Type>
  5474. <Unique>1</Unique>
  5475. </index>
  5476. <key id="1116" parent="295" name="PRIMARY">
  5477. <NameSurrogate>1</NameSurrogate>
  5478. <Primary>1</Primary>
  5479. <UnderlyingIndexName>PRIMARY</UnderlyingIndexName>
  5480. </key>
  5481. <column id="1117" parent="296" name="id">
  5482. <AutoIncrement>1</AutoIncrement>
  5483. <NotNull>1</NotNull>
  5484. <Position>1</Position>
  5485. <StoredType>int(11)|0s</StoredType>
  5486. </column>
  5487. <column id="1118" parent="296" name="prid">
  5488. <Comment>公出编号</Comment>
  5489. <NotNull>1</NotNull>
  5490. <Position>2</Position>
  5491. <StoredType>int(1)|0s</StoredType>
  5492. </column>
  5493. <column id="1119" parent="296" name="aid">
  5494. <Comment>协单意见人</Comment>
  5495. <Position>3</Position>
  5496. <StoredType>varchar(36)|0s</StoredType>
  5497. </column>
  5498. <column id="1120" parent="296" name="aname">
  5499. <Comment>协单意见人名称</Comment>
  5500. <Position>4</Position>
  5501. <StoredType>varchar(36)|0s</StoredType>
  5502. </column>
  5503. <column id="1121" parent="296" name="remarks">
  5504. <Comment>审核人编号</Comment>
  5505. <Position>5</Position>
  5506. <StoredType>varchar(512)|0s</StoredType>
  5507. </column>
  5508. <column id="1122" parent="296" name="create_time">
  5509. <Comment>创建时间</Comment>
  5510. <DefaultExpression>CURRENT_TIMESTAMP</DefaultExpression>
  5511. <Position>6</Position>
  5512. <StoredType>datetime|0s</StoredType>
  5513. </column>
  5514. <index id="1123" parent="296" name="PRIMARY">
  5515. <ColNames>id</ColNames>
  5516. <Type>btree</Type>
  5517. <Unique>1</Unique>
  5518. </index>
  5519. <key id="1124" parent="296" name="PRIMARY">
  5520. <NameSurrogate>1</NameSurrogate>
  5521. <Primary>1</Primary>
  5522. <UnderlyingIndexName>PRIMARY</UnderlyingIndexName>
  5523. </key>
  5524. <column id="1125" parent="297" name="id">
  5525. <AutoIncrement>1</AutoIncrement>
  5526. <NotNull>1</NotNull>
  5527. <Position>1</Position>
  5528. <StoredType>int(11)|0s</StoredType>
  5529. </column>
  5530. <column id="1126" parent="297" name="prid">
  5531. <Comment>公出详情编号</Comment>
  5532. <NotNull>1</NotNull>
  5533. <Position>2</Position>
  5534. <StoredType>int(11)|0s</StoredType>
  5535. </column>
  5536. <column id="1127" parent="297" name="type">
  5537. <Comment>分类 0=其他,1=高企认定,2=会员服务,3=科技项目,4=研动力系统,5=知识产权,6=军工,7=涉密,8=技术合同登记,9=第三方认证项目</Comment>
  5538. <Position>3</Position>
  5539. <StoredType>varchar(64)|0s</StoredType>
  5540. </column>
  5541. <column id="1128" parent="297" name="content_type">
  5542. <Comment>内容 0=其他,1=会议,2=写方案,3=接待</Comment>
  5543. <Position>4</Position>
  5544. <StoredType>varchar(11)|0s</StoredType>
  5545. </column>
  5546. <column id="1129" parent="297" name="content">
  5547. <Comment>内容说明</Comment>
  5548. <Position>5</Position>
  5549. <StoredType>varchar(512)|0s</StoredType>
  5550. </column>
  5551. <index id="1130" parent="297" name="PRIMARY">
  5552. <ColNames>id</ColNames>
  5553. <Type>btree</Type>
  5554. <Unique>1</Unique>
  5555. </index>
  5556. <index id="1131" parent="297" name="public_release_clock_index">
  5557. <ColNames>prid</ColNames>
  5558. <Type>btree</Type>
  5559. </index>
  5560. <key id="1132" parent="297" name="PRIMARY">
  5561. <NameSurrogate>1</NameSurrogate>
  5562. <Primary>1</Primary>
  5563. <UnderlyingIndexName>PRIMARY</UnderlyingIndexName>
  5564. </key>
  5565. <column id="1133" parent="298" name="id">
  5566. <AutoIncrement>1</AutoIncrement>
  5567. <Comment>id</Comment>
  5568. <NotNull>1</NotNull>
  5569. <Position>1</Position>
  5570. <StoredType>int(11)|0s</StoredType>
  5571. </column>
  5572. <column id="1134" parent="298" name="tech_auditor_stauts">
  5573. <Comment>技术总监审核开关 0=关,1=开</Comment>
  5574. <DefaultExpression>0</DefaultExpression>
  5575. <NotNull>1</NotNull>
  5576. <Position>2</Position>
  5577. <StoredType>int(11)|0s</StoredType>
  5578. </column>
  5579. <column id="1135" parent="298" name="tech_auditor">
  5580. <Comment>技术总监审核人</Comment>
  5581. <Position>3</Position>
  5582. <StoredType>varchar(36)|0s</StoredType>
  5583. </column>
  5584. <column id="1136" parent="298" name="finance_auditor_stauts">
  5585. <Comment>财务技术总监审核开关 0=关,1=开</Comment>
  5586. <DefaultExpression>0</DefaultExpression>
  5587. <NotNull>1</NotNull>
  5588. <Position>4</Position>
  5589. <StoredType>int(11)|0s</StoredType>
  5590. </column>
  5591. <column id="1137" parent="298" name="finance_auditor">
  5592. <Comment>财务总监审核人</Comment>
  5593. <Position>5</Position>
  5594. <StoredType>varchar(36)|0s</StoredType>
  5595. </column>
  5596. <column id="1138" parent="298" name="other_auditor_stauts">
  5597. <Comment>其他审核开关 0=关,1=开</Comment>
  5598. <DefaultExpression>0</DefaultExpression>
  5599. <NotNull>1</NotNull>
  5600. <Position>6</Position>
  5601. <StoredType>int(11)|0s</StoredType>
  5602. </column>
  5603. <column id="1139" parent="298" name="other_auditor">
  5604. <Comment>其他审核人</Comment>
  5605. <Position>7</Position>
  5606. <StoredType>varchar(36)|0s</StoredType>
  5607. </column>
  5608. <column id="1140" parent="298" name="create_time">
  5609. <Comment>创建时间</Comment>
  5610. <DefaultExpression>CURRENT_TIMESTAMP</DefaultExpression>
  5611. <Position>8</Position>
  5612. <StoredType>datetime|0s</StoredType>
  5613. </column>
  5614. <index id="1141" parent="298" name="PRIMARY">
  5615. <ColNames>id</ColNames>
  5616. <Type>btree</Type>
  5617. <Unique>1</Unique>
  5618. </index>
  5619. <key id="1142" parent="298" name="PRIMARY">
  5620. <NameSurrogate>1</NameSurrogate>
  5621. <Primary>1</Primary>
  5622. <UnderlyingIndexName>PRIMARY</UnderlyingIndexName>
  5623. </key>
  5624. <column id="1143" parent="299" name="id">
  5625. <AutoIncrement>3</AutoIncrement>
  5626. <NotNull>1</NotNull>
  5627. <Position>1</Position>
  5628. <StoredType>int(11)|0s</StoredType>
  5629. </column>
  5630. <column id="1144" parent="299" name="prid">
  5631. <Comment>公出编号</Comment>
  5632. <NotNull>1</NotNull>
  5633. <Position>2</Position>
  5634. <StoredType>int(11)|0s</StoredType>
  5635. </column>
  5636. <column id="1145" parent="299" name="aid">
  5637. <Comment>审核人编号</Comment>
  5638. <NotNull>1</NotNull>
  5639. <Position>3</Position>
  5640. <StoredType>varchar(36)|0s</StoredType>
  5641. </column>
  5642. <column id="1146" parent="299" name="status">
  5643. <Comment>0未审核 ,1已审核</Comment>
  5644. <DefaultExpression>0</DefaultExpression>
  5645. <Position>4</Position>
  5646. <StoredType>int(1)|0s</StoredType>
  5647. </column>
  5648. <column id="1147" parent="299" name="create_time">
  5649. <Comment>创建时间</Comment>
  5650. <DefaultExpression>CURRENT_TIMESTAMP</DefaultExpression>
  5651. <Position>5</Position>
  5652. <StoredType>datetime|0s</StoredType>
  5653. </column>
  5654. <column id="1148" parent="299" name="aname">
  5655. <Comment>审核人名称</Comment>
  5656. <Position>6</Position>
  5657. <StoredType>varchar(36)|0s</StoredType>
  5658. </column>
  5659. <index id="1149" parent="299" name="PRIMARY">
  5660. <ColNames>id</ColNames>
  5661. <Type>btree</Type>
  5662. <Unique>1</Unique>
  5663. </index>
  5664. <key id="1150" parent="299" name="PRIMARY">
  5665. <NameSurrogate>1</NameSurrogate>
  5666. <Primary>1</Primary>
  5667. <UnderlyingIndexName>PRIMARY</UnderlyingIndexName>
  5668. </key>
  5669. <column id="1151" parent="300" name="id">
  5670. <AutoIncrement>67</AutoIncrement>
  5671. <NotNull>1</NotNull>
  5672. <Position>1</Position>
  5673. <StoredType>int(11)|0s</StoredType>
  5674. </column>
  5675. <column id="1152" parent="300" name="aid">
  5676. <Comment>公出人</Comment>
  5677. <Position>2</Position>
  5678. <StoredType>varchar(36)|0s</StoredType>
  5679. </column>
  5680. <column id="1153" parent="300" name="release_start">
  5681. <Comment>公出开始时间</Comment>
  5682. <Position>3</Position>
  5683. <StoredType>datetime|0s</StoredType>
  5684. </column>
  5685. <column id="1154" parent="300" name="release_end">
  5686. <Comment>公出结束时间</Comment>
  5687. <Position>4</Position>
  5688. <StoredType>datetime|0s</StoredType>
  5689. </column>
  5690. <column id="1155" parent="300" name="remarks">
  5691. <Comment>公出目标</Comment>
  5692. <Position>5</Position>
  5693. <StoredType>varchar(256)|0s</StoredType>
  5694. </column>
  5695. <column id="1156" parent="300" name="annex_url">
  5696. <Comment>附件</Comment>
  5697. <Position>6</Position>
  5698. <StoredType>longtext|0s</StoredType>
  5699. </column>
  5700. <column id="1157" parent="300" name="status">
  5701. <Comment>状态 0驳回 1发起 2同意 3 撤销 4技术驳回</Comment>
  5702. <DefaultExpression>1</DefaultExpression>
  5703. <Position>7</Position>
  5704. <StoredType>int(11)|0s</StoredType>
  5705. </column>
  5706. <column id="1158" parent="300" name="create_time">
  5707. <Comment>发起时间</Comment>
  5708. <NotNull>1</NotNull>
  5709. <Position>8</Position>
  5710. <StoredType>datetime|0s</StoredType>
  5711. </column>
  5712. <column id="1159" parent="300" name="pname">
  5713. <Comment>项目名称</Comment>
  5714. <Position>9</Position>
  5715. <StoredType>varchar(36)|0s</StoredType>
  5716. </column>
  5717. <column id="1160" parent="300" name="duration">
  5718. <Comment>时长</Comment>
  5719. <DefaultExpression>0</DefaultExpression>
  5720. <Position>10</Position>
  5721. <StoredType>double|0s</StoredType>
  5722. </column>
  5723. <column id="1161" parent="300" name="valid_date">
  5724. <Comment>有效日期</Comment>
  5725. <Position>11</Position>
  5726. <StoredType>longtext|0s</StoredType>
  5727. </column>
  5728. <column id="1162" parent="300" name="supplement">
  5729. <Comment>本次总结</Comment>
  5730. <Position>12</Position>
  5731. <StoredType>varchar(256)|0s</StoredType>
  5732. </column>
  5733. <column id="1163" parent="300" name="audit_info">
  5734. <Comment>审核信息</Comment>
  5735. <Position>13</Position>
  5736. <StoredType>varchar(256)|0s</StoredType>
  5737. </column>
  5738. <column id="1164" parent="300" name="plan">
  5739. <Comment>公出计划</Comment>
  5740. <Position>14</Position>
  5741. <StoredType>varchar(256)|0s</StoredType>
  5742. </column>
  5743. <column id="1165" parent="300" name="expected_effect">
  5744. <Comment>预计效果</Comment>
  5745. <Position>15</Position>
  5746. <StoredType>varchar(256)|0s</StoredType>
  5747. </column>
  5748. <column id="1166" parent="300" name="next_plan">
  5749. <Comment>下次计划</Comment>
  5750. <Position>16</Position>
  5751. <StoredType>varchar(256)|0s</StoredType>
  5752. </column>
  5753. <column id="1167" parent="300" name="type">
  5754. <Comment>分类 0=业务,1=技术,2=行政,3=技术协单,4=技术助手,5=非公出协单(营销),6=非公出协单(技术)</Comment>
  5755. <DefaultExpression>0</DefaultExpression>
  5756. <Position>17</Position>
  5757. <StoredType>int(11)|0s</StoredType>
  5758. </column>
  5759. <column id="1168" parent="300" name="order_no">
  5760. <Comment>订单编号</Comment>
  5761. <Position>18</Position>
  5762. <StoredType>varchar(20)|0s</StoredType>
  5763. </column>
  5764. <column id="1169" parent="300" name="update_time">
  5765. <Comment>修改时间</Comment>
  5766. <DefaultExpression>CURRENT_TIMESTAMP</DefaultExpression>
  5767. <NotNull>1</NotNull>
  5768. <OnUpdate>CURRENT_TIMESTAMP</OnUpdate>
  5769. <Position>19</Position>
  5770. <StoredType>timestamp|0s</StoredType>
  5771. </column>
  5772. <column id="1170" parent="300" name="update_status">
  5773. <Comment>修改状态 0=否 1=是</Comment>
  5774. <DefaultExpression>0</DefaultExpression>
  5775. <Position>20</Position>
  5776. <StoredType>int(11)|0s</StoredType>
  5777. </column>
  5778. <column id="1171" parent="300" name="assist">
  5779. <Comment>0否 1主公出 2协助公出 3技术助手</Comment>
  5780. <DefaultExpression>0</DefaultExpression>
  5781. <Position>21</Position>
  5782. <StoredType>int(11)|0s</StoredType>
  5783. </column>
  5784. <column id="1172" parent="300" name="assist_aid">
  5785. <Comment>协单人员</Comment>
  5786. <Position>22</Position>
  5787. <StoredType>varchar(512)|0s</StoredType>
  5788. </column>
  5789. <column id="1173" parent="300" name="assist_aid_name">
  5790. <Comment>协单人员</Comment>
  5791. <Position>23</Position>
  5792. <StoredType>varchar(512)|0s</StoredType>
  5793. </column>
  5794. <column id="1174" parent="300" name="main_id">
  5795. <Comment>主要公出编号</Comment>
  5796. <Position>24</Position>
  5797. <StoredType>int(11)|0s</StoredType>
  5798. </column>
  5799. <column id="1175" parent="300" name="main_name">
  5800. <Comment>主要公出发起人</Comment>
  5801. <Position>25</Position>
  5802. <StoredType>varchar(128)|0s</StoredType>
  5803. </column>
  5804. <column id="1176" parent="300" name="reject_name">
  5805. <Comment>驳回人员</Comment>
  5806. <Position>26</Position>
  5807. <StoredType>varchar(128)|0s</StoredType>
  5808. </column>
  5809. <column id="1177" parent="300" name="assistant_aid">
  5810. <Comment>协单助手</Comment>
  5811. <Position>27</Position>
  5812. <StoredType>varchar(512)|0s</StoredType>
  5813. </column>
  5814. <column id="1178" parent="300" name="assistant_name">
  5815. <Comment>协单助手名称</Comment>
  5816. <Position>28</Position>
  5817. <StoredType>varchar(128)|0s</StoredType>
  5818. </column>
  5819. <column id="1179" parent="300" name="public_again">
  5820. <Comment>再次公出</Comment>
  5821. <DefaultExpression>0</DefaultExpression>
  5822. <Position>29</Position>
  5823. <StoredType>int(11)|0s</StoredType>
  5824. </column>
  5825. <column id="1180" parent="300" name="audit_time">
  5826. <Comment>审核时间</Comment>
  5827. <Position>30</Position>
  5828. <StoredType>datetime|0s</StoredType>
  5829. </column>
  5830. <column id="1181" parent="300" name="new_user">
  5831. <Comment>客户类型 0新客户 1老客户</Comment>
  5832. <Position>31</Position>
  5833. <StoredType>varchar(36)|0s</StoredType>
  5834. </column>
  5835. <column id="1182" parent="300" name="sign_sum">
  5836. <Comment>签单数</Comment>
  5837. <Position>32</Position>
  5838. <StoredType>varchar(36)|0s</StoredType>
  5839. </column>
  5840. <column id="1183" parent="300" name="user_names">
  5841. <Comment>公司名称</Comment>
  5842. <Position>33</Position>
  5843. <StoredType>varchar(512)|0s</StoredType>
  5844. </column>
  5845. <column id="1184" parent="300" name="object_type">
  5846. <Comment>公出对象 0企业 1园区</Comment>
  5847. <Position>34</Position>
  5848. <StoredType>int(11)|0s</StoredType>
  5849. </column>
  5850. <column id="1185" parent="300" name="public_type">
  5851. <Comment>公出分类 0不含他人客户 1待审核 2已审核</Comment>
  5852. <DefaultExpression>0</DefaultExpression>
  5853. <Position>35</Position>
  5854. <StoredType>int(1)|0s</StoredType>
  5855. </column>
  5856. <column id="1186" parent="300" name="district_name">
  5857. <Comment>公出企业地址</Comment>
  5858. <Position>36</Position>
  5859. <StoredType>varchar(64)|0s</StoredType>
  5860. </column>
  5861. <column id="1187" parent="300" name="clock_in">
  5862. <Comment>打卡状态 0未打卡 1已打卡 2异常打卡(冗余)</Comment>
  5863. <DefaultExpression>0</DefaultExpression>
  5864. <Position>37</Position>
  5865. <StoredType>int(2)|0s</StoredType>
  5866. </column>
  5867. <column id="1188" parent="300" name="tech_start_process">
  5868. <Comment>0无需审核 1需要审核 2营销审核通过 3营销审核驳回</Comment>
  5869. <DefaultExpression>0</DefaultExpression>
  5870. <Position>38</Position>
  5871. <StoredType>int(1)|0s</StoredType>
  5872. </column>
  5873. <column id="1189" parent="300" name="address_name">
  5874. <Comment>公出企业地址</Comment>
  5875. <Position>39</Position>
  5876. <StoredType>varchar(64)|0s</StoredType>
  5877. </column>
  5878. <column id="1190" parent="300" name="assist_process">
  5879. <Comment>协单审核 0非协单 1协单上级未审核 2协单待审核 3协单部分审核 4协单完全审核 5协单驳回</Comment>
  5880. <DefaultExpression>0</DefaultExpression>
  5881. <Position>40</Position>
  5882. <StoredType>int(1)|0s</StoredType>
  5883. </column>
  5884. <column id="1191" parent="300" name="alone">
  5885. <Comment>协单业务公出 0否 1是</Comment>
  5886. <DefaultExpression>0</DefaultExpression>
  5887. <Position>41</Position>
  5888. <StoredType>int(1)|0s</StoredType>
  5889. </column>
  5890. <column id="1192" parent="300" name="process_status">
  5891. <Comment>0=无需多级审核,1=1级审核,2=2级审核,4=完成审核</Comment>
  5892. <DefaultExpression>0</DefaultExpression>
  5893. <Position>42</Position>
  5894. <StoredType>int(1)|0s</StoredType>
  5895. </column>
  5896. <column id="1193" parent="300" name="aname">
  5897. <Comment>发起人名称</Comment>
  5898. <Position>43</Position>
  5899. <StoredType>varchar(32)|0s</StoredType>
  5900. </column>
  5901. <index id="1194" parent="300" name="PRIMARY">
  5902. <ColNames>id</ColNames>
  5903. <Type>btree</Type>
  5904. <Unique>1</Unique>
  5905. </index>
  5906. <key id="1195" parent="300" name="PRIMARY">
  5907. <NameSurrogate>1</NameSurrogate>
  5908. <Primary>1</Primary>
  5909. <UnderlyingIndexName>PRIMARY</UnderlyingIndexName>
  5910. </key>
  5911. <column id="1196" parent="301" name="id">
  5912. <AutoIncrement>2</AutoIncrement>
  5913. <NotNull>1</NotNull>
  5914. <Position>1</Position>
  5915. <StoredType>int(11)|0s</StoredType>
  5916. </column>
  5917. <column id="1197" parent="301" name="prid">
  5918. <Comment>公出编号</Comment>
  5919. <NotNull>1</NotNull>
  5920. <Position>2</Position>
  5921. <StoredType>int(11)|0s</StoredType>
  5922. </column>
  5923. <column id="1198" parent="301" name="prdid">
  5924. <Comment>公出详情编号</Comment>
  5925. <NotNull>1</NotNull>
  5926. <Position>3</Position>
  5927. <StoredType>int(11)|0s</StoredType>
  5928. </column>
  5929. <column id="1199" parent="301" name="photo_url">
  5930. <Comment>附件</Comment>
  5931. <Position>4</Position>
  5932. <StoredType>longtext|0s</StoredType>
  5933. </column>
  5934. <column id="1200" parent="301" name="clock_in_time">
  5935. <Comment>打卡时间</Comment>
  5936. <NotNull>1</NotNull>
  5937. <Position>5</Position>
  5938. <StoredType>datetime|0s</StoredType>
  5939. </column>
  5940. <column id="1201" parent="301" name="create_time">
  5941. <Comment>发起时间</Comment>
  5942. <DefaultExpression>CURRENT_TIMESTAMP</DefaultExpression>
  5943. <Position>6</Position>
  5944. <StoredType>datetime|0s</StoredType>
  5945. </column>
  5946. <column id="1202" parent="301" name="longitude">
  5947. <Comment>经度</Comment>
  5948. <Position>7</Position>
  5949. <StoredType>varchar(36)|0s</StoredType>
  5950. </column>
  5951. <column id="1203" parent="301" name="latitude">
  5952. <Comment>纬度</Comment>
  5953. <Position>8</Position>
  5954. <StoredType>varchar(36)|0s</StoredType>
  5955. </column>
  5956. <column id="1204" parent="301" name="district_name">
  5957. <Comment>公出企业地址</Comment>
  5958. <Position>9</Position>
  5959. <StoredType>varchar(64)|0s</StoredType>
  5960. </column>
  5961. <index id="1205" parent="301" name="PRIMARY">
  5962. <ColNames>id</ColNames>
  5963. <Type>btree</Type>
  5964. <Unique>1</Unique>
  5965. </index>
  5966. <index id="1206" parent="301" name="public_release_clock_index">
  5967. <ColNames>prid</ColNames>
  5968. <Type>btree</Type>
  5969. </index>
  5970. <key id="1207" parent="301" name="PRIMARY">
  5971. <NameSurrogate>1</NameSurrogate>
  5972. <Primary>1</Primary>
  5973. <UnderlyingIndexName>PRIMARY</UnderlyingIndexName>
  5974. </key>
  5975. <column id="1208" parent="302" name="id">
  5976. <AutoIncrement>1</AutoIncrement>
  5977. <NotNull>1</NotNull>
  5978. <Position>1</Position>
  5979. <StoredType>int(11)|0s</StoredType>
  5980. </column>
  5981. <column id="1209" parent="302" name="prid">
  5982. <Comment>公出详情编号</Comment>
  5983. <NotNull>1</NotNull>
  5984. <Position>2</Position>
  5985. <StoredType>int(11)|0s</StoredType>
  5986. </column>
  5987. <column id="1210" parent="302" name="type">
  5988. <Comment>内容</Comment>
  5989. <Position>3</Position>
  5990. <StoredType>varchar(512)|0s</StoredType>
  5991. </column>
  5992. <index id="1211" parent="302" name="PRIMARY">
  5993. <ColNames>id</ColNames>
  5994. <Type>btree</Type>
  5995. <Unique>1</Unique>
  5996. </index>
  5997. <index id="1212" parent="302" name="public_release_typet_index">
  5998. <ColNames>prid</ColNames>
  5999. <Type>btree</Type>
  6000. </index>
  6001. <key id="1213" parent="302" name="PRIMARY">
  6002. <NameSurrogate>1</NameSurrogate>
  6003. <Primary>1</Primary>
  6004. <UnderlyingIndexName>PRIMARY</UnderlyingIndexName>
  6005. </key>
  6006. <column id="1214" parent="303" name="id">
  6007. <AutoIncrement>74</AutoIncrement>
  6008. <Comment>日志编号</Comment>
  6009. <NotNull>1</NotNull>
  6010. <Position>1</Position>
  6011. <StoredType>int(11)|0s</StoredType>
  6012. </column>
  6013. <column id="1215" parent="303" name="province">
  6014. <Comment>日志编号</Comment>
  6015. <Position>2</Position>
  6016. <StoredType>int(11)|0s</StoredType>
  6017. </column>
  6018. <column id="1216" parent="303" name="dep_id">
  6019. <Comment>部门ID</Comment>
  6020. <Position>3</Position>
  6021. <StoredType>varchar(36)|0s</StoredType>
  6022. </column>
  6023. <column id="1217" parent="303" name="uid">
  6024. <Comment>用户ID</Comment>
  6025. <Position>4</Position>
  6026. <StoredType>varchar(36)|0s</StoredType>
  6027. </column>
  6028. <column id="1218" parent="303" name="quantity">
  6029. <Comment>数量</Comment>
  6030. <DefaultExpression>0</DefaultExpression>
  6031. <Position>5</Position>
  6032. <StoredType>int(11)|0s</StoredType>
  6033. </column>
  6034. <column id="1219" parent="303" name="new_user">
  6035. <Comment>客户类型 0新客户 1老客户</Comment>
  6036. <DefaultExpression>0</DefaultExpression>
  6037. <Position>6</Position>
  6038. <StoredType>int(11)|0s</StoredType>
  6039. </column>
  6040. <column id="1220" parent="303" name="total">
  6041. <Comment>金额</Comment>
  6042. <Position>7</Position>
  6043. <StoredType>decimal(10,6 digit)|0s</StoredType>
  6044. </column>
  6045. <column id="1221" parent="303" name="date">
  6046. <Comment>年月</Comment>
  6047. <NotNull>1</NotNull>
  6048. <Position>8</Position>
  6049. <StoredType>varchar(36)|0s</StoredType>
  6050. </column>
  6051. <column id="1222" parent="303" name="sign">
  6052. <Comment>签单</Comment>
  6053. <DefaultExpression>0</DefaultExpression>
  6054. <Position>9</Position>
  6055. <StoredType>int(11)|0s</StoredType>
  6056. </column>
  6057. <index id="1223" parent="303" name="PRIMARY">
  6058. <ColNames>id</ColNames>
  6059. <Type>btree</Type>
  6060. <Unique>1</Unique>
  6061. </index>
  6062. <key id="1224" parent="303" name="PRIMARY">
  6063. <NameSurrogate>1</NameSurrogate>
  6064. <Primary>1</Primary>
  6065. <UnderlyingIndexName>PRIMARY</UnderlyingIndexName>
  6066. </key>
  6067. <column id="1225" parent="304" name="id">
  6068. <AutoIncrement>1</AutoIncrement>
  6069. <NotNull>1</NotNull>
  6070. <Position>1</Position>
  6071. <StoredType>int(11)|0s</StoredType>
  6072. </column>
  6073. <column id="1226" parent="304" name="prid">
  6074. <Comment>公出编号</Comment>
  6075. <NotNull>1</NotNull>
  6076. <Position>2</Position>
  6077. <StoredType>int(11)|0s</StoredType>
  6078. </column>
  6079. <column id="1227" parent="304" name="prdid">
  6080. <Comment>公出详情编号</Comment>
  6081. <NotNull>1</NotNull>
  6082. <Position>3</Position>
  6083. <StoredType>int(11)|0s</StoredType>
  6084. </column>
  6085. <column id="1228" parent="304" name="status">
  6086. <Comment>状态 0未打卡 1已打卡</Comment>
  6087. <DefaultExpression>0</DefaultExpression>
  6088. <Position>4</Position>
  6089. <StoredType>int(11)|0s</StoredType>
  6090. </column>
  6091. <column id="1229" parent="304" name="clock_in_time">
  6092. <Comment>打卡时间</Comment>
  6093. <NotNull>1</NotNull>
  6094. <Position>5</Position>
  6095. <StoredType>datetime|0s</StoredType>
  6096. </column>
  6097. <column id="1230" parent="304" name="create_time">
  6098. <Comment>发起时间</Comment>
  6099. <DefaultExpression>CURRENT_TIMESTAMP</DefaultExpression>
  6100. <Position>6</Position>
  6101. <StoredType>datetime|0s</StoredType>
  6102. </column>
  6103. <index id="1231" parent="304" name="PRIMARY">
  6104. <ColNames>id</ColNames>
  6105. <Type>btree</Type>
  6106. <Unique>1</Unique>
  6107. </index>
  6108. <index id="1232" parent="304" name="public_release_date_clock_prid_index">
  6109. <ColNames>prid</ColNames>
  6110. <Type>btree</Type>
  6111. </index>
  6112. <index id="1233" parent="304" name="public_release_date_clock_prdid_index">
  6113. <ColNames>prdid</ColNames>
  6114. <Type>btree</Type>
  6115. </index>
  6116. <key id="1234" parent="304" name="PRIMARY">
  6117. <NameSurrogate>1</NameSurrogate>
  6118. <Primary>1</Primary>
  6119. <UnderlyingIndexName>PRIMARY</UnderlyingIndexName>
  6120. </key>
  6121. <column id="1235" parent="305" name="id">
  6122. <AutoIncrement>52</AutoIncrement>
  6123. <NotNull>1</NotNull>
  6124. <Position>1</Position>
  6125. <StoredType>int(11)|0s</StoredType>
  6126. </column>
  6127. <column id="1236" parent="305" name="prid">
  6128. <Comment>公出编号</Comment>
  6129. <NotNull>1</NotNull>
  6130. <Position>2</Position>
  6131. <StoredType>int(11)|0s</StoredType>
  6132. </column>
  6133. <column id="1237" parent="305" name="uid">
  6134. <Comment>客户id</Comment>
  6135. <NotNull>1</NotNull>
  6136. <Position>3</Position>
  6137. <StoredType>varchar(36)|0s</StoredType>
  6138. </column>
  6139. <column id="1238" parent="305" name="ufid">
  6140. <Comment>跟进id</Comment>
  6141. <Position>4</Position>
  6142. <StoredType>varchar(36)|0s</StoredType>
  6143. </column>
  6144. <column id="1239" parent="305" name="new_user">
  6145. <Comment>客户类型 0新客户 1老客户</Comment>
  6146. <DefaultExpression>0</DefaultExpression>
  6147. <Position>5</Position>
  6148. <StoredType>int(11)|0s</StoredType>
  6149. </column>
  6150. <column id="1240" parent="305" name="sign_sum">
  6151. <Comment>签单数</Comment>
  6152. <DefaultExpression>0</DefaultExpression>
  6153. <Position>6</Position>
  6154. <StoredType>int(11)|0s</StoredType>
  6155. </column>
  6156. <column id="1241" parent="305" name="longitude">
  6157. <Comment>经度</Comment>
  6158. <Position>7</Position>
  6159. <StoredType>varchar(36)|0s</StoredType>
  6160. </column>
  6161. <column id="1242" parent="305" name="latitude">
  6162. <Comment>纬度</Comment>
  6163. <Position>8</Position>
  6164. <StoredType>varchar(36)|0s</StoredType>
  6165. </column>
  6166. <column id="1243" parent="305" name="clock_in">
  6167. <Comment>打卡状态 1正常打卡 2异常打卡</Comment>
  6168. <DefaultExpression>0</DefaultExpression>
  6169. <Position>9</Position>
  6170. <StoredType>int(2)|0s</StoredType>
  6171. </column>
  6172. <column id="1244" parent="305" name="clock_in_time">
  6173. <Comment>打卡时间</Comment>
  6174. <Position>10</Position>
  6175. <StoredType>datetime|0s</StoredType>
  6176. </column>
  6177. <column id="1245" parent="305" name="photo_url">
  6178. <Comment>照片</Comment>
  6179. <Position>11</Position>
  6180. <StoredType>longtext|0s</StoredType>
  6181. </column>
  6182. <column id="1246" parent="305" name="district_name">
  6183. <Comment>公出企业地址</Comment>
  6184. <Position>12</Position>
  6185. <StoredType>varchar(64)|0s</StoredType>
  6186. </column>
  6187. <column id="1247" parent="305" name="clock_in_remarks">
  6188. <Comment>打卡说明</Comment>
  6189. <Position>13</Position>
  6190. <StoredType>varchar(128)|0s</StoredType>
  6191. </column>
  6192. <column id="1248" parent="305" name="duration">
  6193. <Comment>时长</Comment>
  6194. <DefaultExpression>0</DefaultExpression>
  6195. <Position>14</Position>
  6196. <StoredType>double|0s</StoredType>
  6197. </column>
  6198. <column id="1249" parent="305" name="main_status">
  6199. <Comment>0辅助 1主要(根据客户是否是公出人判断)</Comment>
  6200. <DefaultExpression>0</DefaultExpression>
  6201. <Position>15</Position>
  6202. <StoredType>int(11)|0s</StoredType>
  6203. </column>
  6204. <column id="1250" parent="305" name="update_time">
  6205. <Comment>修改时间</Comment>
  6206. <DefaultExpression>CURRENT_TIMESTAMP</DefaultExpression>
  6207. <OnUpdate>CURRENT_TIMESTAMP</OnUpdate>
  6208. <Position>16</Position>
  6209. <StoredType>datetime|0s</StoredType>
  6210. </column>
  6211. <column id="1251" parent="305" name="address_name">
  6212. <Comment>公出企业地址</Comment>
  6213. <Position>17</Position>
  6214. <StoredType>varchar(64)|0s</StoredType>
  6215. </column>
  6216. <column id="1252" parent="305" name="interview_status">
  6217. <Comment>有效面谈 0=否,1=是</Comment>
  6218. <DefaultExpression>0</DefaultExpression>
  6219. <Position>18</Position>
  6220. <StoredType>int(11)|0s</StoredType>
  6221. </column>
  6222. <index id="1253" parent="305" name="PRIMARY">
  6223. <ColNames>id</ColNames>
  6224. <Type>btree</Type>
  6225. <Unique>1</Unique>
  6226. </index>
  6227. <index id="1254" parent="305" name="public_release_details_prid_IDX">
  6228. <ColNames>prid</ColNames>
  6229. <Type>btree</Type>
  6230. </index>
  6231. <key id="1255" parent="305" name="PRIMARY">
  6232. <NameSurrogate>1</NameSurrogate>
  6233. <Primary>1</Primary>
  6234. <UnderlyingIndexName>PRIMARY</UnderlyingIndexName>
  6235. </key>
  6236. <column id="1256" parent="306" name="id">
  6237. <AutoIncrement>117</AutoIncrement>
  6238. <NotNull>1</NotNull>
  6239. <Position>1</Position>
  6240. <StoredType>int(11)|0s</StoredType>
  6241. </column>
  6242. <column id="1257" parent="306" name="prid">
  6243. <Comment>公出id</Comment>
  6244. <NotNull>1</NotNull>
  6245. <Position>2</Position>
  6246. <StoredType>int(11)|0s</StoredType>
  6247. </column>
  6248. <column id="1258" parent="306" name="aid">
  6249. <Comment>操作人</Comment>
  6250. <Position>3</Position>
  6251. <StoredType>varchar(36)|0s</StoredType>
  6252. </column>
  6253. <column id="1259" parent="306" name="remarks">
  6254. <Comment>备注</Comment>
  6255. <Position>4</Position>
  6256. <StoredType>varchar(256)|0s</StoredType>
  6257. </column>
  6258. <column id="1260" parent="306" name="status">
  6259. <Comment>状态 0驳回 1发起 2同意 3打卡 4 撤销 5修改</Comment>
  6260. <Position>5</Position>
  6261. <StoredType>int(11)|0s</StoredType>
  6262. </column>
  6263. <column id="1261" parent="306" name="create_time">
  6264. <Comment>发起时间</Comment>
  6265. <NotNull>1</NotNull>
  6266. <Position>6</Position>
  6267. <StoredType>datetime|0s</StoredType>
  6268. </column>
  6269. <column id="1262" parent="306" name="photo_url">
  6270. <Comment>照片</Comment>
  6271. <Position>7</Position>
  6272. <StoredType>longtext|0s</StoredType>
  6273. </column>
  6274. <index id="1263" parent="306" name="PRIMARY">
  6275. <ColNames>id</ColNames>
  6276. <Type>btree</Type>
  6277. <Unique>1</Unique>
  6278. </index>
  6279. <key id="1264" parent="306" name="PRIMARY">
  6280. <NameSurrogate>1</NameSurrogate>
  6281. <Primary>1</Primary>
  6282. <UnderlyingIndexName>PRIMARY</UnderlyingIndexName>
  6283. </key>
  6284. <column id="1265" parent="307" name="id">
  6285. <AutoIncrement>1</AutoIncrement>
  6286. <NotNull>1</NotNull>
  6287. <Position>1</Position>
  6288. <StoredType>int(11)|0s</StoredType>
  6289. </column>
  6290. <column id="1266" parent="307" name="prid">
  6291. <Comment>公出详情编号</Comment>
  6292. <NotNull>1</NotNull>
  6293. <Position>2</Position>
  6294. <StoredType>int(11)|0s</StoredType>
  6295. </column>
  6296. <column id="1267" parent="307" name="type">
  6297. <Comment>协单项目</Comment>
  6298. <Position>3</Position>
  6299. <StoredType>varchar(512)|0s</StoredType>
  6300. </column>
  6301. <index id="1268" parent="307" name="PRIMARY">
  6302. <ColNames>id</ColNames>
  6303. <Type>btree</Type>
  6304. <Unique>1</Unique>
  6305. </index>
  6306. <index id="1269" parent="307" name="public_release_typet_index">
  6307. <ColNames>prid</ColNames>
  6308. <Type>btree</Type>
  6309. </index>
  6310. <key id="1270" parent="307" name="PRIMARY">
  6311. <NameSurrogate>1</NameSurrogate>
  6312. <Primary>1</Primary>
  6313. <UnderlyingIndexName>PRIMARY</UnderlyingIndexName>
  6314. </key>
  6315. <column id="1271" parent="308" name="id">
  6316. <AutoIncrement>372</AutoIncrement>
  6317. <NotNull>1</NotNull>
  6318. <Position>1</Position>
  6319. <StoredType>bigint(20)|0s</StoredType>
  6320. </column>
  6321. <column id="1272" parent="308" name="user_name">
  6322. <Comment>公司名称</Comment>
  6323. <Position>2</Position>
  6324. <StoredType>varchar(64)|0s</StoredType>
  6325. </column>
  6326. <column id="1273" parent="308" name="rd_no">
  6327. <Comment>研发活动编号</Comment>
  6328. <Position>3</Position>
  6329. <StoredType>varchar(64)|0s</StoredType>
  6330. </column>
  6331. <column id="1274" parent="308" name="ip_no">
  6332. <Comment>知识产权编号</Comment>
  6333. <Position>4</Position>
  6334. <StoredType>varchar(64)|0s</StoredType>
  6335. </column>
  6336. <column id="1275" parent="308" name="rd_name">
  6337. <Comment>发研活动名称</Comment>
  6338. <Position>5</Position>
  6339. <StoredType>varchar(128)|0s</StoredType>
  6340. </column>
  6341. <column id="1276" parent="308" name="rd_start">
  6342. <Comment>开始时间</Comment>
  6343. <Position>6</Position>
  6344. <StoredType>datetime|0s</StoredType>
  6345. </column>
  6346. <column id="1277" parent="308" name="rd_end">
  6347. <Comment>结束时间</Comment>
  6348. <Position>7</Position>
  6349. <StoredType>datetime|0s</StoredType>
  6350. </column>
  6351. <column id="1278" parent="308" name="technical_field">
  6352. <Comment>技术领域</Comment>
  6353. <Position>8</Position>
  6354. <StoredType>varchar(1024)|0s</StoredType>
  6355. </column>
  6356. <column id="1279" parent="308" name="technology_source">
  6357. <Comment>技术来源</Comment>
  6358. <Position>9</Position>
  6359. <StoredType>varchar(1024)|0s</StoredType>
  6360. </column>
  6361. <column id="1280" parent="308" name="total_amount">
  6362. <Comment>研发经费总预算(万元)</Comment>
  6363. <DefaultExpression>0.000000</DefaultExpression>
  6364. <NotNull>1</NotNull>
  6365. <Position>10</Position>
  6366. <StoredType>decimal(14,6 digit)|0s</StoredType>
  6367. </column>
  6368. <column id="1281" parent="308" name="recent_three_amount">
  6369. <Comment>研发经费近三年总支出(万元)</Comment>
  6370. <DefaultExpression>0.000000</DefaultExpression>
  6371. <NotNull>1</NotNull>
  6372. <Position>11</Position>
  6373. <StoredType>decimal(14,6 digit)|0s</StoredType>
  6374. </column>
  6375. <column id="1282" parent="308" name="rd_objective">
  6376. <Comment>研发目的及组织实施方式</Comment>
  6377. <Position>12</Position>
  6378. <StoredType>varchar(1024)|0s</StoredType>
  6379. </column>
  6380. <column id="1283" parent="308" name="core_technology">
  6381. <Comment>核心技术及创新点</Comment>
  6382. <Position>13</Position>
  6383. <StoredType>varchar(1024)|0s</StoredType>
  6384. </column>
  6385. <column id="1284" parent="308" name="achieve_results">
  6386. <Comment>取得的创段性成果</Comment>
  6387. <Position>14</Position>
  6388. <StoredType>varchar(1024)|0s</StoredType>
  6389. </column>
  6390. <column id="1285" parent="308" name="consultant_name">
  6391. <Comment>操作人</Comment>
  6392. <Position>15</Position>
  6393. <StoredType>varchar(64)|0s</StoredType>
  6394. </column>
  6395. <column id="1286" parent="308" name="status">
  6396. <Comment>状态 0=草稿,1=正常,2=删除</Comment>
  6397. <Position>16</Position>
  6398. <StoredType>int(1)|0s</StoredType>
  6399. </column>
  6400. <column id="1287" parent="308" name="open_time">
  6401. <Comment>开放时间</Comment>
  6402. <Position>17</Position>
  6403. <StoredType>datetime|0s</StoredType>
  6404. </column>
  6405. <column id="1288" parent="308" name="create_time">
  6406. <Comment>创建时间</Comment>
  6407. <DefaultExpression>CURRENT_TIMESTAMP</DefaultExpression>
  6408. <Position>18</Position>
  6409. <StoredType>datetime|0s</StoredType>
  6410. </column>
  6411. <column id="1289" parent="308" name="aid">
  6412. <Comment>录入人</Comment>
  6413. <Position>19</Position>
  6414. <StoredType>varchar(64)|0s</StoredType>
  6415. </column>
  6416. <column id="1290" parent="308" name="browse_count">
  6417. <Comment>浏览次数</Comment>
  6418. <DefaultExpression>0</DefaultExpression>
  6419. <Position>20</Position>
  6420. <StoredType>int(11)|0s</StoredType>
  6421. </column>
  6422. <column id="1291" parent="308" name="download_count">
  6423. <Comment>下载次数</Comment>
  6424. <DefaultExpression>0</DefaultExpression>
  6425. <Position>21</Position>
  6426. <StoredType>int(11)|0s</StoredType>
  6427. </column>
  6428. <index id="1292" parent="308" name="PRIMARY">
  6429. <ColNames>id</ColNames>
  6430. <Type>btree</Type>
  6431. <Unique>1</Unique>
  6432. </index>
  6433. <key id="1293" parent="308" name="PRIMARY">
  6434. <NameSurrogate>1</NameSurrogate>
  6435. <Primary>1</Primary>
  6436. <UnderlyingIndexName>PRIMARY</UnderlyingIndexName>
  6437. </key>
  6438. <column id="1294" parent="309" name="id">
  6439. <AutoIncrement>3</AutoIncrement>
  6440. <NotNull>1</NotNull>
  6441. <Position>1</Position>
  6442. <StoredType>int(1)|0s</StoredType>
  6443. </column>
  6444. <column id="1295" parent="309" name="pid">
  6445. <Comment>项目编号</Comment>
  6446. <NotNull>1</NotNull>
  6447. <Position>2</Position>
  6448. <StoredType>varchar(36)|0s</StoredType>
  6449. </column>
  6450. <column id="1296" parent="309" name="uid">
  6451. <Comment>客户编号</Comment>
  6452. <NotNull>1</NotNull>
  6453. <Position>3</Position>
  6454. <StoredType>varchar(36)|0s</StoredType>
  6455. </column>
  6456. <column id="1297" parent="309" name="aid">
  6457. <Comment>归属人</Comment>
  6458. <Position>4</Position>
  6459. <StoredType>varchar(36)|0s</StoredType>
  6460. </column>
  6461. <column id="1298" parent="309" name="type">
  6462. <Comment>分类 0=公共限定,1=私有限定,2=签单限定</Comment>
  6463. <DefaultExpression>0</DefaultExpression>
  6464. <Position>5</Position>
  6465. <StoredType>int(1)|0s</StoredType>
  6466. </column>
  6467. <column id="1299" parent="309" name="lock_time">
  6468. <Comment>锁定时间</Comment>
  6469. <Position>6</Position>
  6470. <StoredType>datetime|0s</StoredType>
  6471. </column>
  6472. <column id="1300" parent="309" name="release_time">
  6473. <Comment>释放时间</Comment>
  6474. <Position>7</Position>
  6475. <StoredType>datetime|0s</StoredType>
  6476. </column>
  6477. <column id="1301" parent="309" name="last_follow_time">
  6478. <Comment>最后跟进时间</Comment>
  6479. <Position>8</Position>
  6480. <StoredType>datetime|0s</StoredType>
  6481. </column>
  6482. <column id="1302" parent="309" name="create_time">
  6483. <Comment>发起时间</Comment>
  6484. <DefaultExpression>CURRENT_TIMESTAMP</DefaultExpression>
  6485. <Position>9</Position>
  6486. <StoredType>datetime|0s</StoredType>
  6487. </column>
  6488. <index id="1303" parent="309" name="PRIMARY">
  6489. <ColNames>id</ColNames>
  6490. <Type>btree</Type>
  6491. <Unique>1</Unique>
  6492. </index>
  6493. <key id="1304" parent="309" name="PRIMARY">
  6494. <NameSurrogate>1</NameSurrogate>
  6495. <Primary>1</Primary>
  6496. <UnderlyingIndexName>PRIMARY</UnderlyingIndexName>
  6497. </key>
  6498. <column id="1305" parent="310" name="id">
  6499. <Comment>角色资源ID</Comment>
  6500. <NotNull>1</NotNull>
  6501. <Position>1</Position>
  6502. <StoredType>varchar(36)|0s</StoredType>
  6503. </column>
  6504. <column id="1306" parent="310" name="role_id">
  6505. <Comment>角色ID</Comment>
  6506. <NotNull>1</NotNull>
  6507. <Position>2</Position>
  6508. <StoredType>varchar(36)|0s</StoredType>
  6509. </column>
  6510. <column id="1307" parent="310" name="resources">
  6511. <Comment>角色资源 0 意向客户 1 签单业务 2 客户资料 3 已签订单 4 项目任务 5 科技需求 6科技成果</Comment>
  6512. <NotNull>1</NotNull>
  6513. <Position>3</Position>
  6514. <StoredType>int(1)|0s</StoredType>
  6515. </column>
  6516. <column id="1308" parent="310" name="create_time">
  6517. <Comment>创建时间</Comment>
  6518. <DefaultExpression>CURRENT_TIMESTAMP</DefaultExpression>
  6519. <Position>4</Position>
  6520. <StoredType>datetime|0s</StoredType>
  6521. </column>
  6522. <index id="1309" parent="310" name="PRIMARY">
  6523. <ColNames>id</ColNames>
  6524. <Type>btree</Type>
  6525. <Unique>1</Unique>
  6526. </index>
  6527. <key id="1310" parent="310" name="PRIMARY">
  6528. <NameSurrogate>1</NameSurrogate>
  6529. <Primary>1</Primary>
  6530. <UnderlyingIndexName>PRIMARY</UnderlyingIndexName>
  6531. </key>
  6532. <column id="1311" parent="311" name="id">
  6533. <AutoIncrement>1</AutoIncrement>
  6534. <Comment>id</Comment>
  6535. <NotNull>1</NotNull>
  6536. <Position>1</Position>
  6537. <StoredType>int(11)|0s</StoredType>
  6538. </column>
  6539. <column id="1312" parent="311" name="name">
  6540. <Comment>团队名称</Comment>
  6541. <NotNull>1</NotNull>
  6542. <Position>2</Position>
  6543. <StoredType>varchar(36)|0s</StoredType>
  6544. </column>
  6545. <column id="1313" parent="311" name="aid">
  6546. <Comment>团队队长编号</Comment>
  6547. <Position>3</Position>
  6548. <StoredType>varchar(36)|0s</StoredType>
  6549. </column>
  6550. <column id="1314" parent="311" name="lvl">
  6551. <Comment>等级 0=无,1=一级,2=二级,3=三级</Comment>
  6552. <DefaultExpression>0</DefaultExpression>
  6553. <Position>4</Position>
  6554. <StoredType>int(11)|0s</StoredType>
  6555. </column>
  6556. <column id="1315" parent="311" name="dep_id">
  6557. <Comment>部门编号</Comment>
  6558. <Position>5</Position>
  6559. <StoredType>varchar(36)|0s</StoredType>
  6560. </column>
  6561. <column id="1316" parent="311" name="super_id">
  6562. <Comment>上级团队</Comment>
  6563. <Position>6</Position>
  6564. <StoredType>int(11)|0s</StoredType>
  6565. </column>
  6566. <column id="1317" parent="311" name="status">
  6567. <Comment>状态 0=正常,1=解散</Comment>
  6568. <DefaultExpression>0</DefaultExpression>
  6569. <Position>7</Position>
  6570. <StoredType>int(11)|0s</StoredType>
  6571. </column>
  6572. <column id="1318" parent="311" name="create_time">
  6573. <Comment>创建时间</Comment>
  6574. <DefaultExpression>CURRENT_TIMESTAMP</DefaultExpression>
  6575. <Position>8</Position>
  6576. <StoredType>datetime|0s</StoredType>
  6577. </column>
  6578. <column id="1319" parent="311" name="ancestors">
  6579. <Comment>祖级列表</Comment>
  6580. <DefaultExpression>&apos;&apos;</DefaultExpression>
  6581. <Position>9</Position>
  6582. <StoredType>varchar(50)|0s</StoredType>
  6583. </column>
  6584. <index id="1320" parent="311" name="PRIMARY">
  6585. <ColNames>id</ColNames>
  6586. <Type>btree</Type>
  6587. <Unique>1</Unique>
  6588. </index>
  6589. <key id="1321" parent="311" name="PRIMARY">
  6590. <NameSurrogate>1</NameSurrogate>
  6591. <Primary>1</Primary>
  6592. <UnderlyingIndexName>PRIMARY</UnderlyingIndexName>
  6593. </key>
  6594. <column id="1322" parent="312" name="id">
  6595. <AutoIncrement>1</AutoIncrement>
  6596. <NotNull>1</NotNull>
  6597. <Position>1</Position>
  6598. <StoredType>int(11)|0s</StoredType>
  6599. </column>
  6600. <column id="1323" parent="312" name="url">
  6601. <Comment>附件</Comment>
  6602. <Position>2</Position>
  6603. <StoredType>longtext|0s</StoredType>
  6604. </column>
  6605. <column id="1324" parent="312" name="serial_number">
  6606. <Comment>标准编号</Comment>
  6607. <Position>3</Position>
  6608. <StoredType>varchar(64)|0s</StoredType>
  6609. </column>
  6610. <column id="1325" parent="312" name="name">
  6611. <Comment>标准名称</Comment>
  6612. <Position>4</Position>
  6613. <StoredType>varchar(64)|0s</StoredType>
  6614. </column>
  6615. <column id="1326" parent="312" name="reference">
  6616. <Comment>参考</Comment>
  6617. <Position>5</Position>
  6618. <StoredType>varchar(64)|0s</StoredType>
  6619. </column>
  6620. <column id="1327" parent="312" name="dep_id">
  6621. <Comment>订单部门</Comment>
  6622. <Position>6</Position>
  6623. <StoredType>varchar(36)|0s</StoredType>
  6624. </column>
  6625. <column id="1328" parent="312" name="aid">
  6626. <Comment>负责人</Comment>
  6627. <Position>7</Position>
  6628. <StoredType>varchar(36)|0s</StoredType>
  6629. </column>
  6630. <column id="1329" parent="312" name="status">
  6631. <Comment>状态 0=关闭,1=开启</Comment>
  6632. <DefaultExpression>0</DefaultExpression>
  6633. <Position>8</Position>
  6634. <StoredType>int(1)|0s</StoredType>
  6635. </column>
  6636. <column id="1330" parent="312" name="type">
  6637. <Comment>0=国家标准,1=行业标准,2=地方标准,3=团体标准,4=国际标准</Comment>
  6638. <DefaultExpression>0</DefaultExpression>
  6639. <Position>9</Position>
  6640. <StoredType>int(1)|0s</StoredType>
  6641. </column>
  6642. <column id="1331" parent="312" name="create_time">
  6643. <Comment>发起时间</Comment>
  6644. <DefaultExpression>CURRENT_TIMESTAMP</DefaultExpression>
  6645. <Position>10</Position>
  6646. <StoredType>datetime|0s</StoredType>
  6647. </column>
  6648. <column id="1332" parent="312" name="update_time">
  6649. <Comment>修改时间</Comment>
  6650. <DefaultExpression>CURRENT_TIMESTAMP</DefaultExpression>
  6651. <OnUpdate>CURRENT_TIMESTAMP</OnUpdate>
  6652. <Position>11</Position>
  6653. <StoredType>datetime|0s</StoredType>
  6654. </column>
  6655. <index id="1333" parent="312" name="PRIMARY">
  6656. <ColNames>id</ColNames>
  6657. <Type>btree</Type>
  6658. <Unique>1</Unique>
  6659. </index>
  6660. <key id="1334" parent="312" name="PRIMARY">
  6661. <NameSurrogate>1</NameSurrogate>
  6662. <Primary>1</Primary>
  6663. <UnderlyingIndexName>PRIMARY</UnderlyingIndexName>
  6664. </key>
  6665. <column id="1335" parent="313" name="id">
  6666. <AutoIncrement>1</AutoIncrement>
  6667. <NotNull>1</NotNull>
  6668. <Position>1</Position>
  6669. <StoredType>int(11)|0s</StoredType>
  6670. </column>
  6671. <column id="1336" parent="313" name="name">
  6672. <Comment>标准平台名称</Comment>
  6673. <Position>2</Position>
  6674. <StoredType>varchar(64)|0s</StoredType>
  6675. </column>
  6676. <column id="1337" parent="313" name="url">
  6677. <Comment>平台链接</Comment>
  6678. <Position>3</Position>
  6679. <StoredType>varchar(256)|0s</StoredType>
  6680. </column>
  6681. <column id="1338" parent="313" name="aid">
  6682. <Comment>负责人</Comment>
  6683. <Position>4</Position>
  6684. <StoredType>varchar(36)|0s</StoredType>
  6685. </column>
  6686. <column id="1339" parent="313" name="status">
  6687. <Comment>状态 0=关闭,1=开启</Comment>
  6688. <DefaultExpression>0</DefaultExpression>
  6689. <Position>5</Position>
  6690. <StoredType>int(1)|0s</StoredType>
  6691. </column>
  6692. <column id="1340" parent="313" name="sort">
  6693. <Comment>排序</Comment>
  6694. <DefaultExpression>0</DefaultExpression>
  6695. <Position>6</Position>
  6696. <StoredType>int(1)|0s</StoredType>
  6697. </column>
  6698. <column id="1341" parent="313" name="create_time">
  6699. <Comment>发起时间</Comment>
  6700. <DefaultExpression>CURRENT_TIMESTAMP</DefaultExpression>
  6701. <Position>7</Position>
  6702. <StoredType>datetime|0s</StoredType>
  6703. </column>
  6704. <column id="1342" parent="313" name="update_time">
  6705. <Comment>修改时间</Comment>
  6706. <DefaultExpression>CURRENT_TIMESTAMP</DefaultExpression>
  6707. <OnUpdate>CURRENT_TIMESTAMP</OnUpdate>
  6708. <Position>8</Position>
  6709. <StoredType>datetime|0s</StoredType>
  6710. </column>
  6711. <index id="1343" parent="313" name="PRIMARY">
  6712. <ColNames>id</ColNames>
  6713. <Type>btree</Type>
  6714. <Unique>1</Unique>
  6715. </index>
  6716. <key id="1344" parent="313" name="PRIMARY">
  6717. <NameSurrogate>1</NameSurrogate>
  6718. <Primary>1</Primary>
  6719. <UnderlyingIndexName>PRIMARY</UnderlyingIndexName>
  6720. </key>
  6721. <column id="1345" parent="314" name="id">
  6722. <AutoIncrement>352</AutoIncrement>
  6723. <Comment>任务编号</Comment>
  6724. <NotNull>1</NotNull>
  6725. <Position>1</Position>
  6726. <StoredType>int(11)|0s</StoredType>
  6727. </column>
  6728. <column id="1346" parent="314" name="tid">
  6729. <Comment>订单任务编号</Comment>
  6730. <Position>2</Position>
  6731. <StoredType>int(11)|0s</StoredType>
  6732. </column>
  6733. <column id="1347" parent="314" name="cid">
  6734. <Comment>变更编号</Comment>
  6735. <Position>3</Position>
  6736. <StoredType>int(11)|0s</StoredType>
  6737. </column>
  6738. <column id="1348" parent="314" name="order_no">
  6739. <Comment>订单编号</Comment>
  6740. <NotNull>1</NotNull>
  6741. <Position>4</Position>
  6742. <StoredType>varchar(20)|0s</StoredType>
  6743. </column>
  6744. <column id="1349" parent="314" name="main">
  6745. <Comment>是否为主要任务 0-否,1-是</Comment>
  6746. <DefaultExpression>0</DefaultExpression>
  6747. <NotNull>1</NotNull>
  6748. <Position>5</Position>
  6749. <StoredType>int(11)|0s</StoredType>
  6750. </column>
  6751. <column id="1350" parent="314" name="commodity_id">
  6752. <Comment>商品id</Comment>
  6753. <NotNull>1</NotNull>
  6754. <Position>6</Position>
  6755. <StoredType>varchar(36)|0s</StoredType>
  6756. </column>
  6757. <column id="1351" parent="314" name="commodity_name">
  6758. <Comment>商品名称(冗余)</Comment>
  6759. <NotNull>1</NotNull>
  6760. <Position>7</Position>
  6761. <StoredType>varchar(255)|0s</StoredType>
  6762. </column>
  6763. <column id="1352" parent="314" name="commodity_quantity">
  6764. <Comment>商品数量</Comment>
  6765. <NotNull>1</NotNull>
  6766. <Position>8</Position>
  6767. <StoredType>int(11)|0s</StoredType>
  6768. </column>
  6769. <column id="1353" parent="314" name="commodity_price">
  6770. <Comment>合同商品价格</Comment>
  6771. <DefaultExpression>0.000000</DefaultExpression>
  6772. <NotNull>1</NotNull>
  6773. <Position>9</Position>
  6774. <StoredType>decimal(12,6 digit)|0s</StoredType>
  6775. </column>
  6776. <column id="1354" parent="314" name="task_comment">
  6777. <Comment>任务说明</Comment>
  6778. <Position>10</Position>
  6779. <StoredType>varchar(512)|0s</StoredType>
  6780. </column>
  6781. <column id="1355" parent="314" name="type">
  6782. <Comment>状态 0正常 1新增 2修改 3删除 </Comment>
  6783. <DefaultExpression>0</DefaultExpression>
  6784. <Position>11</Position>
  6785. <StoredType>int(11)|0s</StoredType>
  6786. </column>
  6787. <column id="1356" parent="314" name="create_time">
  6788. <Comment>创建时间</Comment>
  6789. <DefaultExpression>CURRENT_TIMESTAMP</DefaultExpression>
  6790. <Position>12</Position>
  6791. <StoredType>datetime|0s</StoredType>
  6792. </column>
  6793. <column id="1357" parent="314" name="split_status">
  6794. <Comment>0否 1父拆分 2子拆分</Comment>
  6795. <DefaultExpression>0</DefaultExpression>
  6796. <Position>13</Position>
  6797. <StoredType>int(11)|0s</StoredType>
  6798. </column>
  6799. <column id="1358" parent="314" name="split_super">
  6800. <Comment>拆分父id</Comment>
  6801. <DefaultExpression>0</DefaultExpression>
  6802. <Position>14</Position>
  6803. <StoredType>int(11)|0s</StoredType>
  6804. </column>
  6805. <column id="1359" parent="314" name="receiver_name">
  6806. <Comment>负责人</Comment>
  6807. <Position>15</Position>
  6808. <StoredType>varchar(36)|0s</StoredType>
  6809. </column>
  6810. <column id="1360" parent="314" name="official_cost">
  6811. <Comment>官费 0否 1有</Comment>
  6812. <DefaultExpression>0</DefaultExpression>
  6813. <Position>16</Position>
  6814. <StoredType>int(11)|0s</StoredType>
  6815. </column>
  6816. <column id="1361" parent="314" name="cost_reduction">
  6817. <Comment>费减 0否 1有 </Comment>
  6818. <DefaultExpression>0</DefaultExpression>
  6819. <Position>17</Position>
  6820. <StoredType>int(11)|0s</StoredType>
  6821. </column>
  6822. <column id="1362" parent="314" name="service_life">
  6823. <Comment>服务年限</Comment>
  6824. <Position>18</Position>
  6825. <StoredType>varchar(64)|0s</StoredType>
  6826. </column>
  6827. <column id="1363" parent="314" name="service_year">
  6828. <Comment>本次年份</Comment>
  6829. <Position>19</Position>
  6830. <StoredType>varchar(16)|0s</StoredType>
  6831. </column>
  6832. <column id="1364" parent="314" name="year_sum">
  6833. <Comment>服务年限计数</Comment>
  6834. <Position>20</Position>
  6835. <StoredType>int(11)|0s</StoredType>
  6836. </column>
  6837. <column id="1365" parent="314" name="contract_term">
  6838. <Comment>合同期限</Comment>
  6839. <Position>21</Position>
  6840. <StoredType>varchar(64)|0s</StoredType>
  6841. </column>
  6842. <column id="1366" parent="314" name="declaration_batch">
  6843. <Comment>申报批次</Comment>
  6844. <Position>22</Position>
  6845. <StoredType>int(11)|0s</StoredType>
  6846. </column>
  6847. <column id="1367" parent="314" name="patent_type">
  6848. <Comment>专利分类 0申请 1变更 2复审 3优先权 4恢复请求权 5无效宣告请求费 6强制许可请求费 7 强制许可使用裁决请求费 8登录、印刷费、印花税</Comment>
  6849. <Position>23</Position>
  6850. <StoredType>int(11)|0s</StoredType>
  6851. </column>
  6852. <column id="1368" parent="314" name="change_split_super">
  6853. <Comment>变更拆分父id</Comment>
  6854. <Position>24</Position>
  6855. <StoredType>int(11)|0s</StoredType>
  6856. </column>
  6857. <column id="1369" parent="314" name="last_year">
  6858. <Comment>上年度年份</Comment>
  6859. <Position>25</Position>
  6860. <StoredType>varchar(64)|0s</StoredType>
  6861. </column>
  6862. <column id="1370" parent="314" name="last_year_capital">
  6863. <Comment>上年度总资本</Comment>
  6864. <Position>26</Position>
  6865. <StoredType>decimal(12,6 digit)|0s</StoredType>
  6866. </column>
  6867. <column id="1371" parent="314" name="last_year_income">
  6868. <Comment>上年度总收入</Comment>
  6869. <Position>27</Position>
  6870. <StoredType>decimal(12,6 digit)|0s</StoredType>
  6871. </column>
  6872. <column id="1372" parent="314" name="ht_member">
  6873. <Comment>高新会员 0=否,1=是</Comment>
  6874. <DefaultExpression>0</DefaultExpression>
  6875. <Position>28</Position>
  6876. <StoredType>int(11)|0s</StoredType>
  6877. </column>
  6878. <column id="1373" parent="314" name="additional_deduction">
  6879. <Comment>加急扣除 0=否,1=是</Comment>
  6880. <DefaultExpression>0</DefaultExpression>
  6881. <Position>29</Position>
  6882. <StoredType>int(11)|0s</StoredType>
  6883. </column>
  6884. <column id="1374" parent="314" name="rd_awardsubsidy">
  6885. <Comment>研发奖补 0=否,1=是</Comment>
  6886. <DefaultExpression>0</DefaultExpression>
  6887. <Position>30</Position>
  6888. <StoredType>int(11)|0s</StoredType>
  6889. </column>
  6890. <column id="1375" parent="314" name="technology_project_Type">
  6891. <Comment>科技项目等级 0=简易项目,1=市区级,2=省级,3=国家级</Comment>
  6892. <DefaultExpression>0</DefaultExpression>
  6893. <Position>31</Position>
  6894. <StoredType>int(11)|0s</StoredType>
  6895. </column>
  6896. <column id="1376" parent="314" name="ordinary_risk">
  6897. <Comment>申请类型 0=普通申请,1=风险代理</Comment>
  6898. <DefaultExpression>0</DefaultExpression>
  6899. <Position>32</Position>
  6900. <StoredType>int(11)|0s</StoredType>
  6901. </column>
  6902. <column id="1377" parent="314" name="days">
  6903. <Comment>天数 0=普通,1=加急</Comment>
  6904. <DefaultExpression>0</DefaultExpression>
  6905. <Position>33</Position>
  6906. <StoredType>int(11)|0s</StoredType>
  6907. </column>
  6908. <column id="1378" parent="314" name="scheme">
  6909. <Comment>方案 0=无,1=有</Comment>
  6910. <DefaultExpression>0</DefaultExpression>
  6911. <Position>34</Position>
  6912. <StoredType>int(11)|0s</StoredType>
  6913. </column>
  6914. <index id="1379" parent="314" name="PRIMARY">
  6915. <ColNames>id</ColNames>
  6916. <Type>btree</Type>
  6917. <Unique>1</Unique>
  6918. </index>
  6919. <key id="1380" parent="314" name="PRIMARY">
  6920. <NameSurrogate>1</NameSurrogate>
  6921. <Primary>1</Primary>
  6922. <UnderlyingIndexName>PRIMARY</UnderlyingIndexName>
  6923. </key>
  6924. <column id="1381" parent="315" name="id">
  6925. <NotNull>1</NotNull>
  6926. <Position>1</Position>
  6927. <StoredType>varchar(36)|0s</StoredType>
  6928. </column>
  6929. <column id="1382" parent="315" name="dun_id">
  6930. <Comment>催款ID</Comment>
  6931. <Position>2</Position>
  6932. <StoredType>varchar(36)|0s</StoredType>
  6933. </column>
  6934. <column id="1383" parent="315" name="dum_by">
  6935. <Comment>催款人</Comment>
  6936. <NotNull>1</NotNull>
  6937. <Position>3</Position>
  6938. <StoredType>varchar(36)|0s</StoredType>
  6939. </column>
  6940. <column id="1384" parent="315" name="dum_time">
  6941. <Comment>催款日期</Comment>
  6942. <NotNull>1</NotNull>
  6943. <Position>4</Position>
  6944. <StoredType>date|0s</StoredType>
  6945. </column>
  6946. <column id="1385" parent="315" name="remarks">
  6947. <Comment>催款备注</Comment>
  6948. <Position>5</Position>
  6949. <StoredType>varchar(256)|0s</StoredType>
  6950. </column>
  6951. <column id="1386" parent="315" name="attachment_url">
  6952. <Comment>附件地址</Comment>
  6953. <Position>6</Position>
  6954. <StoredType>longtext|0s</StoredType>
  6955. </column>
  6956. <column id="1387" parent="315" name="type">
  6957. <Comment>0项目催款 1订单催款</Comment>
  6958. <DefaultExpression>0</DefaultExpression>
  6959. <NotNull>1</NotNull>
  6960. <Position>7</Position>
  6961. <StoredType>int(11)|0s</StoredType>
  6962. </column>
  6963. <column id="1388" parent="315" name="order_no">
  6964. <Comment>订单编号</Comment>
  6965. <Position>8</Position>
  6966. <StoredType>varchar(20)|0s</StoredType>
  6967. </column>
  6968. <column id="1389" parent="315" name="create_time">
  6969. <Comment>创建时间</Comment>
  6970. <DefaultExpression>CURRENT_TIMESTAMP</DefaultExpression>
  6971. <Position>9</Position>
  6972. <StoredType>datetime|0s</StoredType>
  6973. </column>
  6974. <index id="1390" parent="315" name="PRIMARY">
  6975. <ColNames>id</ColNames>
  6976. <Type>btree</Type>
  6977. <Unique>1</Unique>
  6978. </index>
  6979. <key id="1391" parent="315" name="PRIMARY">
  6980. <NameSurrogate>1</NameSurrogate>
  6981. <Primary>1</Primary>
  6982. <UnderlyingIndexName>PRIMARY</UnderlyingIndexName>
  6983. </key>
  6984. <column id="1392" parent="316" name="id">
  6985. <AutoIncrement>1</AutoIncrement>
  6986. <NotNull>1</NotNull>
  6987. <Position>1</Position>
  6988. <StoredType>int(1)|0s</StoredType>
  6989. </column>
  6990. <column id="1393" parent="316" name="order_no">
  6991. <Comment>订单编号</Comment>
  6992. <NotNull>1</NotNull>
  6993. <Position>2</Position>
  6994. <StoredType>varchar(20)|0s</StoredType>
  6995. </column>
  6996. <column id="1394" parent="316" name="type">
  6997. <Comment>新特批类型 0其他,1=无前期款,2=前期款已收到,合同未收到,且在派单前仍不能收到的,预估合同收回时间,3=合同条款存在明显风险的,如涉及到违约金、赔偿或退款的,4=所有新项目的首单合同,5=所有通过率低于80%的科技项目合同,6=合同签订金额每年低于3万的会员合同,7=认证类项目的前期款低于5000元,8=合同已收到,前期款延期支付,预估前期款收款时间,9=合同与前期款均未收到,且在派单前仍不能收到的,预估收回时间,10=非常规合同</Comment>
  6998. <NotNull>1</NotNull>
  6999. <Position>3</Position>
  7000. <StoredType>int(1)|0s</StoredType>
  7001. </column>
  7002. <column id="1395" parent="316" name="type_explain">
  7003. <Comment>特批其他说明</Comment>
  7004. <Position>4</Position>
  7005. <StoredType>varchar(64)|0s</StoredType>
  7006. </column>
  7007. <index id="1396" parent="316" name="PRIMARY">
  7008. <ColNames>id</ColNames>
  7009. <Type>btree</Type>
  7010. <Unique>1</Unique>
  7011. </index>
  7012. <key id="1397" parent="316" name="PRIMARY">
  7013. <NameSurrogate>1</NameSurrogate>
  7014. <Primary>1</Primary>
  7015. <UnderlyingIndexName>PRIMARY</UnderlyingIndexName>
  7016. </key>
  7017. <column id="1398" parent="317" name="id">
  7018. <AutoIncrement>18</AutoIncrement>
  7019. <Comment>id</Comment>
  7020. <NotNull>1</NotNull>
  7021. <Position>1</Position>
  7022. <StoredType>int(11)|0s</StoredType>
  7023. </column>
  7024. <column id="1399" parent="317" name="order_no">
  7025. <Comment>订单编号</Comment>
  7026. <NotNull>1</NotNull>
  7027. <Position>2</Position>
  7028. <StoredType>varchar(20)|0s</StoredType>
  7029. </column>
  7030. <column id="1400" parent="317" name="aid">
  7031. <Comment>协单人编号</Comment>
  7032. <DefaultExpression>&apos;0&apos;</DefaultExpression>
  7033. <Position>3</Position>
  7034. <StoredType>varchar(36)|0s</StoredType>
  7035. </column>
  7036. <column id="1401" parent="317" name="create_time">
  7037. <Comment>创建时间</Comment>
  7038. <DefaultExpression>CURRENT_TIMESTAMP</DefaultExpression>
  7039. <Position>4</Position>
  7040. <StoredType>datetime|0s</StoredType>
  7041. </column>
  7042. <index id="1402" parent="317" name="PRIMARY">
  7043. <ColNames>id</ColNames>
  7044. <Type>btree</Type>
  7045. <Unique>1</Unique>
  7046. </index>
  7047. <index id="1403" parent="317" name="index_order_no">
  7048. <ColNames>order_no</ColNames>
  7049. <Type>btree</Type>
  7050. </index>
  7051. <key id="1404" parent="317" name="PRIMARY">
  7052. <NameSurrogate>1</NameSurrogate>
  7053. <Primary>1</Primary>
  7054. <UnderlyingIndexName>PRIMARY</UnderlyingIndexName>
  7055. </key>
  7056. <column id="1405" parent="318" name="bill_no">
  7057. <Comment>流水编号</Comment>
  7058. <NotNull>1</NotNull>
  7059. <Position>1</Position>
  7060. <StoredType>varchar(32)|0s</StoredType>
  7061. </column>
  7062. <column id="1406" parent="318" name="order_no">
  7063. <Comment>订单编号</Comment>
  7064. <NotNull>1</NotNull>
  7065. <Position>2</Position>
  7066. <StoredType>varchar(20)|0s</StoredType>
  7067. </column>
  7068. <column id="1407" parent="318" name="creater">
  7069. <Comment>创建人</Comment>
  7070. <NotNull>1</NotNull>
  7071. <Position>3</Position>
  7072. <StoredType>varchar(36)|0s</StoredType>
  7073. </column>
  7074. <column id="1408" parent="318" name="create_time">
  7075. <Comment>创建时间</Comment>
  7076. <DefaultExpression>CURRENT_TIMESTAMP</DefaultExpression>
  7077. <NotNull>1</NotNull>
  7078. <Position>4</Position>
  7079. <StoredType>datetime|0s</StoredType>
  7080. </column>
  7081. <column id="1409" parent="318" name="update_time">
  7082. <Comment>更新时间</Comment>
  7083. <DefaultExpression>CURRENT_TIMESTAMP</DefaultExpression>
  7084. <OnUpdate>CURRENT_TIMESTAMP</OnUpdate>
  7085. <Position>5</Position>
  7086. <StoredType>datetime|0s</StoredType>
  7087. </column>
  7088. <column id="1410" parent="318" name="payee_id">
  7089. <Comment>收款人id</Comment>
  7090. <NotNull>1</NotNull>
  7091. <Position>6</Position>
  7092. <StoredType>varchar(36)|0s</StoredType>
  7093. </column>
  7094. <column id="1411" parent="318" name="payer_id">
  7095. <Comment>付款人id</Comment>
  7096. <NotNull>1</NotNull>
  7097. <Position>7</Position>
  7098. <StoredType>varchar(36)|0s</StoredType>
  7099. </column>
  7100. <column id="1412" parent="318" name="transaction_amount">
  7101. <Comment>交易金额</Comment>
  7102. <NotNull>1</NotNull>
  7103. <Position>8</Position>
  7104. <StoredType>decimal(12,6 digit)|0s</StoredType>
  7105. </column>
  7106. <column id="1413" parent="318" name="transaction_subject">
  7107. <Comment>交易科目 0-代收, 1-代付 ,2-退款</Comment>
  7108. <NotNull>1</NotNull>
  7109. <Position>9</Position>
  7110. <StoredType>int(11)|0s</StoredType>
  7111. </column>
  7112. <column id="1414" parent="318" name="transaction_channel">
  7113. <Comment>交易渠道 0-微信 ,1-支付宝 ,2-银联</Comment>
  7114. <NotNull>1</NotNull>
  7115. <Position>10</Position>
  7116. <StoredType>int(11)|0s</StoredType>
  7117. </column>
  7118. <column id="1415" parent="318" name="remarks">
  7119. <Comment>备注</Comment>
  7120. <Position>11</Position>
  7121. <StoredType>varchar(255)|0s</StoredType>
  7122. </column>
  7123. <column id="1416" parent="318" name="confirm_sign">
  7124. <Comment>确认标示 0-待确认 ,1-已确认</Comment>
  7125. <DefaultExpression>0</DefaultExpression>
  7126. <NotNull>1</NotNull>
  7127. <Position>12</Position>
  7128. <StoredType>int(11)|0s</StoredType>
  7129. </column>
  7130. <column id="1417" parent="318" name="delete_sign">
  7131. <Comment>删除标示 0-否 1-是</Comment>
  7132. <DefaultExpression>0</DefaultExpression>
  7133. <NotNull>1</NotNull>
  7134. <Position>13</Position>
  7135. <StoredType>tinyint(4)|0s</StoredType>
  7136. </column>
  7137. <column id="1418" parent="318" name="financial_pay_no">
  7138. <Comment>财务流水编号</Comment>
  7139. <Position>14</Position>
  7140. <StoredType>varchar(36)|0s</StoredType>
  7141. </column>
  7142. <column id="1419" parent="318" name="financial_pay_time">
  7143. <Comment>财务流水时间</Comment>
  7144. <Position>15</Position>
  7145. <StoredType>datetime|0s</StoredType>
  7146. </column>
  7147. <column id="1420" parent="318" name="type">
  7148. <Comment>类别 0手工 1批量</Comment>
  7149. <DefaultExpression>0</DefaultExpression>
  7150. <Position>16</Position>
  7151. <StoredType>int(11)|0s</StoredType>
  7152. </column>
  7153. <column id="1421" parent="318" name="delete_time">
  7154. <Comment>删除时间</Comment>
  7155. <Position>17</Position>
  7156. <StoredType>datetime|0s</StoredType>
  7157. </column>
  7158. <column id="1422" parent="318" name="refund_time">
  7159. <Comment>退款时间</Comment>
  7160. <Position>18</Position>
  7161. <StoredType>datetime|0s</StoredType>
  7162. </column>
  7163. <index id="1423" parent="318" name="PRIMARY">
  7164. <ColNames>bill_no</ColNames>
  7165. <Type>btree</Type>
  7166. <Unique>1</Unique>
  7167. </index>
  7168. <index id="1424" parent="318" name="t_order_bill_new_create_time_IDX">
  7169. <ColNames>create_time</ColNames>
  7170. <Type>btree</Type>
  7171. </index>
  7172. <key id="1425" parent="318" name="PRIMARY">
  7173. <NameSurrogate>1</NameSurrogate>
  7174. <Primary>1</Primary>
  7175. <UnderlyingIndexName>PRIMARY</UnderlyingIndexName>
  7176. </key>
  7177. <column id="1426" parent="319" name="id">
  7178. <AutoIncrement>5</AutoIncrement>
  7179. <NotNull>1</NotNull>
  7180. <Position>1</Position>
  7181. <StoredType>int(11)|0s</StoredType>
  7182. </column>
  7183. <column id="1427" parent="319" name="order_no">
  7184. <Comment>订单编号</Comment>
  7185. <NotNull>1</NotNull>
  7186. <Position>2</Position>
  7187. <StoredType>varchar(20)|0s</StoredType>
  7188. </column>
  7189. <column id="1428" parent="319" name="aid">
  7190. <Comment>审核人编号</Comment>
  7191. <NotNull>1</NotNull>
  7192. <Position>3</Position>
  7193. <StoredType>varchar(36)|0s</StoredType>
  7194. </column>
  7195. <column id="1429" parent="319" name="status">
  7196. <Comment>0未审核 ,1已审核</Comment>
  7197. <DefaultExpression>0</DefaultExpression>
  7198. <Position>4</Position>
  7199. <StoredType>int(1)|0s</StoredType>
  7200. </column>
  7201. <column id="1430" parent="319" name="create_time">
  7202. <Comment>创建时间</Comment>
  7203. <DefaultExpression>CURRENT_TIMESTAMP</DefaultExpression>
  7204. <Position>5</Position>
  7205. <StoredType>datetime|0s</StoredType>
  7206. </column>
  7207. <column id="1431" parent="319" name="aname">
  7208. <Comment>审核人名称</Comment>
  7209. <Position>6</Position>
  7210. <StoredType>varchar(36)|0s</StoredType>
  7211. </column>
  7212. <column id="1432" parent="319" name="type">
  7213. <Comment>0=订单审核,1=会员发起审核</Comment>
  7214. <DefaultExpression>0</DefaultExpression>
  7215. <Position>7</Position>
  7216. <StoredType>int(1)|0s</StoredType>
  7217. </column>
  7218. <column id="1433" parent="319" name="tid">
  7219. <Comment>会员编号</Comment>
  7220. <DefaultExpression>0</DefaultExpression>
  7221. <Position>8</Position>
  7222. <StoredType>int(1)|0s</StoredType>
  7223. </column>
  7224. <index id="1434" parent="319" name="PRIMARY">
  7225. <ColNames>id</ColNames>
  7226. <Type>btree</Type>
  7227. <Unique>1</Unique>
  7228. </index>
  7229. <key id="1435" parent="319" name="PRIMARY">
  7230. <NameSurrogate>1</NameSurrogate>
  7231. <Primary>1</Primary>
  7232. <UnderlyingIndexName>PRIMARY</UnderlyingIndexName>
  7233. </key>
  7234. <column id="1436" parent="320" name="id">
  7235. <AutoIncrement>1</AutoIncrement>
  7236. <NotNull>1</NotNull>
  7237. <Position>1</Position>
  7238. <StoredType>int(11)|0s</StoredType>
  7239. </column>
  7240. <column id="1437" parent="320" name="order_no">
  7241. <Comment>订单编号</Comment>
  7242. <NotNull>1</NotNull>
  7243. <Position>2</Position>
  7244. <StoredType>varchar(20)|0s</StoredType>
  7245. </column>
  7246. <column id="1438" parent="320" name="knowledge_services">
  7247. <Comment>知识产权服务 1已签 2企业已经拥有可申报高新的知识产权 3企业自行申报/已有其他合作的代理机构申报 0其他</Comment>
  7248. <Position>3</Position>
  7249. <StoredType>int(1)|0s</StoredType>
  7250. </column>
  7251. <column id="1439" parent="320" name="audit_services">
  7252. <Comment>审计服务 1已签 2企业已经有符合申报的年审/专审 3 业自行找会计事务所出具报告 0其他</Comment>
  7253. <Position>4</Position>
  7254. <StoredType>int(1)|0s</StoredType>
  7255. </column>
  7256. <column id="1440" parent="320" name="add_deduction_services">
  7257. <Comment>加计扣除服务 1已签 2企业不符合加计扣除范围 3企业自己已经做了加计扣除 4企业自行找其他机构做了加计扣除 0其他</Comment>
  7258. <Position>5</Position>
  7259. <StoredType>int(1)|0s</StoredType>
  7260. </column>
  7261. <column id="1441" parent="320" name="knowledge_other">
  7262. <Comment>知识产权服务其他描述</Comment>
  7263. <Position>6</Position>
  7264. <StoredType>varchar(512)|0s</StoredType>
  7265. </column>
  7266. <column id="1442" parent="320" name="audit_other">
  7267. <Comment>审计服务其他描述</Comment>
  7268. <Position>7</Position>
  7269. <StoredType>varchar(512)|0s</StoredType>
  7270. </column>
  7271. <column id="1443" parent="320" name="add_deduction_other">
  7272. <Comment>加计扣除服务其他描述</Comment>
  7273. <Position>8</Position>
  7274. <StoredType>varchar(512)|0s</StoredType>
  7275. </column>
  7276. <column id="1444" parent="320" name="create_time">
  7277. <Comment>时间戳</Comment>
  7278. <DefaultExpression>CURRENT_TIMESTAMP</DefaultExpression>
  7279. <Position>9</Position>
  7280. <StoredType>datetime|0s</StoredType>
  7281. </column>
  7282. <index id="1445" parent="320" name="PRIMARY">
  7283. <ColNames>id</ColNames>
  7284. <Type>btree</Type>
  7285. <Unique>1</Unique>
  7286. </index>
  7287. <index id="1446" parent="320" name="orderNo">
  7288. <ColNames>order_no</ColNames>
  7289. <Type>btree</Type>
  7290. <Unique>1</Unique>
  7291. </index>
  7292. <key id="1447" parent="320" name="PRIMARY">
  7293. <NameSurrogate>1</NameSurrogate>
  7294. <Primary>1</Primary>
  7295. <UnderlyingIndexName>PRIMARY</UnderlyingIndexName>
  7296. </key>
  7297. <key id="1448" parent="320" name="orderNo">
  7298. <UnderlyingIndexName>orderNo</UnderlyingIndexName>
  7299. </key>
  7300. <column id="1449" parent="321" name="id">
  7301. <AutoIncrement>65</AutoIncrement>
  7302. <NotNull>1</NotNull>
  7303. <Position>1</Position>
  7304. <StoredType>int(11)|0s</StoredType>
  7305. </column>
  7306. <column id="1450" parent="321" name="order_no">
  7307. <NotNull>1</NotNull>
  7308. <Position>2</Position>
  7309. <StoredType>varchar(20)|0s</StoredType>
  7310. </column>
  7311. <column id="1451" parent="321" name="type">
  7312. <Comment>类型 0省内 1外省</Comment>
  7313. <NotNull>1</NotNull>
  7314. <Position>3</Position>
  7315. <StoredType>int(11)|0s</StoredType>
  7316. </column>
  7317. <column id="1452" parent="321" name="status">
  7318. <Comment>状态 0未提交 1处理中 2通过 3拒绝 4 撤销</Comment>
  7319. <NotNull>1</NotNull>
  7320. <Position>4</Position>
  7321. <StoredType>int(11)|0s</StoredType>
  7322. </column>
  7323. <column id="1453" parent="321" name="reject_reason">
  7324. <Comment>拒绝原因</Comment>
  7325. <Position>5</Position>
  7326. <StoredType>varchar(256)|0s</StoredType>
  7327. </column>
  7328. <column id="1454" parent="321" name="remarks">
  7329. <Comment>备注</Comment>
  7330. <Position>6</Position>
  7331. <StoredType>varchar(256)|0s</StoredType>
  7332. </column>
  7333. <column id="1455" parent="321" name="invoice_type">
  7334. <Comment>发票类型 0增值税专用发票 1增值税普通发票 2其他</Comment>
  7335. <NotNull>1</NotNull>
  7336. <Position>7</Position>
  7337. <StoredType>int(11)|0s</StoredType>
  7338. </column>
  7339. <column id="1456" parent="321" name="unit_name">
  7340. <Comment>单位名称</Comment>
  7341. <Position>8</Position>
  7342. <StoredType>varchar(64)|0s</StoredType>
  7343. </column>
  7344. <column id="1457" parent="321" name="tax_number">
  7345. <Comment>税号</Comment>
  7346. <Position>9</Position>
  7347. <StoredType>varchar(64)|0s</StoredType>
  7348. </column>
  7349. <column id="1458" parent="321" name="amount">
  7350. <Comment>金额</Comment>
  7351. <DefaultExpression>0.000000</DefaultExpression>
  7352. <NotNull>1</NotNull>
  7353. <Position>10</Position>
  7354. <StoredType>decimal(12,6 digit)|0s</StoredType>
  7355. </column>
  7356. <column id="1459" parent="321" name="banks">
  7357. <Comment>开户行</Comment>
  7358. <Position>11</Position>
  7359. <StoredType>varchar(128)|0s</StoredType>
  7360. </column>
  7361. <column id="1460" parent="321" name="content">
  7362. <Comment>开票内容及说明</Comment>
  7363. <Position>12</Position>
  7364. <StoredType>varchar(256)|0s</StoredType>
  7365. </column>
  7366. <column id="1461" parent="321" name="unit_address">
  7367. <Comment>单位地址</Comment>
  7368. <Position>13</Position>
  7369. <StoredType>varchar(64)|0s</StoredType>
  7370. </column>
  7371. <column id="1462" parent="321" name="invoice_remarks">
  7372. <Comment>发票备注</Comment>
  7373. <Position>14</Position>
  7374. <StoredType>varchar(256)|0s</StoredType>
  7375. </column>
  7376. <column id="1463" parent="321" name="unit_mobile">
  7377. <Comment>单位电话</Comment>
  7378. <Position>15</Position>
  7379. <StoredType>varchar(32)|0s</StoredType>
  7380. </column>
  7381. <column id="1464" parent="321" name="voucher_url">
  7382. <Comment>凭证URL</Comment>
  7383. <Position>16</Position>
  7384. <StoredType>varchar(2048)|0s</StoredType>
  7385. </column>
  7386. <column id="1465" parent="321" name="post">
  7387. <Comment>邮寄 0是 1否</Comment>
  7388. <NotNull>1</NotNull>
  7389. <Position>17</Position>
  7390. <StoredType>int(11)|0s</StoredType>
  7391. </column>
  7392. <column id="1466" parent="321" name="addressee">
  7393. <Comment>收件人</Comment>
  7394. <Position>18</Position>
  7395. <StoredType>varchar(64)|0s</StoredType>
  7396. </column>
  7397. <column id="1467" parent="321" name="addressee_mobile">
  7398. <Comment>收件人电话</Comment>
  7399. <Position>19</Position>
  7400. <StoredType>varchar(16)|0s</StoredType>
  7401. </column>
  7402. <column id="1468" parent="321" name="addressee_province">
  7403. <Comment>收件人省</Comment>
  7404. <Position>20</Position>
  7405. <StoredType>int(11)|0s</StoredType>
  7406. </column>
  7407. <column id="1469" parent="321" name="addressee_city">
  7408. <Comment>收件人市</Comment>
  7409. <Position>21</Position>
  7410. <StoredType>int(11)|0s</StoredType>
  7411. </column>
  7412. <column id="1470" parent="321" name="addressee_area">
  7413. <Comment>收件人区</Comment>
  7414. <Position>22</Position>
  7415. <StoredType>int(11)|0s</StoredType>
  7416. </column>
  7417. <column id="1471" parent="321" name="recipient_address">
  7418. <Comment>单位地址</Comment>
  7419. <Position>23</Position>
  7420. <StoredType>varchar(64)|0s</StoredType>
  7421. </column>
  7422. <column id="1472" parent="321" name="create_time">
  7423. <Comment>创建时间</Comment>
  7424. <DefaultExpression>CURRENT_TIMESTAMP</DefaultExpression>
  7425. <Position>24</Position>
  7426. <StoredType>datetime|0s</StoredType>
  7427. </column>
  7428. <column id="1473" parent="321" name="update_time">
  7429. <Comment>更新时间</Comment>
  7430. <DefaultExpression>CURRENT_TIMESTAMP</DefaultExpression>
  7431. <OnUpdate>CURRENT_TIMESTAMP</OnUpdate>
  7432. <Position>25</Position>
  7433. <StoredType>datetime|0s</StoredType>
  7434. </column>
  7435. <column id="1474" parent="321" name="approval">
  7436. <Comment>特批 0非特批 1待审核 2审核通过</Comment>
  7437. <DefaultExpression>0</DefaultExpression>
  7438. <Position>26</Position>
  7439. <StoredType>int(11)|0s</StoredType>
  7440. </column>
  7441. <column id="1475" parent="321" name="already_amount">
  7442. <Comment>已开票金额(处理旧单)</Comment>
  7443. <DefaultExpression>0.000000</DefaultExpression>
  7444. <NotNull>1</NotNull>
  7445. <Position>27</Position>
  7446. <StoredType>decimal(12,6 digit)|0s</StoredType>
  7447. </column>
  7448. <column id="1476" parent="321" name="examine_name">
  7449. <Comment>审核人员名称</Comment>
  7450. <Position>28</Position>
  7451. <StoredType>varchar(100)|0s</StoredType>
  7452. </column>
  7453. <index id="1477" parent="321" name="PRIMARY">
  7454. <ColNames>id</ColNames>
  7455. <Type>btree</Type>
  7456. <Unique>1</Unique>
  7457. </index>
  7458. <key id="1478" parent="321" name="PRIMARY">
  7459. <NameSurrogate>1</NameSurrogate>
  7460. <Primary>1</Primary>
  7461. <UnderlyingIndexName>PRIMARY</UnderlyingIndexName>
  7462. </key>
  7463. <column id="1479" parent="322" name="id">
  7464. <AutoIncrement>769</AutoIncrement>
  7465. <Comment>id</Comment>
  7466. <NotNull>1</NotNull>
  7467. <Position>1</Position>
  7468. <StoredType>int(11)|0s</StoredType>
  7469. </column>
  7470. <column id="1480" parent="322" name="order_no">
  7471. <Comment>订单编号</Comment>
  7472. <NotNull>1</NotNull>
  7473. <Position>2</Position>
  7474. <StoredType>varchar(20)|0s</StoredType>
  7475. </column>
  7476. <column id="1481" parent="322" name="type">
  7477. <Comment>法务分类 0法务催收中 1延期法务 2已完成法务 3自动移交 4营销移交</Comment>
  7478. <DefaultExpression>0</DefaultExpression>
  7479. <Position>3</Position>
  7480. <StoredType>int(11)|0s</StoredType>
  7481. </column>
  7482. <column id="1482" parent="322" name="status">
  7483. <Comment>法务状态 0否 1已回款 2已诉讼 3已坏账处理</Comment>
  7484. <DefaultExpression>0</DefaultExpression>
  7485. <Position>4</Position>
  7486. <StoredType>int(11)|0s</StoredType>
  7487. </column>
  7488. <column id="1483" parent="322" name="remarks">
  7489. <Comment>催款备注</Comment>
  7490. <Position>5</Position>
  7491. <StoredType>varchar(256)|0s</StoredType>
  7492. </column>
  7493. <column id="1484" parent="322" name="attachment_url">
  7494. <Comment>附件地址</Comment>
  7495. <Position>6</Position>
  7496. <StoredType>longtext|0s</StoredType>
  7497. </column>
  7498. <column id="1485" parent="322" name="operation_time">
  7499. <Comment>催款日期</Comment>
  7500. <Position>7</Position>
  7501. <StoredType>date|0s</StoredType>
  7502. </column>
  7503. <column id="1486" parent="322" name="create_time">
  7504. <Comment>创建时间</Comment>
  7505. <DefaultExpression>CURRENT_TIMESTAMP</DefaultExpression>
  7506. <Position>8</Position>
  7507. <StoredType>datetime|0s</StoredType>
  7508. </column>
  7509. <column id="1487" parent="322" name="aid">
  7510. <Comment>操作人</Comment>
  7511. <NotNull>1</NotNull>
  7512. <Position>9</Position>
  7513. <StoredType>varchar(36)|0s</StoredType>
  7514. </column>
  7515. <index id="1488" parent="322" name="PRIMARY">
  7516. <ColNames>id</ColNames>
  7517. <Type>btree</Type>
  7518. <Unique>1</Unique>
  7519. </index>
  7520. <index id="1489" parent="322" name="index_order_no">
  7521. <ColNames>order_no</ColNames>
  7522. <Type>btree</Type>
  7523. </index>
  7524. <key id="1490" parent="322" name="PRIMARY">
  7525. <NameSurrogate>1</NameSurrogate>
  7526. <Primary>1</Primary>
  7527. <UnderlyingIndexName>PRIMARY</UnderlyingIndexName>
  7528. </key>
  7529. <column id="1491" parent="323" name="id">
  7530. <AutoIncrement>2665</AutoIncrement>
  7531. <NotNull>1</NotNull>
  7532. <Position>1</Position>
  7533. <StoredType>int(11)|0s</StoredType>
  7534. </column>
  7535. <column id="1492" parent="323" name="order_no">
  7536. <Comment>订单编号</Comment>
  7537. <NotNull>1</NotNull>
  7538. <Position>2</Position>
  7539. <StoredType>varchar(20)|0s</StoredType>
  7540. </column>
  7541. <column id="1493" parent="323" name="process">
  7542. <Comment>流程 1提交 2审核 3驳回 4特批 5财务派单 6财务首付 7项目订单派单 8项目派单 9项目完成 0发起退单 10退单完成 11财务全款 12 离职转交</Comment>
  7543. <NotNull>1</NotNull>
  7544. <Position>3</Position>
  7545. <StoredType>int(11)|0s</StoredType>
  7546. </column>
  7547. <column id="1494" parent="323" name="create_time">
  7548. <Comment>时间戳</Comment>
  7549. <DefaultExpression>CURRENT_TIMESTAMP</DefaultExpression>
  7550. <Position>4</Position>
  7551. <StoredType>datetime|0s</StoredType>
  7552. </column>
  7553. <column id="1495" parent="323" name="aid">
  7554. <Comment>操作人</Comment>
  7555. <NotNull>1</NotNull>
  7556. <Position>5</Position>
  7557. <StoredType>varchar(36)|0s</StoredType>
  7558. </column>
  7559. <column id="1496" parent="323" name="remarks">
  7560. <Comment>备注</Comment>
  7561. <Position>6</Position>
  7562. <StoredType>varchar(1024)|0s</StoredType>
  7563. </column>
  7564. <index id="1497" parent="323" name="PRIMARY">
  7565. <ColNames>id</ColNames>
  7566. <Type>btree</Type>
  7567. <Unique>1</Unique>
  7568. </index>
  7569. <key id="1498" parent="323" name="PRIMARY">
  7570. <NameSurrogate>1</NameSurrogate>
  7571. <Primary>1</Primary>
  7572. <UnderlyingIndexName>PRIMARY</UnderlyingIndexName>
  7573. </key>
  7574. <column id="1499" parent="324" name="id">
  7575. <AutoIncrement>414</AutoIncrement>
  7576. <Comment>id</Comment>
  7577. <NotNull>1</NotNull>
  7578. <Position>1</Position>
  7579. <StoredType>int(11)|0s</StoredType>
  7580. </column>
  7581. <column id="1500" parent="324" name="order_no">
  7582. <Comment>订单编号</Comment>
  7583. <NotNull>1</NotNull>
  7584. <Position>2</Position>
  7585. <StoredType>varchar(20)|0s</StoredType>
  7586. </column>
  7587. <column id="1501" parent="324" name="salesman_id">
  7588. <Comment>营销员id</Comment>
  7589. <Position>3</Position>
  7590. <StoredType>varchar(36)|0s</StoredType>
  7591. </column>
  7592. <column id="1502" parent="324" name="finance_id">
  7593. <Comment>财务id</Comment>
  7594. <Position>4</Position>
  7595. <StoredType>varchar(36)|0s</StoredType>
  7596. </column>
  7597. <column id="1503" parent="324" name="salesman_name">
  7598. <Comment>营销员名称</Comment>
  7599. <Position>5</Position>
  7600. <StoredType>varchar(36)|0s</StoredType>
  7601. </column>
  7602. <column id="1504" parent="324" name="finance_name">
  7603. <Comment>财务名称</Comment>
  7604. <Position>6</Position>
  7605. <StoredType>varchar(36)|0s</StoredType>
  7606. </column>
  7607. <column id="1505" parent="324" name="final_receivables">
  7608. <Comment>最后一次收款</Comment>
  7609. <DefaultExpression>0.000000</DefaultExpression>
  7610. <Position>7</Position>
  7611. <StoredType>decimal(12,6 digit)|0s</StoredType>
  7612. </column>
  7613. <column id="1506" parent="324" name="final_Receivables_time">
  7614. <Comment>最后一次收款时间</Comment>
  7615. <Position>8</Position>
  7616. <StoredType>datetime|0s</StoredType>
  7617. </column>
  7618. <column id="1507" parent="324" name="invoice_amount">
  7619. <Comment>开票金额</Comment>
  7620. <DefaultExpression>0.000000</DefaultExpression>
  7621. <Position>9</Position>
  7622. <StoredType>decimal(12,6 digit)|0s</StoredType>
  7623. </column>
  7624. <column id="1508" parent="324" name="create_time">
  7625. <Comment>创建时间</Comment>
  7626. <DefaultExpression>CURRENT_TIMESTAMP</DefaultExpression>
  7627. <Position>10</Position>
  7628. <StoredType>datetime|0s</StoredType>
  7629. </column>
  7630. <column id="1509" parent="324" name="buyer_name">
  7631. <Comment>公司名称(冗余)</Comment>
  7632. <Position>11</Position>
  7633. <StoredType>varchar(512)|0s</StoredType>
  7634. </column>
  7635. <column id="1510" parent="324" name="order_receivables">
  7636. <Comment>应收款</Comment>
  7637. <DefaultExpression>0.000000</DefaultExpression>
  7638. <Position>12</Position>
  7639. <StoredType>decimal(12,6 digit)|0s</StoredType>
  7640. </column>
  7641. <column id="1511" parent="324" name="order_arrears">
  7642. <Comment>欠款</Comment>
  7643. <DefaultExpression>0.000000</DefaultExpression>
  7644. <Position>13</Position>
  7645. <StoredType>decimal(12,6 digit)|0s</StoredType>
  7646. </column>
  7647. <column id="1512" parent="324" name="payment_amount">
  7648. <Comment>成本实付</Comment>
  7649. <DefaultExpression>0.000000</DefaultExpression>
  7650. <Position>14</Position>
  7651. <StoredType>decimal(12,6 digit)|0s</StoredType>
  7652. </column>
  7653. <column id="1513" parent="324" name="cost_amount">
  7654. <Comment>成本金额</Comment>
  7655. <DefaultExpression>0.000000</DefaultExpression>
  7656. <Position>15</Position>
  7657. <StoredType>decimal(12,6 digit)|0s</StoredType>
  7658. </column>
  7659. <column id="1514" parent="324" name="dep_name">
  7660. <Comment>部门名称</Comment>
  7661. <Position>16</Position>
  7662. <StoredType>varchar(32)|0s</StoredType>
  7663. </column>
  7664. <column id="1515" parent="324" name="province_name">
  7665. <Comment>省份名称</Comment>
  7666. <Position>17</Position>
  7667. <StoredType>varchar(16)|0s</StoredType>
  7668. </column>
  7669. <column id="1516" parent="324" name="legal_affairs">
  7670. <Comment>法务 0否 1是</Comment>
  7671. <DefaultExpression>0</DefaultExpression>
  7672. <Position>18</Position>
  7673. <StoredType>int(11)|0s</StoredType>
  7674. </column>
  7675. <column id="1517" parent="324" name="dun_start_time">
  7676. <Comment>催款启动日期</Comment>
  7677. <Position>19</Position>
  7678. <StoredType>datetime|0s</StoredType>
  7679. </column>
  7680. <column id="1518" parent="324" name="legal_affairs_type">
  7681. <Comment>法务状态 0法务催收中 1延期法务 2已完成法务</Comment>
  7682. <DefaultExpression>0</DefaultExpression>
  7683. <Position>20</Position>
  7684. <StoredType>int(11)|0s</StoredType>
  7685. </column>
  7686. <column id="1519" parent="324" name="operation_time">
  7687. <Comment>催款日期</Comment>
  7688. <Position>21</Position>
  7689. <StoredType>date|0s</StoredType>
  7690. </column>
  7691. <column id="1520" parent="324" name="legal_affairs_status">
  7692. <Comment>法务状态 0否 1已回款 2已诉讼 3已坏账处理</Comment>
  7693. <DefaultExpression>0</DefaultExpression>
  7694. <Position>22</Position>
  7695. <StoredType>int(11)|0s</StoredType>
  7696. </column>
  7697. <column id="1521" parent="324" name="project_type">
  7698. <Comment>会员 0否 1是</Comment>
  7699. <DefaultExpression>0</DefaultExpression>
  7700. <Position>23</Position>
  7701. <StoredType>int(1)|0s</StoredType>
  7702. </column>
  7703. <column id="1522" parent="324" name="service_type">
  7704. <Comment>服务类型</Comment>
  7705. <Position>24</Position>
  7706. <StoredType>varchar(128)|0s</StoredType>
  7707. </column>
  7708. <column id="1523" parent="324" name="service_project">
  7709. <Comment>服务项目</Comment>
  7710. <Position>25</Position>
  7711. <StoredType>varchar(1024)|0s</StoredType>
  7712. </column>
  7713. <column id="1524" parent="324" name="patent_cost">
  7714. <Comment>专利成本</Comment>
  7715. <DefaultExpression>0.000000</DefaultExpression>
  7716. <Position>26</Position>
  7717. <StoredType>decimal(12,6 digit)|0s</StoredType>
  7718. </column>
  7719. <column id="1525" parent="324" name="patent_cost_actual">
  7720. <Comment>专利成本实付</Comment>
  7721. <DefaultExpression>0.000000</DefaultExpression>
  7722. <Position>27</Position>
  7723. <StoredType>decimal(12,6 digit)|0s</StoredType>
  7724. </column>
  7725. <column id="1526" parent="324" name="soft_cost">
  7726. <Comment>软著成本</Comment>
  7727. <DefaultExpression>0.000000</DefaultExpression>
  7728. <Position>28</Position>
  7729. <StoredType>decimal(12,6 digit)|0s</StoredType>
  7730. </column>
  7731. <column id="1527" parent="324" name="soft_cost_actual">
  7732. <Comment>软著成本实付</Comment>
  7733. <DefaultExpression>0.000000</DefaultExpression>
  7734. <Position>29</Position>
  7735. <StoredType>decimal(12,6 digit)|0s</StoredType>
  7736. </column>
  7737. <column id="1528" parent="324" name="audit_cost">
  7738. <Comment>审计成本</Comment>
  7739. <DefaultExpression>0.000000</DefaultExpression>
  7740. <Position>30</Position>
  7741. <StoredType>decimal(12,6 digit)|0s</StoredType>
  7742. </column>
  7743. <column id="1529" parent="324" name="audit_cost_actual">
  7744. <Comment>审计成本实付</Comment>
  7745. <DefaultExpression>0.000000</DefaultExpression>
  7746. <Position>31</Position>
  7747. <StoredType>decimal(12,6 digit)|0s</StoredType>
  7748. </column>
  7749. <column id="1530" parent="324" name="other_cost">
  7750. <Comment>其他成本</Comment>
  7751. <DefaultExpression>0.000000</DefaultExpression>
  7752. <Position>32</Position>
  7753. <StoredType>decimal(12,6 digit)|0s</StoredType>
  7754. </column>
  7755. <column id="1531" parent="324" name="other_cost_actual">
  7756. <Comment>其他成本实付</Comment>
  7757. <DefaultExpression>0.000000</DefaultExpression>
  7758. <Position>33</Position>
  7759. <StoredType>decimal(12,6 digit)|0s</StoredType>
  7760. </column>
  7761. <column id="1532" parent="324" name="expect_profit">
  7762. <Comment>预计毛利</Comment>
  7763. <DefaultExpression>0.000000</DefaultExpression>
  7764. <Position>34</Position>
  7765. <StoredType>decimal(12,6 digit)|0s</StoredType>
  7766. </column>
  7767. <column id="1533" parent="324" name="actual_profit">
  7768. <Comment>实际毛利</Comment>
  7769. <DefaultExpression>0.000000</DefaultExpression>
  7770. <Position>35</Position>
  7771. <StoredType>decimal(12,6 digit)|0s</StoredType>
  7772. </column>
  7773. <column id="1534" parent="324" name="stop_project">
  7774. <Comment>暂停项目 0无 1有</Comment>
  7775. <DefaultExpression>0</DefaultExpression>
  7776. <Position>36</Position>
  7777. <StoredType>int(1)|0s</StoredType>
  7778. </column>
  7779. <column id="1535" parent="324" name="bid_type">
  7780. <Comment>会员 0否 1是</Comment>
  7781. <DefaultExpression>0</DefaultExpression>
  7782. <Position>37</Position>
  7783. <StoredType>int(1)|0s</StoredType>
  7784. </column>
  7785. <column id="1536" parent="324" name="dun_node_content">
  7786. <Comment>催款节点说明</Comment>
  7787. <Position>38</Position>
  7788. <StoredType>varchar(512)|0s</StoredType>
  7789. </column>
  7790. <column id="1537" parent="324" name="change_count">
  7791. <Comment>变更数</Comment>
  7792. <DefaultExpression>0</DefaultExpression>
  7793. <Position>39</Position>
  7794. <StoredType>int(11)|0s</StoredType>
  7795. </column>
  7796. <column id="1538" parent="324" name="restatement_count">
  7797. <Comment>重报数</Comment>
  7798. <DefaultExpression>0</DefaultExpression>
  7799. <Position>40</Position>
  7800. <StoredType>int(11)|0s</StoredType>
  7801. </column>
  7802. <column id="1539" parent="324" name="refund_count">
  7803. <Comment>退单退款数</Comment>
  7804. <DefaultExpression>0</DefaultExpression>
  7805. <Position>41</Position>
  7806. <StoredType>int(11)|0s</StoredType>
  7807. </column>
  7808. <column id="1540" parent="324" name="expense_amount">
  7809. <Comment>报销金额</Comment>
  7810. <DefaultExpression>0.000000</DefaultExpression>
  7811. <Position>42</Position>
  7812. <StoredType>decimal(12,6 digit)|0s</StoredType>
  7813. </column>
  7814. <column id="1541" parent="324" name="add_group_chat">
  7815. <Comment>入群 0=否,1=是</Comment>
  7816. <DefaultExpression>0</DefaultExpression>
  7817. <Position>43</Position>
  7818. <StoredType>int(1)|0s</StoredType>
  7819. </column>
  7820. <column id="1542" parent="324" name="add_group_chat_time">
  7821. <Comment>入群时间</Comment>
  7822. <Position>44</Position>
  7823. <StoredType>datetime|0s</StoredType>
  7824. </column>
  7825. <index id="1543" parent="324" name="PRIMARY">
  7826. <ColNames>id</ColNames>
  7827. <Type>btree</Type>
  7828. <Unique>1</Unique>
  7829. </index>
  7830. <index id="1544" parent="324" name="index_order_no">
  7831. <ColNames>order_no</ColNames>
  7832. <Type>btree</Type>
  7833. </index>
  7834. <key id="1545" parent="324" name="PRIMARY">
  7835. <NameSurrogate>1</NameSurrogate>
  7836. <Primary>1</Primary>
  7837. <UnderlyingIndexName>PRIMARY</UnderlyingIndexName>
  7838. </key>
  7839. <column id="1546" parent="325" name="order_no">
  7840. <Comment>订单编号</Comment>
  7841. <NotNull>1</NotNull>
  7842. <Position>1</Position>
  7843. <StoredType>varchar(20)|0s</StoredType>
  7844. </column>
  7845. <column id="1547" parent="325" name="order_type">
  7846. <Comment>订单类型 0认证项目 1科技项目 2 两化融化管理体系认证项目</Comment>
  7847. <DefaultExpression>0</DefaultExpression>
  7848. <NotNull>1</NotNull>
  7849. <Position>2</Position>
  7850. <StoredType>int(11)|0s</StoredType>
  7851. </column>
  7852. <column id="1548" parent="325" name="creater">
  7853. <Comment>创建人</Comment>
  7854. <NotNull>1</NotNull>
  7855. <Position>3</Position>
  7856. <StoredType>varchar(36)|0s</StoredType>
  7857. </column>
  7858. <column id="1549" parent="325" name="create_time">
  7859. <Comment>创建时间</Comment>
  7860. <DefaultExpression>CURRENT_TIMESTAMP</DefaultExpression>
  7861. <Position>4</Position>
  7862. <StoredType>datetime|0s</StoredType>
  7863. </column>
  7864. <column id="1550" parent="325" name="update_time">
  7865. <Comment>更新时间</Comment>
  7866. <DefaultExpression>CURRENT_TIMESTAMP</DefaultExpression>
  7867. <OnUpdate>CURRENT_TIMESTAMP</OnUpdate>
  7868. <Position>5</Position>
  7869. <StoredType>datetime|0s</StoredType>
  7870. </column>
  7871. <column id="1551" parent="325" name="buyer_id">
  7872. <Comment>买方id</Comment>
  7873. <NotNull>1</NotNull>
  7874. <Position>6</Position>
  7875. <StoredType>varchar(36)|0s</StoredType>
  7876. </column>
  7877. <column id="1552" parent="325" name="first_amount">
  7878. <Comment>首付金额</Comment>
  7879. <DefaultExpression>0.000000</DefaultExpression>
  7880. <NotNull>1</NotNull>
  7881. <Position>7</Position>
  7882. <StoredType>decimal(12,6 digit)|0s</StoredType>
  7883. </column>
  7884. <column id="1553" parent="325" name="total_amount">
  7885. <Comment>总金额</Comment>
  7886. <DefaultExpression>0.000000</DefaultExpression>
  7887. <NotNull>1</NotNull>
  7888. <Position>8</Position>
  7889. <StoredType>decimal(12,6 digit)|0s</StoredType>
  7890. </column>
  7891. <column id="1554" parent="325" name="settlement_amount">
  7892. <Comment>已收金额</Comment>
  7893. <DefaultExpression>0.000000</DefaultExpression>
  7894. <NotNull>1</NotNull>
  7895. <Position>9</Position>
  7896. <StoredType>decimal(12,6 digit)|0s</StoredType>
  7897. </column>
  7898. <column id="1555" parent="325" name="refund_amount">
  7899. <Comment>退款金额</Comment>
  7900. <DefaultExpression>0.000000</DefaultExpression>
  7901. <NotNull>1</NotNull>
  7902. <Position>10</Position>
  7903. <StoredType>decimal(12,6 digit)|0s</StoredType>
  7904. </column>
  7905. <column id="1556" parent="325" name="order_status">
  7906. <Comment>订单状态 0-待签单,1-签单待审,2-签单审核通过,3-签单审核拒绝,4-已结项,5-已驳回,6-已退单</Comment>
  7907. <DefaultExpression>0</DefaultExpression>
  7908. <NotNull>1</NotNull>
  7909. <Position>11</Position>
  7910. <StoredType>int(11)|0s</StoredType>
  7911. </column>
  7912. <column id="1557" parent="325" name="liquidation_status">
  7913. <Comment>清算状态 0-首付待付请,1-尾款待付清,2-已付请,3-部分退款,4-全部退款</Comment>
  7914. <DefaultExpression>0</DefaultExpression>
  7915. <NotNull>1</NotNull>
  7916. <Position>12</Position>
  7917. <StoredType>int(11)|0s</StoredType>
  7918. </column>
  7919. <column id="1558" parent="325" name="process_status">
  7920. <Comment>流程状态 0=营销员,1=经理,2=营销管理员,3=财务与技术总监,4=总裁,5=技术总监派单,6部分分配,7全部分配</Comment>
  7921. <DefaultExpression>0</DefaultExpression>
  7922. <NotNull>1</NotNull>
  7923. <Position>13</Position>
  7924. <StoredType>int(11)|0s</StoredType>
  7925. </column>
  7926. <column id="1559" parent="325" name="project_status">
  7927. <Comment>项目状态 0-项目待提交 1-项目已提交,2-项目评审,3-项目立项,4-项目公示,5-项目抽查,6-项目备案,7-项目下证,8-项目验收,9-项目拨款</Comment>
  7928. <DefaultExpression>0</DefaultExpression>
  7929. <Position>14</Position>
  7930. <StoredType>int(11)|0s</StoredType>
  7931. </column>
  7932. <column id="1560" parent="325" name="approval">
  7933. <Comment>特批状态 0-非特批 ,1-总裁待审核,2-总裁通过,3-总裁驳回 4董事长待审核 5董事长通过 6董事长驳回</Comment>
  7934. <DefaultExpression>0</DefaultExpression>
  7935. <NotNull>1</NotNull>
  7936. <Position>15</Position>
  7937. <StoredType>int(11)|0s</StoredType>
  7938. </column>
  7939. <column id="1561" parent="325" name="order_remarks">
  7940. <Comment>订单备注</Comment>
  7941. <Position>16</Position>
  7942. <StoredType>varchar(512)|0s</StoredType>
  7943. </column>
  7944. <column id="1562" parent="325" name="delete_sign">
  7945. <Comment>0正常 1作废 2锁定 3变更中</Comment>
  7946. <DefaultExpression>0</DefaultExpression>
  7947. <NotNull>1</NotNull>
  7948. <Position>17</Position>
  7949. <StoredType>int(11)|0s</StoredType>
  7950. </column>
  7951. <column id="1563" parent="325" name="salesman_id">
  7952. <Comment>营销员id</Comment>
  7953. <Position>18</Position>
  7954. <StoredType>varchar(36)|0s</StoredType>
  7955. </column>
  7956. <column id="1564" parent="325" name="finance_id">
  7957. <Comment>财务id</Comment>
  7958. <Position>19</Position>
  7959. <StoredType>varchar(36)|0s</StoredType>
  7960. </column>
  7961. <column id="1565" parent="325" name="technician_id">
  7962. <Comment>技术员id</Comment>
  7963. <Position>20</Position>
  7964. <StoredType>varchar(36)|0s</StoredType>
  7965. </column>
  7966. <column id="1566" parent="325" name="sign_time">
  7967. <Comment>签单日期</Comment>
  7968. <Position>21</Position>
  7969. <StoredType>date|0s</StoredType>
  7970. </column>
  7971. <column id="1567" parent="325" name="settlement_time">
  7972. <Comment>结算日期</Comment>
  7973. <Position>22</Position>
  7974. <StoredType>date|0s</StoredType>
  7975. </column>
  7976. <column id="1568" parent="325" name="contract_picture_url">
  7977. <Comment>合同图片</Comment>
  7978. <Position>23</Position>
  7979. <StoredType>longtext|0s</StoredType>
  7980. </column>
  7981. <column id="1569" parent="325" name="contract_no">
  7982. <Comment>合同编号</Comment>
  7983. <Position>24</Position>
  7984. <StoredType>varchar(32)|0s</StoredType>
  7985. </column>
  7986. <column id="1570" parent="325" name="contract_type">
  7987. <Comment>业务品类</Comment>
  7988. <Position>25</Position>
  7989. <StoredType>varchar(36)|0s</StoredType>
  7990. </column>
  7991. <column id="1571" parent="325" name="contacts">
  7992. <Comment>企业负责人</Comment>
  7993. <Position>26</Position>
  7994. <StoredType>varchar(16)|0s</StoredType>
  7995. </column>
  7996. <column id="1572" parent="325" name="contact_mobile">
  7997. <Comment>负责人联系电话</Comment>
  7998. <Position>27</Position>
  7999. <StoredType>varchar(16)|0s</StoredType>
  8000. </column>
  8001. <column id="1573" parent="325" name="legal_person">
  8002. <Comment>企业法人</Comment>
  8003. <Position>28</Position>
  8004. <StoredType>varchar(16)|0s</StoredType>
  8005. </column>
  8006. <column id="1574" parent="325" name="legal_person_tel">
  8007. <Comment>法人联系电话</Comment>
  8008. <Position>29</Position>
  8009. <StoredType>varchar(16)|0s</StoredType>
  8010. </column>
  8011. <column id="1575" parent="325" name="proof_count">
  8012. <Comment>校对单量</Comment>
  8013. <DefaultExpression>0.0</DefaultExpression>
  8014. <NotNull>1</NotNull>
  8015. <Position>30</Position>
  8016. <StoredType>float(2,1 digit)|0s</StoredType>
  8017. </column>
  8018. <column id="1576" parent="325" name="proof_aid">
  8019. <Comment>校对人</Comment>
  8020. <Position>31</Position>
  8021. <StoredType>varchar(36)|0s</StoredType>
  8022. </column>
  8023. <column id="1577" parent="325" name="proof_time">
  8024. <Comment>校对时间</Comment>
  8025. <Position>32</Position>
  8026. <StoredType>datetime|0s</StoredType>
  8027. </column>
  8028. <column id="1578" parent="325" name="proof_status">
  8029. <Comment>校对状态(0-未校对 1已校对)</Comment>
  8030. <DefaultExpression>0</DefaultExpression>
  8031. <Position>33</Position>
  8032. <StoredType>int(11)|0s</StoredType>
  8033. </column>
  8034. <column id="1579" parent="325" name="order_dep">
  8035. <Comment>订单部门</Comment>
  8036. <Position>34</Position>
  8037. <StoredType>varchar(36)|0s</StoredType>
  8038. </column>
  8039. <column id="1580" parent="325" name="outsource">
  8040. <Comment>外包 0否 1是</Comment>
  8041. <DefaultExpression>0</DefaultExpression>
  8042. <Position>35</Position>
  8043. <StoredType>int(11)|0s</StoredType>
  8044. </column>
  8045. <column id="1581" parent="325" name="additional_order">
  8046. <Comment>附加订单</Comment>
  8047. <Position>36</Position>
  8048. <StoredType>varchar(20)|0s</StoredType>
  8049. </column>
  8050. <column id="1582" parent="325" name="primary_order">
  8051. <Comment>原订单</Comment>
  8052. <Position>37</Position>
  8053. <StoredType>varchar(20)|0s</StoredType>
  8054. </column>
  8055. <column id="1583" parent="325" name="old_salesman_id">
  8056. <Comment>原营销员id</Comment>
  8057. <Position>38</Position>
  8058. <StoredType>varchar(36)|0s</StoredType>
  8059. </column>
  8060. <column id="1584" parent="325" name="back_status">
  8061. <Comment>驳回位置 (同流程状态)</Comment>
  8062. <DefaultExpression>0</DefaultExpression>
  8063. <NotNull>1</NotNull>
  8064. <Position>39</Position>
  8065. <StoredType>int(11)|0s</StoredType>
  8066. </column>
  8067. <column id="1585" parent="325" name="agreement_url">
  8068. <Comment>补充协议</Comment>
  8069. <Position>40</Position>
  8070. <StoredType>longtext|0s</StoredType>
  8071. </column>
  8072. <column id="1586" parent="325" name="new_user">
  8073. <Comment>客户类型 0新客户 1老客户</Comment>
  8074. <DefaultExpression>0</DefaultExpression>
  8075. <Position>41</Position>
  8076. <StoredType>int(11)|0s</StoredType>
  8077. </column>
  8078. <column id="1587" parent="325" name="service_content">
  8079. <Comment>服务内容</Comment>
  8080. <Position>42</Position>
  8081. <StoredType>varchar(512)|0s</StoredType>
  8082. </column>
  8083. <column id="1588" parent="325" name="sales_type">
  8084. <Comment>销售类型 0=电话新开发,1=电话自带资源,2=网络,3=渠道,4=转介绍,5=其他,6=高新复购,7=其他复购</Comment>
  8085. <Position>43</Position>
  8086. <StoredType>int(11)|0s</StoredType>
  8087. </column>
  8088. <column id="1589" parent="325" name="channel_id">
  8089. <Comment>渠道客户编号</Comment>
  8090. <Position>44</Position>
  8091. <StoredType>varchar(36)|0s</StoredType>
  8092. </column>
  8093. <column id="1590" parent="325" name="other">
  8094. <Comment>销售其他描述</Comment>
  8095. <Position>45</Position>
  8096. <StoredType>varchar(64)|0s</StoredType>
  8097. </column>
  8098. <column id="1591" parent="325" name="user_type">
  8099. <Comment>客户类型 0私有客户 1签单客户 2=限定项目客户</Comment>
  8100. <Position>46</Position>
  8101. <StoredType>int(11)|0s</StoredType>
  8102. </column>
  8103. <column id="1592" parent="325" name="examine_name">
  8104. <Comment>审核人员名称</Comment>
  8105. <Position>47</Position>
  8106. <StoredType>varchar(100)|0s</StoredType>
  8107. </column>
  8108. <column id="1593" parent="325" name="tag">
  8109. <Comment>标签 0=默认,1=待处理,2=待派单,3=暂不处理,4=已过期,已作废</Comment>
  8110. <DefaultExpression>0</DefaultExpression>
  8111. <Position>48</Position>
  8112. <StoredType>int(1)|0s</StoredType>
  8113. </column>
  8114. <column id="1594" parent="325" name="patent_status">
  8115. <Comment>0=客户自己完成,1=非客户自己完成</Comment>
  8116. <Position>49</Position>
  8117. <StoredType>int(1)|0s</StoredType>
  8118. </column>
  8119. <column id="1595" parent="325" name="score_status">
  8120. <Comment>0=无,1=待评分,2=部分评分,3=全部评分</Comment>
  8121. <DefaultExpression>0</DefaultExpression>
  8122. <Position>50</Position>
  8123. <StoredType>int(1)|0s</StoredType>
  8124. </column>
  8125. <column id="1596" parent="325" name="new_sign_user">
  8126. <Comment>新购客户 0=是,1=否(未签单或者三年内未签单为新)</Comment>
  8127. <DefaultExpression>0</DefaultExpression>
  8128. <Position>51</Position>
  8129. <StoredType>int(1)|0s</StoredType>
  8130. </column>
  8131. <column id="1597" parent="325" name="nda">
  8132. <Comment>是否签订保密协议:0=无,1=有</Comment>
  8133. <Position>52</Position>
  8134. <StoredType>int(1)|0s</StoredType>
  8135. </column>
  8136. <column id="1598" parent="325" name="nda_url">
  8137. <Comment>保密协议地址</Comment>
  8138. <Position>53</Position>
  8139. <StoredType>varchar(256)|0s</StoredType>
  8140. </column>
  8141. <column id="1599" parent="325" name="breach_clause">
  8142. <Comment>是否有违约条件:0=无,1=有,有限责任违约条款、与技术服务有关,2=有,有限责任违约条款、与技术服务无有关,3=有,无限责任违约条款、与技术服务无有关,4=有,无限责任违约条款、与技术服务有关</Comment>
  8143. <Position>54</Position>
  8144. <StoredType>int(1)|0s</StoredType>
  8145. </column>
  8146. <column id="1600" parent="325" name="breach_clause_url">
  8147. <Comment>违约条款地址</Comment>
  8148. <Position>55</Position>
  8149. <StoredType>varchar(256)|0s</StoredType>
  8150. </column>
  8151. <index id="1601" parent="325" name="PRIMARY">
  8152. <ColNames>order_no</ColNames>
  8153. <Type>btree</Type>
  8154. <Unique>1</Unique>
  8155. </index>
  8156. <key id="1602" parent="325" name="PRIMARY">
  8157. <NameSurrogate>1</NameSurrogate>
  8158. <Primary>1</Primary>
  8159. <UnderlyingIndexName>PRIMARY</UnderlyingIndexName>
  8160. </key>
  8161. <column id="1603" parent="326" name="id">
  8162. <AutoIncrement>82</AutoIncrement>
  8163. <Comment>编号</Comment>
  8164. <NotNull>1</NotNull>
  8165. <Position>1</Position>
  8166. <StoredType>int(11)|0s</StoredType>
  8167. </column>
  8168. <column id="1604" parent="326" name="tid">
  8169. <Comment>项目编号</Comment>
  8170. <NotNull>1</NotNull>
  8171. <Position>2</Position>
  8172. <StoredType>int(11)|0s</StoredType>
  8173. </column>
  8174. <column id="1605" parent="326" name="node_id">
  8175. <Comment>节点编号</Comment>
  8176. <Position>3</Position>
  8177. <StoredType>int(11)|0s</StoredType>
  8178. </column>
  8179. <column id="1606" parent="326" name="choose_type">
  8180. <Comment>支付种类 0第三方 1催款 2官费</Comment>
  8181. <DefaultExpression>0</DefaultExpression>
  8182. <Position>4</Position>
  8183. <StoredType>int(11)|0s</StoredType>
  8184. </column>
  8185. <column id="1607" parent="326" name="payment_type">
  8186. <Comment>支付类型 0第三方 1官费(废弃)</Comment>
  8187. <DefaultExpression>0</DefaultExpression>
  8188. <Position>5</Position>
  8189. <StoredType>int(11)|0s</StoredType>
  8190. </column>
  8191. <column id="1608" parent="326" name="company_name">
  8192. <Comment>公司名称</Comment>
  8193. <Position>6</Position>
  8194. <StoredType>varchar(36)|0s</StoredType>
  8195. </column>
  8196. <column id="1609" parent="326" name="quantity">
  8197. <Comment>数量</Comment>
  8198. <Position>7</Position>
  8199. <StoredType>int(11)|0s</StoredType>
  8200. </column>
  8201. <column id="1610" parent="326" name="payment_status">
  8202. <Comment>支付状态 0半款 1全款</Comment>
  8203. <DefaultExpression>0</DefaultExpression>
  8204. <Position>8</Position>
  8205. <StoredType>int(11)|0s</StoredType>
  8206. </column>
  8207. <column id="1611" parent="326" name="status">
  8208. <Comment>状态 0审核 1驳回 2待支付 3已支付</Comment>
  8209. <Position>9</Position>
  8210. <StoredType>int(11)|0s</StoredType>
  8211. </column>
  8212. <column id="1612" parent="326" name="application_amount">
  8213. <Comment>申请金额</Comment>
  8214. <DefaultExpression>0.000000</DefaultExpression>
  8215. <Position>10</Position>
  8216. <StoredType>decimal(12,6 digit)|0s</StoredType>
  8217. </column>
  8218. <column id="1613" parent="326" name="payment_amount">
  8219. <Comment>支付金额</Comment>
  8220. <DefaultExpression>0.000000</DefaultExpression>
  8221. <Position>11</Position>
  8222. <StoredType>decimal(12,6 digit)|0s</StoredType>
  8223. </column>
  8224. <column id="1614" parent="326" name="remarks">
  8225. <Comment>备注</Comment>
  8226. <Position>12</Position>
  8227. <StoredType>varchar(512)|0s</StoredType>
  8228. </column>
  8229. <column id="1615" parent="326" name="create_time">
  8230. <Comment>创建时间</Comment>
  8231. <DefaultExpression>CURRENT_TIMESTAMP</DefaultExpression>
  8232. <Position>13</Position>
  8233. <StoredType>datetime|0s</StoredType>
  8234. </column>
  8235. <column id="1616" parent="326" name="aid">
  8236. <Comment>负责人</Comment>
  8237. <Position>14</Position>
  8238. <StoredType>varchar(36)|0s</StoredType>
  8239. </column>
  8240. <column id="1617" parent="326" name="aname">
  8241. <Comment>负责名称</Comment>
  8242. <Position>15</Position>
  8243. <StoredType>varchar(36)|0s</StoredType>
  8244. </column>
  8245. <column id="1618" parent="326" name="tpc_id">
  8246. <Comment>第三方机构编号</Comment>
  8247. <Position>16</Position>
  8248. <StoredType>int(11)|0s</StoredType>
  8249. </column>
  8250. <column id="1619" parent="326" name="process_status">
  8251. <Comment>流程状态 0发起 1咨询师管理员 2财务</Comment>
  8252. <Position>17</Position>
  8253. <StoredType>int(11)|0s</StoredType>
  8254. </column>
  8255. <column id="1620" parent="326" name="examine_name">
  8256. <Comment>审核人员名称</Comment>
  8257. <Position>18</Position>
  8258. <StoredType>varchar(100)|0s</StoredType>
  8259. </column>
  8260. <index id="1621" parent="326" name="PRIMARY">
  8261. <ColNames>id</ColNames>
  8262. <Type>btree</Type>
  8263. <Unique>1</Unique>
  8264. </index>
  8265. <key id="1622" parent="326" name="PRIMARY">
  8266. <NameSurrogate>1</NameSurrogate>
  8267. <Primary>1</Primary>
  8268. <UnderlyingIndexName>PRIMARY</UnderlyingIndexName>
  8269. </key>
  8270. <column id="1623" parent="327" name="id">
  8271. <AutoIncrement>268</AutoIncrement>
  8272. <NotNull>1</NotNull>
  8273. <Position>1</Position>
  8274. <StoredType>int(11)|0s</StoredType>
  8275. </column>
  8276. <column id="1624" parent="327" name="order_no">
  8277. <Comment>订单编号</Comment>
  8278. <NotNull>1</NotNull>
  8279. <Position>2</Position>
  8280. <StoredType>varchar(20)|0s</StoredType>
  8281. </column>
  8282. <column id="1625" parent="327" name="actual_duration">
  8283. <Comment>实际公出</Comment>
  8284. <DefaultExpression>0</DefaultExpression>
  8285. <Position>3</Position>
  8286. <StoredType>double|0s</StoredType>
  8287. </column>
  8288. <column id="1626" parent="327" name="people_count">
  8289. <Comment>公出人数</Comment>
  8290. <DefaultExpression>0</DefaultExpression>
  8291. <Position>4</Position>
  8292. <StoredType>int(11)|0s</StoredType>
  8293. </column>
  8294. <column id="1627" parent="327" name="frequency">
  8295. <Comment>公出次数</Comment>
  8296. <DefaultExpression>0</DefaultExpression>
  8297. <Position>5</Position>
  8298. <StoredType>int(11)|0s</StoredType>
  8299. </column>
  8300. <column id="1628" parent="327" name="create_time">
  8301. <Comment>发起时间</Comment>
  8302. <DefaultExpression>CURRENT_TIMESTAMP</DefaultExpression>
  8303. <Position>6</Position>
  8304. <StoredType>datetime|0s</StoredType>
  8305. </column>
  8306. <column id="1629" parent="327" name="max_duration">
  8307. <Comment>最大公出小时</Comment>
  8308. <DefaultExpression>0</DefaultExpression>
  8309. <Position>7</Position>
  8310. <StoredType>double|0s</StoredType>
  8311. </column>
  8312. <column id="1630" parent="327" name="max_process">
  8313. <Comment>最大公出审核 0=未发起,1=技术总监审核中,2=财务总监审核中,3=驳回,4=完成</Comment>
  8314. <DefaultExpression>0</DefaultExpression>
  8315. <Position>8</Position>
  8316. <StoredType>int(1)|0s</StoredType>
  8317. </column>
  8318. <column id="1631" parent="327" name="max_type">
  8319. <Comment>最大分类 0=不能公出,1=时间内公出,2=未设置公出</Comment>
  8320. <DefaultExpression>0</DefaultExpression>
  8321. <Position>9</Position>
  8322. <StoredType>int(1)|0s</StoredType>
  8323. </column>
  8324. <column id="1632" parent="327" name="max_status">
  8325. <Comment>最大状态 0=未修改,1=已修改</Comment>
  8326. <DefaultExpression>0</DefaultExpression>
  8327. <Position>10</Position>
  8328. <StoredType>int(1)|0s</StoredType>
  8329. </column>
  8330. <index id="1633" parent="327" name="PRIMARY">
  8331. <ColNames>id</ColNames>
  8332. <Type>btree</Type>
  8333. <Unique>1</Unique>
  8334. </index>
  8335. <index id="1634" parent="327" name="t_order_public_release_count_order_index">
  8336. <ColNames>order_no</ColNames>
  8337. <Type>btree</Type>
  8338. </index>
  8339. <key id="1635" parent="327" name="PRIMARY">
  8340. <NameSurrogate>1</NameSurrogate>
  8341. <Primary>1</Primary>
  8342. <UnderlyingIndexName>PRIMARY</UnderlyingIndexName>
  8343. </key>
  8344. <column id="1636" parent="328" name="id">
  8345. <AutoIncrement>22</AutoIncrement>
  8346. <Comment>id</Comment>
  8347. <NotNull>1</NotNull>
  8348. <Position>1</Position>
  8349. <StoredType>int(11)|0s</StoredType>
  8350. </column>
  8351. <column id="1637" parent="328" name="order_no">
  8352. <Comment>订单编号</Comment>
  8353. <NotNull>1</NotNull>
  8354. <Position>2</Position>
  8355. <StoredType>varchar(20)|0s</StoredType>
  8356. </column>
  8357. <column id="1638" parent="328" name="service_time">
  8358. <Comment>服务时间</Comment>
  8359. <Position>3</Position>
  8360. <StoredType>date|0s</StoredType>
  8361. </column>
  8362. <column id="1639" parent="328" name="content">
  8363. <Comment>内容</Comment>
  8364. <Position>4</Position>
  8365. <StoredType>varchar(512)|0s</StoredType>
  8366. </column>
  8367. <column id="1640" parent="328" name="remarks">
  8368. <Comment>备注</Comment>
  8369. <Position>5</Position>
  8370. <StoredType>varchar(512)|0s</StoredType>
  8371. </column>
  8372. <column id="1641" parent="328" name="create_time">
  8373. <Comment>创建时间</Comment>
  8374. <DefaultExpression>CURRENT_TIMESTAMP</DefaultExpression>
  8375. <Position>6</Position>
  8376. <StoredType>datetime|0s</StoredType>
  8377. </column>
  8378. <index id="1642" parent="328" name="PRIMARY">
  8379. <ColNames>id</ColNames>
  8380. <Type>btree</Type>
  8381. <Unique>1</Unique>
  8382. </index>
  8383. <index id="1643" parent="328" name="index_order_no">
  8384. <ColNames>order_no</ColNames>
  8385. <Type>btree</Type>
  8386. </index>
  8387. <key id="1644" parent="328" name="PRIMARY">
  8388. <NameSurrogate>1</NameSurrogate>
  8389. <Primary>1</Primary>
  8390. <UnderlyingIndexName>PRIMARY</UnderlyingIndexName>
  8391. </key>
  8392. <column id="1645" parent="329" name="id">
  8393. <AutoIncrement>1050</AutoIncrement>
  8394. <Comment>任务编号</Comment>
  8395. <NotNull>1</NotNull>
  8396. <Position>1</Position>
  8397. <StoredType>int(11)|0s</StoredType>
  8398. </column>
  8399. <column id="1646" parent="329" name="order_no">
  8400. <Comment>订单编号</Comment>
  8401. <NotNull>1</NotNull>
  8402. <Position>2</Position>
  8403. <StoredType>varchar(20)|0s</StoredType>
  8404. </column>
  8405. <column id="1647" parent="329" name="main">
  8406. <Comment>是否为主要任务 0-否,1-是</Comment>
  8407. <DefaultExpression>0</DefaultExpression>
  8408. <NotNull>1</NotNull>
  8409. <Position>3</Position>
  8410. <StoredType>int(11)|0s</StoredType>
  8411. </column>
  8412. <column id="1648" parent="329" name="super_id">
  8413. <Comment>父任务id</Comment>
  8414. <Position>4</Position>
  8415. <StoredType>varchar(36)|0s</StoredType>
  8416. </column>
  8417. <column id="1649" parent="329" name="commodity_id">
  8418. <Comment>商品id</Comment>
  8419. <NotNull>1</NotNull>
  8420. <Position>5</Position>
  8421. <StoredType>varchar(36)|0s</StoredType>
  8422. </column>
  8423. <column id="1650" parent="329" name="commodity_name">
  8424. <Comment>商品名称(冗余)</Comment>
  8425. <NotNull>1</NotNull>
  8426. <Position>6</Position>
  8427. <StoredType>varchar(255)|0s</StoredType>
  8428. </column>
  8429. <column id="1651" parent="329" name="commodity_quantity">
  8430. <Comment>商品数量</Comment>
  8431. <NotNull>1</NotNull>
  8432. <Position>7</Position>
  8433. <StoredType>int(11)|0s</StoredType>
  8434. </column>
  8435. <column id="1652" parent="329" name="commodity_mode">
  8436. <Comment>商品型号</Comment>
  8437. <Position>8</Position>
  8438. <StoredType>varchar(8)|0s</StoredType>
  8439. </column>
  8440. <column id="1653" parent="329" name="commodity_price">
  8441. <Comment>合同商品价格</Comment>
  8442. <DefaultExpression>0.000000</DefaultExpression>
  8443. <NotNull>1</NotNull>
  8444. <Position>9</Position>
  8445. <StoredType>decimal(12,6 digit)|0s</StoredType>
  8446. </column>
  8447. <column id="1654" parent="329" name="task_status">
  8448. <Comment>任务状态 0-未分派 ,1-已分派,2-材料已启动,3-材料已完成</Comment>
  8449. <NotNull>1</NotNull>
  8450. <Position>10</Position>
  8451. <StoredType>int(11)|0s</StoredType>
  8452. </column>
  8453. <column id="1655" parent="329" name="task_distribution_time">
  8454. <Comment>派单时间</Comment>
  8455. <Position>11</Position>
  8456. <StoredType>datetime|0s</StoredType>
  8457. </column>
  8458. <column id="1656" parent="329" name="task_allocator">
  8459. <Comment>任务分配人</Comment>
  8460. <Position>12</Position>
  8461. <StoredType>varchar(36)|0s</StoredType>
  8462. </column>
  8463. <column id="1657" parent="329" name="task_receiver">
  8464. <Comment>任务受理人</Comment>
  8465. <Position>13</Position>
  8466. <StoredType>varchar(36)|0s</StoredType>
  8467. </column>
  8468. <column id="1658" parent="329" name="task_comment">
  8469. <Comment>任务说明</Comment>
  8470. <Position>14</Position>
  8471. <StoredType>varchar(512)|0s</StoredType>
  8472. </column>
  8473. <column id="1659" parent="329" name="task_start_time">
  8474. <Comment>任务启动时间</Comment>
  8475. <Position>15</Position>
  8476. <StoredType>datetime|0s</StoredType>
  8477. </column>
  8478. <column id="1660" parent="329" name="task_end_time">
  8479. <Comment>任务结束时间</Comment>
  8480. <Position>16</Position>
  8481. <StoredType>datetime|0s</StoredType>
  8482. </column>
  8483. <column id="1661" parent="329" name="attachment_url">
  8484. <Comment>附件地址</Comment>
  8485. <Position>17</Position>
  8486. <StoredType>longtext|0s</StoredType>
  8487. </column>
  8488. <column id="1662" parent="329" name="project_status">
  8489. <Comment>项目状态 0=未启动,1=进行中,2=暂停(客户通知暂停),3=暂停(业务线通知暂停),4=已提交,5=未推荐,6=已推荐,7=未拟公示,8=已拟公示,28=抽查未备案,9=已备案,10=已下证 ,11=退单(已申报),12=退单(未申报),13=已答辩,14=未立项,15=已立项,16=前补助,17=后补助,18=立项已拨款,19=已完成/下证,20=已驳回,21=第1年进行中,22=第1年服务完成,23=第2年进行中,24=第2年服务完成,25=第3年进行中,26=第3年服务完成,27=所有会员服务全部完成,99=未知</Comment>
  8490. <DefaultExpression>0</DefaultExpression>
  8491. <Position>18</Position>
  8492. <StoredType>int(11)|0s</StoredType>
  8493. </column>
  8494. <column id="1663" parent="329" name="accept_time">
  8495. <Comment>受理日期</Comment>
  8496. <Position>19</Position>
  8497. <StoredType>date|0s</StoredType>
  8498. </column>
  8499. <column id="1664" parent="329" name="review_time">
  8500. <Comment>评审日期</Comment>
  8501. <Position>20</Position>
  8502. <StoredType>date|0s</StoredType>
  8503. </column>
  8504. <column id="1665" parent="329" name="publicity_time">
  8505. <Comment>公示日期</Comment>
  8506. <Position>21</Position>
  8507. <StoredType>date|0s</StoredType>
  8508. </column>
  8509. <column id="1666" parent="329" name="licence_time">
  8510. <Comment>发证日期</Comment>
  8511. <Position>22</Position>
  8512. <StoredType>date|0s</StoredType>
  8513. </column>
  8514. <column id="1667" parent="329" name="certificate_number">
  8515. <Comment>证书编号</Comment>
  8516. <Position>23</Position>
  8517. <StoredType>varchar(64)|0s</StoredType>
  8518. </column>
  8519. <column id="1668" parent="329" name="status">
  8520. <Comment>状态 0未开始 1已开始 2已暂停 3已驳回 4已完成 5未完成退单 6已完成退单</Comment>
  8521. <DefaultExpression>0</DefaultExpression>
  8522. <Position>24</Position>
  8523. <StoredType>int(11)|0s</StoredType>
  8524. </column>
  8525. <column id="1669" parent="329" name="form_retrieve">
  8526. <Comment>满意度表格回收 0未发送 1已发送,未回收 2已回收 3其他</Comment>
  8527. <DefaultExpression>0</DefaultExpression>
  8528. <Position>25</Position>
  8529. <StoredType>int(11)|0s</StoredType>
  8530. </column>
  8531. <column id="1670" parent="329" name="task_refund">
  8532. <Comment>退单 0已完成 1未完成 2其他</Comment>
  8533. <Position>26</Position>
  8534. <StoredType>int(11)|0s</StoredType>
  8535. </column>
  8536. <column id="1671" parent="329" name="refund_content">
  8537. <Comment>退单信息</Comment>
  8538. <Position>27</Position>
  8539. <StoredType>varchar(256)|0s</StoredType>
  8540. </column>
  8541. <column id="1672" parent="329" name="retrieve_content">
  8542. <Comment>回收信息</Comment>
  8543. <Position>28</Position>
  8544. <StoredType>varchar(256)|0s</StoredType>
  8545. </column>
  8546. <column id="1673" parent="329" name="declare_user">
  8547. <Comment>申报系统账号</Comment>
  8548. <Position>29</Position>
  8549. <StoredType>varchar(36)|0s</StoredType>
  8550. </column>
  8551. <column id="1674" parent="329" name="declare_pwd">
  8552. <Comment>申报系统密码</Comment>
  8553. <Position>30</Position>
  8554. <StoredType>varchar(36)|0s</StoredType>
  8555. </column>
  8556. <column id="1675" parent="329" name="set_up_amount">
  8557. <Comment>立项金额</Comment>
  8558. <DefaultExpression>0.000000</DefaultExpression>
  8559. <NotNull>1</NotNull>
  8560. <Position>31</Position>
  8561. <StoredType>decimal(12,6 digit)|0s</StoredType>
  8562. </column>
  8563. <column id="1676" parent="329" name="arrival_money">
  8564. <Comment>状态 0未到款 1已到款</Comment>
  8565. <DefaultExpression>0</DefaultExpression>
  8566. <Position>32</Position>
  8567. <StoredType>int(11)|0s</StoredType>
  8568. </column>
  8569. <column id="1677" parent="329" name="outsource_name">
  8570. <Comment>外包公司名称</Comment>
  8571. <Position>33</Position>
  8572. <StoredType>varchar(128)|0s</StoredType>
  8573. </column>
  8574. <column id="1678" parent="329" name="outsource_price">
  8575. <Comment>单价</Comment>
  8576. <Position>34</Position>
  8577. <StoredType>decimal(12,6 digit)|0s</StoredType>
  8578. </column>
  8579. <column id="1679" parent="329" name="consultant_id">
  8580. <Comment>咨询师id</Comment>
  8581. <Position>35</Position>
  8582. <StoredType>varchar(36)|0s</StoredType>
  8583. </column>
  8584. <column id="1680" parent="329" name="manager_id">
  8585. <Comment>咨询师管理id</Comment>
  8586. <Position>36</Position>
  8587. <StoredType>varchar(36)|0s</StoredType>
  8588. </column>
  8589. <column id="1681" parent="329" name="outsource">
  8590. <Comment>外包 0否 1是</Comment>
  8591. <DefaultExpression>0</DefaultExpression>
  8592. <Position>37</Position>
  8593. <StoredType>int(11)|0s</StoredType>
  8594. </column>
  8595. <column id="1682" parent="329" name="split_super">
  8596. <Comment>拆分父id</Comment>
  8597. <Position>38</Position>
  8598. <StoredType>int(11)|0s</StoredType>
  8599. </column>
  8600. <column id="1683" parent="329" name="split_status">
  8601. <Comment>0否 1父拆分 2子拆分</Comment>
  8602. <DefaultExpression>0</DefaultExpression>
  8603. <Position>39</Position>
  8604. <StoredType>int(11)|0s</StoredType>
  8605. </column>
  8606. <column id="1684" parent="329" name="split_id">
  8607. <Comment>拆分编号</Comment>
  8608. <Position>40</Position>
  8609. <StoredType>int(11)|0s</StoredType>
  8610. </column>
  8611. <column id="1685" parent="329" name="split_aid">
  8612. <Comment>拆分人</Comment>
  8613. <Position>41</Position>
  8614. <StoredType>varchar(36)|0s</StoredType>
  8615. </column>
  8616. <column id="1686" parent="329" name="split_time">
  8617. <Comment>拆分时间</Comment>
  8618. <Position>42</Position>
  8619. <StoredType>datetime|0s</StoredType>
  8620. </column>
  8621. <column id="1687" parent="329" name="cname">
  8622. <Comment>项目品类名称(冗余)</Comment>
  8623. <Position>43</Position>
  8624. <StoredType>varchar(36)|0s</StoredType>
  8625. </column>
  8626. <column id="1688" parent="329" name="receiver_name">
  8627. <Comment>项目受理人(冗余)</Comment>
  8628. <Position>44</Position>
  8629. <StoredType>varchar(36)|0s</StoredType>
  8630. </column>
  8631. <column id="1689" parent="329" name="declaration_batch">
  8632. <Comment>申报批次</Comment>
  8633. <Position>45</Position>
  8634. <StoredType>int(11)|0s</StoredType>
  8635. </column>
  8636. <column id="1690" parent="329" name="cost_reduction">
  8637. <Comment>费减 0否 1有 </Comment>
  8638. <DefaultExpression>0</DefaultExpression>
  8639. <Position>46</Position>
  8640. <StoredType>int(11)|0s</StoredType>
  8641. </column>
  8642. <column id="1691" parent="329" name="official_cost">
  8643. <Comment>官费 0否 1有</Comment>
  8644. <DefaultExpression>0</DefaultExpression>
  8645. <Position>47</Position>
  8646. <StoredType>int(11)|0s</StoredType>
  8647. </column>
  8648. <column id="1692" parent="329" name="set_up_status">
  8649. <Comment>是否立项</Comment>
  8650. <Position>48</Position>
  8651. <StoredType>int(1)|0s</StoredType>
  8652. </column>
  8653. <column id="1693" parent="329" name="set_up_time">
  8654. <Comment>立项时间</Comment>
  8655. <Position>49</Position>
  8656. <StoredType>datetime|0s</StoredType>
  8657. </column>
  8658. <column id="1694" parent="329" name="spot_check_status">
  8659. <Comment>是否抽查 0否 1未通过 2通过</Comment>
  8660. <Position>50</Position>
  8661. <StoredType>int(1)|0s</StoredType>
  8662. </column>
  8663. <column id="1695" parent="329" name="high_tech_status">
  8664. <Comment>是否高新</Comment>
  8665. <Position>51</Position>
  8666. <StoredType>int(1)|0s</StoredType>
  8667. </column>
  8668. <column id="1696" parent="329" name="special_comment">
  8669. <Comment>特别说明</Comment>
  8670. <Position>52</Position>
  8671. <StoredType>varchar(512)|0s</StoredType>
  8672. </column>
  8673. <column id="1697" parent="329" name="if_certification_fee">
  8674. <Comment>是否包含认证费 0=否,1=是</Comment>
  8675. <Position>53</Position>
  8676. <StoredType>int(1)|0s</StoredType>
  8677. </column>
  8678. <column id="1698" parent="329" name="certification_fee">
  8679. <Comment>认证费</Comment>
  8680. <DefaultExpression>0.000000</DefaultExpression>
  8681. <NotNull>1</NotNull>
  8682. <Position>54</Position>
  8683. <StoredType>decimal(12,6 digit)|0s</StoredType>
  8684. </column>
  8685. <column id="1699" parent="329" name="certification_corporate">
  8686. <Comment>认证公司</Comment>
  8687. <Position>55</Position>
  8688. <StoredType>varchar(64)|0s</StoredType>
  8689. </column>
  8690. <column id="1700" parent="329" name="time_record">
  8691. <Comment>时间记录</Comment>
  8692. <Position>56</Position>
  8693. <StoredType>longtext|0s</StoredType>
  8694. </column>
  8695. <column id="1701" parent="329" name="if_publicity">
  8696. <Comment>是否公示 0=否,1=是</Comment>
  8697. <DefaultExpression>0</DefaultExpression>
  8698. <Position>57</Position>
  8699. <StoredType>int(1)|0s</StoredType>
  8700. </column>
  8701. <column id="1702" parent="329" name="check_status">
  8702. <Comment>核对状态 0未发起 1核对中 2核对完成</Comment>
  8703. <DefaultExpression>0</DefaultExpression>
  8704. <Position>58</Position>
  8705. <StoredType>int(11)|0s</StoredType>
  8706. </column>
  8707. <column id="1703" parent="329" name="patent_type">
  8708. <Comment>专利分类 0申请 1变更 2复审 3优先权 4恢复请求权 5无效宣告请求费 6强制许可请求费 7 强制许可使用裁决请求费 8登录、印刷费、印花税</Comment>
  8709. <Position>59</Position>
  8710. <StoredType>int(11)|0s</StoredType>
  8711. </column>
  8712. <column id="1704" parent="329" name="pubicity_url">
  8713. <Comment>公示网络连接</Comment>
  8714. <Position>60</Position>
  8715. <StoredType>varchar(128)|0s</StoredType>
  8716. </column>
  8717. <column id="1705" parent="329" name="process_status">
  8718. <Comment>流程状态 0=普通,1=财务审核,2=特批审核,3=通过,4=驳回</Comment>
  8719. <DefaultExpression>0</DefaultExpression>
  8720. <NotNull>1</NotNull>
  8721. <Position>61</Position>
  8722. <StoredType>int(11)|0s</StoredType>
  8723. </column>
  8724. <column id="1706" parent="329" name="member_type">
  8725. <Comment>会员付款状态 0=已付会员截点全款,1=已付部分期款,需特批,2=未付款,需特批</Comment>
  8726. <Position>62</Position>
  8727. <StoredType>int(11)|0s</StoredType>
  8728. </column>
  8729. <column id="1707" parent="329" name="picture_url">
  8730. <Comment>图片地址</Comment>
  8731. <Position>63</Position>
  8732. <StoredType>longtext|0s</StoredType>
  8733. </column>
  8734. <column id="1708" parent="329" name="satisfaction_degree">
  8735. <Comment>满意度 0非常满意 1满意 2一般 3不满意</Comment>
  8736. <Position>64</Position>
  8737. <StoredType>int(1)|0s</StoredType>
  8738. </column>
  8739. <column id="1709" parent="329" name="satisfaction_degree_url">
  8740. <Comment>满意度附件地址</Comment>
  8741. <Position>65</Position>
  8742. <StoredType>longtext|0s</StoredType>
  8743. </column>
  8744. <column id="1710" parent="329" name="examine_type">
  8745. <Comment>0=无需审核 ,1=财务审核,2=财务复审,3=全部需要审核,4=已审核</Comment>
  8746. <DefaultExpression>0</DefaultExpression>
  8747. <Position>66</Position>
  8748. <StoredType>int(1)|0s</StoredType>
  8749. </column>
  8750. <column id="1711" parent="329" name="approval">
  8751. <Comment>特批状态 0-非特批 ,1-总裁特批,2-副总裁特批</Comment>
  8752. <DefaultExpression>0</DefaultExpression>
  8753. <NotNull>1</NotNull>
  8754. <Position>67</Position>
  8755. <StoredType>int(11)|0s</StoredType>
  8756. </column>
  8757. <column id="1712" parent="329" name="complete_date">
  8758. <Comment>完成日期</Comment>
  8759. <Position>68</Position>
  8760. <StoredType>date|0s</StoredType>
  8761. </column>
  8762. <column id="1713" parent="329" name="complete_status">
  8763. <Comment>完成状态 0待完成 1已完成</Comment>
  8764. <DefaultExpression>0</DefaultExpression>
  8765. <Position>69</Position>
  8766. <StoredType>int(1)|0s</StoredType>
  8767. </column>
  8768. <column id="1714" parent="329" name="score_status">
  8769. <Comment>0=无,1=待评分,2=已评分</Comment>
  8770. <DefaultExpression>0</DefaultExpression>
  8771. <Position>70</Position>
  8772. <StoredType>int(1)|0s</StoredType>
  8773. </column>
  8774. <column id="1715" parent="329" name="score_number">
  8775. <Comment>评分</Comment>
  8776. <DefaultExpression>0</DefaultExpression>
  8777. <Position>71</Position>
  8778. <StoredType>int(1)|0s</StoredType>
  8779. </column>
  8780. <column id="1716" parent="329" name="ht_member">
  8781. <Comment>高新会员 0=否,1=是</Comment>
  8782. <Position>72</Position>
  8783. <StoredType>int(11)|0s</StoredType>
  8784. </column>
  8785. <column id="1717" parent="329" name="additional_deduction">
  8786. <Comment>加急扣除 0=否,1=是</Comment>
  8787. <Position>73</Position>
  8788. <StoredType>int(11)|0s</StoredType>
  8789. </column>
  8790. <column id="1718" parent="329" name="rd_awardsubsidy">
  8791. <Comment>研发奖补 0=否,1=是</Comment>
  8792. <Position>74</Position>
  8793. <StoredType>int(11)|0s</StoredType>
  8794. </column>
  8795. <column id="1719" parent="329" name="technology_project_Type">
  8796. <Comment>科技项目等级 0=简易项目,1=市区级,2=省级,3=国家级</Comment>
  8797. <Position>75</Position>
  8798. <StoredType>int(11)|0s</StoredType>
  8799. </column>
  8800. <column id="1720" parent="329" name="ordinary_risk">
  8801. <Comment>申请类型 0=普通申请,1=风险代理</Comment>
  8802. <Position>76</Position>
  8803. <StoredType>int(11)|0s</StoredType>
  8804. </column>
  8805. <column id="1721" parent="329" name="days">
  8806. <Comment>天数 0=普通,1=加急</Comment>
  8807. <Position>77</Position>
  8808. <StoredType>int(11)|0s</StoredType>
  8809. </column>
  8810. <column id="1722" parent="329" name="scheme">
  8811. <Comment>方案 0=无,1=有</Comment>
  8812. <Position>78</Position>
  8813. <StoredType>int(11)|0s</StoredType>
  8814. </column>
  8815. <column id="1723" parent="329" name="progress_tid">
  8816. <Comment>项目进度编号</Comment>
  8817. <Position>79</Position>
  8818. <StoredType>int(11)|0s</StoredType>
  8819. </column>
  8820. <index id="1724" parent="329" name="PRIMARY">
  8821. <ColNames>id</ColNames>
  8822. <Type>btree</Type>
  8823. <Unique>1</Unique>
  8824. </index>
  8825. <key id="1725" parent="329" name="PRIMARY">
  8826. <NameSurrogate>1</NameSurrogate>
  8827. <Primary>1</Primary>
  8828. <UnderlyingIndexName>PRIMARY</UnderlyingIndexName>
  8829. </key>
  8830. <column id="1726" parent="330" name="id">
  8831. <AutoIncrement>519</AutoIncrement>
  8832. <Comment>流转id</Comment>
  8833. <NotNull>1</NotNull>
  8834. <Position>1</Position>
  8835. <StoredType>int(11)|0s</StoredType>
  8836. </column>
  8837. <column id="1727" parent="330" name="task_id">
  8838. <Comment>任务id</Comment>
  8839. <NotNull>1</NotNull>
  8840. <Position>2</Position>
  8841. <StoredType>int(11)|0s</StoredType>
  8842. </column>
  8843. <column id="1728" parent="330" name="task_allocator">
  8844. <Comment>分派人</Comment>
  8845. <NotNull>1</NotNull>
  8846. <Position>3</Position>
  8847. <StoredType>varchar(36)|0s</StoredType>
  8848. </column>
  8849. <column id="1729" parent="330" name="task_receiver">
  8850. <Comment>归属人</Comment>
  8851. <NotNull>1</NotNull>
  8852. <Position>4</Position>
  8853. <StoredType>varchar(36)|0s</StoredType>
  8854. </column>
  8855. <column id="1730" parent="330" name="create_time">
  8856. <Comment>分配时间</Comment>
  8857. <NotNull>1</NotNull>
  8858. <Position>5</Position>
  8859. <StoredType>datetime|0s</StoredType>
  8860. </column>
  8861. <column id="1731" parent="330" name="status">
  8862. <Comment>状态 0管理员派单 1经理转交 2经理派单 3咨询师转交 4回退</Comment>
  8863. <Position>6</Position>
  8864. <StoredType>int(1)|0s</StoredType>
  8865. </column>
  8866. <index id="1732" parent="330" name="PRIMARY">
  8867. <ColNames>id</ColNames>
  8868. <Type>btree</Type>
  8869. <Unique>1</Unique>
  8870. </index>
  8871. <key id="1733" parent="330" name="PRIMARY">
  8872. <NameSurrogate>1</NameSurrogate>
  8873. <Primary>1</Primary>
  8874. <UnderlyingIndexName>PRIMARY</UnderlyingIndexName>
  8875. </key>
  8876. <column id="1734" parent="331" name="id">
  8877. <AutoIncrement>7</AutoIncrement>
  8878. <Comment>编号</Comment>
  8879. <NotNull>1</NotNull>
  8880. <Position>1</Position>
  8881. <StoredType>int(11)|0s</StoredType>
  8882. </column>
  8883. <column id="1735" parent="331" name="tid">
  8884. <Comment>项目id</Comment>
  8885. <NotNull>1</NotNull>
  8886. <Position>2</Position>
  8887. <StoredType>int(11)|0s</StoredType>
  8888. </column>
  8889. <column id="1736" parent="331" name="service_life">
  8890. <Comment>服务年限</Comment>
  8891. <Position>3</Position>
  8892. <StoredType>varchar(64)|0s</StoredType>
  8893. </column>
  8894. <column id="1737" parent="331" name="service_year">
  8895. <Comment>本次年份</Comment>
  8896. <Position>4</Position>
  8897. <StoredType>varchar(512)|0s</StoredType>
  8898. </column>
  8899. <column id="1738" parent="331" name="year_sum">
  8900. <Comment>服务年限计数</Comment>
  8901. <Position>5</Position>
  8902. <StoredType>int(11)|0s</StoredType>
  8903. </column>
  8904. <column id="1739" parent="331" name="create_time">
  8905. <Comment>创建时间</Comment>
  8906. <DefaultExpression>CURRENT_TIMESTAMP</DefaultExpression>
  8907. <NotNull>1</NotNull>
  8908. <Position>6</Position>
  8909. <StoredType>timestamp|0s</StoredType>
  8910. </column>
  8911. <column id="1740" parent="331" name="contract_term">
  8912. <Comment>合同期限</Comment>
  8913. <Position>7</Position>
  8914. <StoredType>varchar(64)|0s</StoredType>
  8915. </column>
  8916. <column id="1741" parent="331" name="status">
  8917. <Comment>状态 0正常 1主项(用于金额挂载)</Comment>
  8918. <DefaultExpression>0</DefaultExpression>
  8919. <Position>8</Position>
  8920. <StoredType>int(11)|0s</StoredType>
  8921. </column>
  8922. <index id="1742" parent="331" name="PRIMARY">
  8923. <ColNames>id</ColNames>
  8924. <Type>btree</Type>
  8925. <Unique>1</Unique>
  8926. </index>
  8927. <index id="1743" parent="331" name="tid">
  8928. <ColNames>tid</ColNames>
  8929. <Type>btree</Type>
  8930. <Unique>1</Unique>
  8931. </index>
  8932. <key id="1744" parent="331" name="PRIMARY">
  8933. <NameSurrogate>1</NameSurrogate>
  8934. <Primary>1</Primary>
  8935. <UnderlyingIndexName>PRIMARY</UnderlyingIndexName>
  8936. </key>
  8937. <key id="1745" parent="331" name="tid">
  8938. <UnderlyingIndexName>tid</UnderlyingIndexName>
  8939. </key>
  8940. <column id="1746" parent="332" name="id">
  8941. <AutoIncrement>1338</AutoIncrement>
  8942. <Comment>编号</Comment>
  8943. <NotNull>1</NotNull>
  8944. <Position>1</Position>
  8945. <StoredType>int(11)|0s</StoredType>
  8946. </column>
  8947. <column id="1747" parent="332" name="tid">
  8948. <Comment>项目id</Comment>
  8949. <NotNull>1</NotNull>
  8950. <Position>2</Position>
  8951. <StoredType>int(11)|0s</StoredType>
  8952. </column>
  8953. <column id="1748" parent="332" name="cost_amount">
  8954. <Comment>成本金额</Comment>
  8955. <DefaultExpression>0.000000</DefaultExpression>
  8956. <NotNull>1</NotNull>
  8957. <Position>3</Position>
  8958. <StoredType>decimal(12,6 digit)|0s</StoredType>
  8959. </column>
  8960. <column id="1749" parent="332" name="party_amount">
  8961. <Comment>付款金额</Comment>
  8962. <DefaultExpression>0.000000</DefaultExpression>
  8963. <NotNull>1</NotNull>
  8964. <Position>4</Position>
  8965. <StoredType>decimal(12,6 digit)|0s</StoredType>
  8966. </column>
  8967. <column id="1750" parent="332" name="create_time">
  8968. <Comment>创建时间</Comment>
  8969. <DefaultExpression>CURRENT_TIMESTAMP</DefaultExpression>
  8970. <Position>5</Position>
  8971. <StoredType>datetime|0s</StoredType>
  8972. </column>
  8973. <column id="1751" parent="332" name="certificates_count">
  8974. <Comment>证书数量</Comment>
  8975. <DefaultExpression>0</DefaultExpression>
  8976. <Position>6</Position>
  8977. <StoredType>int(4)|0s</StoredType>
  8978. </column>
  8979. <column id="1752" parent="332" name="urgent_day">
  8980. <Comment>加急天数</Comment>
  8981. <Position>7</Position>
  8982. <StoredType>int(4)|0s</StoredType>
  8983. </column>
  8984. <column id="1753" parent="332" name="if_material">
  8985. <Comment>有无材料</Comment>
  8986. <Position>8</Position>
  8987. <StoredType>int(4)|0s</StoredType>
  8988. </column>
  8989. <column id="1754" parent="332" name="reject_count">
  8990. <Comment>驳回数</Comment>
  8991. <DefaultExpression>0</DefaultExpression>
  8992. <Position>9</Position>
  8993. <StoredType>int(4)|0s</StoredType>
  8994. </column>
  8995. <column id="1755" parent="332" name="accept_count">
  8996. <Comment>受理数</Comment>
  8997. <DefaultExpression>0</DefaultExpression>
  8998. <Position>10</Position>
  8999. <StoredType>int(4)|0s</StoredType>
  9000. </column>
  9001. <column id="1756" parent="332" name="end_count">
  9002. <Comment>完结数</Comment>
  9003. <DefaultExpression>0</DefaultExpression>
  9004. <Position>11</Position>
  9005. <StoredType>int(4)|0s</StoredType>
  9006. </column>
  9007. <column id="1757" parent="332" name="authorize_count">
  9008. <Comment>授权数</Comment>
  9009. <DefaultExpression>0</DefaultExpression>
  9010. <Position>12</Position>
  9011. <StoredType>int(4)|0s</StoredType>
  9012. </column>
  9013. <column id="1758" parent="332" name="apply_count">
  9014. <Comment>申请数</Comment>
  9015. <DefaultExpression>0</DefaultExpression>
  9016. <Position>13</Position>
  9017. <StoredType>int(4)|0s</StoredType>
  9018. </column>
  9019. <column id="1759" parent="332" name="high_new_retrial">
  9020. <Comment>高新复审 0否 1是</Comment>
  9021. <DefaultExpression>0</DefaultExpression>
  9022. <Position>14</Position>
  9023. <StoredType>int(11)|0s</StoredType>
  9024. </column>
  9025. <column id="1760" parent="332" name="dispatch_count">
  9026. <Comment>派单数</Comment>
  9027. <DefaultExpression>0</DefaultExpression>
  9028. <Position>15</Position>
  9029. <StoredType>int(11)|0s</StoredType>
  9030. </column>
  9031. <column id="1761" parent="332" name="stock_count">
  9032. <Comment>库存数</Comment>
  9033. <DefaultExpression>0</DefaultExpression>
  9034. <Position>16</Position>
  9035. <StoredType>int(11)|0s</StoredType>
  9036. </column>
  9037. <column id="1762" parent="332" name="complete_count">
  9038. <Comment>完成数</Comment>
  9039. <DefaultExpression>0</DefaultExpression>
  9040. <Position>17</Position>
  9041. <StoredType>int(11)|0s</StoredType>
  9042. </column>
  9043. <column id="1763" parent="332" name="promulgate_count">
  9044. <Comment>公示数</Comment>
  9045. <DefaultExpression>0</DefaultExpression>
  9046. <Position>18</Position>
  9047. <StoredType>int(11)|0s</StoredType>
  9048. </column>
  9049. <column id="1764" parent="332" name="dispatch_province">
  9050. <Comment>派单省份</Comment>
  9051. <Position>19</Position>
  9052. <StoredType>int(11)|0s</StoredType>
  9053. </column>
  9054. <column id="1765" parent="332" name="duty_dep">
  9055. <Comment>责任部门</Comment>
  9056. <Position>20</Position>
  9057. <StoredType>varchar(64)|0s</StoredType>
  9058. </column>
  9059. <column id="1766" parent="332" name="set_up_count">
  9060. <Comment>立项数</Comment>
  9061. <DefaultExpression>0</DefaultExpression>
  9062. <Position>21</Position>
  9063. <StoredType>int(11)|0s</StoredType>
  9064. </column>
  9065. <column id="1767" parent="332" name="spot_check_count">
  9066. <Comment>抽查数</Comment>
  9067. <DefaultExpression>0</DefaultExpression>
  9068. <Position>22</Position>
  9069. <StoredType>int(11)|0s</StoredType>
  9070. </column>
  9071. <column id="1768" parent="332" name="fail_count">
  9072. <Comment>未通过数</Comment>
  9073. <DefaultExpression>0</DefaultExpression>
  9074. <Position>23</Position>
  9075. <StoredType>int(11)|0s</StoredType>
  9076. </column>
  9077. <column id="1769" parent="332" name="last_year">
  9078. <Comment>上年度年份</Comment>
  9079. <Position>24</Position>
  9080. <StoredType>varchar(64)|0s</StoredType>
  9081. </column>
  9082. <column id="1770" parent="332" name="last_year_capital">
  9083. <Comment>上年度总资本</Comment>
  9084. <Position>25</Position>
  9085. <StoredType>decimal(18,6 digit)|0s</StoredType>
  9086. </column>
  9087. <column id="1771" parent="332" name="last_year_income">
  9088. <Comment>上年度总收入</Comment>
  9089. <Position>26</Position>
  9090. <StoredType>decimal(18,6 digit)|0s</StoredType>
  9091. </column>
  9092. <column id="1772" parent="332" name="cost_actual">
  9093. <Comment>成本实付</Comment>
  9094. <DefaultExpression>0.000000</DefaultExpression>
  9095. <Position>27</Position>
  9096. <StoredType>decimal(12,6 digit)|0s</StoredType>
  9097. </column>
  9098. <column id="1773" parent="332" name="patent_cost">
  9099. <Comment>专利成本</Comment>
  9100. <DefaultExpression>0.000000</DefaultExpression>
  9101. <Position>28</Position>
  9102. <StoredType>decimal(12,6 digit)|0s</StoredType>
  9103. </column>
  9104. <column id="1774" parent="332" name="patent_cost_actual">
  9105. <Comment>专利成本实付</Comment>
  9106. <DefaultExpression>0.000000</DefaultExpression>
  9107. <Position>29</Position>
  9108. <StoredType>decimal(12,6 digit)|0s</StoredType>
  9109. </column>
  9110. <column id="1775" parent="332" name="soft_cost">
  9111. <Comment>软著成本</Comment>
  9112. <DefaultExpression>0.000000</DefaultExpression>
  9113. <Position>30</Position>
  9114. <StoredType>decimal(12,6 digit)|0s</StoredType>
  9115. </column>
  9116. <column id="1776" parent="332" name="soft_cost_actual">
  9117. <Comment>软著成本实付</Comment>
  9118. <DefaultExpression>0.000000</DefaultExpression>
  9119. <Position>31</Position>
  9120. <StoredType>decimal(12,6 digit)|0s</StoredType>
  9121. </column>
  9122. <column id="1777" parent="332" name="audit_cost">
  9123. <Comment>审计成本</Comment>
  9124. <DefaultExpression>0.000000</DefaultExpression>
  9125. <Position>32</Position>
  9126. <StoredType>decimal(12,6 digit)|0s</StoredType>
  9127. </column>
  9128. <column id="1778" parent="332" name="audit_cost_actual">
  9129. <Comment>审计成本实付</Comment>
  9130. <DefaultExpression>0.000000</DefaultExpression>
  9131. <Position>33</Position>
  9132. <StoredType>decimal(12,6 digit)|0s</StoredType>
  9133. </column>
  9134. <column id="1779" parent="332" name="other_cost">
  9135. <Comment>其他成本</Comment>
  9136. <DefaultExpression>0.000000</DefaultExpression>
  9137. <Position>34</Position>
  9138. <StoredType>decimal(12,6 digit)|0s</StoredType>
  9139. </column>
  9140. <column id="1780" parent="332" name="other_cost_actual">
  9141. <Comment>其他成本实付</Comment>
  9142. <DefaultExpression>0.000000</DefaultExpression>
  9143. <Position>35</Position>
  9144. <StoredType>decimal(12,6 digit)|0s</StoredType>
  9145. </column>
  9146. <column id="1781" parent="332" name="expect_profit">
  9147. <Comment>预计毛利</Comment>
  9148. <DefaultExpression>0.000000</DefaultExpression>
  9149. <Position>36</Position>
  9150. <StoredType>decimal(12,6 digit)|0s</StoredType>
  9151. </column>
  9152. <column id="1782" parent="332" name="actual_profit">
  9153. <Comment>实际毛利</Comment>
  9154. <DefaultExpression>0.000000</DefaultExpression>
  9155. <Position>37</Position>
  9156. <StoredType>decimal(12,6 digit)|0s</StoredType>
  9157. </column>
  9158. <column id="1783" parent="332" name="stop_type">
  9159. <Comment>类型 0=项目暂停,1=项目重启</Comment>
  9160. <Position>38</Position>
  9161. <StoredType>int(1)|0s</StoredType>
  9162. </column>
  9163. <column id="1784" parent="332" name="stop_status">
  9164. <Comment>审核状态 0=发起,1=通过,2=拒绝</Comment>
  9165. <Position>39</Position>
  9166. <StoredType>int(4)|0s</StoredType>
  9167. </column>
  9168. <column id="1785" parent="332" name="change">
  9169. <Comment>变更新增项目 0否 1是</Comment>
  9170. <DefaultExpression>0</DefaultExpression>
  9171. <Position>40</Position>
  9172. <StoredType>int(1)|0s</StoredType>
  9173. </column>
  9174. <index id="1786" parent="332" name="PRIMARY">
  9175. <ColNames>id</ColNames>
  9176. <Type>btree</Type>
  9177. <Unique>1</Unique>
  9178. </index>
  9179. <index id="1787" parent="332" name="tid">
  9180. <ColNames>tid</ColNames>
  9181. <Type>btree</Type>
  9182. <Unique>1</Unique>
  9183. </index>
  9184. <key id="1788" parent="332" name="PRIMARY">
  9185. <NameSurrogate>1</NameSurrogate>
  9186. <Primary>1</Primary>
  9187. <UnderlyingIndexName>PRIMARY</UnderlyingIndexName>
  9188. </key>
  9189. <key id="1789" parent="332" name="tid">
  9190. <UnderlyingIndexName>tid</UnderlyingIndexName>
  9191. </key>
  9192. <column id="1790" parent="333" name="id">
  9193. <AutoIncrement>1</AutoIncrement>
  9194. <NotNull>1</NotNull>
  9195. <Position>1</Position>
  9196. <StoredType>int(11)|0s</StoredType>
  9197. </column>
  9198. <column id="1791" parent="333" name="uid">
  9199. <Comment>用户ID</Comment>
  9200. <NotNull>1</NotNull>
  9201. <Position>2</Position>
  9202. <StoredType>varchar(36)|0s</StoredType>
  9203. </column>
  9204. <column id="1792" parent="333" name="tid">
  9205. <Comment>项目编号</Comment>
  9206. <NotNull>1</NotNull>
  9207. <Position>3</Position>
  9208. <StoredType>int(11)|0s</StoredType>
  9209. </column>
  9210. <column id="1793" parent="333" name="year">
  9211. <Comment>年份</Comment>
  9212. <NotNull>1</NotNull>
  9213. <Position>4</Position>
  9214. <StoredType>int(4)|0s</StoredType>
  9215. </column>
  9216. <column id="1794" parent="333" name="sales_amount">
  9217. <Comment>销售额</Comment>
  9218. <Position>5</Position>
  9219. <StoredType>decimal(12,6 digit)|0s</StoredType>
  9220. </column>
  9221. <column id="1795" parent="333" name="research_amount">
  9222. <Comment>研发费用</Comment>
  9223. <Position>6</Position>
  9224. <StoredType>decimal(12,6 digit)|0s</StoredType>
  9225. </column>
  9226. <column id="1796" parent="333" name="aid">
  9227. <Comment>录入人</Comment>
  9228. <NotNull>1</NotNull>
  9229. <Position>7</Position>
  9230. <StoredType>varchar(36)|0s</StoredType>
  9231. </column>
  9232. <column id="1797" parent="333" name="create_time">
  9233. <Comment>创建时间</Comment>
  9234. <DefaultExpression>CURRENT_TIMESTAMP</DefaultExpression>
  9235. <Position>8</Position>
  9236. <StoredType>datetime|0s</StoredType>
  9237. </column>
  9238. <index id="1798" parent="333" name="PRIMARY">
  9239. <ColNames>id</ColNames>
  9240. <Type>btree</Type>
  9241. <Unique>1</Unique>
  9242. </index>
  9243. <key id="1799" parent="333" name="PRIMARY">
  9244. <NameSurrogate>1</NameSurrogate>
  9245. <Primary>1</Primary>
  9246. <UnderlyingIndexName>PRIMARY</UnderlyingIndexName>
  9247. </key>
  9248. <column id="1800" parent="334" name="id">
  9249. <AutoIncrement>46</AutoIncrement>
  9250. <Comment>日志id</Comment>
  9251. <NotNull>1</NotNull>
  9252. <Position>1</Position>
  9253. <StoredType>int(11)|0s</StoredType>
  9254. </column>
  9255. <column id="1801" parent="334" name="tid">
  9256. <Comment>任务id</Comment>
  9257. <NotNull>1</NotNull>
  9258. <Position>2</Position>
  9259. <StoredType>int(11)|0s</StoredType>
  9260. </column>
  9261. <column id="1802" parent="334" name="aid">
  9262. <Comment>操作人</Comment>
  9263. <Position>3</Position>
  9264. <StoredType>varchar(36)|0s</StoredType>
  9265. </column>
  9266. <column id="1803" parent="334" name="receive_id">
  9267. <Comment>接收人</Comment>
  9268. <Position>4</Position>
  9269. <StoredType>varchar(36)|0s</StoredType>
  9270. </column>
  9271. <column id="1804" parent="334" name="remarks">
  9272. <Comment>备注</Comment>
  9273. <Position>5</Position>
  9274. <StoredType>varchar(36)|0s</StoredType>
  9275. </column>
  9276. <column id="1805" parent="334" name="status">
  9277. <Comment>状态 0管理员分配 1经理转交 2经理分配 3咨询师转交 4咨询师回退 5离职转交</Comment>
  9278. <Position>6</Position>
  9279. <StoredType>int(11)|0s</StoredType>
  9280. </column>
  9281. <column id="1806" parent="334" name="create_time">
  9282. <Comment>操作时间</Comment>
  9283. <NotNull>1</NotNull>
  9284. <Position>7</Position>
  9285. <StoredType>datetime|0s</StoredType>
  9286. </column>
  9287. <index id="1807" parent="334" name="PRIMARY">
  9288. <ColNames>id</ColNames>
  9289. <Type>btree</Type>
  9290. <Unique>1</Unique>
  9291. </index>
  9292. <key id="1808" parent="334" name="PRIMARY">
  9293. <NameSurrogate>1</NameSurrogate>
  9294. <Primary>1</Primary>
  9295. <UnderlyingIndexName>PRIMARY</UnderlyingIndexName>
  9296. </key>
  9297. <column id="1809" parent="335" name="id">
  9298. <AutoIncrement>1</AutoIncrement>
  9299. <NotNull>1</NotNull>
  9300. <Position>1</Position>
  9301. <StoredType>int(11)|0s</StoredType>
  9302. </column>
  9303. <column id="1810" parent="335" name="tid">
  9304. <Comment>项目编号</Comment>
  9305. <NotNull>1</NotNull>
  9306. <Position>2</Position>
  9307. <StoredType>int(11)|0s</StoredType>
  9308. </column>
  9309. <column id="1811" parent="335" name="uid">
  9310. <Comment>用户ID</Comment>
  9311. <NotNull>1</NotNull>
  9312. <Position>3</Position>
  9313. <StoredType>varchar(36)|0s</StoredType>
  9314. </column>
  9315. <column id="1812" parent="335" name="task_name">
  9316. <Comment>业务负责人</Comment>
  9317. <Position>4</Position>
  9318. <StoredType>varchar(36)|0s</StoredType>
  9319. </column>
  9320. <column id="1813" parent="335" name="project_name">
  9321. <Comment>项目负责人</Comment>
  9322. <Position>5</Position>
  9323. <StoredType>varchar(36)|0s</StoredType>
  9324. </column>
  9325. <column id="1814" parent="335" name="technology_name">
  9326. <Comment>技术咨询师</Comment>
  9327. <Position>6</Position>
  9328. <StoredType>varchar(36)|0s</StoredType>
  9329. </column>
  9330. <column id="1815" parent="335" name="finance_taxation_name">
  9331. <Comment>财税咨询师</Comment>
  9332. <Position>7</Position>
  9333. <StoredType>varchar(36)|0s</StoredType>
  9334. </column>
  9335. <column id="1816" parent="335" name="last_year">
  9336. <Comment>上年度年份</Comment>
  9337. <Position>8</Position>
  9338. <StoredType>int(11)|0s</StoredType>
  9339. </column>
  9340. <column id="1817" parent="335" name="last_rd_sales_amount">
  9341. <Comment>上年度年度销售额</Comment>
  9342. <Position>9</Position>
  9343. <StoredType>decimal(18,6 digit)|0s</StoredType>
  9344. </column>
  9345. <column id="1818" parent="335" name="last_rd_budget">
  9346. <Comment>上年度高新研发预算</Comment>
  9347. <Position>10</Position>
  9348. <StoredType>decimal(18,6 digit)|0s</StoredType>
  9349. </column>
  9350. <column id="1819" parent="335" name="before_last_year">
  9351. <Comment>上年度年份</Comment>
  9352. <Position>11</Position>
  9353. <StoredType>int(11)|0s</StoredType>
  9354. </column>
  9355. <column id="1820" parent="335" name="before_last_rd_sales_amount">
  9356. <Comment>上年度年度销售额</Comment>
  9357. <Position>12</Position>
  9358. <StoredType>decimal(18,6 digit)|0s</StoredType>
  9359. </column>
  9360. <column id="1821" parent="335" name="before_last_rd_budget">
  9361. <Comment>上年度高新研发预算</Comment>
  9362. <Position>13</Position>
  9363. <StoredType>decimal(18,6 digit)|0s</StoredType>
  9364. </column>
  9365. <column id="1822" parent="335" name="workers_number">
  9366. <Comment>职工人数</Comment>
  9367. <Position>14</Position>
  9368. <StoredType>int(11)|0s</StoredType>
  9369. </column>
  9370. <column id="1823" parent="335" name="technology_number">
  9371. <Comment>科技人员数</Comment>
  9372. <Position>15</Position>
  9373. <StoredType>int(11)|0s</StoredType>
  9374. </column>
  9375. <column id="1824" parent="335" name="workers_rate">
  9376. <Comment>科技人员占比</Comment>
  9377. <Position>16</Position>
  9378. <StoredType>double|0s</StoredType>
  9379. </column>
  9380. <column id="1825" parent="335" name="project_approval_number">
  9381. <Comment>研发立项数</Comment>
  9382. <Position>17</Position>
  9383. <StoredType>int(11)|0s</StoredType>
  9384. </column>
  9385. <column id="1826" parent="335" name="rd_budget">
  9386. <Comment>年度研发预算</Comment>
  9387. <Position>18</Position>
  9388. <StoredType>decimal(18,6 digit)|0s</StoredType>
  9389. </column>
  9390. <column id="1827" parent="335" name="rd_budget_rate">
  9391. <Comment>年度研发预算占比</Comment>
  9392. <Position>19</Position>
  9393. <StoredType>double|0s</StoredType>
  9394. </column>
  9395. <column id="1828" parent="335" name="three_years_rd_budget_rate">
  9396. <Comment>三年研发预算占比</Comment>
  9397. <Position>20</Position>
  9398. <StoredType>double|0s</StoredType>
  9399. </column>
  9400. <column id="1829" parent="335" name="rd_sales_amount">
  9401. <Comment>年度销售额</Comment>
  9402. <Position>21</Position>
  9403. <StoredType>decimal(18,6 digit)|0s</StoredType>
  9404. </column>
  9405. <column id="1830" parent="335" name="data_cycle">
  9406. <Comment>数据周期 0=第一季度,1=上半年,2=前三季度,3=全年</Comment>
  9407. <Position>22</Position>
  9408. <StoredType>int(1)|0s</StoredType>
  9409. </column>
  9410. <column id="1831" parent="335" name="actual_sales_amount">
  9411. <Comment>实际销售额</Comment>
  9412. <Position>23</Position>
  9413. <StoredType>decimal(18,6 digit)|0s</StoredType>
  9414. </column>
  9415. <column id="1832" parent="335" name="actual_rd_number">
  9416. <Comment>实际立项RD数</Comment>
  9417. <Position>24</Position>
  9418. <StoredType>int(11)|0s</StoredType>
  9419. </column>
  9420. <column id="1833" parent="335" name="actual_outsourcing_number">
  9421. <Comment>实际委外数</Comment>
  9422. <Position>25</Position>
  9423. <StoredType>int(11)|0s</StoredType>
  9424. </column>
  9425. <column id="1834" parent="335" name="actual_cooperate_number">
  9426. <Comment>实际合作项目数</Comment>
  9427. <Position>26</Position>
  9428. <StoredType>int(11)|0s</StoredType>
  9429. </column>
  9430. <column id="1835" parent="335" name="actual_registration_number">
  9431. <Comment>实际技术合同登记数</Comment>
  9432. <Position>27</Position>
  9433. <StoredType>int(11)|0s</StoredType>
  9434. </column>
  9435. <column id="1836" parent="335" name="actual_rd_amount">
  9436. <Comment>实际归集研发费用</Comment>
  9437. <Position>28</Position>
  9438. <StoredType>decimal(18,6 digit)|0s</StoredType>
  9439. </column>
  9440. <column id="1837" parent="335" name="actual_rd_rate">
  9441. <Comment>年度研发预算占比</Comment>
  9442. <Position>29</Position>
  9443. <StoredType>double|0s</StoredType>
  9444. </column>
  9445. <column id="1838" parent="335" name="three_years_actual_rd_rate">
  9446. <Comment>三年研发预算占比</Comment>
  9447. <Position>30</Position>
  9448. <StoredType>double|0s</StoredType>
  9449. </column>
  9450. <column id="1839" parent="335" name="rd_completion_progress">
  9451. <Comment>研发预算完成进度</Comment>
  9452. <Position>31</Position>
  9453. <StoredType>double|0s</StoredType>
  9454. </column>
  9455. <column id="1840" parent="335" name="torch_status">
  9456. <Comment>火炬统计 0=其他,1=待完成,2=已完成,3=合同无此项</Comment>
  9457. <Position>32</Position>
  9458. <StoredType>int(11)|0s</StoredType>
  9459. </column>
  9460. <column id="1841" parent="335" name="ch_status">
  9461. <Comment>高企年报火炬统计 0=其他,1=待完成,2=已完成,3=合同无此项</Comment>
  9462. <Position>33</Position>
  9463. <StoredType>int(11)|0s</StoredType>
  9464. </column>
  9465. <column id="1842" parent="335" name="statistics_status">
  9466. <Comment>统计年报 0=其他,1=待完成,2=已完成,3=合同无此项</Comment>
  9467. <Position>34</Position>
  9468. <StoredType>int(11)|0s</StoredType>
  9469. </column>
  9470. <column id="1843" parent="335" name="final_settlement_status">
  9471. <Comment>汇算清缴 0=其他,1=待完成,2=已完成,3=合同无此项</Comment>
  9472. <Position>35</Position>
  9473. <StoredType>int(11)|0s</StoredType>
  9474. </column>
  9475. <column id="1844" parent="335" name="torch_other">
  9476. <Comment>火炬统计其他说明</Comment>
  9477. <Position>36</Position>
  9478. <StoredType>varchar(36)|0s</StoredType>
  9479. </column>
  9480. <column id="1845" parent="335" name="ch_other">
  9481. <Comment>高企年报火炬统计其他说明</Comment>
  9482. <Position>37</Position>
  9483. <StoredType>varchar(128)|0s</StoredType>
  9484. </column>
  9485. <column id="1846" parent="335" name="statistics_other">
  9486. <Comment>统计年报其他说明</Comment>
  9487. <Position>38</Position>
  9488. <StoredType>varchar(128)|0s</StoredType>
  9489. </column>
  9490. <column id="1847" parent="335" name="final_settlement_other">
  9491. <Comment>汇算清缴其他说明</Comment>
  9492. <Position>39</Position>
  9493. <StoredType>varchar(128)|0s</StoredType>
  9494. </column>
  9495. <column id="1848" parent="335" name="report_forms_rd_number">
  9496. <Comment>报表加扣数</Comment>
  9497. <Position>40</Position>
  9498. <StoredType>int(11)|0s</StoredType>
  9499. </column>
  9500. <column id="1849" parent="335" name="intellectual_property_amount">
  9501. <Comment>知识产权加扣费用</Comment>
  9502. <Position>41</Position>
  9503. <StoredType>decimal(18,6 digit)|0s</StoredType>
  9504. </column>
  9505. <column id="1850" parent="335" name="report_rd_amount">
  9506. <Comment>报表扣研发金额</Comment>
  9507. <Position>42</Position>
  9508. <StoredType>decimal(18,6 digit)|0s</StoredType>
  9509. </column>
  9510. <column id="1851" parent="335" name="rd_reserves_status">
  9511. <Comment>研发准备金备案 0=其他,1=待完成,2=已完成,3=合同无此项</Comment>
  9512. <Position>43</Position>
  9513. <StoredType>int(11)|0s</StoredType>
  9514. </column>
  9515. <column id="1852" parent="335" name="rd_reserves_other">
  9516. <Comment>研发准备金备其他说明</Comment>
  9517. <Position>44</Position>
  9518. <StoredType>varchar(128)|0s</StoredType>
  9519. </column>
  9520. <column id="1853" parent="335" name="rd_award_compensation_status">
  9521. <Comment>研发奖补申请 0=其他,1=待完成,2=已完成,3=合同无此项</Comment>
  9522. <Position>45</Position>
  9523. <StoredType>int(11)|0s</StoredType>
  9524. </column>
  9525. <column id="1854" parent="335" name="rd_award_compensation_other">
  9526. <Comment>研发准备金备其他说明</Comment>
  9527. <Position>46</Position>
  9528. <StoredType>varchar(128)|0s</StoredType>
  9529. </column>
  9530. <column id="1855" parent="335" name="rd_application_fee">
  9531. <Comment>研发奖补-申请金额</Comment>
  9532. <Position>47</Position>
  9533. <StoredType>decimal(18,6 digit)|0s</StoredType>
  9534. </column>
  9535. <column id="1856" parent="335" name="rd_announcement_amount">
  9536. <Comment>研发奖补-公示金额</Comment>
  9537. <Position>48</Position>
  9538. <StoredType>decimal(18,6 digit)|0s</StoredType>
  9539. </column>
  9540. <column id="1857" parent="335" name="rd_announcement_other">
  9541. <Comment>研发奖补-公示金额-其他</Comment>
  9542. <Position>49</Position>
  9543. <StoredType>varchar(128)|0s</StoredType>
  9544. </column>
  9545. <column id="1858" parent="335" name="ad_deliver_status">
  9546. <Comment>加扣备查交付 0=其他,1=待完成,2=已完成,3=合同无此项</Comment>
  9547. <Position>50</Position>
  9548. <StoredType>int(11)|0s</StoredType>
  9549. </column>
  9550. <column id="1859" parent="335" name="ad_deliver_other">
  9551. <Comment>加扣备查交付其他说明</Comment>
  9552. <Position>51</Position>
  9553. <StoredType>varchar(128)|0s</StoredType>
  9554. </column>
  9555. <column id="1860" parent="335" name="ad_deliver_finish">
  9556. <Comment>加扣备查交付归档 0=否,1=是</Comment>
  9557. <Position>52</Position>
  9558. <StoredType>int(1)|0s</StoredType>
  9559. </column>
  9560. <column id="1861" parent="335" name="ht_deliver_status">
  9561. <Comment>高新备查交付 0=其他,1=待完成,2=已完成,3=合同无此项</Comment>
  9562. <Position>53</Position>
  9563. <StoredType>int(11)|0s</StoredType>
  9564. </column>
  9565. <column id="1862" parent="335" name="ht_deliver_other">
  9566. <Comment>高新加扣备查交付其他说明</Comment>
  9567. <Position>54</Position>
  9568. <StoredType>varchar(128)|0s</StoredType>
  9569. </column>
  9570. <column id="1863" parent="335" name="ht_deliver_finish">
  9571. <Comment>高新加扣备查交付归档 0=否,1=是</Comment>
  9572. <Position>55</Position>
  9573. <StoredType>int(1)|0s</StoredType>
  9574. </column>
  9575. <column id="1864" parent="335" name="close_meeting_status">
  9576. <Comment>召开上年度总结与本年工作计划会议 0=其他,1=待完成,2=已完成,3=合同无此项</Comment>
  9577. <Position>56</Position>
  9578. <StoredType>int(11)|0s</StoredType>
  9579. </column>
  9580. <column id="1865" parent="335" name="close_meeting_other">
  9581. <Comment>召开上年度总结与本年工作计划会议其他说明</Comment>
  9582. <Position>57</Position>
  9583. <StoredType>varchar(128)|0s</StoredType>
  9584. </column>
  9585. <column id="1866" parent="335" name="phased_type">
  9586. <Comment>阶段性汇报 1=月度,2=季度</Comment>
  9587. <Position>58</Position>
  9588. <StoredType>int(1)|0s</StoredType>
  9589. </column>
  9590. <column id="1867" parent="335" name="phased_content">
  9591. <Comment>阶段性汇报 1,2,3=选取1月到3月</Comment>
  9592. <Position>59</Position>
  9593. <StoredType>varchar(128)|0s</StoredType>
  9594. </column>
  9595. <column id="1868" parent="335" name="project_approval_write_number">
  9596. <Comment>立项资料编写数</Comment>
  9597. <Position>60</Position>
  9598. <StoredType>int(11)|0s</StoredType>
  9599. </column>
  9600. <column id="1869" parent="335" name="project_approval_write_rate">
  9601. <Comment>立项资料编写完成率</Comment>
  9602. <Position>61</Position>
  9603. <StoredType>double|0s</StoredType>
  9604. </column>
  9605. <column id="1870" parent="335" name="ad_prepare_july_status">
  9606. <Comment>加扣预申报七月 0=其他,1=待完成,2=已完成,3=合同无此项</Comment>
  9607. <Position>62</Position>
  9608. <StoredType>int(11)|0s</StoredType>
  9609. </column>
  9610. <column id="1871" parent="335" name="ad_prepare_july_other">
  9611. <Comment>加扣预申报七月其他说明</Comment>
  9612. <Position>63</Position>
  9613. <StoredType>varchar(128)|0s</StoredType>
  9614. </column>
  9615. <column id="1872" parent="335" name="ad_prepare_october_status">
  9616. <Comment>加扣预申报七月 0=其他,1=待完成,2=已完成,3=合同无此项</Comment>
  9617. <Position>64</Position>
  9618. <StoredType>int(11)|0s</StoredType>
  9619. </column>
  9620. <column id="1873" parent="335" name="ad_prepare_october_other">
  9621. <Comment>加扣预申报十月其他说明</Comment>
  9622. <Position>65</Position>
  9623. <StoredType>varchar(128)|0s</StoredType>
  9624. </column>
  9625. <column id="1874" parent="335" name="ip_invention_patent_declare">
  9626. <Comment>知识产权发明专利申报数</Comment>
  9627. <Position>66</Position>
  9628. <StoredType>int(11)|0s</StoredType>
  9629. </column>
  9630. <column id="1875" parent="335" name="ip_invention_patent_authorize">
  9631. <Comment>当年知识产权发明专利授权数</Comment>
  9632. <Position>67</Position>
  9633. <StoredType>int(11)|0s</StoredType>
  9634. </column>
  9635. <column id="1876" parent="335" name="ip_invention_patent_authorize_count">
  9636. <Comment>累计知识产权发明专利授权数</Comment>
  9637. <Position>68</Position>
  9638. <StoredType>int(11)|0s</StoredType>
  9639. </column>
  9640. <column id="1877" parent="335" name="ip_utility_model_declare">
  9641. <Comment>知识产权实用新型申报数</Comment>
  9642. <Position>69</Position>
  9643. <StoredType>int(11)|0s</StoredType>
  9644. </column>
  9645. <column id="1878" parent="335" name="ip_utility_model_authorize">
  9646. <Comment>当年知识产权实用新型授权数</Comment>
  9647. <Position>70</Position>
  9648. <StoredType>int(11)|0s</StoredType>
  9649. </column>
  9650. <column id="1879" parent="335" name="ip_utility_model_authorize_count">
  9651. <Comment>累计知识产权实用新型授权数</Comment>
  9652. <Position>71</Position>
  9653. <StoredType>int(11)|0s</StoredType>
  9654. </column>
  9655. <column id="1880" parent="335" name="ip_software_works_declare">
  9656. <Comment>知识产权软著申报数</Comment>
  9657. <Position>72</Position>
  9658. <StoredType>int(11)|0s</StoredType>
  9659. </column>
  9660. <column id="1881" parent="335" name="ip_software_works_authorize">
  9661. <Comment>当年知识产权软著授权数</Comment>
  9662. <Position>73</Position>
  9663. <StoredType>int(11)|0s</StoredType>
  9664. </column>
  9665. <column id="1882" parent="335" name="ip_software_works_authorize_count">
  9666. <Comment>累计知识产权软著授权数</Comment>
  9667. <Position>74</Position>
  9668. <StoredType>int(11)|0s</StoredType>
  9669. </column>
  9670. <column id="1883" parent="335" name="ip_ht">
  9671. <Comment>知识产权高新数</Comment>
  9672. <Position>75</Position>
  9673. <StoredType>int(11)|0s</StoredType>
  9674. </column>
  9675. <column id="1884" parent="335" name="ip_ht_i">
  9676. <Comment>知识产权高新I数</Comment>
  9677. <Position>76</Position>
  9678. <StoredType>int(11)|0s</StoredType>
  9679. </column>
  9680. <column id="1885" parent="335" name="ip_ht_ii">
  9681. <Comment>知识产权高新II数</Comment>
  9682. <Position>77</Position>
  9683. <StoredType>int(11)|0s</StoredType>
  9684. </column>
  9685. <column id="1886" parent="335" name="outsourcing_dev">
  9686. <Comment>委外开发项目数</Comment>
  9687. <Position>78</Position>
  9688. <StoredType>int(11)|0s</StoredType>
  9689. </column>
  9690. <column id="1887" parent="335" name="contract_registration">
  9691. <Comment>技术开发合同登记数</Comment>
  9692. <Position>79</Position>
  9693. <StoredType>int(11)|0s</StoredType>
  9694. </column>
  9695. <column id="1888" parent="335" name="public_release_stipulation">
  9696. <Comment>公出约定次数</Comment>
  9697. <Position>80</Position>
  9698. <StoredType>int(11)|0s</StoredType>
  9699. </column>
  9700. <column id="1889" parent="335" name="public_release_actual">
  9701. <Comment>公出实际次数</Comment>
  9702. <Position>81</Position>
  9703. <StoredType>int(11)|0s</StoredType>
  9704. </column>
  9705. <column id="1890" parent="335" name="training_stipulation">
  9706. <Comment>培训约定次数</Comment>
  9707. <Position>82</Position>
  9708. <StoredType>int(11)|0s</StoredType>
  9709. </column>
  9710. <column id="1891" parent="335" name="training_actual">
  9711. <Comment>培训实际次数</Comment>
  9712. <Position>83</Position>
  9713. <StoredType>int(11)|0s</StoredType>
  9714. </column>
  9715. <column id="1892" parent="335" name="training_other">
  9716. <Comment>培训其他说明</Comment>
  9717. <Position>84</Position>
  9718. <StoredType>varchar(128)|0s</StoredType>
  9719. </column>
  9720. <column id="1893" parent="335" name="ht_score">
  9721. <Comment>高新认定评价估分</Comment>
  9722. <Position>85</Position>
  9723. <StoredType>int(11)|0s</StoredType>
  9724. </column>
  9725. <column id="1894" parent="335" name="ht_batch">
  9726. <Comment>高新认定评申报批次</Comment>
  9727. <Position>86</Position>
  9728. <StoredType>int(11)|0s</StoredType>
  9729. </column>
  9730. <column id="1895" parent="335" name="ht_focus">
  9731. <Comment>高新认定重点关注 0=否,1=是</Comment>
  9732. <Position>87</Position>
  9733. <StoredType>int(11)|0s</StoredType>
  9734. </column>
  9735. <column id="1896" parent="335" name="web_submit">
  9736. <Comment>网上系统提交 0=其他,1=待完成,2=已完成,3=合同无此项</Comment>
  9737. <Position>88</Position>
  9738. <StoredType>int(11)|0s</StoredType>
  9739. </column>
  9740. <column id="1897" parent="335" name="web_submit_other">
  9741. <Comment>网上系统提交其他说明</Comment>
  9742. <Position>89</Position>
  9743. <StoredType>varchar(128)|0s</StoredType>
  9744. </column>
  9745. <column id="1898" parent="335" name="paper_submit">
  9746. <Comment>纸质材料提交 0=其他,1=待完成,2=已完成,3=合同无此项</Comment>
  9747. <Position>90</Position>
  9748. <StoredType>int(11)|0s</StoredType>
  9749. </column>
  9750. <column id="1899" parent="335" name="paper_submit_other">
  9751. <Comment>纸质材料提交其他说明</Comment>
  9752. <Position>91</Position>
  9753. <StoredType>varchar(128)|0s</StoredType>
  9754. </column>
  9755. <column id="1900" parent="335" name="review_province">
  9756. <Comment>评审省级 0=淘汰,1=公示</Comment>
  9757. <Position>92</Position>
  9758. <StoredType>int(11)|0s</StoredType>
  9759. </column>
  9760. <column id="1901" parent="335" name="review_country">
  9761. <Comment>评审国家级 0=淘汰,1=公示</Comment>
  9762. <Position>93</Position>
  9763. <StoredType>int(11)|0s</StoredType>
  9764. </column>
  9765. <column id="1902" parent="335" name="review_province_number">
  9766. <Comment>评审省级序号</Comment>
  9767. <Position>94</Position>
  9768. <StoredType>varchar(128)|0s</StoredType>
  9769. </column>
  9770. <column id="1903" parent="335" name="review_country_number">
  9771. <Comment>评审国家级高企编号</Comment>
  9772. <Position>95</Position>
  9773. <StoredType>varchar(128)|0s</StoredType>
  9774. </column>
  9775. <column id="1904" parent="335" name="remarks">
  9776. <Comment>备注说明</Comment>
  9777. <Position>96</Position>
  9778. <StoredType>longtext|0s</StoredType>
  9779. </column>
  9780. <column id="1905" parent="335" name="update_time">
  9781. <Comment>更新时间</Comment>
  9782. <Position>97</Position>
  9783. <StoredType>datetime|0s</StoredType>
  9784. </column>
  9785. <column id="1906" parent="335" name="download_time">
  9786. <Comment>下载/打印时间</Comment>
  9787. <Position>98</Position>
  9788. <StoredType>datetime|0s</StoredType>
  9789. </column>
  9790. <column id="1907" parent="335" name="create_time">
  9791. <Comment>创建时间</Comment>
  9792. <DefaultExpression>CURRENT_TIMESTAMP</DefaultExpression>
  9793. <Position>99</Position>
  9794. <StoredType>datetime|0s</StoredType>
  9795. </column>
  9796. <column id="1908" parent="335" name="member_lvl">
  9797. <Comment>会员等级</Comment>
  9798. <DefaultExpression>0</DefaultExpression>
  9799. <Position>100</Position>
  9800. <StoredType>int(11)|0s</StoredType>
  9801. </column>
  9802. <column id="1909" parent="335" name="project_id">
  9803. <Comment>项目负责人编号</Comment>
  9804. <Position>101</Position>
  9805. <StoredType>varchar(36)|0s</StoredType>
  9806. </column>
  9807. <column id="1910" parent="335" name="feature_ht">
  9808. <Comment>高新技术税收优惠政策检查</Comment>
  9809. <Position>102</Position>
  9810. <StoredType>varchar(512)|0s</StoredType>
  9811. </column>
  9812. <column id="1911" parent="335" name="feature_ad">
  9813. <Comment>加计扣除税收优惠政策检查</Comment>
  9814. <Position>103</Position>
  9815. <StoredType>varchar(512)|0s</StoredType>
  9816. </column>
  9817. <column id="1912" parent="335" name="feature_tr">
  9818. <Comment>税务常规检查</Comment>
  9819. <Position>104</Position>
  9820. <StoredType>varchar(512)|0s</StoredType>
  9821. </column>
  9822. <column id="1913" parent="335" name="feature_te">
  9823. <Comment>税务对研发费用检查</Comment>
  9824. <Position>105</Position>
  9825. <StoredType>varchar(512)|0s</StoredType>
  9826. </column>
  9827. <column id="1914" parent="335" name="feature_ti">
  9828. <Comment>税务稽查</Comment>
  9829. <Position>106</Position>
  9830. <StoredType>varchar(512)|0s</StoredType>
  9831. </column>
  9832. <column id="1915" parent="335" name="feature_other">
  9833. <Comment>其他</Comment>
  9834. <Position>107</Position>
  9835. <StoredType>varchar(512)|0s</StoredType>
  9836. </column>
  9837. <index id="1916" parent="335" name="PRIMARY">
  9838. <ColNames>id</ColNames>
  9839. <Type>btree</Type>
  9840. <Unique>1</Unique>
  9841. </index>
  9842. <key id="1917" parent="335" name="PRIMARY">
  9843. <NameSurrogate>1</NameSurrogate>
  9844. <Primary>1</Primary>
  9845. <UnderlyingIndexName>PRIMARY</UnderlyingIndexName>
  9846. </key>
  9847. <column id="1918" parent="336" name="id">
  9848. <AutoIncrement>1</AutoIncrement>
  9849. <NotNull>1</NotNull>
  9850. <Position>1</Position>
  9851. <StoredType>int(11)|0s</StoredType>
  9852. </column>
  9853. <column id="1919" parent="336" name="uid">
  9854. <Comment>用户ID</Comment>
  9855. <NotNull>1</NotNull>
  9856. <Position>2</Position>
  9857. <StoredType>varchar(36)|0s</StoredType>
  9858. </column>
  9859. <column id="1920" parent="336" name="tdid">
  9860. <Comment>项目进度编号</Comment>
  9861. <NotNull>1</NotNull>
  9862. <Position>3</Position>
  9863. <StoredType>int(11)|0s</StoredType>
  9864. </column>
  9865. <column id="1921" parent="336" name="task_name">
  9866. <Comment>业务负责人</Comment>
  9867. <Position>4</Position>
  9868. <StoredType>varchar(36)|0s</StoredType>
  9869. </column>
  9870. <column id="1922" parent="336" name="project_name">
  9871. <Comment>项目负责人</Comment>
  9872. <Position>5</Position>
  9873. <StoredType>varchar(36)|0s</StoredType>
  9874. </column>
  9875. <column id="1923" parent="336" name="technology_name">
  9876. <Comment>技术咨询师</Comment>
  9877. <Position>6</Position>
  9878. <StoredType>varchar(36)|0s</StoredType>
  9879. </column>
  9880. <column id="1924" parent="336" name="finance_taxation_name">
  9881. <Comment>财税咨询师</Comment>
  9882. <Position>7</Position>
  9883. <StoredType>varchar(36)|0s</StoredType>
  9884. </column>
  9885. <column id="1925" parent="336" name="last_year">
  9886. <Comment>上年度年份</Comment>
  9887. <Position>8</Position>
  9888. <StoredType>int(11)|0s</StoredType>
  9889. </column>
  9890. <column id="1926" parent="336" name="last_rd_sales_amount">
  9891. <Comment>上年度年度销售额</Comment>
  9892. <Position>9</Position>
  9893. <StoredType>decimal(18,6 digit)|0s</StoredType>
  9894. </column>
  9895. <column id="1927" parent="336" name="last_rd_budget">
  9896. <Comment>上年度高新研发预算</Comment>
  9897. <Position>10</Position>
  9898. <StoredType>decimal(18,6 digit)|0s</StoredType>
  9899. </column>
  9900. <column id="1928" parent="336" name="before_last_year">
  9901. <Comment>上年度年份</Comment>
  9902. <Position>11</Position>
  9903. <StoredType>int(11)|0s</StoredType>
  9904. </column>
  9905. <column id="1929" parent="336" name="before_last_rd_sales_amount">
  9906. <Comment>上年度年度销售额</Comment>
  9907. <Position>12</Position>
  9908. <StoredType>decimal(18,6 digit)|0s</StoredType>
  9909. </column>
  9910. <column id="1930" parent="336" name="before_last_rd_budget">
  9911. <Comment>上年度高新研发预算</Comment>
  9912. <Position>13</Position>
  9913. <StoredType>decimal(18,6 digit)|0s</StoredType>
  9914. </column>
  9915. <column id="1931" parent="336" name="workers_number">
  9916. <Comment>职工人数</Comment>
  9917. <Position>14</Position>
  9918. <StoredType>int(11)|0s</StoredType>
  9919. </column>
  9920. <column id="1932" parent="336" name="technology_number">
  9921. <Comment>科技人员数</Comment>
  9922. <Position>15</Position>
  9923. <StoredType>int(11)|0s</StoredType>
  9924. </column>
  9925. <column id="1933" parent="336" name="workers_rate">
  9926. <Comment>科技人员占比</Comment>
  9927. <Position>16</Position>
  9928. <StoredType>double|0s</StoredType>
  9929. </column>
  9930. <column id="1934" parent="336" name="project_approval_number">
  9931. <Comment>研发立项数</Comment>
  9932. <Position>17</Position>
  9933. <StoredType>int(11)|0s</StoredType>
  9934. </column>
  9935. <column id="1935" parent="336" name="rd_budget">
  9936. <Comment>年度研发预算</Comment>
  9937. <Position>18</Position>
  9938. <StoredType>decimal(18,6 digit)|0s</StoredType>
  9939. </column>
  9940. <column id="1936" parent="336" name="rd_budget_rate">
  9941. <Comment>年度研发预算占比</Comment>
  9942. <Position>19</Position>
  9943. <StoredType>double|0s</StoredType>
  9944. </column>
  9945. <column id="1937" parent="336" name="three_years_rd_budget_rate">
  9946. <Comment>三年研发预算占比</Comment>
  9947. <Position>20</Position>
  9948. <StoredType>double|0s</StoredType>
  9949. </column>
  9950. <column id="1938" parent="336" name="rd_sales_amount">
  9951. <Comment>年度销售额</Comment>
  9952. <Position>21</Position>
  9953. <StoredType>decimal(18,6 digit)|0s</StoredType>
  9954. </column>
  9955. <column id="1939" parent="336" name="data_cycle">
  9956. <Comment>数据周期 0=第一季度,1=上半年,2=前三季度,3=全年</Comment>
  9957. <Position>22</Position>
  9958. <StoredType>int(1)|0s</StoredType>
  9959. </column>
  9960. <column id="1940" parent="336" name="actual_sales_amount">
  9961. <Comment>实际销售额</Comment>
  9962. <Position>23</Position>
  9963. <StoredType>decimal(18,6 digit)|0s</StoredType>
  9964. </column>
  9965. <column id="1941" parent="336" name="actual_rd_number">
  9966. <Comment>实际立项RD数</Comment>
  9967. <Position>24</Position>
  9968. <StoredType>int(11)|0s</StoredType>
  9969. </column>
  9970. <column id="1942" parent="336" name="actual_outsourcing_number">
  9971. <Comment>实际委外数</Comment>
  9972. <Position>25</Position>
  9973. <StoredType>int(11)|0s</StoredType>
  9974. </column>
  9975. <column id="1943" parent="336" name="actual_cooperate_number">
  9976. <Comment>实际合作项目数</Comment>
  9977. <Position>26</Position>
  9978. <StoredType>int(11)|0s</StoredType>
  9979. </column>
  9980. <column id="1944" parent="336" name="actual_registration_number">
  9981. <Comment>实际技术合同登记数</Comment>
  9982. <Position>27</Position>
  9983. <StoredType>int(11)|0s</StoredType>
  9984. </column>
  9985. <column id="1945" parent="336" name="actual_rd_amount">
  9986. <Comment>实际归集研发费用</Comment>
  9987. <Position>28</Position>
  9988. <StoredType>decimal(18,6 digit)|0s</StoredType>
  9989. </column>
  9990. <column id="1946" parent="336" name="actual_rd_rate">
  9991. <Comment>年度研发预算占比</Comment>
  9992. <Position>29</Position>
  9993. <StoredType>double|0s</StoredType>
  9994. </column>
  9995. <column id="1947" parent="336" name="three_years_actual_rd_rate">
  9996. <Comment>三年研发预算占比</Comment>
  9997. <Position>30</Position>
  9998. <StoredType>double|0s</StoredType>
  9999. </column>
  10000. <column id="1948" parent="336" name="rd_completion_progress">
  10001. <Comment>研发预算完成进度</Comment>
  10002. <Position>31</Position>
  10003. <StoredType>double|0s</StoredType>
  10004. </column>
  10005. <column id="1949" parent="336" name="torch_status">
  10006. <Comment>火炬统计 0=其他,1=待完成,2=已完成,3=合同无此项</Comment>
  10007. <Position>32</Position>
  10008. <StoredType>int(11)|0s</StoredType>
  10009. </column>
  10010. <column id="1950" parent="336" name="ch_status">
  10011. <Comment>高企年报火炬统计 0=其他,1=待完成,2=已完成,3=合同无此项</Comment>
  10012. <Position>33</Position>
  10013. <StoredType>int(11)|0s</StoredType>
  10014. </column>
  10015. <column id="1951" parent="336" name="statistics_status">
  10016. <Comment>统计年报 0=其他,1=待完成,2=已完成,3=合同无此项</Comment>
  10017. <Position>34</Position>
  10018. <StoredType>int(11)|0s</StoredType>
  10019. </column>
  10020. <column id="1952" parent="336" name="final_settlement_status">
  10021. <Comment>汇算清缴 0=其他,1=待完成,2=已完成,3=合同无此项</Comment>
  10022. <Position>35</Position>
  10023. <StoredType>int(11)|0s</StoredType>
  10024. </column>
  10025. <column id="1953" parent="336" name="torch_other">
  10026. <Comment>火炬统计其他说明</Comment>
  10027. <Position>36</Position>
  10028. <StoredType>varchar(36)|0s</StoredType>
  10029. </column>
  10030. <column id="1954" parent="336" name="ch_other">
  10031. <Comment>高企年报火炬统计其他说明</Comment>
  10032. <Position>37</Position>
  10033. <StoredType>varchar(128)|0s</StoredType>
  10034. </column>
  10035. <column id="1955" parent="336" name="statistics_other">
  10036. <Comment>统计年报其他说明</Comment>
  10037. <Position>38</Position>
  10038. <StoredType>varchar(128)|0s</StoredType>
  10039. </column>
  10040. <column id="1956" parent="336" name="final_settlement_other">
  10041. <Comment>汇算清缴其他说明</Comment>
  10042. <Position>39</Position>
  10043. <StoredType>varchar(128)|0s</StoredType>
  10044. </column>
  10045. <column id="1957" parent="336" name="report_forms_rd_number">
  10046. <Comment>报表加扣数</Comment>
  10047. <Position>40</Position>
  10048. <StoredType>int(11)|0s</StoredType>
  10049. </column>
  10050. <column id="1958" parent="336" name="intellectual_property_amount">
  10051. <Comment>知识产权加扣费用</Comment>
  10052. <Position>41</Position>
  10053. <StoredType>decimal(18,6 digit)|0s</StoredType>
  10054. </column>
  10055. <column id="1959" parent="336" name="report_rd_amount">
  10056. <Comment>报表扣研发金额</Comment>
  10057. <Position>42</Position>
  10058. <StoredType>decimal(18,6 digit)|0s</StoredType>
  10059. </column>
  10060. <column id="1960" parent="336" name="rd_reserves_status">
  10061. <Comment>研发准备金备案 0=其他,1=待完成,2=已完成,3=合同无此项</Comment>
  10062. <Position>43</Position>
  10063. <StoredType>int(11)|0s</StoredType>
  10064. </column>
  10065. <column id="1961" parent="336" name="rd_reserves_other">
  10066. <Comment>研发准备金备其他说明</Comment>
  10067. <Position>44</Position>
  10068. <StoredType>varchar(128)|0s</StoredType>
  10069. </column>
  10070. <column id="1962" parent="336" name="rd_award_compensation_status">
  10071. <Comment>研发奖补申请 0=其他,1=待完成,2=已完成,3=合同无此项</Comment>
  10072. <Position>45</Position>
  10073. <StoredType>int(11)|0s</StoredType>
  10074. </column>
  10075. <column id="1963" parent="336" name="rd_award_compensation_other">
  10076. <Comment>研发准备金备其他说明</Comment>
  10077. <Position>46</Position>
  10078. <StoredType>varchar(128)|0s</StoredType>
  10079. </column>
  10080. <column id="1964" parent="336" name="rd_application_fee">
  10081. <Comment>研发奖补-申请金额</Comment>
  10082. <Position>47</Position>
  10083. <StoredType>decimal(18,6 digit)|0s</StoredType>
  10084. </column>
  10085. <column id="1965" parent="336" name="rd_announcement_amount">
  10086. <Comment>研发奖补-公示金额</Comment>
  10087. <Position>48</Position>
  10088. <StoredType>decimal(18,6 digit)|0s</StoredType>
  10089. </column>
  10090. <column id="1966" parent="336" name="rd_announcement_other">
  10091. <Comment>研发奖补-公示金额-其他</Comment>
  10092. <Position>49</Position>
  10093. <StoredType>varchar(128)|0s</StoredType>
  10094. </column>
  10095. <column id="1967" parent="336" name="ad_deliver_status">
  10096. <Comment>加扣备查交付 0=其他,1=待完成,2=已完成,3=合同无此项</Comment>
  10097. <Position>50</Position>
  10098. <StoredType>int(11)|0s</StoredType>
  10099. </column>
  10100. <column id="1968" parent="336" name="ad_deliver_other">
  10101. <Comment>加扣备查交付其他说明</Comment>
  10102. <Position>51</Position>
  10103. <StoredType>varchar(128)|0s</StoredType>
  10104. </column>
  10105. <column id="1969" parent="336" name="ad_deliver_finish">
  10106. <Comment>加扣备查交付归档 0=否,1=是</Comment>
  10107. <Position>52</Position>
  10108. <StoredType>int(1)|0s</StoredType>
  10109. </column>
  10110. <column id="1970" parent="336" name="ht_deliver_status">
  10111. <Comment>高新备查交付 0=其他,1=待完成,2=已完成,3=合同无此项</Comment>
  10112. <Position>53</Position>
  10113. <StoredType>int(11)|0s</StoredType>
  10114. </column>
  10115. <column id="1971" parent="336" name="ht_deliver_other">
  10116. <Comment>高新加扣备查交付其他说明</Comment>
  10117. <Position>54</Position>
  10118. <StoredType>varchar(128)|0s</StoredType>
  10119. </column>
  10120. <column id="1972" parent="336" name="ht_deliver_finish">
  10121. <Comment>高新加扣备查交付归档 0=否,1=是</Comment>
  10122. <Position>55</Position>
  10123. <StoredType>int(1)|0s</StoredType>
  10124. </column>
  10125. <column id="1973" parent="336" name="close_meeting_status">
  10126. <Comment>召开上年度总结与本年工作计划会议 0=其他,1=待完成,2=已完成,3=合同无此项</Comment>
  10127. <Position>56</Position>
  10128. <StoredType>int(11)|0s</StoredType>
  10129. </column>
  10130. <column id="1974" parent="336" name="close_meeting_other">
  10131. <Comment>召开上年度总结与本年工作计划会议其他说明</Comment>
  10132. <Position>57</Position>
  10133. <StoredType>varchar(128)|0s</StoredType>
  10134. </column>
  10135. <column id="1975" parent="336" name="phased_type">
  10136. <Comment>阶段性汇报 1=月度,2=季度</Comment>
  10137. <Position>58</Position>
  10138. <StoredType>int(1)|0s</StoredType>
  10139. </column>
  10140. <column id="1976" parent="336" name="phased_content">
  10141. <Comment>阶段性汇报 1,2,3=选取1月到3月</Comment>
  10142. <Position>59</Position>
  10143. <StoredType>varchar(128)|0s</StoredType>
  10144. </column>
  10145. <column id="1977" parent="336" name="project_approval_write_number">
  10146. <Comment>立项资料编写数</Comment>
  10147. <Position>60</Position>
  10148. <StoredType>int(11)|0s</StoredType>
  10149. </column>
  10150. <column id="1978" parent="336" name="project_approval_write_rate">
  10151. <Comment>立项资料编写完成率</Comment>
  10152. <Position>61</Position>
  10153. <StoredType>double|0s</StoredType>
  10154. </column>
  10155. <column id="1979" parent="336" name="ad_prepare_july_status">
  10156. <Comment>加扣预申报七月 0=其他,1=待完成,2=已完成,3=合同无此项</Comment>
  10157. <Position>62</Position>
  10158. <StoredType>int(11)|0s</StoredType>
  10159. </column>
  10160. <column id="1980" parent="336" name="ad_prepare_july_other">
  10161. <Comment>加扣预申报七月其他说明</Comment>
  10162. <Position>63</Position>
  10163. <StoredType>varchar(128)|0s</StoredType>
  10164. </column>
  10165. <column id="1981" parent="336" name="ad_prepare_october_status">
  10166. <Comment>加扣预申报七月 0=其他,1=待完成,2=已完成,3=合同无此项</Comment>
  10167. <Position>64</Position>
  10168. <StoredType>int(11)|0s</StoredType>
  10169. </column>
  10170. <column id="1982" parent="336" name="ad_prepare_october_other">
  10171. <Comment>加扣预申报十月其他说明</Comment>
  10172. <Position>65</Position>
  10173. <StoredType>varchar(128)|0s</StoredType>
  10174. </column>
  10175. <column id="1983" parent="336" name="ip_invention_patent_declare">
  10176. <Comment>知识产权发明专利申报数</Comment>
  10177. <Position>66</Position>
  10178. <StoredType>int(11)|0s</StoredType>
  10179. </column>
  10180. <column id="1984" parent="336" name="ip_invention_patent_authorize">
  10181. <Comment>当年知识产权发明专利授权数</Comment>
  10182. <Position>67</Position>
  10183. <StoredType>int(11)|0s</StoredType>
  10184. </column>
  10185. <column id="1985" parent="336" name="ip_invention_patent_authorize_count">
  10186. <Comment>累计知识产权发明专利授权数</Comment>
  10187. <Position>68</Position>
  10188. <StoredType>int(11)|0s</StoredType>
  10189. </column>
  10190. <column id="1986" parent="336" name="ip_utility_model_declare">
  10191. <Comment>知识产权实用新型申报数</Comment>
  10192. <Position>69</Position>
  10193. <StoredType>int(11)|0s</StoredType>
  10194. </column>
  10195. <column id="1987" parent="336" name="ip_utility_model_authorize">
  10196. <Comment>当年知识产权实用新型授权数</Comment>
  10197. <Position>70</Position>
  10198. <StoredType>int(11)|0s</StoredType>
  10199. </column>
  10200. <column id="1988" parent="336" name="ip_utility_model_authorize_count">
  10201. <Comment>累计知识产权实用新型授权数</Comment>
  10202. <Position>71</Position>
  10203. <StoredType>int(11)|0s</StoredType>
  10204. </column>
  10205. <column id="1989" parent="336" name="ip_software_works_declare">
  10206. <Comment>知识产权软著申报数</Comment>
  10207. <Position>72</Position>
  10208. <StoredType>int(11)|0s</StoredType>
  10209. </column>
  10210. <column id="1990" parent="336" name="ip_software_works_authorize">
  10211. <Comment>当年知识产权软著授权数</Comment>
  10212. <Position>73</Position>
  10213. <StoredType>int(11)|0s</StoredType>
  10214. </column>
  10215. <column id="1991" parent="336" name="ip_software_works_authorize_count">
  10216. <Comment>累计知识产权软著授权数</Comment>
  10217. <Position>74</Position>
  10218. <StoredType>int(11)|0s</StoredType>
  10219. </column>
  10220. <column id="1992" parent="336" name="ip_ht">
  10221. <Comment>知识产权高新数</Comment>
  10222. <Position>75</Position>
  10223. <StoredType>int(11)|0s</StoredType>
  10224. </column>
  10225. <column id="1993" parent="336" name="ip_ht_i">
  10226. <Comment>知识产权高新I数</Comment>
  10227. <Position>76</Position>
  10228. <StoredType>int(11)|0s</StoredType>
  10229. </column>
  10230. <column id="1994" parent="336" name="ip_ht_ii">
  10231. <Comment>知识产权高新II数</Comment>
  10232. <Position>77</Position>
  10233. <StoredType>int(11)|0s</StoredType>
  10234. </column>
  10235. <column id="1995" parent="336" name="outsourcing_dev">
  10236. <Comment>委外开发项目数</Comment>
  10237. <Position>78</Position>
  10238. <StoredType>int(11)|0s</StoredType>
  10239. </column>
  10240. <column id="1996" parent="336" name="contract_registration">
  10241. <Comment>技术开发合同登记数</Comment>
  10242. <Position>79</Position>
  10243. <StoredType>int(11)|0s</StoredType>
  10244. </column>
  10245. <column id="1997" parent="336" name="public_release_stipulation">
  10246. <Comment>公出约定次数</Comment>
  10247. <Position>80</Position>
  10248. <StoredType>int(11)|0s</StoredType>
  10249. </column>
  10250. <column id="1998" parent="336" name="public_release_actual">
  10251. <Comment>公出实际次数</Comment>
  10252. <Position>81</Position>
  10253. <StoredType>int(11)|0s</StoredType>
  10254. </column>
  10255. <column id="1999" parent="336" name="training_stipulation">
  10256. <Comment>培训约定次数</Comment>
  10257. <Position>82</Position>
  10258. <StoredType>int(11)|0s</StoredType>
  10259. </column>
  10260. <column id="2000" parent="336" name="training_actual">
  10261. <Comment>培训实际次数</Comment>
  10262. <Position>83</Position>
  10263. <StoredType>int(11)|0s</StoredType>
  10264. </column>
  10265. <column id="2001" parent="336" name="training_other">
  10266. <Comment>培训其他说明</Comment>
  10267. <Position>84</Position>
  10268. <StoredType>varchar(128)|0s</StoredType>
  10269. </column>
  10270. <column id="2002" parent="336" name="ht_score">
  10271. <Comment>高新认定评价估分</Comment>
  10272. <Position>85</Position>
  10273. <StoredType>int(11)|0s</StoredType>
  10274. </column>
  10275. <column id="2003" parent="336" name="ht_batch">
  10276. <Comment>高新认定评申报批次</Comment>
  10277. <Position>86</Position>
  10278. <StoredType>int(11)|0s</StoredType>
  10279. </column>
  10280. <column id="2004" parent="336" name="ht_focus">
  10281. <Comment>高新认定重点关注 0=否,1=是</Comment>
  10282. <Position>87</Position>
  10283. <StoredType>int(11)|0s</StoredType>
  10284. </column>
  10285. <column id="2005" parent="336" name="web_submit">
  10286. <Comment>网上系统提交 0=其他,1=待完成,2=已完成,3=合同无此项</Comment>
  10287. <Position>88</Position>
  10288. <StoredType>int(11)|0s</StoredType>
  10289. </column>
  10290. <column id="2006" parent="336" name="web_submit_other">
  10291. <Comment>网上系统提交其他说明</Comment>
  10292. <Position>89</Position>
  10293. <StoredType>varchar(128)|0s</StoredType>
  10294. </column>
  10295. <column id="2007" parent="336" name="paper_submit">
  10296. <Comment>纸质材料提交 0=其他,1=待完成,2=已完成,3=合同无此项</Comment>
  10297. <Position>90</Position>
  10298. <StoredType>int(11)|0s</StoredType>
  10299. </column>
  10300. <column id="2008" parent="336" name="paper_submit_other">
  10301. <Comment>纸质材料提交其他说明</Comment>
  10302. <Position>91</Position>
  10303. <StoredType>varchar(128)|0s</StoredType>
  10304. </column>
  10305. <column id="2009" parent="336" name="review_province">
  10306. <Comment>评审省级 0=淘汰,1=公示</Comment>
  10307. <Position>92</Position>
  10308. <StoredType>int(11)|0s</StoredType>
  10309. </column>
  10310. <column id="2010" parent="336" name="review_country">
  10311. <Comment>评审国家级 0=淘汰,1=公示</Comment>
  10312. <Position>93</Position>
  10313. <StoredType>int(11)|0s</StoredType>
  10314. </column>
  10315. <column id="2011" parent="336" name="review_province_number">
  10316. <Comment>评审省级序号</Comment>
  10317. <Position>94</Position>
  10318. <StoredType>varchar(128)|0s</StoredType>
  10319. </column>
  10320. <column id="2012" parent="336" name="review_country_number">
  10321. <Comment>评审国家级高企编号</Comment>
  10322. <Position>95</Position>
  10323. <StoredType>varchar(128)|0s</StoredType>
  10324. </column>
  10325. <column id="2013" parent="336" name="remarks">
  10326. <Comment>备注说明</Comment>
  10327. <Position>96</Position>
  10328. <StoredType>longtext|0s</StoredType>
  10329. </column>
  10330. <column id="2014" parent="336" name="aid">
  10331. <Comment>修改人</Comment>
  10332. <Position>97</Position>
  10333. <StoredType>varchar(36)|0s</StoredType>
  10334. </column>
  10335. <column id="2015" parent="336" name="aname">
  10336. <Comment>修改人名称</Comment>
  10337. <Position>98</Position>
  10338. <StoredType>varchar(36)|0s</StoredType>
  10339. </column>
  10340. <column id="2016" parent="336" name="create_time">
  10341. <Comment>创建时间</Comment>
  10342. <DefaultExpression>CURRENT_TIMESTAMP</DefaultExpression>
  10343. <Position>99</Position>
  10344. <StoredType>datetime|0s</StoredType>
  10345. </column>
  10346. <column id="2017" parent="336" name="member_lvl">
  10347. <Comment>会员等级</Comment>
  10348. <DefaultExpression>0</DefaultExpression>
  10349. <Position>100</Position>
  10350. <StoredType>int(11)|0s</StoredType>
  10351. </column>
  10352. <column id="2018" parent="336" name="project_id">
  10353. <Comment>项目负责人编号</Comment>
  10354. <Position>101</Position>
  10355. <StoredType>varchar(36)|0s</StoredType>
  10356. </column>
  10357. <column id="2019" parent="336" name="feature_ht">
  10358. <Comment>高新技术税收优惠政策检查</Comment>
  10359. <Position>102</Position>
  10360. <StoredType>varchar(512)|0s</StoredType>
  10361. </column>
  10362. <column id="2020" parent="336" name="feature_ad">
  10363. <Comment>加计扣除税收优惠政策检查</Comment>
  10364. <Position>103</Position>
  10365. <StoredType>varchar(512)|0s</StoredType>
  10366. </column>
  10367. <column id="2021" parent="336" name="feature_tr">
  10368. <Comment>税务常规检查</Comment>
  10369. <Position>104</Position>
  10370. <StoredType>varchar(512)|0s</StoredType>
  10371. </column>
  10372. <column id="2022" parent="336" name="feature_te">
  10373. <Comment>税务对研发费用检查</Comment>
  10374. <Position>105</Position>
  10375. <StoredType>varchar(512)|0s</StoredType>
  10376. </column>
  10377. <column id="2023" parent="336" name="feature_ti">
  10378. <Comment>税务稽查</Comment>
  10379. <Position>106</Position>
  10380. <StoredType>varchar(512)|0s</StoredType>
  10381. </column>
  10382. <column id="2024" parent="336" name="feature_other">
  10383. <Comment>其他</Comment>
  10384. <Position>107</Position>
  10385. <StoredType>varchar(512)|0s</StoredType>
  10386. </column>
  10387. <index id="2025" parent="336" name="PRIMARY">
  10388. <ColNames>id</ColNames>
  10389. <Type>btree</Type>
  10390. <Unique>1</Unique>
  10391. </index>
  10392. <key id="2026" parent="336" name="PRIMARY">
  10393. <NameSurrogate>1</NameSurrogate>
  10394. <Primary>1</Primary>
  10395. <UnderlyingIndexName>PRIMARY</UnderlyingIndexName>
  10396. </key>
  10397. <column id="2027" parent="337" name="id">
  10398. <AutoIncrement>1</AutoIncrement>
  10399. <NotNull>1</NotNull>
  10400. <Position>1</Position>
  10401. <StoredType>int(11)|0s</StoredType>
  10402. </column>
  10403. <column id="2028" parent="337" name="tdid">
  10404. <Comment>项目进度编号</Comment>
  10405. <NotNull>1</NotNull>
  10406. <Position>2</Position>
  10407. <StoredType>int(11)|0s</StoredType>
  10408. </column>
  10409. <column id="2029" parent="337" name="start_time">
  10410. <Comment>检查开始时间</Comment>
  10411. <Position>3</Position>
  10412. <StoredType>datetime|0s</StoredType>
  10413. </column>
  10414. <column id="2030" parent="337" name="end_time">
  10415. <Comment>检查结束时间</Comment>
  10416. <Position>4</Position>
  10417. <StoredType>datetime|0s</StoredType>
  10418. </column>
  10419. <column id="2031" parent="337" name="dep_name">
  10420. <Comment>检查部门</Comment>
  10421. <Position>5</Position>
  10422. <StoredType>varchar(36)|0s</StoredType>
  10423. </column>
  10424. <column id="2032" parent="337" name="year_feature">
  10425. <Comment>被检查年度</Comment>
  10426. <Position>6</Position>
  10427. <StoredType>varchar(36)|0s</StoredType>
  10428. </column>
  10429. <column id="2033" parent="337" name="inspect_way">
  10430. <Comment>检查方式 0=线上,1=线下</Comment>
  10431. <Position>7</Position>
  10432. <StoredType>int(1)|0s</StoredType>
  10433. </column>
  10434. <column id="2034" parent="337" name="type">
  10435. <Comment>检查类别 0=其他 1=高新技术税收优惠政策检查,2=加计扣除税收优惠政策检查,3=税务常规检查,4=税务对研发费用检查,5=税务稽查</Comment>
  10436. <Position>8</Position>
  10437. <StoredType>int(1)|0s</StoredType>
  10438. </column>
  10439. <column id="2035" parent="337" name="type_other">
  10440. <Comment>检查类别其他说明</Comment>
  10441. <Position>9</Position>
  10442. <StoredType>varchar(36)|0s</StoredType>
  10443. </column>
  10444. <column id="2036" parent="337" name="inspection_items">
  10445. <Comment>检查事项 0=其他,1=高新产品收入不达标,2=人员人工费用问题检查,3=研发费用占比不达标,4=属于多个类别,5=其他事项检查</Comment>
  10446. <Position>10</Position>
  10447. <StoredType>int(1)|0s</StoredType>
  10448. </column>
  10449. <column id="2037" parent="337" name="inspection_items_other">
  10450. <Comment>检查事项其他说明</Comment>
  10451. <Position>11</Position>
  10452. <StoredType>varchar(36)|0s</StoredType>
  10453. </column>
  10454. <column id="2038" parent="337" name="enterprise_problems">
  10455. <Comment>企业问题点</Comment>
  10456. <Position>12</Position>
  10457. <StoredType>varchar(512)|0s</StoredType>
  10458. </column>
  10459. <column id="2039" parent="337" name="solution">
  10460. <Comment>解决方式</Comment>
  10461. <Position>13</Position>
  10462. <StoredType>varchar(512)|0s</StoredType>
  10463. </column>
  10464. <column id="2040" parent="337" name="inspection_conclusion">
  10465. <Comment>检查后结论 0=其他,1=被取消高新认定资格,2=不通过,3=合规通过,4=通过,5=无结论,6=要求整改</Comment>
  10466. <Position>14</Position>
  10467. <StoredType>int(1)|0s</StoredType>
  10468. </column>
  10469. <column id="2041" parent="337" name="remind_follow">
  10470. <Comment>是否提醒企业专业人员跟进事宜 0=未提醒,1=已提醒</Comment>
  10471. <Position>15</Position>
  10472. <StoredType>int(1)|0s</StoredType>
  10473. </column>
  10474. <column id="2042" parent="337" name="remarks">
  10475. <Comment>备注说明</Comment>
  10476. <Position>16</Position>
  10477. <StoredType>longtext|0s</StoredType>
  10478. </column>
  10479. <column id="2043" parent="337" name="create_time">
  10480. <Comment>创建时间</Comment>
  10481. <DefaultExpression>CURRENT_TIMESTAMP</DefaultExpression>
  10482. <Position>17</Position>
  10483. <StoredType>datetime|0s</StoredType>
  10484. </column>
  10485. <index id="2044" parent="337" name="PRIMARY">
  10486. <ColNames>id</ColNames>
  10487. <Type>btree</Type>
  10488. <Unique>1</Unique>
  10489. </index>
  10490. <key id="2045" parent="337" name="PRIMARY">
  10491. <NameSurrogate>1</NameSurrogate>
  10492. <Primary>1</Primary>
  10493. <UnderlyingIndexName>PRIMARY</UnderlyingIndexName>
  10494. </key>
  10495. <column id="2046" parent="338" name="id">
  10496. <AutoIncrement>1</AutoIncrement>
  10497. <NotNull>1</NotNull>
  10498. <Position>1</Position>
  10499. <StoredType>int(11)|0s</StoredType>
  10500. </column>
  10501. <column id="2047" parent="338" name="tdl_id">
  10502. <Comment>项目进度编号</Comment>
  10503. <NotNull>1</NotNull>
  10504. <Position>2</Position>
  10505. <StoredType>int(11)|0s</StoredType>
  10506. </column>
  10507. <column id="2048" parent="338" name="start_time">
  10508. <Comment>检查开始时间</Comment>
  10509. <Position>3</Position>
  10510. <StoredType>datetime|0s</StoredType>
  10511. </column>
  10512. <column id="2049" parent="338" name="end_time">
  10513. <Comment>检查结束时间</Comment>
  10514. <Position>4</Position>
  10515. <StoredType>datetime|0s</StoredType>
  10516. </column>
  10517. <column id="2050" parent="338" name="dep_name">
  10518. <Comment>检查部门</Comment>
  10519. <Position>5</Position>
  10520. <StoredType>varchar(36)|0s</StoredType>
  10521. </column>
  10522. <column id="2051" parent="338" name="year_feature">
  10523. <Comment>被检查年度</Comment>
  10524. <Position>6</Position>
  10525. <StoredType>varchar(36)|0s</StoredType>
  10526. </column>
  10527. <column id="2052" parent="338" name="inspect_way">
  10528. <Comment>检查方式 0=线上,1=线下</Comment>
  10529. <Position>7</Position>
  10530. <StoredType>int(1)|0s</StoredType>
  10531. </column>
  10532. <column id="2053" parent="338" name="type">
  10533. <Comment>检查类别 0=其他 1=高新技术税收优惠政策检查,2=加计扣除税收优惠政策检查,3=税务常规检查,4=税务对研发费用检查,5=税务稽查</Comment>
  10534. <Position>8</Position>
  10535. <StoredType>int(1)|0s</StoredType>
  10536. </column>
  10537. <column id="2054" parent="338" name="type_other">
  10538. <Comment>检查类别其他说明</Comment>
  10539. <Position>9</Position>
  10540. <StoredType>varchar(36)|0s</StoredType>
  10541. </column>
  10542. <column id="2055" parent="338" name="inspection_items">
  10543. <Comment>检查事项 0=其他,1=高新产品收入不达标,2=人员人工费用问题检查,3=研发费用占比不达标,4=属于多个类别,5=其他事项检查</Comment>
  10544. <Position>10</Position>
  10545. <StoredType>int(1)|0s</StoredType>
  10546. </column>
  10547. <column id="2056" parent="338" name="inspection_items_other">
  10548. <Comment>检查事项其他说明</Comment>
  10549. <Position>11</Position>
  10550. <StoredType>varchar(36)|0s</StoredType>
  10551. </column>
  10552. <column id="2057" parent="338" name="enterprise_problems">
  10553. <Comment>企业问题点</Comment>
  10554. <Position>12</Position>
  10555. <StoredType>varchar(512)|0s</StoredType>
  10556. </column>
  10557. <column id="2058" parent="338" name="solution">
  10558. <Comment>解决方式</Comment>
  10559. <Position>13</Position>
  10560. <StoredType>varchar(512)|0s</StoredType>
  10561. </column>
  10562. <column id="2059" parent="338" name="inspection_conclusion">
  10563. <Comment>检查后结论 0=其他,1=被取消高新认定资格,2=不通过,3=合规通过,4=通过,5=无结论,6=要求整改</Comment>
  10564. <Position>14</Position>
  10565. <StoredType>int(1)|0s</StoredType>
  10566. </column>
  10567. <column id="2060" parent="338" name="remind_follow">
  10568. <Comment>是否提醒企业专业人员跟进事宜 0=未提醒,1=已提醒</Comment>
  10569. <Position>15</Position>
  10570. <StoredType>int(1)|0s</StoredType>
  10571. </column>
  10572. <column id="2061" parent="338" name="remarks">
  10573. <Comment>备注说明</Comment>
  10574. <Position>16</Position>
  10575. <StoredType>longtext|0s</StoredType>
  10576. </column>
  10577. <column id="2062" parent="338" name="aid">
  10578. <Comment>修改人</Comment>
  10579. <Position>17</Position>
  10580. <StoredType>varchar(36)|0s</StoredType>
  10581. </column>
  10582. <column id="2063" parent="338" name="aname">
  10583. <Comment>修改人名称</Comment>
  10584. <Position>18</Position>
  10585. <StoredType>varchar(36)|0s</StoredType>
  10586. </column>
  10587. <column id="2064" parent="338" name="create_time">
  10588. <Comment>创建时间</Comment>
  10589. <DefaultExpression>CURRENT_TIMESTAMP</DefaultExpression>
  10590. <Position>19</Position>
  10591. <StoredType>datetime|0s</StoredType>
  10592. </column>
  10593. <index id="2065" parent="338" name="PRIMARY">
  10594. <ColNames>id</ColNames>
  10595. <Type>btree</Type>
  10596. <Unique>1</Unique>
  10597. </index>
  10598. <key id="2066" parent="338" name="PRIMARY">
  10599. <NameSurrogate>1</NameSurrogate>
  10600. <Primary>1</Primary>
  10601. <UnderlyingIndexName>PRIMARY</UnderlyingIndexName>
  10602. </key>
  10603. <column id="2067" parent="339" name="id">
  10604. <AutoIncrement>61</AutoIncrement>
  10605. <NotNull>1</NotNull>
  10606. <Position>1</Position>
  10607. <StoredType>int(11)|0s</StoredType>
  10608. </column>
  10609. <column id="2068" parent="339" name="content">
  10610. <Comment>内容</Comment>
  10611. <Position>2</Position>
  10612. <StoredType>varchar(128)|0s</StoredType>
  10613. </column>
  10614. <column id="2069" parent="339" name="create_time">
  10615. <Comment>创建时间</Comment>
  10616. <DefaultExpression>CURRENT_TIMESTAMP</DefaultExpression>
  10617. <Position>3</Position>
  10618. <StoredType>datetime|0s</StoredType>
  10619. </column>
  10620. <column id="2070" parent="339" name="task_id">
  10621. <Comment>任务ID</Comment>
  10622. <Position>4</Position>
  10623. <StoredType>int(11)|0s</StoredType>
  10624. </column>
  10625. <column id="2071" parent="339" name="aid">
  10626. <Comment>操作人</Comment>
  10627. <NotNull>1</NotNull>
  10628. <Position>5</Position>
  10629. <StoredType>varchar(36)|0s</StoredType>
  10630. </column>
  10631. <column id="2072" parent="339" name="stop_id">
  10632. <Comment>发起暂停编号</Comment>
  10633. <Position>6</Position>
  10634. <StoredType>bigint(20)|0s</StoredType>
  10635. </column>
  10636. <index id="2073" parent="339" name="PRIMARY">
  10637. <ColNames>id</ColNames>
  10638. <Type>btree</Type>
  10639. <Unique>1</Unique>
  10640. </index>
  10641. <key id="2074" parent="339" name="PRIMARY">
  10642. <NameSurrogate>1</NameSurrogate>
  10643. <Primary>1</Primary>
  10644. <UnderlyingIndexName>PRIMARY</UnderlyingIndexName>
  10645. </key>
  10646. <column id="2075" parent="340" name="id">
  10647. <AutoIncrement>3</AutoIncrement>
  10648. <NotNull>1</NotNull>
  10649. <Position>1</Position>
  10650. <StoredType>int(11)|0s</StoredType>
  10651. </column>
  10652. <column id="2076" parent="340" name="already_number">
  10653. <Comment>数量</Comment>
  10654. <Position>2</Position>
  10655. <StoredType>int(11)|0s</StoredType>
  10656. </column>
  10657. <column id="2077" parent="340" name="licence_time">
  10658. <Comment>下证时间</Comment>
  10659. <Position>3</Position>
  10660. <StoredType>datetime|0s</StoredType>
  10661. </column>
  10662. <column id="2078" parent="340" name="task_id">
  10663. <Comment>任务ID</Comment>
  10664. <Position>4</Position>
  10665. <StoredType>int(11)|0s</StoredType>
  10666. </column>
  10667. <column id="2079" parent="340" name="create_time">
  10668. <Comment>创建时间</Comment>
  10669. <DefaultExpression>CURRENT_TIMESTAMP</DefaultExpression>
  10670. <Position>5</Position>
  10671. <StoredType>datetime|0s</StoredType>
  10672. </column>
  10673. <column id="2080" parent="340" name="accept_time">
  10674. <Comment>受理时间</Comment>
  10675. <Position>6</Position>
  10676. <StoredType>datetime|0s</StoredType>
  10677. </column>
  10678. <column id="2081" parent="340" name="authorize_time">
  10679. <Comment>授权时间</Comment>
  10680. <Position>7</Position>
  10681. <StoredType>datetime|0s</StoredType>
  10682. </column>
  10683. <column id="2082" parent="340" name="patent_no">
  10684. <Comment>专利号</Comment>
  10685. <Position>8</Position>
  10686. <StoredType>varchar(64)|0s</StoredType>
  10687. </column>
  10688. <column id="2083" parent="340" name="patent_name">
  10689. <Comment>专利名称</Comment>
  10690. <Position>9</Position>
  10691. <StoredType>varchar(64)|0s</StoredType>
  10692. </column>
  10693. <column id="2084" parent="340" name="status">
  10694. <Comment>0审核中 1通过 2驳回</Comment>
  10695. <DefaultExpression>0</DefaultExpression>
  10696. <Position>10</Position>
  10697. <StoredType>int(1)|0s</StoredType>
  10698. </column>
  10699. <column id="2085" parent="340" name="type">
  10700. <Comment>0软著 1专利 2商标</Comment>
  10701. <DefaultExpression>0</DefaultExpression>
  10702. <Position>11</Position>
  10703. <StoredType>int(1)|0s</StoredType>
  10704. </column>
  10705. <index id="2086" parent="340" name="PRIMARY">
  10706. <ColNames>id</ColNames>
  10707. <Type>btree</Type>
  10708. <Unique>1</Unique>
  10709. </index>
  10710. <key id="2087" parent="340" name="PRIMARY">
  10711. <NameSurrogate>1</NameSurrogate>
  10712. <Primary>1</Primary>
  10713. <UnderlyingIndexName>PRIMARY</UnderlyingIndexName>
  10714. </key>
  10715. <column id="2088" parent="341" name="id">
  10716. <AutoIncrement>1</AutoIncrement>
  10717. <Comment>日志id</Comment>
  10718. <NotNull>1</NotNull>
  10719. <Position>1</Position>
  10720. <StoredType>int(11)|0s</StoredType>
  10721. </column>
  10722. <column id="2089" parent="341" name="tid">
  10723. <Comment>任务id</Comment>
  10724. <NotNull>1</NotNull>
  10725. <Position>2</Position>
  10726. <StoredType>int(11)|0s</StoredType>
  10727. </column>
  10728. <column id="2090" parent="341" name="patent_name">
  10729. <Comment>专利号</Comment>
  10730. <Position>3</Position>
  10731. <StoredType>varchar(36)|0s</StoredType>
  10732. </column>
  10733. <column id="2091" parent="341" name="status">
  10734. <Comment> 0新增 1删除 2修改</Comment>
  10735. <Position>4</Position>
  10736. <StoredType>int(36)|0s</StoredType>
  10737. </column>
  10738. <column id="2092" parent="341" name="create_time">
  10739. <Comment>操作时间</Comment>
  10740. <NotNull>1</NotNull>
  10741. <Position>5</Position>
  10742. <StoredType>datetime|0s</StoredType>
  10743. </column>
  10744. <index id="2093" parent="341" name="PRIMARY">
  10745. <ColNames>id</ColNames>
  10746. <Type>btree</Type>
  10747. <Unique>1</Unique>
  10748. </index>
  10749. <key id="2094" parent="341" name="PRIMARY">
  10750. <NameSurrogate>1</NameSurrogate>
  10751. <Primary>1</Primary>
  10752. <UnderlyingIndexName>PRIMARY</UnderlyingIndexName>
  10753. </key>
  10754. <column id="2095" parent="342" name="id">
  10755. <AutoIncrement>1</AutoIncrement>
  10756. <Comment>id</Comment>
  10757. <NotNull>1</NotNull>
  10758. <Position>1</Position>
  10759. <StoredType>int(11)|0s</StoredType>
  10760. </column>
  10761. <column id="2096" parent="342" name="tid">
  10762. <Comment>项目编号</Comment>
  10763. <NotNull>1</NotNull>
  10764. <Position>2</Position>
  10765. <StoredType>int(11)|0s</StoredType>
  10766. </column>
  10767. <column id="2097" parent="342" name="professionalism">
  10768. <Comment>专业度 </Comment>
  10769. <DefaultExpression>0</DefaultExpression>
  10770. <Position>3</Position>
  10771. <StoredType>int(11)|0s</StoredType>
  10772. </column>
  10773. <column id="2098" parent="342" name="communication_skills">
  10774. <Comment>沟通力</Comment>
  10775. <DefaultExpression>0</DefaultExpression>
  10776. <Position>4</Position>
  10777. <StoredType>int(11)|0s</StoredType>
  10778. </column>
  10779. <column id="2099" parent="342" name="responsiveness">
  10780. <Comment>响应度 </Comment>
  10781. <DefaultExpression>0</DefaultExpression>
  10782. <Position>5</Position>
  10783. <StoredType>int(11)|0s</StoredType>
  10784. </column>
  10785. <column id="2100" parent="342" name="public_image">
  10786. <Comment>公出形象 </Comment>
  10787. <DefaultExpression>0</DefaultExpression>
  10788. <Position>6</Position>
  10789. <StoredType>int(11)|0s</StoredType>
  10790. </column>
  10791. <column id="2101" parent="342" name="service_attitude">
  10792. <Comment>服务态度</Comment>
  10793. <DefaultExpression>0</DefaultExpression>
  10794. <Position>7</Position>
  10795. <StoredType>int(11)|0s</StoredType>
  10796. </column>
  10797. <column id="2102" parent="342" name="monthly_report">
  10798. <Comment>月度汇报</Comment>
  10799. <DefaultExpression>0</DefaultExpression>
  10800. <Position>8</Position>
  10801. <StoredType>int(11)|0s</StoredType>
  10802. </column>
  10803. <column id="2103" parent="342" name="year_report">
  10804. <Comment>月度汇报</Comment>
  10805. <DefaultExpression>0</DefaultExpression>
  10806. <Position>9</Position>
  10807. <StoredType>int(11)|0s</StoredType>
  10808. </column>
  10809. <column id="2104" parent="342" name="remarks">
  10810. <Comment>备注</Comment>
  10811. <Position>10</Position>
  10812. <StoredType>varchar(1024)|0s</StoredType>
  10813. </column>
  10814. <column id="2105" parent="342" name="create_time">
  10815. <Comment>创建时间</Comment>
  10816. <DefaultExpression>CURRENT_TIMESTAMP</DefaultExpression>
  10817. <Position>11</Position>
  10818. <StoredType>datetime|0s</StoredType>
  10819. </column>
  10820. <index id="2106" parent="342" name="PRIMARY">
  10821. <ColNames>id</ColNames>
  10822. <Type>btree</Type>
  10823. <Unique>1</Unique>
  10824. </index>
  10825. <key id="2107" parent="342" name="PRIMARY">
  10826. <NameSurrogate>1</NameSurrogate>
  10827. <Primary>1</Primary>
  10828. <UnderlyingIndexName>PRIMARY</UnderlyingIndexName>
  10829. </key>
  10830. <column id="2108" parent="343" name="id">
  10831. <AutoIncrement>1</AutoIncrement>
  10832. <NotNull>1</NotNull>
  10833. <Position>1</Position>
  10834. <StoredType>bigint(20)|0s</StoredType>
  10835. </column>
  10836. <column id="2109" parent="343" name="tid">
  10837. <Comment>任务编号</Comment>
  10838. <NotNull>1</NotNull>
  10839. <Position>2</Position>
  10840. <StoredType>int(11)|0s</StoredType>
  10841. </column>
  10842. <column id="2110" parent="343" name="type">
  10843. <Comment>类型 0=项目暂停,1=项目重启</Comment>
  10844. <DefaultExpression>0</DefaultExpression>
  10845. <Position>3</Position>
  10846. <StoredType>int(1)|0s</StoredType>
  10847. </column>
  10848. <column id="2111" parent="343" name="status">
  10849. <Comment>审核状态 0=发起,1=通过,2=拒绝</Comment>
  10850. <DefaultExpression>0</DefaultExpression>
  10851. <Position>4</Position>
  10852. <StoredType>int(4)|0s</StoredType>
  10853. </column>
  10854. <column id="2112" parent="343" name="reason">
  10855. <Comment>原因</Comment>
  10856. <DefaultExpression>&apos;&apos;</DefaultExpression>
  10857. <Position>5</Position>
  10858. <StoredType>varchar(128)|0s</StoredType>
  10859. </column>
  10860. <column id="2113" parent="343" name="annex_url">
  10861. <Comment>附件地址</Comment>
  10862. <Position>6</Position>
  10863. <StoredType>longtext|0s</StoredType>
  10864. </column>
  10865. <column id="2114" parent="343" name="create_by">
  10866. <Comment>创建者</Comment>
  10867. <DefaultExpression>&apos;&apos;</DefaultExpression>
  10868. <Position>7</Position>
  10869. <StoredType>varchar(36)|0s</StoredType>
  10870. </column>
  10871. <column id="2115" parent="343" name="create_time">
  10872. <Comment>创建时间</Comment>
  10873. <Position>8</Position>
  10874. <StoredType>datetime|0s</StoredType>
  10875. </column>
  10876. <index id="2116" parent="343" name="PRIMARY">
  10877. <ColNames>id</ColNames>
  10878. <Type>btree</Type>
  10879. <Unique>1</Unique>
  10880. </index>
  10881. <key id="2117" parent="343" name="PRIMARY">
  10882. <NameSurrogate>1</NameSurrogate>
  10883. <Primary>1</Primary>
  10884. <UnderlyingIndexName>PRIMARY</UnderlyingIndexName>
  10885. </key>
  10886. <column id="2118" parent="344" name="id">
  10887. <AutoIncrement>1</AutoIncrement>
  10888. <NotNull>1</NotNull>
  10889. <Position>1</Position>
  10890. <StoredType>bigint(20)|0s</StoredType>
  10891. </column>
  10892. <column id="2119" parent="344" name="task_stop_id">
  10893. <Comment>任务暂停编号</Comment>
  10894. <NotNull>1</NotNull>
  10895. <Position>2</Position>
  10896. <StoredType>bigint(20)|0s</StoredType>
  10897. </column>
  10898. <column id="2120" parent="344" name="status">
  10899. <Comment>审核状态 0=发起,1=通过,2=拒绝</Comment>
  10900. <DefaultExpression>0</DefaultExpression>
  10901. <Position>3</Position>
  10902. <StoredType>int(4)|0s</StoredType>
  10903. </column>
  10904. <column id="2121" parent="344" name="reason">
  10905. <Comment>原因</Comment>
  10906. <DefaultExpression>&apos;&apos;</DefaultExpression>
  10907. <Position>4</Position>
  10908. <StoredType>varchar(128)|0s</StoredType>
  10909. </column>
  10910. <column id="2122" parent="344" name="create_by">
  10911. <Comment>创建者</Comment>
  10912. <DefaultExpression>&apos;&apos;</DefaultExpression>
  10913. <Position>5</Position>
  10914. <StoredType>varchar(36)|0s</StoredType>
  10915. </column>
  10916. <column id="2123" parent="344" name="create_time">
  10917. <Comment>创建时间</Comment>
  10918. <Position>6</Position>
  10919. <StoredType>datetime|0s</StoredType>
  10920. </column>
  10921. <index id="2124" parent="344" name="PRIMARY">
  10922. <ColNames>id</ColNames>
  10923. <Type>btree</Type>
  10924. <Unique>1</Unique>
  10925. </index>
  10926. <key id="2125" parent="344" name="PRIMARY">
  10927. <NameSurrogate>1</NameSurrogate>
  10928. <Primary>1</Primary>
  10929. <UnderlyingIndexName>PRIMARY</UnderlyingIndexName>
  10930. </key>
  10931. <column id="2126" parent="345" name="id">
  10932. <AutoIncrement>1</AutoIncrement>
  10933. <NotNull>1</NotNull>
  10934. <Position>1</Position>
  10935. <StoredType>int(11)|0s</StoredType>
  10936. </column>
  10937. <column id="2127" parent="345" name="tid">
  10938. <NotNull>1</NotNull>
  10939. <Position>2</Position>
  10940. <StoredType>int(11)|0s</StoredType>
  10941. </column>
  10942. <column id="2128" parent="345" name="project_status">
  10943. <Comment>项目状态 0=未启动,1=进行中,2=暂停(客户通知暂停),3=暂停(业务线通知暂停),4=已提交,5=未推荐,6=已推荐,7=未拟公示,8=已拟公示,28=抽查未备案,9=已备案,10=已下证 ,11=退单(已申报),12=退单(未申报),13=已答辩,14=未立项,15=已立项,16=前补助,17=后补助,18=立项已拨款,19=已完成/下证,20=已驳回,21=第1年进行中,22=第1年服务完成,23=第2年进行中,24=第2年服务完成,25=第3年进行中,26=第3年服务完成,27=所有会员服务全部完成, 29=暂停,99=未知</Comment>
  10944. <DefaultExpression>0</DefaultExpression>
  10945. <Position>3</Position>
  10946. <StoredType>int(11)|0s</StoredType>
  10947. </column>
  10948. <column id="2129" parent="345" name="date_time">
  10949. <Comment>日期</Comment>
  10950. <NotNull>1</NotNull>
  10951. <Position>4</Position>
  10952. <StoredType>date|0s</StoredType>
  10953. </column>
  10954. <column id="2130" parent="345" name="suspend_img">
  10955. <Comment>暂停图片</Comment>
  10956. <Position>5</Position>
  10957. <StoredType>varchar(128)|0s</StoredType>
  10958. </column>
  10959. <column id="2131" parent="345" name="title">
  10960. <Comment>标题</Comment>
  10961. <Position>6</Position>
  10962. <StoredType>varchar(512)|0s</StoredType>
  10963. </column>
  10964. <column id="2132" parent="345" name="certificate_number">
  10965. <Comment>证书编号</Comment>
  10966. <Position>7</Position>
  10967. <StoredType>varchar(128)|0s</StoredType>
  10968. </column>
  10969. <column id="2133" parent="345" name="set_up_amount">
  10970. <Comment>立项金额</Comment>
  10971. <Position>8</Position>
  10972. <StoredType>varchar(128)|0s</StoredType>
  10973. </column>
  10974. <column id="2134" parent="345" name="appropriation">
  10975. <Comment>拨款</Comment>
  10976. <Position>9</Position>
  10977. <StoredType>varchar(128)|0s</StoredType>
  10978. </column>
  10979. <column id="2135" parent="345" name="create_time">
  10980. <Comment>创建时间</Comment>
  10981. <DefaultExpression>CURRENT_TIMESTAMP</DefaultExpression>
  10982. <Position>10</Position>
  10983. <StoredType>datetime|0s</StoredType>
  10984. </column>
  10985. <index id="2136" parent="345" name="PRIMARY">
  10986. <ColNames>id</ColNames>
  10987. <Type>btree</Type>
  10988. <Unique>1</Unique>
  10989. </index>
  10990. <key id="2137" parent="345" name="PRIMARY">
  10991. <NameSurrogate>1</NameSurrogate>
  10992. <Primary>1</Primary>
  10993. <UnderlyingIndexName>PRIMARY</UnderlyingIndexName>
  10994. </key>
  10995. <column id="2138" parent="346" name="id">
  10996. <AutoIncrement>1</AutoIncrement>
  10997. <Comment>id</Comment>
  10998. <NotNull>1</NotNull>
  10999. <Position>1</Position>
  11000. <StoredType>int(11)|0s</StoredType>
  11001. </column>
  11002. <column id="2139" parent="346" name="order_no">
  11003. <Comment>订单编号</Comment>
  11004. <NotNull>1</NotNull>
  11005. <Position>2</Position>
  11006. <StoredType>varchar(20)|0s</StoredType>
  11007. </column>
  11008. <column id="2140" parent="346" name="corporate_name">
  11009. <Comment>公司名称</Comment>
  11010. <NotNull>1</NotNull>
  11011. <Position>3</Position>
  11012. <StoredType>varchar(64)|0s</StoredType>
  11013. </column>
  11014. <column id="2141" parent="346" name="amount">
  11015. <Comment>收款金额</Comment>
  11016. <DefaultExpression>0.000000</DefaultExpression>
  11017. <Position>4</Position>
  11018. <StoredType>decimal(12,6 digit)|0s</StoredType>
  11019. </column>
  11020. <column id="2142" parent="346" name="receivables_time">
  11021. <Comment>回款时间</Comment>
  11022. <NotNull>1</NotNull>
  11023. <Position>5</Position>
  11024. <StoredType>datetime|0s</StoredType>
  11025. </column>
  11026. <column id="2143" parent="346" name="aid">
  11027. <Comment>人员id</Comment>
  11028. <NotNull>1</NotNull>
  11029. <Position>6</Position>
  11030. <StoredType>varchar(36)|0s</StoredType>
  11031. </column>
  11032. <column id="2144" parent="346" name="remarks">
  11033. <Comment>备注</Comment>
  11034. <Position>7</Position>
  11035. <StoredType>varchar(512)|0s</StoredType>
  11036. </column>
  11037. <column id="2145" parent="346" name="status">
  11038. <Comment> 0正常 1重复 2收款大于总额 3未知错误</Comment>
  11039. <DefaultExpression>0</DefaultExpression>
  11040. <Position>8</Position>
  11041. <StoredType>int(11)|0s</StoredType>
  11042. </column>
  11043. <column id="2146" parent="346" name="create_time">
  11044. <Comment>创建时间</Comment>
  11045. <DefaultExpression>CURRENT_TIMESTAMP</DefaultExpression>
  11046. <Position>9</Position>
  11047. <StoredType>datetime|0s</StoredType>
  11048. </column>
  11049. <column id="2147" parent="346" name="financial_pay_no">
  11050. <Comment>财务流水编号</Comment>
  11051. <Position>10</Position>
  11052. <StoredType>varchar(36)|0s</StoredType>
  11053. </column>
  11054. <column id="2148" parent="346" name="merge_Status">
  11055. <Comment>合并状态 0正常 1待合并</Comment>
  11056. <DefaultExpression>0</DefaultExpression>
  11057. <Position>11</Position>
  11058. <StoredType>int(1)|0s</StoredType>
  11059. </column>
  11060. <index id="2149" parent="346" name="PRIMARY">
  11061. <ColNames>id</ColNames>
  11062. <Type>btree</Type>
  11063. <Unique>1</Unique>
  11064. </index>
  11065. <key id="2150" parent="346" name="PRIMARY">
  11066. <NameSurrogate>1</NameSurrogate>
  11067. <Primary>1</Primary>
  11068. <UnderlyingIndexName>PRIMARY</UnderlyingIndexName>
  11069. </key>
  11070. <column id="2151" parent="347" name="id">
  11071. <NotNull>1</NotNull>
  11072. <Position>1</Position>
  11073. <StoredType>varchar(36)|0s</StoredType>
  11074. </column>
  11075. <column id="2152" parent="347" name="mobile">
  11076. <Comment>用户注册手机号,作为登录依据</Comment>
  11077. <NotNull>1</NotNull>
  11078. <Position>2</Position>
  11079. <StoredType>varchar(12)|0s</StoredType>
  11080. </column>
  11081. <column id="2153" parent="347" name="password">
  11082. <Comment>密码,md5+salt</Comment>
  11083. <NotNull>1</NotNull>
  11084. <Position>3</Position>
  11085. <StoredType>varchar(32)|0s</StoredType>
  11086. </column>
  11087. <column id="2154" parent="347" name="nickname">
  11088. <Comment>用户昵称</Comment>
  11089. <Position>4</Position>
  11090. <StoredType>varchar(16)|0s</StoredType>
  11091. </column>
  11092. <column id="2155" parent="347" name="email">
  11093. <Comment>用户邮箱</Comment>
  11094. <Position>5</Position>
  11095. <StoredType>varchar(255)|0s</StoredType>
  11096. </column>
  11097. <column id="2156" parent="347" name="create_time">
  11098. <Comment>注册时间</Comment>
  11099. <DefaultExpression>CURRENT_TIMESTAMP</DefaultExpression>
  11100. <Position>6</Position>
  11101. <StoredType>datetime|0s</StoredType>
  11102. </column>
  11103. <column id="2157" parent="347" name="number">
  11104. <AutoIncrement>1</AutoIncrement>
  11105. <Comment>用户编号</Comment>
  11106. <NotNull>1</NotNull>
  11107. <Position>7</Position>
  11108. <StoredType>bigint(20)|0s</StoredType>
  11109. </column>
  11110. <column id="2158" parent="347" name="lvl">
  11111. <DefaultExpression>0</DefaultExpression>
  11112. <Position>8</Position>
  11113. <StoredType>int(2)|0s</StoredType>
  11114. </column>
  11115. <column id="2159" parent="347" name="type">
  11116. <Comment>个人账号还是组织账号
  11117. 默认0为个人账号,1为组织账号</Comment>
  11118. <DefaultExpression>0</DefaultExpression>
  11119. <NotNull>1</NotNull>
  11120. <Position>9</Position>
  11121. <StoredType>int(1)|0s</StoredType>
  11122. </column>
  11123. <column id="2160" parent="347" name="aid">
  11124. <Comment>管理员ID</Comment>
  11125. <Position>10</Position>
  11126. <StoredType>varchar(36)|0s</StoredType>
  11127. </column>
  11128. <column id="2161" parent="347" name="mid">
  11129. <Comment>客户经理ID</Comment>
  11130. <Position>11</Position>
  11131. <StoredType>varchar(36)|0s</StoredType>
  11132. </column>
  11133. <index id="2162" parent="347" name="PRIMARY">
  11134. <ColNames>id</ColNames>
  11135. <Type>btree</Type>
  11136. <Unique>1</Unique>
  11137. </index>
  11138. <index id="2163" parent="347" name="number_UNIQUE">
  11139. <ColNames>number</ColNames>
  11140. <Type>btree</Type>
  11141. <Unique>1</Unique>
  11142. </index>
  11143. <key id="2164" parent="347" name="PRIMARY">
  11144. <NameSurrogate>1</NameSurrogate>
  11145. <Primary>1</Primary>
  11146. <UnderlyingIndexName>PRIMARY</UnderlyingIndexName>
  11147. </key>
  11148. <key id="2165" parent="347" name="number_UNIQUE">
  11149. <UnderlyingIndexName>number_UNIQUE</UnderlyingIndexName>
  11150. </key>
  11151. <column id="2166" parent="348" name="id">
  11152. <NotNull>1</NotNull>
  11153. <Position>1</Position>
  11154. <StoredType>varchar(36)|0s</StoredType>
  11155. </column>
  11156. <column id="2167" parent="348" name="mobile">
  11157. <Comment>手机号</Comment>
  11158. <Position>2</Position>
  11159. <StoredType>varchar(16)|0s</StoredType>
  11160. </column>
  11161. <column id="2168" parent="348" name="password">
  11162. <Comment>密码,md5+salt</Comment>
  11163. <NotNull>1</NotNull>
  11164. <Position>3</Position>
  11165. <StoredType>varchar(32)|0s</StoredType>
  11166. </column>
  11167. <column id="2169" parent="348" name="nickname">
  11168. <Comment>用户昵称</Comment>
  11169. <Position>4</Position>
  11170. <StoredType>varchar(128)|0s</StoredType>
  11171. </column>
  11172. <column id="2170" parent="348" name="email">
  11173. <Comment>用户邮箱</Comment>
  11174. <Position>5</Position>
  11175. <StoredType>varchar(255)|0s</StoredType>
  11176. </column>
  11177. <column id="2171" parent="348" name="create_time">
  11178. <Comment>注册时间</Comment>
  11179. <DefaultExpression>CURRENT_TIMESTAMP</DefaultExpression>
  11180. <Position>6</Position>
  11181. <StoredType>datetime|0s</StoredType>
  11182. </column>
  11183. <column id="2172" parent="348" name="number">
  11184. <AutoIncrement>891047</AutoIncrement>
  11185. <Comment>用户编号</Comment>
  11186. <NotNull>1</NotNull>
  11187. <Position>7</Position>
  11188. <StoredType>bigint(20)|0s</StoredType>
  11189. </column>
  11190. <column id="2173" parent="348" name="lvl">
  11191. <Comment>会员等级</Comment>
  11192. <DefaultExpression>0</DefaultExpression>
  11193. <Position>8</Position>
  11194. <StoredType>int(2)|0s</StoredType>
  11195. </column>
  11196. <column id="2174" parent="348" name="type">
  11197. <Comment>个人/单位,默认0-个人账号,1-组织账号</Comment>
  11198. <DefaultExpression>0</DefaultExpression>
  11199. <Position>9</Position>
  11200. <StoredType>int(11)|0s</StoredType>
  11201. </column>
  11202. <column id="2175" parent="348" name="aid">
  11203. <Comment>管理员ID</Comment>
  11204. <Position>10</Position>
  11205. <StoredType>varchar(36)|0s</StoredType>
  11206. </column>
  11207. <column id="2176" parent="348" name="mid">
  11208. <Comment>客户经理ID</Comment>
  11209. <Position>11</Position>
  11210. <StoredType>varchar(36)|0s</StoredType>
  11211. </column>
  11212. <column id="2177" parent="348" name="status">
  11213. <Comment>账户状态 0-有效 1-失效 2-锁定</Comment>
  11214. <DefaultExpression>0</DefaultExpression>
  11215. <Position>12</Position>
  11216. <StoredType>int(1)|0s</StoredType>
  11217. </column>
  11218. <column id="2178" parent="348" name="source">
  11219. <Comment>用户来源 0 注册 1 录入 2 领取 3 转交</Comment>
  11220. <DefaultExpression>0</DefaultExpression>
  11221. <Position>13</Position>
  11222. <StoredType>int(1)|0s</StoredType>
  11223. </column>
  11224. <column id="2179" parent="348" name="update_time">
  11225. <Comment>更新时间</Comment>
  11226. <Position>14</Position>
  11227. <StoredType>datetime|0s</StoredType>
  11228. </column>
  11229. <column id="2180" parent="348" name="company_logo_url">
  11230. <Comment>公司LOGO</Comment>
  11231. <Position>15</Position>
  11232. <StoredType>varchar(128)|0s</StoredType>
  11233. </column>
  11234. <column id="2181" parent="348" name="head_portrait_url">
  11235. <Comment>个人头像</Comment>
  11236. <Position>16</Position>
  11237. <StoredType>varchar(128)|0s</StoredType>
  11238. </column>
  11239. <column id="2182" parent="348" name="society_tag">
  11240. <Comment>社会属性标签</Comment>
  11241. <Position>17</Position>
  11242. <StoredType>varchar(128)|0s</StoredType>
  11243. </column>
  11244. <column id="2183" parent="348" name="introduction">
  11245. <Comment>简介</Comment>
  11246. <Position>18</Position>
  11247. <StoredType>varchar(512)|0s</StoredType>
  11248. </column>
  11249. <column id="2184" parent="348" name="value_added_tag">
  11250. <Comment>增值属性标签</Comment>
  11251. <Position>19</Position>
  11252. <StoredType>varchar(128)|0s</StoredType>
  11253. </column>
  11254. <column id="2185" parent="348" name="organization_id">
  11255. <Comment>所属单位用户ID</Comment>
  11256. <Position>20</Position>
  11257. <StoredType>varchar(36)|0s</StoredType>
  11258. </column>
  11259. <column id="2186" parent="348" name="share_type">
  11260. <Comment>共享类型 0=私有 1=公共 2=签单 3=外联 4=渠道</Comment>
  11261. <DefaultExpression>0</DefaultExpression>
  11262. <Position>21</Position>
  11263. <StoredType>int(1)|0s</StoredType>
  11264. </column>
  11265. <column id="2187" parent="348" name="identify_name">
  11266. <Comment>客户认证名称</Comment>
  11267. <Position>22</Position>
  11268. <StoredType>varchar(128)|0s</StoredType>
  11269. </column>
  11270. <column id="2188" parent="348" name="background_url">
  11271. <Comment>专家详情背景图</Comment>
  11272. <Position>23</Position>
  11273. <StoredType>varchar(120)|0s</StoredType>
  11274. </column>
  11275. <column id="2189" parent="348" name="audit_status">
  11276. <Comment>客户审核状态 0-待审核 ,1-审核通过,2-审核拒绝</Comment>
  11277. <DefaultExpression>0</DefaultExpression>
  11278. <Position>24</Position>
  11279. <StoredType>int(1)|0s</StoredType>
  11280. </column>
  11281. <column id="2190" parent="348" name="audit_opinion">
  11282. <Comment>审核意见</Comment>
  11283. <Position>25</Position>
  11284. <StoredType>varchar(128)|0s</StoredType>
  11285. </column>
  11286. <column id="2191" parent="348" name="transfer_time">
  11287. <Comment>客户转换时间</Comment>
  11288. <Position>26</Position>
  11289. <StoredType>datetime|0s</StoredType>
  11290. </column>
  11291. <column id="2192" parent="348" name="information_maintainer">
  11292. <Comment>资料维护人</Comment>
  11293. <Position>27</Position>
  11294. <StoredType>varchar(36)|0s</StoredType>
  11295. </column>
  11296. <column id="2193" parent="348" name="core_technology">
  11297. <Comment>核心技术</Comment>
  11298. <Position>28</Position>
  11299. <StoredType>varchar(1024)|0s</StoredType>
  11300. </column>
  11301. <column id="2194" parent="348" name="accomplish_situation">
  11302. <Comment>客户已完成项目情况</Comment>
  11303. <Position>29</Position>
  11304. <StoredType>varchar(1024)|0s</StoredType>
  11305. </column>
  11306. <column id="2195" parent="348" name="intellectual_property">
  11307. <Comment>已有知识产权情况</Comment>
  11308. <Position>30</Position>
  11309. <StoredType>varchar(1024)|0s</StoredType>
  11310. </column>
  11311. <column id="2196" parent="348" name="credit_rating">
  11312. <Comment>信用等级 1 A级优质,2 B级正常,3 C级失信</Comment>
  11313. <Position>31</Position>
  11314. <StoredType>int(1)|0s</StoredType>
  11315. </column>
  11316. <column id="2197" parent="348" name="level">
  11317. <Comment>用户等级 0 一般客户 1 意向客户 2 重点客户</Comment>
  11318. <Position>32</Position>
  11319. <StoredType>int(1)|0s</StoredType>
  11320. </column>
  11321. <column id="2198" parent="348" name="authentication">
  11322. <Comment>0-未认证,1-已认证</Comment>
  11323. <DefaultExpression>0</DefaultExpression>
  11324. <Position>33</Position>
  11325. <StoredType>int(11)|0s</StoredType>
  11326. </column>
  11327. <column id="2199" parent="348" name="username">
  11328. <Comment>用户注册名</Comment>
  11329. <Position>34</Position>
  11330. <StoredType>varchar(128)|0s</StoredType>
  11331. </column>
  11332. <column id="2200" parent="348" name="integrity">
  11333. <Comment>完整度</Comment>
  11334. <DefaultExpression>0</DefaultExpression>
  11335. <Position>35</Position>
  11336. <StoredType>float|0s</StoredType>
  11337. </column>
  11338. <column id="2201" parent="348" name="to_invite_code">
  11339. <Comment>邀请码</Comment>
  11340. <Position>36</Position>
  11341. <StoredType>varchar(12)|0s</StoredType>
  11342. </column>
  11343. <column id="2202" parent="348" name="be_invite_code">
  11344. <Comment>受邀请码</Comment>
  11345. <Position>37</Position>
  11346. <StoredType>varchar(12)|0s</StoredType>
  11347. </column>
  11348. <column id="2203" parent="348" name="guidance">
  11349. <Comment>指导 0无 1有</Comment>
  11350. <DefaultExpression>0</DefaultExpression>
  11351. <Position>38</Position>
  11352. <StoredType>int(11)|0s</StoredType>
  11353. </column>
  11354. <column id="2204" parent="348" name="sign_bills">
  11355. <Comment>签单标记 0未签单 1已签单</Comment>
  11356. <DefaultExpression>0</DefaultExpression>
  11357. <Position>39</Position>
  11358. <StoredType>int(1)|0s</StoredType>
  11359. </column>
  11360. <column id="2205" parent="348" name="channel">
  11361. <Comment>外联客户 0否 1是</Comment>
  11362. <DefaultExpression>0</DefaultExpression>
  11363. <Position>40</Position>
  11364. <StoredType>int(1)|0s</StoredType>
  11365. </column>
  11366. <column id="2206" parent="348" name="new_channel">
  11367. <Comment>渠道客户 0否 1是</Comment>
  11368. <DefaultExpression>0</DefaultExpression>
  11369. <Position>41</Position>
  11370. <StoredType>int(1)|0s</StoredType>
  11371. </column>
  11372. <column id="2207" parent="348" name="sign_time">
  11373. <Comment>签单时间(最近)</Comment>
  11374. <Position>42</Position>
  11375. <StoredType>datetime|0s</StoredType>
  11376. </column>
  11377. <column id="2208" parent="348" name="call_status">
  11378. <Comment>外呼状态 0=未呼叫,1=呼叫中</Comment>
  11379. <DefaultExpression>0</DefaultExpression>
  11380. <Position>43</Position>
  11381. <StoredType>int(1)|0s</StoredType>
  11382. </column>
  11383. <column id="2209" parent="348" name="clue_status">
  11384. <Comment>线索客户 0=否,1=是</Comment>
  11385. <DefaultExpression>0</DefaultExpression>
  11386. <Position>44</Position>
  11387. <StoredType>int(1)|0s</StoredType>
  11388. </column>
  11389. <column id="2210" parent="348" name="clue_process">
  11390. <Comment>线索客户 0=待分配,1=已分配,2=已回退,3=待处理,4=已领取</Comment>
  11391. <DefaultExpression>0</DefaultExpression>
  11392. <Position>45</Position>
  11393. <StoredType>int(1)|0s</StoredType>
  11394. </column>
  11395. <column id="2211" parent="348" name="clue_time">
  11396. <Comment>线索导入时间</Comment>
  11397. <Position>46</Position>
  11398. <StoredType>datetime|0s</StoredType>
  11399. </column>
  11400. <column id="2212" parent="348" name="clue_aid">
  11401. <Comment>线索录入人</Comment>
  11402. <Position>47</Position>
  11403. <StoredType>varchar(36)|0s</StoredType>
  11404. </column>
  11405. <column id="2213" parent="348" name="clue_transfer_time">
  11406. <Comment>线索转交时间</Comment>
  11407. <Position>48</Position>
  11408. <StoredType>datetime|0s</StoredType>
  11409. </column>
  11410. <column id="2214" parent="348" name="nature">
  11411. <Comment>客户性质 0=其他,1=政府机构,2=科研院所,3=高等院校,4=社会团体,5=企业</Comment>
  11412. <DefaultExpression>0</DefaultExpression>
  11413. <Position>49</Position>
  11414. <StoredType>int(11)|0s</StoredType>
  11415. </column>
  11416. <column id="2215" parent="348" name="nature_other">
  11417. <Comment>客户性质其他说明</Comment>
  11418. <Position>50</Position>
  11419. <StoredType>varchar(36)|0s</StoredType>
  11420. </column>
  11421. <column id="2216" parent="348" name="enterprise_nature">
  11422. <Comment>企业性质 0=其他,1=国企,2=央企,3=私企,4=合资企业(含港澳台),5=外资控股</Comment>
  11423. <Position>51</Position>
  11424. <StoredType>int(11)|0s</StoredType>
  11425. </column>
  11426. <column id="2217" parent="348" name="listed_nature">
  11427. <Comment>上市 0=否,1=是</Comment>
  11428. <Position>52</Position>
  11429. <StoredType>int(11)|0s</StoredType>
  11430. </column>
  11431. <column id="2218" parent="348" name="private_valid">
  11432. <Comment>私有有效标识 0=否,1=是</Comment>
  11433. <DefaultExpression>0</DefaultExpression>
  11434. <Position>53</Position>
  11435. <StoredType>int(1)|0s</StoredType>
  11436. </column>
  11437. <index id="2219" parent="348" name="PRIMARY">
  11438. <ColNames>id</ColNames>
  11439. <Type>btree</Type>
  11440. <Unique>1</Unique>
  11441. </index>
  11442. <index id="2220" parent="348" name="number_UNIQUE">
  11443. <ColNames>number</ColNames>
  11444. <Type>btree</Type>
  11445. <Unique>1</Unique>
  11446. </index>
  11447. <index id="2221" parent="348" name="index_create_time">
  11448. <ColNames>create_time</ColNames>
  11449. <Type>btree</Type>
  11450. </index>
  11451. <index id="2222" parent="348" name="idx_aid">
  11452. <ColNames>aid</ColNames>
  11453. <Type>btree</Type>
  11454. </index>
  11455. <index id="2223" parent="348" name="idx_information_maintainer">
  11456. <ColNames>information_maintainer</ColNames>
  11457. <Type>btree</Type>
  11458. </index>
  11459. <key id="2224" parent="348" name="PRIMARY">
  11460. <NameSurrogate>1</NameSurrogate>
  11461. <Primary>1</Primary>
  11462. <UnderlyingIndexName>PRIMARY</UnderlyingIndexName>
  11463. </key>
  11464. <key id="2225" parent="348" name="number_UNIQUE">
  11465. <UnderlyingIndexName>number_UNIQUE</UnderlyingIndexName>
  11466. </key>
  11467. <column id="2226" parent="349" name="id">
  11468. <AutoIncrement>1</AutoIncrement>
  11469. <NotNull>1</NotNull>
  11470. <Position>1</Position>
  11471. <StoredType>int(11)|0s</StoredType>
  11472. </column>
  11473. <column id="2227" parent="349" name="uid">
  11474. <NotNull>1</NotNull>
  11475. <Position>2</Position>
  11476. <StoredType>varchar(36)|0s</StoredType>
  11477. </column>
  11478. <column id="2228" parent="349" name="patent_count">
  11479. <Comment>专利数</Comment>
  11480. <Position>3</Position>
  11481. <StoredType>int(11)|0s</StoredType>
  11482. </column>
  11483. <column id="2229" parent="349" name="invention_patent_count">
  11484. <Comment>发明专利数</Comment>
  11485. <Position>4</Position>
  11486. <StoredType>int(11)|0s</StoredType>
  11487. </column>
  11488. <column id="2230" parent="349" name="utility_model_count">
  11489. <Comment>实用新型数</Comment>
  11490. <Position>5</Position>
  11491. <StoredType>int(11)|0s</StoredType>
  11492. </column>
  11493. <column id="2231" parent="349" name="appearance_patent_count">
  11494. <Comment>外观专利数</Comment>
  11495. <Position>6</Position>
  11496. <StoredType>int(11)|0s</StoredType>
  11497. </column>
  11498. <column id="2232" parent="349" name="software_works_count">
  11499. <Comment>软著数</Comment>
  11500. <Position>7</Position>
  11501. <StoredType>int(11)|0s</StoredType>
  11502. </column>
  11503. <column id="2233" parent="349" name="other_count">
  11504. <Comment>其他数</Comment>
  11505. <Position>8</Position>
  11506. <StoredType>int(11)|0s</StoredType>
  11507. </column>
  11508. <column id="2234" parent="349" name="financial_data">
  11509. <Comment>财务数据</Comment>
  11510. <Position>9</Position>
  11511. <StoredType>varchar(1024)|0s</StoredType>
  11512. </column>
  11513. <column id="2235" parent="349" name="early_communication">
  11514. <Comment>前期沟通-客户的难处</Comment>
  11515. <Position>10</Position>
  11516. <StoredType>varchar(1024)|0s</StoredType>
  11517. </column>
  11518. <column id="2236" parent="349" name="interview_ideas">
  11519. <Comment>面谈思路</Comment>
  11520. <Position>11</Position>
  11521. <StoredType>varchar(1024)|0s</StoredType>
  11522. </column>
  11523. <column id="2237" parent="349" name="create_time">
  11524. <Comment>创建时间</Comment>
  11525. <DefaultExpression>CURRENT_TIMESTAMP</DefaultExpression>
  11526. <Position>12</Position>
  11527. <StoredType>datetime|0s</StoredType>
  11528. </column>
  11529. <column id="2238" parent="349" name="enterprise_count">
  11530. <Comment>企业数</Comment>
  11531. <DefaultExpression>0</DefaultExpression>
  11532. <Position>13</Position>
  11533. <StoredType>int(11)|0s</StoredType>
  11534. </column>
  11535. <column id="2239" parent="349" name="channel_indicators">
  11536. <Comment>渠道考核指标</Comment>
  11537. <Position>14</Position>
  11538. <StoredType>varchar(1024)|0s</StoredType>
  11539. </column>
  11540. <column id="2240" parent="349" name="interview_distribution">
  11541. <Comment>我方主要面谈及分工</Comment>
  11542. <Position>15</Position>
  11543. <StoredType>varchar(1024)|0s</StoredType>
  11544. </column>
  11545. <column id="2241" parent="349" name="update_time">
  11546. <Comment>修改时间</Comment>
  11547. <DefaultExpression>CURRENT_TIMESTAMP</DefaultExpression>
  11548. <OnUpdate>CURRENT_TIMESTAMP</OnUpdate>
  11549. <Position>16</Position>
  11550. <StoredType>datetime|0s</StoredType>
  11551. </column>
  11552. <column id="2242" parent="349" name="awards_time">
  11553. <Comment>获奖时间</Comment>
  11554. <Position>17</Position>
  11555. <StoredType>datetime|0s</StoredType>
  11556. </column>
  11557. <column id="2243" parent="349" name="awards_status">
  11558. <Comment>获奖状态 0=未参评,1=已参评,2=已获奖</Comment>
  11559. <DefaultExpression>0</DefaultExpression>
  11560. <Position>18</Position>
  11561. <StoredType>int(1)|0s</StoredType>
  11562. </column>
  11563. <column id="2244" parent="349" name="company_count">
  11564. <Comment>母/子公司数</Comment>
  11565. <Position>19</Position>
  11566. <StoredType>int(11)|0s</StoredType>
  11567. </column>
  11568. <column id="2245" parent="349" name="social_security_count">
  11569. <Comment>社保人数</Comment>
  11570. <Position>20</Position>
  11571. <StoredType>int(11)|0s</StoredType>
  11572. </column>
  11573. <column id="2246" parent="349" name="external_invest_count">
  11574. <Comment>对外投资控股的企业数</Comment>
  11575. <Position>21</Position>
  11576. <StoredType>int(11)|0s</StoredType>
  11577. </column>
  11578. <column id="2247" parent="349" name="external_invest_industry">
  11579. <Comment>对外投资控股的行业</Comment>
  11580. <Position>22</Position>
  11581. <StoredType>varchar(64)|0s</StoredType>
  11582. </column>
  11583. <column id="2248" parent="349" name="external_invest_name">
  11584. <Comment>对外投资控股的企业名称</Comment>
  11585. <Position>23</Position>
  11586. <StoredType>varchar(512)|0s</StoredType>
  11587. </column>
  11588. <column id="2249" parent="349" name="first_interview_date">
  11589. <Comment>首次面谈时间</Comment>
  11590. <Position>24</Position>
  11591. <StoredType>datetime|0s</StoredType>
  11592. </column>
  11593. <column id="2250" parent="349" name="financial_revenue">
  11594. <Comment>财务数据-营收(万元)</Comment>
  11595. <Position>25</Position>
  11596. <StoredType>decimal(12,6 digit)|0s</StoredType>
  11597. </column>
  11598. <column id="2251" parent="349" name="financial_tax">
  11599. <Comment>财务数据-税收(万元)</Comment>
  11600. <Position>26</Position>
  11601. <StoredType>decimal(12,6 digit)|0s</StoredType>
  11602. </column>
  11603. <column id="2252" parent="349" name="financial_property">
  11604. <Comment>财务数据-资产(万元)</Comment>
  11605. <Position>27</Position>
  11606. <StoredType>decimal(12,6 digit)|0s</StoredType>
  11607. </column>
  11608. <column id="2253" parent="349" name="financial_rd">
  11609. <Comment>财务数据-研发费用(万元)</Comment>
  11610. <Position>28</Position>
  11611. <StoredType>decimal(12,6 digit)|0s</StoredType>
  11612. </column>
  11613. <column id="2254" parent="349" name="standard">
  11614. <Comment>标准 0=无,1=有</Comment>
  11615. <Position>29</Position>
  11616. <StoredType>int(11)|0s</StoredType>
  11617. </column>
  11618. <column id="2255" parent="349" name="external_invest_id">
  11619. <Comment>对外投资控股的企业编号</Comment>
  11620. <Position>30</Position>
  11621. <StoredType>varchar(512)|0s</StoredType>
  11622. </column>
  11623. <column id="2256" parent="349" name="external_invest_industry_name">
  11624. <Comment>对外投资控股的行业名称</Comment>
  11625. <Position>31</Position>
  11626. <StoredType>varchar(64)|0s</StoredType>
  11627. </column>
  11628. <index id="2257" parent="349" name="PRIMARY">
  11629. <ColNames>id</ColNames>
  11630. <Type>btree</Type>
  11631. <Unique>1</Unique>
  11632. </index>
  11633. <key id="2258" parent="349" name="PRIMARY">
  11634. <NameSurrogate>1</NameSurrogate>
  11635. <Primary>1</Primary>
  11636. <UnderlyingIndexName>PRIMARY</UnderlyingIndexName>
  11637. </key>
  11638. <column id="2259" parent="350" name="id">
  11639. <AutoIncrement>1</AutoIncrement>
  11640. <NotNull>1</NotNull>
  11641. <Position>1</Position>
  11642. <StoredType>int(11)|0s</StoredType>
  11643. </column>
  11644. <column id="2260" parent="350" name="uid">
  11645. <Comment>客户编号</Comment>
  11646. <NotNull>1</NotNull>
  11647. <Position>2</Position>
  11648. <StoredType>varchar(36)|0s</StoredType>
  11649. </column>
  11650. <column id="2261" parent="350" name="aid">
  11651. <Comment>跟进人编号</Comment>
  11652. <NotNull>1</NotNull>
  11653. <Position>3</Position>
  11654. <StoredType>varchar(36)|0s</StoredType>
  11655. </column>
  11656. <column id="2262" parent="350" name="prdid">
  11657. <Comment>公出编号</Comment>
  11658. <Position>4</Position>
  11659. <StoredType>int(11)|0s</StoredType>
  11660. </column>
  11661. <column id="2263" parent="350" name="counts">
  11662. <Comment>次数</Comment>
  11663. <Position>5</Position>
  11664. <StoredType>int(11)|0s</StoredType>
  11665. </column>
  11666. <column id="2264" parent="350" name="early_communication">
  11667. <Comment>前期沟通-客户的难处</Comment>
  11668. <Position>6</Position>
  11669. <StoredType>varchar(2048)|0s</StoredType>
  11670. </column>
  11671. <column id="2265" parent="350" name="customer_demand">
  11672. <Comment>客户的需求</Comment>
  11673. <Position>7</Position>
  11674. <StoredType>varchar(2048)|0s</StoredType>
  11675. </column>
  11676. <column id="2266" parent="350" name="interview_ideas">
  11677. <Comment>面谈思路</Comment>
  11678. <Position>8</Position>
  11679. <StoredType>varchar(2048)|0s</StoredType>
  11680. </column>
  11681. <column id="2267" parent="350" name="interview_purpose">
  11682. <Comment>面谈达成的目的</Comment>
  11683. <Position>9</Position>
  11684. <StoredType>varchar(2048)|0s</StoredType>
  11685. </column>
  11686. <column id="2268" parent="350" name="interview_recommend">
  11687. <Comment>经理/上级面谈建议</Comment>
  11688. <Position>10</Position>
  11689. <StoredType>varchar(2048)|0s</StoredType>
  11690. </column>
  11691. <column id="2269" parent="350" name="interview_feedback">
  11692. <Comment>面谈后反馈</Comment>
  11693. <Position>11</Position>
  11694. <StoredType>varchar(2048)|0s</StoredType>
  11695. </column>
  11696. <column id="2270" parent="350" name="follow_up_plan">
  11697. <Comment>后续跟进计划</Comment>
  11698. <Position>12</Position>
  11699. <StoredType>varchar(2048)|0s</StoredType>
  11700. </column>
  11701. <column id="2271" parent="350" name="create_time">
  11702. <Comment>创建时间</Comment>
  11703. <DefaultExpression>CURRENT_TIMESTAMP</DefaultExpression>
  11704. <Position>13</Position>
  11705. <StoredType>datetime|0s</StoredType>
  11706. </column>
  11707. <index id="2272" parent="350" name="PRIMARY">
  11708. <ColNames>id</ColNames>
  11709. <Type>btree</Type>
  11710. <Unique>1</Unique>
  11711. </index>
  11712. <key id="2273" parent="350" name="PRIMARY">
  11713. <NameSurrogate>1</NameSurrogate>
  11714. <Primary>1</Primary>
  11715. <UnderlyingIndexName>PRIMARY</UnderlyingIndexName>
  11716. </key>
  11717. <column id="2274" parent="351" name="id">
  11718. <AutoIncrement>1</AutoIncrement>
  11719. <NotNull>1</NotNull>
  11720. <Position>1</Position>
  11721. <StoredType>int(11)|0s</StoredType>
  11722. </column>
  11723. <column id="2275" parent="351" name="uid">
  11724. <Comment>用户id</Comment>
  11725. <NotNull>1</NotNull>
  11726. <Position>2</Position>
  11727. <StoredType>varchar(36)|0s</StoredType>
  11728. </column>
  11729. <column id="2276" parent="351" name="aid">
  11730. <Comment>录入人id</Comment>
  11731. <NotNull>1</NotNull>
  11732. <Position>3</Position>
  11733. <StoredType>varchar(36)|0s</StoredType>
  11734. </column>
  11735. <column id="2277" parent="351" name="status">
  11736. <Comment>0未分配 1已分配经理 2已分配营销员 3存在自己私有 4已存在公共 5存在自己签单 6回退 7已签单 8已释放 9非法名称 10存在自己渠道 11存在他人渠道 12存在他人私有 13存在他人签单</Comment>
  11737. <Position>4</Position>
  11738. <StoredType>int(36)|0s</StoredType>
  11739. </column>
  11740. <column id="2278" parent="351" name="distribution_time">
  11741. <Comment>分配时间</Comment>
  11742. <Position>5</Position>
  11743. <StoredType>datetime|0s</StoredType>
  11744. </column>
  11745. <column id="2279" parent="351" name="create_time">
  11746. <Comment>创建时间</Comment>
  11747. <DefaultExpression>CURRENT_TIMESTAMP</DefaultExpression>
  11748. <Position>6</Position>
  11749. <StoredType>datetime|0s</StoredType>
  11750. </column>
  11751. <column id="2280" parent="351" name="remarks">
  11752. <Comment>备注</Comment>
  11753. <Position>7</Position>
  11754. <StoredType>varchar(512)|0s</StoredType>
  11755. </column>
  11756. <column id="2281" parent="351" name="recovery">
  11757. <Comment>已回收 0否 1是</Comment>
  11758. <DefaultExpression>0</DefaultExpression>
  11759. <Position>8</Position>
  11760. <StoredType>int(1)|0s</StoredType>
  11761. </column>
  11762. <column id="2282" parent="351" name="maid">
  11763. <Comment>经理</Comment>
  11764. <Position>9</Position>
  11765. <StoredType>varchar(36)|0s</StoredType>
  11766. </column>
  11767. <column id="2283" parent="351" name="sign_time">
  11768. <Comment>签单时间</Comment>
  11769. <Position>10</Position>
  11770. <StoredType>datetime|0s</StoredType>
  11771. </column>
  11772. <column id="2284" parent="351" name="province">
  11773. <Comment>省</Comment>
  11774. <Position>11</Position>
  11775. <StoredType>varchar(32)|0s</StoredType>
  11776. </column>
  11777. <column id="2285" parent="351" name="city">
  11778. <Comment>市</Comment>
  11779. <Position>12</Position>
  11780. <StoredType>varchar(32)|0s</StoredType>
  11781. </column>
  11782. <column id="2286" parent="351" name="society_tag">
  11783. <Comment>社会性质</Comment>
  11784. <Position>13</Position>
  11785. <StoredType>varchar(32)|0s</StoredType>
  11786. </column>
  11787. <column id="2287" parent="351" name="contacts">
  11788. <Comment>联系人</Comment>
  11789. <Position>14</Position>
  11790. <StoredType>varchar(32)|0s</StoredType>
  11791. </column>
  11792. <column id="2288" parent="351" name="contact_mobile">
  11793. <Comment>联系人电话</Comment>
  11794. <Position>15</Position>
  11795. <StoredType>varchar(32)|0s</StoredType>
  11796. </column>
  11797. <index id="2289" parent="351" name="PRIMARY">
  11798. <ColNames>id</ColNames>
  11799. <Type>btree</Type>
  11800. <Unique>1</Unique>
  11801. </index>
  11802. <key id="2290" parent="351" name="PRIMARY">
  11803. <NameSurrogate>1</NameSurrogate>
  11804. <Primary>1</Primary>
  11805. <UnderlyingIndexName>PRIMARY</UnderlyingIndexName>
  11806. </key>
  11807. <column id="2291" parent="352" name="id">
  11808. <AutoIncrement>1</AutoIncrement>
  11809. <NotNull>1</NotNull>
  11810. <Position>1</Position>
  11811. <StoredType>bigint(20)|0s</StoredType>
  11812. </column>
  11813. <column id="2292" parent="352" name="name">
  11814. <Comment>名称</Comment>
  11815. <NotNull>1</NotNull>
  11816. <Position>2</Position>
  11817. <StoredType>varchar(64)|0s</StoredType>
  11818. </column>
  11819. <column id="2293" parent="352" name="number">
  11820. <Comment>编号</Comment>
  11821. <NotNull>1</NotNull>
  11822. <Position>3</Position>
  11823. <StoredType>varchar(100)|0s</StoredType>
  11824. </column>
  11825. <column id="2294" parent="352" name="status">
  11826. <Comment>状态(0正常 1停用)</Comment>
  11827. <NotNull>1</NotNull>
  11828. <Position>4</Position>
  11829. <StoredType>char(1)|0s</StoredType>
  11830. </column>
  11831. <column id="2295" parent="352" name="create_by">
  11832. <Comment>创建者</Comment>
  11833. <DefaultExpression>&apos;&apos;</DefaultExpression>
  11834. <Position>5</Position>
  11835. <StoredType>varchar(64)|0s</StoredType>
  11836. </column>
  11837. <column id="2296" parent="352" name="create_time">
  11838. <Comment>创建时间</Comment>
  11839. <Position>6</Position>
  11840. <StoredType>datetime|0s</StoredType>
  11841. </column>
  11842. <index id="2297" parent="352" name="PRIMARY">
  11843. <ColNames>id</ColNames>
  11844. <Type>btree</Type>
  11845. <Unique>1</Unique>
  11846. </index>
  11847. <key id="2298" parent="352" name="PRIMARY">
  11848. <NameSurrogate>1</NameSurrogate>
  11849. <Primary>1</Primary>
  11850. <UnderlyingIndexName>PRIMARY</UnderlyingIndexName>
  11851. </key>
  11852. <column id="2299" parent="353" name="id">
  11853. <AutoIncrement>1</AutoIncrement>
  11854. <NotNull>1</NotNull>
  11855. <Position>1</Position>
  11856. <StoredType>bigint(20)|0s</StoredType>
  11857. </column>
  11858. <column id="2300" parent="353" name="cid">
  11859. <Comment>商品编号</Comment>
  11860. <NotNull>1</NotNull>
  11861. <Position>2</Position>
  11862. <StoredType>bigint(20)|0s</StoredType>
  11863. </column>
  11864. <column id="2301" parent="353" name="quantity">
  11865. <Comment>数量</Comment>
  11866. <NotNull>1</NotNull>
  11867. <Position>3</Position>
  11868. <StoredType>bigint(20)|0s</StoredType>
  11869. </column>
  11870. <index id="2302" parent="353" name="PRIMARY">
  11871. <ColNames>id</ColNames>
  11872. <Type>btree</Type>
  11873. <Unique>1</Unique>
  11874. </index>
  11875. <key id="2303" parent="353" name="PRIMARY">
  11876. <NameSurrogate>1</NameSurrogate>
  11877. <Primary>1</Primary>
  11878. <UnderlyingIndexName>PRIMARY</UnderlyingIndexName>
  11879. </key>
  11880. <column id="2304" parent="354" name="id">
  11881. <AutoIncrement>1</AutoIncrement>
  11882. <NotNull>1</NotNull>
  11883. <Position>1</Position>
  11884. <StoredType>bigint(20)|0s</StoredType>
  11885. </column>
  11886. <column id="2305" parent="354" name="cid">
  11887. <Comment>商品编号</Comment>
  11888. <NotNull>1</NotNull>
  11889. <Position>2</Position>
  11890. <StoredType>bigint(20)|0s</StoredType>
  11891. </column>
  11892. <column id="2306" parent="354" name="quantity">
  11893. <Comment>数量</Comment>
  11894. <NotNull>1</NotNull>
  11895. <Position>3</Position>
  11896. <StoredType>bigint(20)|0s</StoredType>
  11897. </column>
  11898. <column id="2307" parent="354" name="status">
  11899. <Comment>状态(0入库 1出库)</Comment>
  11900. <NotNull>1</NotNull>
  11901. <Position>4</Position>
  11902. <StoredType>char(1)|0s</StoredType>
  11903. </column>
  11904. <column id="2308" parent="354" name="create_by">
  11905. <Comment>创建者</Comment>
  11906. <DefaultExpression>&apos;&apos;</DefaultExpression>
  11907. <Position>5</Position>
  11908. <StoredType>varchar(64)|0s</StoredType>
  11909. </column>
  11910. <column id="2309" parent="354" name="create_time">
  11911. <Comment>创建时间</Comment>
  11912. <Position>6</Position>
  11913. <StoredType>datetime|0s</StoredType>
  11914. </column>
  11915. <index id="2310" parent="354" name="PRIMARY">
  11916. <ColNames>id</ColNames>
  11917. <Type>btree</Type>
  11918. <Unique>1</Unique>
  11919. </index>
  11920. <key id="2311" parent="354" name="PRIMARY">
  11921. <NameSurrogate>1</NameSurrogate>
  11922. <Primary>1</Primary>
  11923. <UnderlyingIndexName>PRIMARY</UnderlyingIndexName>
  11924. </key>
  11925. <column id="2312" parent="355" name="id">
  11926. <AutoIncrement>1</AutoIncrement>
  11927. <Comment>日志编号</Comment>
  11928. <NotNull>1</NotNull>
  11929. <Position>1</Position>
  11930. <StoredType>int(11)|0s</StoredType>
  11931. </column>
  11932. <column id="2313" parent="355" name="uid">
  11933. <Comment>用户ID</Comment>
  11934. <NotNull>1</NotNull>
  11935. <Position>2</Position>
  11936. <StoredType>varchar(36)|0s</StoredType>
  11937. </column>
  11938. <column id="2314" parent="355" name="create_time">
  11939. <Comment>创建时间</Comment>
  11940. <DefaultExpression>CURRENT_TIMESTAMP</DefaultExpression>
  11941. <Position>3</Position>
  11942. <StoredType>datetime|0s</StoredType>
  11943. </column>
  11944. <column id="2315" parent="355" name="update_aid">
  11945. <Comment>修改人编号</Comment>
  11946. <Position>4</Position>
  11947. <StoredType>varchar(36)|0s</StoredType>
  11948. </column>
  11949. <column id="2316" parent="355" name="update_name">
  11950. <Comment>修改人名称</Comment>
  11951. <Position>5</Position>
  11952. <StoredType>varchar(36)|0s</StoredType>
  11953. </column>
  11954. <column id="2317" parent="355" name="date_update_time">
  11955. <Comment>用户资料修改时间</Comment>
  11956. <Position>6</Position>
  11957. <StoredType>datetime|0s</StoredType>
  11958. </column>
  11959. <index id="2318" parent="355" name="PRIMARY">
  11960. <ColNames>id</ColNames>
  11961. <Type>btree</Type>
  11962. <Unique>1</Unique>
  11963. </index>
  11964. <key id="2319" parent="355" name="PRIMARY">
  11965. <NameSurrogate>1</NameSurrogate>
  11966. <Primary>1</Primary>
  11967. <UnderlyingIndexName>PRIMARY</UnderlyingIndexName>
  11968. </key>
  11969. <column id="2320" parent="356" name="id">
  11970. <AutoIncrement>37</AutoIncrement>
  11971. <Comment>日志编号</Comment>
  11972. <NotNull>1</NotNull>
  11973. <Position>1</Position>
  11974. <StoredType>int(11)|0s</StoredType>
  11975. </column>
  11976. <column id="2321" parent="356" name="uid">
  11977. <Comment>用户ID</Comment>
  11978. <NotNull>1</NotNull>
  11979. <Position>2</Position>
  11980. <StoredType>varchar(36)|0s</StoredType>
  11981. </column>
  11982. <column id="2322" parent="356" name="create_time">
  11983. <Comment>创建时间</Comment>
  11984. <DefaultExpression>CURRENT_TIMESTAMP</DefaultExpression>
  11985. <Position>3</Position>
  11986. <StoredType>datetime|0s</StoredType>
  11987. </column>
  11988. <column id="2323" parent="356" name="remarks">
  11989. <Comment>备注</Comment>
  11990. <Position>4</Position>
  11991. <StoredType>varchar(512)|0s</StoredType>
  11992. </column>
  11993. <column id="2324" parent="356" name="type">
  11994. <Comment>分类 0=主营产品,1=财务数据,2=前期沟通,3=面谈思路及目的</Comment>
  11995. <DefaultExpression>0</DefaultExpression>
  11996. <Position>5</Position>
  11997. <StoredType>int(11)|0s</StoredType>
  11998. </column>
  11999. <index id="2325" parent="356" name="PRIMARY">
  12000. <ColNames>id</ColNames>
  12001. <Type>btree</Type>
  12002. <Unique>1</Unique>
  12003. </index>
  12004. <key id="2326" parent="356" name="PRIMARY">
  12005. <NameSurrogate>1</NameSurrogate>
  12006. <Primary>1</Primary>
  12007. <UnderlyingIndexName>PRIMARY</UnderlyingIndexName>
  12008. </key>
  12009. <column id="2327" parent="357" name="id">
  12010. <AutoIncrement>1</AutoIncrement>
  12011. <NotNull>1</NotNull>
  12012. <Position>1</Position>
  12013. <StoredType>int(11)|0s</StoredType>
  12014. </column>
  12015. <column id="2328" parent="357" name="uid">
  12016. <Comment>客户编号</Comment>
  12017. <NotNull>1</NotNull>
  12018. <Position>2</Position>
  12019. <StoredType>varchar(36)|0s</StoredType>
  12020. </column>
  12021. <column id="2329" parent="357" name="aid">
  12022. <Comment>跟进人编号</Comment>
  12023. <NotNull>1</NotNull>
  12024. <Position>3</Position>
  12025. <StoredType>varchar(36)|0s</StoredType>
  12026. </column>
  12027. <column id="2330" parent="357" name="prdid">
  12028. <Comment>项目编号</Comment>
  12029. <NotNull>1</NotNull>
  12030. <Position>4</Position>
  12031. <StoredType>int(11)|0s</StoredType>
  12032. </column>
  12033. <column id="2331" parent="357" name="first_time">
  12034. <Comment>首次面谈时间</Comment>
  12035. <Position>5</Position>
  12036. <StoredType>datetime|0s</StoredType>
  12037. </column>
  12038. <index id="2332" parent="357" name="PRIMARY">
  12039. <ColNames>id</ColNames>
  12040. <Type>btree</Type>
  12041. <Unique>1</Unique>
  12042. </index>
  12043. <key id="2333" parent="357" name="PRIMARY">
  12044. <NameSurrogate>1</NameSurrogate>
  12045. <Primary>1</Primary>
  12046. <UnderlyingIndexName>PRIMARY</UnderlyingIndexName>
  12047. </key>
  12048. <column id="2334" parent="358" name="id">
  12049. <NotNull>1</NotNull>
  12050. <Position>1</Position>
  12051. <StoredType>varchar(36)|0s</StoredType>
  12052. </column>
  12053. <column id="2335" parent="358" name="uid">
  12054. <Comment>客户ID</Comment>
  12055. <Position>2</Position>
  12056. <StoredType>varchar(36)|0s</StoredType>
  12057. </column>
  12058. <column id="2336" parent="358" name="aid">
  12059. <Comment>营销员ID</Comment>
  12060. <Position>3</Position>
  12061. <StoredType>varchar(36)|0s</StoredType>
  12062. </column>
  12063. <column id="2337" parent="358" name="paid">
  12064. <Comment>营销员上级集合</Comment>
  12065. <Position>4</Position>
  12066. <StoredType>varchar(1204)|0s</StoredType>
  12067. </column>
  12068. <column id="2338" parent="358" name="result">
  12069. <Comment>跟进结果</Comment>
  12070. <Position>5</Position>
  12071. <StoredType>varchar(512)|0s</StoredType>
  12072. </column>
  12073. <column id="2339" parent="358" name="attachment_url">
  12074. <Comment>附件地址</Comment>
  12075. <Position>6</Position>
  12076. <StoredType>varchar(128)|0s</StoredType>
  12077. </column>
  12078. <column id="2340" parent="358" name="create_time">
  12079. <Comment>跟进时间</Comment>
  12080. <Position>7</Position>
  12081. <StoredType>datetime|0s</StoredType>
  12082. </column>
  12083. <column id="2341" parent="358" name="ocb_id">
  12084. <Comment>企业联系人ID</Comment>
  12085. <Position>8</Position>
  12086. <StoredType>varchar(36)|0s</StoredType>
  12087. </column>
  12088. <column id="2342" parent="358" name="contact_type">
  12089. <Comment>联系方式 0外出 1.电话 2.QQ 3.微信 4邮件 5公出打卡</Comment>
  12090. <Position>9</Position>
  12091. <StoredType>int(1)|0s</StoredType>
  12092. </column>
  12093. <column id="2343" parent="358" name="effective">
  12094. <Comment>生效标示 0-有效 1-失效</Comment>
  12095. <Position>10</Position>
  12096. <StoredType>int(11)|0s</StoredType>
  12097. </column>
  12098. <column id="2344" parent="358" name="time_stamp">
  12099. <Comment>时间戳</Comment>
  12100. <DefaultExpression>CURRENT_TIMESTAMP</DefaultExpression>
  12101. <NotNull>1</NotNull>
  12102. <OnUpdate>CURRENT_TIMESTAMP</OnUpdate>
  12103. <Position>11</Position>
  12104. <StoredType>timestamp|0s</StoredType>
  12105. </column>
  12106. <column id="2345" parent="358" name="follow_count">
  12107. <Comment>累计拜访次数</Comment>
  12108. <Position>12</Position>
  12109. <StoredType>int(3)|0s</StoredType>
  12110. </column>
  12111. <column id="2346" parent="358" name="guidance">
  12112. <Comment>指导意见</Comment>
  12113. <Position>13</Position>
  12114. <StoredType>varchar(512)|0s</StoredType>
  12115. </column>
  12116. <column id="2347" parent="358" name="guidance_time">
  12117. <Comment>指导时间</Comment>
  12118. <Position>14</Position>
  12119. <StoredType>datetime|0s</StoredType>
  12120. </column>
  12121. <column id="2348" parent="358" name="guidance_aid">
  12122. <Comment>指导人编号</Comment>
  12123. <Position>15</Position>
  12124. <StoredType>varchar(36)|0s</StoredType>
  12125. </column>
  12126. <column id="2349" parent="358" name="guidance_name">
  12127. <Comment>指导人名称</Comment>
  12128. <Position>16</Position>
  12129. <StoredType>varchar(64)|0s</StoredType>
  12130. </column>
  12131. <column id="2350" parent="358" name="follow_name">
  12132. <Comment>跟进人名称</Comment>
  12133. <Position>17</Position>
  12134. <StoredType>varchar(64)|0s</StoredType>
  12135. </column>
  12136. <column id="2351" parent="358" name="follow_dep">
  12137. <Comment>跟进人部门</Comment>
  12138. <Position>18</Position>
  12139. <StoredType>varchar(64)|0s</StoredType>
  12140. </column>
  12141. <column id="2352" parent="358" name="type">
  12142. <Comment>0 客户跟进 1项目跟进</Comment>
  12143. <DefaultExpression>0</DefaultExpression>
  12144. <Position>19</Position>
  12145. <StoredType>int(1)|0s</StoredType>
  12146. </column>
  12147. <column id="2353" parent="358" name="pid">
  12148. <Comment>项目编号</Comment>
  12149. <Position>20</Position>
  12150. <StoredType>varchar(36)|0s</StoredType>
  12151. </column>
  12152. <index id="2354" parent="358" name="PRIMARY">
  12153. <ColNames>id</ColNames>
  12154. <Type>btree</Type>
  12155. <Unique>1</Unique>
  12156. </index>
  12157. <index id="2355" parent="358" name="follow_aid_uid">
  12158. <ColNames>aid
  12159. uid</ColNames>
  12160. <Type>btree</Type>
  12161. </index>
  12162. <key id="2356" parent="358" name="PRIMARY">
  12163. <NameSurrogate>1</NameSurrogate>
  12164. <Primary>1</Primary>
  12165. <UnderlyingIndexName>PRIMARY</UnderlyingIndexName>
  12166. </key>
  12167. <column id="2357" parent="359" name="id">
  12168. <AutoIncrement>1</AutoIncrement>
  12169. <NotNull>1</NotNull>
  12170. <Position>1</Position>
  12171. <StoredType>int(11)|0s</StoredType>
  12172. </column>
  12173. <column id="2358" parent="359" name="uid">
  12174. <Comment>客户编号</Comment>
  12175. <NotNull>1</NotNull>
  12176. <Position>2</Position>
  12177. <StoredType>varchar(36)|0s</StoredType>
  12178. </column>
  12179. <column id="2359" parent="359" name="aid">
  12180. <Comment>跟进人编号</Comment>
  12181. <NotNull>1</NotNull>
  12182. <Position>3</Position>
  12183. <StoredType>varchar(36)|0s</StoredType>
  12184. </column>
  12185. <column id="2360" parent="359" name="pid">
  12186. <Comment>项目编号</Comment>
  12187. <NotNull>1</NotNull>
  12188. <Position>4</Position>
  12189. <StoredType>varchar(36)|0s</StoredType>
  12190. </column>
  12191. <column id="2361" parent="359" name="prdid">
  12192. <Comment>公出详情编号</Comment>
  12193. <Position>5</Position>
  12194. <StoredType>int(11)|0s</StoredType>
  12195. </column>
  12196. <column id="2362" parent="359" name="type">
  12197. <Comment>0=本次,1=非本次</Comment>
  12198. <DefaultExpression>0</DefaultExpression>
  12199. <Position>6</Position>
  12200. <StoredType>int(11)|0s</StoredType>
  12201. </column>
  12202. <column id="2363" parent="359" name="status">
  12203. <Comment>状态 0=正常,1=废除</Comment>
  12204. <DefaultExpression>0</DefaultExpression>
  12205. <Position>7</Position>
  12206. <StoredType>int(11)|0s</StoredType>
  12207. </column>
  12208. <column id="2364" parent="359" name="examine_status">
  12209. <Comment>审核状态 0=否,1=初次审核,2=复审</Comment>
  12210. <DefaultExpression>0</DefaultExpression>
  12211. <Position>8</Position>
  12212. <StoredType>int(11)|0s</StoredType>
  12213. </column>
  12214. <column id="2365" parent="359" name="examine_status_other">
  12215. <Comment>复审年份</Comment>
  12216. <Position>9</Position>
  12217. <StoredType>varchar(512)|0s</StoredType>
  12218. </column>
  12219. <column id="2366" parent="359" name="buy_status">
  12220. <Comment>购买状态 0=否,1=新购,2=复购</Comment>
  12221. <DefaultExpression>0</DefaultExpression>
  12222. <Position>10</Position>
  12223. <StoredType>int(11)|0s</StoredType>
  12224. </column>
  12225. <column id="2367" parent="359" name="buy_status_other">
  12226. <Comment>复购年份</Comment>
  12227. <Position>11</Position>
  12228. <StoredType>varchar(512)|0s</StoredType>
  12229. </column>
  12230. <index id="2368" parent="359" name="PRIMARY">
  12231. <ColNames>id</ColNames>
  12232. <Type>btree</Type>
  12233. <Unique>1</Unique>
  12234. </index>
  12235. <key id="2369" parent="359" name="PRIMARY">
  12236. <NameSurrogate>1</NameSurrogate>
  12237. <Primary>1</Primary>
  12238. <UnderlyingIndexName>PRIMARY</UnderlyingIndexName>
  12239. </key>
  12240. <column id="2370" parent="360" name="id">
  12241. <AutoIncrement>1</AutoIncrement>
  12242. <NotNull>1</NotNull>
  12243. <Position>1</Position>
  12244. <StoredType>int(11)|0s</StoredType>
  12245. </column>
  12246. <column id="2371" parent="360" name="uid">
  12247. <NotNull>1</NotNull>
  12248. <Position>2</Position>
  12249. <StoredType>varchar(36)|0s</StoredType>
  12250. </column>
  12251. <column id="2372" parent="360" name="check_time">
  12252. <Comment>最后时间</Comment>
  12253. <DefaultExpression>CURRENT_TIMESTAMP</DefaultExpression>
  12254. <Position>3</Position>
  12255. <StoredType>datetime|0s</StoredType>
  12256. </column>
  12257. <column id="2373" parent="360" name="create_time">
  12258. <Comment>创建时间</Comment>
  12259. <DefaultExpression>CURRENT_TIMESTAMP</DefaultExpression>
  12260. <Position>4</Position>
  12261. <StoredType>datetime|0s</StoredType>
  12262. </column>
  12263. <index id="2374" parent="360" name="PRIMARY">
  12264. <ColNames>id</ColNames>
  12265. <Type>btree</Type>
  12266. <Unique>1</Unique>
  12267. </index>
  12268. <key id="2375" parent="360" name="PRIMARY">
  12269. <NameSurrogate>1</NameSurrogate>
  12270. <Primary>1</Primary>
  12271. <UnderlyingIndexName>PRIMARY</UnderlyingIndexName>
  12272. </key>
  12273. <column id="2376" parent="361" name="id">
  12274. <NotNull>1</NotNull>
  12275. <Position>1</Position>
  12276. <StoredType>varchar(36)|0s</StoredType>
  12277. </column>
  12278. <column id="2377" parent="361" name="type">
  12279. <Comment>锁定类型 0-客户,1-业务</Comment>
  12280. <Position>2</Position>
  12281. <StoredType>int(1)|0s</StoredType>
  12282. </column>
  12283. <column id="2378" parent="361" name="uid">
  12284. <Comment>用户ID</Comment>
  12285. <NotNull>1</NotNull>
  12286. <Position>3</Position>
  12287. <StoredType>varchar(36)|0s</StoredType>
  12288. </column>
  12289. <column id="2379" parent="361" name="aid">
  12290. <Comment>管理员ID</Comment>
  12291. <NotNull>1</NotNull>
  12292. <Position>4</Position>
  12293. <StoredType>varchar(36)|0s</StoredType>
  12294. </column>
  12295. <column id="2380" parent="361" name="business_project_id">
  12296. <Comment>业务ID</Comment>
  12297. <Position>5</Position>
  12298. <StoredType>varchar(36)|0s</StoredType>
  12299. </column>
  12300. <column id="2381" parent="361" name="status">
  12301. <Comment>锁定状态 0-已锁定,1-待释放,2-已释放</Comment>
  12302. <Position>6</Position>
  12303. <StoredType>int(1)|0s</StoredType>
  12304. </column>
  12305. <column id="2382" parent="361" name="lock_time">
  12306. <Comment>锁定时间</Comment>
  12307. <Position>7</Position>
  12308. <StoredType>datetime|0s</StoredType>
  12309. </column>
  12310. <column id="2383" parent="361" name="release_time">
  12311. <Comment>释放时间</Comment>
  12312. <Position>8</Position>
  12313. <StoredType>datetime|0s</StoredType>
  12314. </column>
  12315. <column id="2384" parent="361" name="order_no">
  12316. <Comment>订单编号</Comment>
  12317. <Position>9</Position>
  12318. <StoredType>varchar(20)|0s</StoredType>
  12319. </column>
  12320. <index id="2385" parent="361" name="PRIMARY">
  12321. <ColNames>id</ColNames>
  12322. <Type>btree</Type>
  12323. <Unique>1</Unique>
  12324. </index>
  12325. <index id="2386" parent="361" name="index_uid">
  12326. <ColNames>uid</ColNames>
  12327. <Type>btree</Type>
  12328. </index>
  12329. <index id="2387" parent="361" name="lock_index_uid">
  12330. <ColNames>uid</ColNames>
  12331. <Type>btree</Type>
  12332. </index>
  12333. <index id="2388" parent="361" name="index_aid">
  12334. <ColNames>aid</ColNames>
  12335. <Type>btree</Type>
  12336. </index>
  12337. <index id="2389" parent="361" name="lock_index_aid">
  12338. <ColNames>aid</ColNames>
  12339. <Type>btree</Type>
  12340. </index>
  12341. <key id="2390" parent="361" name="PRIMARY">
  12342. <NameSurrogate>1</NameSurrogate>
  12343. <Primary>1</Primary>
  12344. <UnderlyingIndexName>PRIMARY</UnderlyingIndexName>
  12345. </key>
  12346. <column id="2391" parent="362" name="id">
  12347. <AutoIncrement>111</AutoIncrement>
  12348. <Comment>任务编号</Comment>
  12349. <NotNull>1</NotNull>
  12350. <Position>1</Position>
  12351. <StoredType>int(11)|0s</StoredType>
  12352. </column>
  12353. <column id="2392" parent="362" name="uid">
  12354. <Comment>用户ID</Comment>
  12355. <NotNull>1</NotNull>
  12356. <Position>2</Position>
  12357. <StoredType>varchar(36)|0s</StoredType>
  12358. </column>
  12359. <column id="2393" parent="362" name="aid">
  12360. <Comment>管理员ID</Comment>
  12361. <NotNull>1</NotNull>
  12362. <Position>3</Position>
  12363. <StoredType>varchar(36)|0s</StoredType>
  12364. </column>
  12365. <column id="2394" parent="362" name="last_follow_time">
  12366. <Comment>最后跟进时间</Comment>
  12367. <Position>4</Position>
  12368. <StoredType>datetime|0s</StoredType>
  12369. </column>
  12370. <column id="2395" parent="362" name="last_sign_time">
  12371. <Comment>最后锁定时间</Comment>
  12372. <Position>5</Position>
  12373. <StoredType>datetime|0s</StoredType>
  12374. </column>
  12375. <column id="2396" parent="362" name="create_time">
  12376. <Comment>添加时间</Comment>
  12377. <DefaultExpression>CURRENT_TIMESTAMP</DefaultExpression>
  12378. <Position>6</Position>
  12379. <StoredType>datetime|0s</StoredType>
  12380. </column>
  12381. <column id="2397" parent="362" name="big_customer">
  12382. <Comment>大客户 0否 1是</Comment>
  12383. <DefaultExpression>0</DefaultExpression>
  12384. <Position>7</Position>
  12385. <StoredType>int(1)|0s</StoredType>
  12386. </column>
  12387. <column id="2398" parent="362" name="update_aid">
  12388. <Comment>修改人编号</Comment>
  12389. <Position>8</Position>
  12390. <StoredType>varchar(36)|0s</StoredType>
  12391. </column>
  12392. <column id="2399" parent="362" name="update_name">
  12393. <Comment>修改人名称</Comment>
  12394. <Position>9</Position>
  12395. <StoredType>varchar(36)|0s</StoredType>
  12396. </column>
  12397. <column id="2400" parent="362" name="date_update_time">
  12398. <Comment>用户资料修改时间</Comment>
  12399. <Position>10</Position>
  12400. <StoredType>datetime|0s</StoredType>
  12401. </column>
  12402. <column id="2401" parent="362" name="channel_type">
  12403. <Comment>渠道类别 1=其他,2=民主党派3=园区,4=民间组织,5=战略合作单位</Comment>
  12404. <Position>11</Position>
  12405. <StoredType>int(11)|0s</StoredType>
  12406. </column>
  12407. <column id="2402" parent="362" name="chargeback">
  12408. <Comment>退单标识</Comment>
  12409. <Position>12</Position>
  12410. <StoredType>int(1)|0s</StoredType>
  12411. </column>
  12412. <column id="2403" parent="362" name="member">
  12413. <Comment>会员标识</Comment>
  12414. <Position>13</Position>
  12415. <StoredType>int(1)|0s</StoredType>
  12416. </column>
  12417. <column id="2404" parent="362" name="last_sales_type">
  12418. <Comment>最后销售类型</Comment>
  12419. <Position>14</Position>
  12420. <StoredType>int(1)|0s</StoredType>
  12421. </column>
  12422. <column id="2405" parent="362" name="last_follow_type">
  12423. <Comment>最后跟进方式</Comment>
  12424. <Position>15</Position>
  12425. <StoredType>int(1)|0s</StoredType>
  12426. </column>
  12427. <column id="2406" parent="362" name="follow_number">
  12428. <Comment>跟进次数</Comment>
  12429. <Position>16</Position>
  12430. <StoredType>int(1)|0s</StoredType>
  12431. </column>
  12432. <column id="2407" parent="362" name="task_names">
  12433. <Comment>已签项目</Comment>
  12434. <Position>17</Position>
  12435. <StoredType>varchar(1024)|0s</StoredType>
  12436. </column>
  12437. <column id="2408" parent="362" name="sign_number">
  12438. <Comment>签单次数</Comment>
  12439. <Position>18</Position>
  12440. <StoredType>int(11)|0s</StoredType>
  12441. </column>
  12442. <column id="2409" parent="362" name="sign_amount">
  12443. <Comment>签单金额</Comment>
  12444. <Position>19</Position>
  12445. <StoredType>decimal(12,6 digit)|0s</StoredType>
  12446. </column>
  12447. <column id="2410" parent="362" name="last_signing_time">
  12448. <Comment>最新签单时间</Comment>
  12449. <Position>20</Position>
  12450. <StoredType>date|0s</StoredType>
  12451. </column>
  12452. <column id="2411" parent="362" name="first_signing_time">
  12453. <Comment>第一次签单时间</Comment>
  12454. <Position>21</Position>
  12455. <StoredType>date|0s</StoredType>
  12456. </column>
  12457. <column id="2412" parent="362" name="follow_dep">
  12458. <Comment>跟进部门</Comment>
  12459. <Position>22</Position>
  12460. <StoredType>varchar(36)|0s</StoredType>
  12461. </column>
  12462. <column id="2413" parent="362" name="follow_explain">
  12463. <Comment>跟进说明</Comment>
  12464. <Position>23</Position>
  12465. <StoredType>varchar(1024)|0s</StoredType>
  12466. </column>
  12467. <column id="2414" parent="362" name="follow_aname">
  12468. <Comment>跟进人</Comment>
  12469. <Position>24</Position>
  12470. <StoredType>varchar(36)|0s</StoredType>
  12471. </column>
  12472. <column id="2415" parent="362" name="follow_aid">
  12473. <Comment>跟进人编号</Comment>
  12474. <Position>25</Position>
  12475. <StoredType>varchar(36)|0s</StoredType>
  12476. </column>
  12477. <column id="2416" parent="362" name="call_count">
  12478. <Comment>呼叫次数</Comment>
  12479. <DefaultExpression>0</DefaultExpression>
  12480. <Position>26</Position>
  12481. <StoredType>int(1)|0s</StoredType>
  12482. </column>
  12483. <column id="2417" parent="362" name="call_duration">
  12484. <Comment>呼叫时间</Comment>
  12485. <DefaultExpression>0</DefaultExpression>
  12486. <Position>27</Position>
  12487. <StoredType>int(1)|0s</StoredType>
  12488. </column>
  12489. <column id="2418" parent="362" name="public_count">
  12490. <Comment>公出次数</Comment>
  12491. <DefaultExpression>0</DefaultExpression>
  12492. <Position>28</Position>
  12493. <StoredType>int(11)|0s</StoredType>
  12494. </column>
  12495. <column id="2419" parent="362" name="assist_count">
  12496. <Comment>总协单次数</Comment>
  12497. <DefaultExpression>0</DefaultExpression>
  12498. <Position>29</Position>
  12499. <StoredType>int(11)|0s</StoredType>
  12500. </column>
  12501. <column id="2420" parent="362" name="public_assist_count">
  12502. <Comment>公出协单次数</Comment>
  12503. <DefaultExpression>0</DefaultExpression>
  12504. <Position>30</Position>
  12505. <StoredType>int(11)|0s</StoredType>
  12506. </column>
  12507. <column id="2421" parent="362" name="non_public_count">
  12508. <Comment>非公出协单次数</Comment>
  12509. <DefaultExpression>0</DefaultExpression>
  12510. <Position>31</Position>
  12511. <StoredType>int(11)|0s</StoredType>
  12512. </column>
  12513. <index id="2422" parent="362" name="PRIMARY">
  12514. <ColNames>id</ColNames>
  12515. <Type>btree</Type>
  12516. <Unique>1</Unique>
  12517. </index>
  12518. <index id="2423" parent="362" name="index_aid_uid">
  12519. <ColNames>aid
  12520. uid</ColNames>
  12521. <Type>btree</Type>
  12522. </index>
  12523. <key id="2424" parent="362" name="PRIMARY">
  12524. <NameSurrogate>1</NameSurrogate>
  12525. <Primary>1</Primary>
  12526. <UnderlyingIndexName>PRIMARY</UnderlyingIndexName>
  12527. </key>
  12528. <column id="2425" parent="363" name="id">
  12529. <AutoIncrement>283</AutoIncrement>
  12530. <NotNull>1</NotNull>
  12531. <Position>1</Position>
  12532. <StoredType>int(11)|0s</StoredType>
  12533. </column>
  12534. <column id="2426" parent="363" name="uid">
  12535. <NotNull>1</NotNull>
  12536. <Position>2</Position>
  12537. <StoredType>varchar(36)|0s</StoredType>
  12538. </column>
  12539. <column id="2427" parent="363" name="aid">
  12540. <Comment>操作人</Comment>
  12541. <Position>3</Position>
  12542. <StoredType>varchar(36)|0s</StoredType>
  12543. </column>
  12544. <column id="2428" parent="363" name="name">
  12545. <Comment>企业名称</Comment>
  12546. <Position>4</Position>
  12547. <StoredType>varchar(64)|0s</StoredType>
  12548. </column>
  12549. <column id="2429" parent="363" name="create_time">
  12550. <Comment>创建时间</Comment>
  12551. <DefaultExpression>CURRENT_TIMESTAMP</DefaultExpression>
  12552. <Position>5</Position>
  12553. <StoredType>datetime|0s</StoredType>
  12554. </column>
  12555. <index id="2430" parent="363" name="PRIMARY">
  12556. <ColNames>id</ColNames>
  12557. <Type>btree</Type>
  12558. <Unique>1</Unique>
  12559. </index>
  12560. <index id="2431" parent="363" name="user_name">
  12561. <ColNames>name</ColNames>
  12562. <Type>btree</Type>
  12563. </index>
  12564. <key id="2432" parent="363" name="PRIMARY">
  12565. <NameSurrogate>1</NameSurrogate>
  12566. <Primary>1</Primary>
  12567. <UnderlyingIndexName>PRIMARY</UnderlyingIndexName>
  12568. </key>
  12569. <column id="2433" parent="364" name="id">
  12570. <AutoIncrement>1</AutoIncrement>
  12571. <NotNull>1</NotNull>
  12572. <Position>1</Position>
  12573. <StoredType>int(11)|0s</StoredType>
  12574. </column>
  12575. <column id="2434" parent="364" name="uid">
  12576. <Comment>客户编号</Comment>
  12577. <NotNull>1</NotNull>
  12578. <Position>2</Position>
  12579. <StoredType>varchar(36)|0s</StoredType>
  12580. </column>
  12581. <column id="2435" parent="364" name="aid">
  12582. <Comment>跟进人编号</Comment>
  12583. <NotNull>1</NotNull>
  12584. <Position>3</Position>
  12585. <StoredType>varchar(36)|0s</StoredType>
  12586. </column>
  12587. <column id="2436" parent="364" name="material_url">
  12588. <Comment>佐证材料url</Comment>
  12589. <Position>4</Position>
  12590. <StoredType>varchar(1024)|0s</StoredType>
  12591. </column>
  12592. <column id="2437" parent="364" name="create_time">
  12593. <Comment>创建时间</Comment>
  12594. <DefaultExpression>CURRENT_TIMESTAMP</DefaultExpression>
  12595. <Position>5</Position>
  12596. <StoredType>datetime|0s</StoredType>
  12597. </column>
  12598. <index id="2438" parent="364" name="PRIMARY">
  12599. <ColNames>id</ColNames>
  12600. <Type>btree</Type>
  12601. <Unique>1</Unique>
  12602. </index>
  12603. <key id="2439" parent="364" name="PRIMARY">
  12604. <NameSurrogate>1</NameSurrogate>
  12605. <Primary>1</Primary>
  12606. <UnderlyingIndexName>PRIMARY</UnderlyingIndexName>
  12607. </key>
  12608. <column id="2440" parent="365" name="id">
  12609. <AutoIncrement>1</AutoIncrement>
  12610. <NotNull>1</NotNull>
  12611. <Position>1</Position>
  12612. <StoredType>bigint(20)|0s</StoredType>
  12613. </column>
  12614. <column id="2441" parent="365" name="title">
  12615. <Comment>标题</Comment>
  12616. <NotNull>1</NotNull>
  12617. <Position>2</Position>
  12618. <StoredType>varchar(128)|0s</StoredType>
  12619. </column>
  12620. <column id="2442" parent="365" name="content">
  12621. <Comment>内容</Comment>
  12622. <Position>3</Position>
  12623. <StoredType>text|0s</StoredType>
  12624. </column>
  12625. <index id="2443" parent="365" name="PRIMARY">
  12626. <ColNames>id</ColNames>
  12627. <Type>btree</Type>
  12628. <Unique>1</Unique>
  12629. </index>
  12630. <key id="2444" parent="365" name="PRIMARY">
  12631. <NameSurrogate>1</NameSurrogate>
  12632. <Primary>1</Primary>
  12633. <UnderlyingIndexName>PRIMARY</UnderlyingIndexName>
  12634. </key>
  12635. <column id="2445" parent="366" name="id">
  12636. <AutoIncrement>3</AutoIncrement>
  12637. <NotNull>1</NotNull>
  12638. <Position>1</Position>
  12639. <StoredType>int(11)|0s</StoredType>
  12640. </column>
  12641. <column id="2446" parent="366" name="uid">
  12642. <Position>2</Position>
  12643. <StoredType>varchar(36)|0s</StoredType>
  12644. </column>
  12645. <column id="2447" parent="366" name="aid">
  12646. <Comment>操作人</Comment>
  12647. <Position>3</Position>
  12648. <StoredType>varchar(36)|0s</StoredType>
  12649. </column>
  12650. <column id="2448" parent="366" name="add_wechat">
  12651. <Comment>添加微信 0否 1是</Comment>
  12652. <DefaultExpression>0</DefaultExpression>
  12653. <Position>4</Position>
  12654. <StoredType>int(1)|0s</StoredType>
  12655. </column>
  12656. <column id="2449" parent="366" name="wechat">
  12657. <Comment>微信</Comment>
  12658. <Position>5</Position>
  12659. <StoredType>varchar(36)|0s</StoredType>
  12660. </column>
  12661. <column id="2450" parent="366" name="renewal">
  12662. <Comment>续签状态 0=未联系上当前联系人,1=企业已签其他机构,2=企业自己申报,3=企业不打算申报/注销,4=得续签,未报价,5=待续签,已报价,6已续签/复审、续签时间、续签项目</Comment>
  12663. <Position>6</Position>
  12664. <StoredType>int(1)|0s</StoredType>
  12665. </column>
  12666. <column id="2451" parent="366" name="renewal_time">
  12667. <Comment>续签时间</Comment>
  12668. <Position>7</Position>
  12669. <StoredType>datetime|0s</StoredType>
  12670. </column>
  12671. <column id="2452" parent="366" name="sign_project">
  12672. <Comment>已签项目</Comment>
  12673. <Position>8</Position>
  12674. <StoredType>varchar(512)|0s</StoredType>
  12675. </column>
  12676. <column id="2453" parent="366" name="sign_project_id">
  12677. <Comment>已签项目编号</Comment>
  12678. <Position>9</Position>
  12679. <StoredType>varchar(512)|0s</StoredType>
  12680. </column>
  12681. <column id="2454" parent="366" name="new_time">
  12682. <Comment>最新更新时间</Comment>
  12683. <NotNull>1</NotNull>
  12684. <Position>10</Position>
  12685. <StoredType>datetime|0s</StoredType>
  12686. </column>
  12687. <column id="2455" parent="366" name="remarks">
  12688. <Comment>备注</Comment>
  12689. <Position>11</Position>
  12690. <StoredType>varchar(256)|0s</StoredType>
  12691. </column>
  12692. <column id="2456" parent="366" name="create_time">
  12693. <Comment>操作时间</Comment>
  12694. <NotNull>1</NotNull>
  12695. <Position>12</Position>
  12696. <StoredType>datetime|0s</StoredType>
  12697. </column>
  12698. <column id="2457" parent="366" name="tech_satisfaction">
  12699. <Comment>技术端满意度</Comment>
  12700. <Position>13</Position>
  12701. <StoredType>int(1)|0s</StoredType>
  12702. </column>
  12703. <column id="2458" parent="366" name="business_satisfaction">
  12704. <Comment>业务端满意度</Comment>
  12705. <Position>14</Position>
  12706. <StoredType>int(1)|0s</StoredType>
  12707. </column>
  12708. <index id="2459" parent="366" name="PRIMARY">
  12709. <ColNames>id</ColNames>
  12710. <Type>btree</Type>
  12711. <Unique>1</Unique>
  12712. </index>
  12713. <key id="2460" parent="366" name="PRIMARY">
  12714. <NameSurrogate>1</NameSurrogate>
  12715. <Primary>1</Primary>
  12716. <UnderlyingIndexName>PRIMARY</UnderlyingIndexName>
  12717. </key>
  12718. <column id="2461" parent="367" name="id">
  12719. <AutoIncrement>9</AutoIncrement>
  12720. <NotNull>1</NotNull>
  12721. <Position>1</Position>
  12722. <StoredType>int(11)|0s</StoredType>
  12723. </column>
  12724. <column id="2462" parent="367" name="uid">
  12725. <NotNull>1</NotNull>
  12726. <Position>2</Position>
  12727. <StoredType>varchar(36)|0s</StoredType>
  12728. </column>
  12729. <column id="2463" parent="367" name="aid">
  12730. <Comment>操作人</Comment>
  12731. <Position>3</Position>
  12732. <StoredType>varchar(36)|0s</StoredType>
  12733. </column>
  12734. <column id="2464" parent="367" name="add_wechat">
  12735. <Comment>添加微信 0否 1是</Comment>
  12736. <DefaultExpression>0</DefaultExpression>
  12737. <Position>4</Position>
  12738. <StoredType>int(1)|0s</StoredType>
  12739. </column>
  12740. <column id="2465" parent="367" name="wechat">
  12741. <Comment>微信</Comment>
  12742. <Position>5</Position>
  12743. <StoredType>varchar(36)|0s</StoredType>
  12744. </column>
  12745. <column id="2466" parent="367" name="renewal">
  12746. <Comment>0未联系上当前联系人 1企业已签其他机构 2企业自己申报 3企业不打算申报/注销 4待续签,未报价(客服维护中) 5待续签,已报价(客服维护中) 6已续签/复审</Comment>
  12747. <Position>6</Position>
  12748. <StoredType>int(1)|0s</StoredType>
  12749. </column>
  12750. <column id="2467" parent="367" name="renewal_time">
  12751. <Comment>续签时间</Comment>
  12752. <Position>7</Position>
  12753. <StoredType>datetime|0s</StoredType>
  12754. </column>
  12755. <column id="2468" parent="367" name="sign_project_id">
  12756. <Comment>已签项目编号</Comment>
  12757. <Position>8</Position>
  12758. <StoredType>varchar(512)|0s</StoredType>
  12759. </column>
  12760. <column id="2469" parent="367" name="sign_project">
  12761. <Comment>已签项目</Comment>
  12762. <Position>9</Position>
  12763. <StoredType>varchar(512)|0s</StoredType>
  12764. </column>
  12765. <column id="2470" parent="367" name="remarks">
  12766. <Comment>备注</Comment>
  12767. <Position>10</Position>
  12768. <StoredType>varchar(256)|0s</StoredType>
  12769. </column>
  12770. <column id="2471" parent="367" name="create_time">
  12771. <Comment>操作时间</Comment>
  12772. <NotNull>1</NotNull>
  12773. <Position>11</Position>
  12774. <StoredType>datetime|0s</StoredType>
  12775. </column>
  12776. <column id="2472" parent="367" name="tech_satisfaction">
  12777. <Comment>技术端满意度</Comment>
  12778. <Position>12</Position>
  12779. <StoredType>int(1)|0s</StoredType>
  12780. </column>
  12781. <column id="2473" parent="367" name="business_satisfaction">
  12782. <Comment>业务端满意度</Comment>
  12783. <Position>13</Position>
  12784. <StoredType>int(1)|0s</StoredType>
  12785. </column>
  12786. <column id="2474" parent="367" name="add_group_chat">
  12787. <Comment>入群 0=否,1=是</Comment>
  12788. <DefaultExpression>0</DefaultExpression>
  12789. <Position>14</Position>
  12790. <StoredType>int(1)|0s</StoredType>
  12791. </column>
  12792. <index id="2475" parent="367" name="PRIMARY">
  12793. <ColNames>id</ColNames>
  12794. <Type>btree</Type>
  12795. <Unique>1</Unique>
  12796. </index>
  12797. <key id="2476" parent="367" name="PRIMARY">
  12798. <NameSurrogate>1</NameSurrogate>
  12799. <Primary>1</Primary>
  12800. <UnderlyingIndexName>PRIMARY</UnderlyingIndexName>
  12801. </key>
  12802. <column id="2477" parent="368" name="id">
  12803. <AutoIncrement>1</AutoIncrement>
  12804. <NotNull>1</NotNull>
  12805. <Position>1</Position>
  12806. <StoredType>int(11)|0s</StoredType>
  12807. </column>
  12808. <column id="2478" parent="368" name="uid">
  12809. <NotNull>1</NotNull>
  12810. <Position>2</Position>
  12811. <StoredType>varchar(36)|0s</StoredType>
  12812. </column>
  12813. <column id="2479" parent="368" name="aid">
  12814. <Comment>评价人</Comment>
  12815. <NotNull>1</NotNull>
  12816. <Position>3</Position>
  12817. <StoredType>varchar(36)|0s</StoredType>
  12818. </column>
  12819. <column id="2480" parent="368" name="content">
  12820. <Comment>面谈思路</Comment>
  12821. <Position>4</Position>
  12822. <StoredType>varchar(1024)|0s</StoredType>
  12823. </column>
  12824. <column id="2481" parent="368" name="create_time">
  12825. <Comment>创建时间</Comment>
  12826. <DefaultExpression>CURRENT_TIMESTAMP</DefaultExpression>
  12827. <Position>5</Position>
  12828. <StoredType>datetime|0s</StoredType>
  12829. </column>
  12830. <column id="2482" parent="368" name="type">
  12831. <Comment>类别 0=其他,1=技术,2=营销,3=业务</Comment>
  12832. <DefaultExpression>0</DefaultExpression>
  12833. <Position>6</Position>
  12834. <StoredType>int(1)|0s</StoredType>
  12835. </column>
  12836. <index id="2483" parent="368" name="PRIMARY">
  12837. <ColNames>id</ColNames>
  12838. <Type>btree</Type>
  12839. <Unique>1</Unique>
  12840. </index>
  12841. <key id="2484" parent="368" name="PRIMARY">
  12842. <NameSurrogate>1</NameSurrogate>
  12843. <Primary>1</Primary>
  12844. <UnderlyingIndexName>PRIMARY</UnderlyingIndexName>
  12845. </key>
  12846. <column id="2485" parent="369" name="id">
  12847. <AutoIncrement>1160</AutoIncrement>
  12848. <Comment>日志编号</Comment>
  12849. <NotNull>1</NotNull>
  12850. <Position>1</Position>
  12851. <StoredType>int(11)|0s</StoredType>
  12852. </column>
  12853. <column id="2486" parent="369" name="uid">
  12854. <Comment>用户ID</Comment>
  12855. <NotNull>1</NotNull>
  12856. <Position>2</Position>
  12857. <StoredType>varchar(36)|0s</StoredType>
  12858. </column>
  12859. <column id="2487" parent="369" name="aid">
  12860. <Comment>管理员ID</Comment>
  12861. <Position>3</Position>
  12862. <StoredType>varchar(36)|0s</StoredType>
  12863. </column>
  12864. <column id="2488" parent="369" name="pid">
  12865. <Comment>项目编号</Comment>
  12866. <DefaultExpression>&apos;&apos;</DefaultExpression>
  12867. <Position>4</Position>
  12868. <StoredType>varchar(36)|0s</StoredType>
  12869. </column>
  12870. <column id="2489" parent="369" name="take_aid">
  12871. <Comment>接收者ID</Comment>
  12872. <Position>5</Position>
  12873. <StoredType>varchar(36)|0s</StoredType>
  12874. </column>
  12875. <column id="2490" parent="369" name="type">
  12876. <Comment>类型 0录入 1 领取 2 转交私有客户 3转交业务 4 未跟进丢失(30) 5未签单丢失(270天)6释放 7转交签单客户 8渠道录入 9渠道客户总监分配 10 渠道客户经理分配 11渠道释放 12回收 13离职客户转交 14离职签单业务转交 15限定项目新增 16限项目移除 17限定项目转交 18限定项目私有释放 19 限定项目签单释放</Comment>
  12877. <DefaultExpression>0</DefaultExpression>
  12878. <Position>6</Position>
  12879. <StoredType>int(11)|0s</StoredType>
  12880. </column>
  12881. <column id="2491" parent="369" name="create_time">
  12882. <Comment>创建时间</Comment>
  12883. <DefaultExpression>CURRENT_TIMESTAMP</DefaultExpression>
  12884. <Position>7</Position>
  12885. <StoredType>datetime|0s</StoredType>
  12886. </column>
  12887. <column id="2492" parent="369" name="remarks">
  12888. <Comment>备注</Comment>
  12889. <Position>8</Position>
  12890. <StoredType>varchar(512)|0s</StoredType>
  12891. </column>
  12892. <index id="2493" parent="369" name="PRIMARY">
  12893. <ColNames>id</ColNames>
  12894. <Type>btree</Type>
  12895. <Unique>1</Unique>
  12896. </index>
  12897. <key id="2494" parent="369" name="PRIMARY">
  12898. <NameSurrogate>1</NameSurrogate>
  12899. <Primary>1</Primary>
  12900. <UnderlyingIndexName>PRIMARY</UnderlyingIndexName>
  12901. </key>
  12902. <column id="2495" parent="370" name="id">
  12903. <AutoIncrement>10</AutoIncrement>
  12904. <NotNull>1</NotNull>
  12905. <Position>1</Position>
  12906. <StoredType>int(11)|0s</StoredType>
  12907. </column>
  12908. <column id="2496" parent="370" name="name">
  12909. <Comment>名称</Comment>
  12910. <Position>2</Position>
  12911. <StoredType>varchar(32)|0s</StoredType>
  12912. </column>
  12913. <column id="2497" parent="370" name="type">
  12914. <Comment>类型</Comment>
  12915. <NotNull>1</NotNull>
  12916. <Position>3</Position>
  12917. <StoredType>int(11)|0s</StoredType>
  12918. </column>
  12919. <column id="2498" parent="370" name="start">
  12920. <Comment>开始时间</Comment>
  12921. <Position>4</Position>
  12922. <StoredType>varchar(32)|0s</StoredType>
  12923. </column>
  12924. <column id="2499" parent="370" name="rest_start">
  12925. <Comment>休息开始时间</Comment>
  12926. <Position>5</Position>
  12927. <StoredType>varchar(32)|0s</StoredType>
  12928. </column>
  12929. <column id="2500" parent="370" name="rest_end">
  12930. <Comment>休息结束时间</Comment>
  12931. <Position>6</Position>
  12932. <StoredType>varchar(32)|0s</StoredType>
  12933. </column>
  12934. <column id="2501" parent="370" name="end">
  12935. <Comment>结束时间</Comment>
  12936. <Position>7</Position>
  12937. <StoredType>varchar(32)|0s</StoredType>
  12938. </column>
  12939. <column id="2502" parent="370" name="create_time">
  12940. <Comment>创建时间</Comment>
  12941. <DefaultExpression>CURRENT_TIMESTAMP</DefaultExpression>
  12942. <Position>8</Position>
  12943. <StoredType>datetime|0s</StoredType>
  12944. </column>
  12945. <column id="2503" parent="370" name="min_hours">
  12946. <Comment>最小公出时长</Comment>
  12947. <DefaultExpression>4</DefaultExpression>
  12948. <Position>9</Position>
  12949. <StoredType>double|0s</StoredType>
  12950. </column>
  12951. <index id="2504" parent="370" name="PRIMARY">
  12952. <ColNames>id</ColNames>
  12953. <Type>btree</Type>
  12954. <Unique>1</Unique>
  12955. </index>
  12956. <key id="2505" parent="370" name="PRIMARY">
  12957. <NameSurrogate>1</NameSurrogate>
  12958. <Primary>1</Primary>
  12959. <UnderlyingIndexName>PRIMARY</UnderlyingIndexName>
  12960. </key>
  12961. </database-model>
  12962. </dataSource>