churen.sql 194 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701470247034704470547064707470847094710471147124713471447154716471747184719472047214722472347244725472647274728472947304731473247334734473547364737473847394740474147424743474447454746474747484749475047514752475347544755475647574758475947604761476247634764476547664767476847694770477147724773477447754776477747784779478047814782478347844785478647874788478947904791479247934794479547964797479847994800480148024803480448054806480748084809481048114812481348144815481648174818481948204821482248234824482548264827482848294830483148324833483448354836483748384839484048414842484348444845484648474848484948504851485248534854485548564857485848594860486148624863486448654866486748684869487048714872487348744875487648774878487948804881488248834884488548864887488848894890489148924893489448954896489748984899490049014902490349044905490649074908490949104911491249134914491549164917491849194920492149224923492449254926492749284929493049314932493349344935493649374938493949404941494249434944494549464947494849494950495149524953495449554956495749584959496049614962496349644965496649674968496949704971497249734974497549764977497849794980498149824983498449854986498749884989499049914992499349944995499649974998499950005001500250035004500550065007500850095010501150125013501450155016501750185019502050215022502350245025502650275028502950305031503250335034503550365037503850395040504150425043504450455046504750485049505050515052505350545055505650575058505950605061506250635064506550665067506850695070507150725073507450755076507750785079508050815082508350845085508650875088508950905091509250935094509550965097509850995100510151025103510451055106510751085109511051115112511351145115511651175118511951205121512251235124512551265127512851295130513151325133513451355136513751385139514051415142514351445145514651475148514951505151515251535154515551565157515851595160516151625163516451655166516751685169517051715172517351745175517651775178517951805181518251835184518551865187518851895190519151925193519451955196519751985199520052015202520352045205520652075208520952105211521252135214521552165217521852195220522152225223522452255226522752285229523052315232523352345235523652375238523952405241524252435244524552465247524852495250525152525253525452555256525752585259526052615262526352645265526652675268526952705271527252735274527552765277527852795280528152825283528452855286528752885289529052915292529352945295529652975298529953005301530253035304530553065307530853095310531153125313531453155316531753185319532053215322532353245325532653275328532953305331533253335334533553365337
  1. -- phpMyAdmin SQL Dump
  2. -- version 4.8.3
  3. -- https://www.phpmyadmin.net/
  4. --
  5. -- 主机: web-mysql
  6. -- 生成日期: 2022-01-08 12:23:01
  7. -- 服务器版本: 10.1.32-MariaDB
  8. -- PHP 版本: 7.3.22
  9. SET SQL_MODE = "NO_AUTO_VALUE_ON_ZERO";
  10. SET AUTOCOMMIT = 0;
  11. START TRANSACTION;
  12. SET time_zone = "+00:00";
  13. /*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */;
  14. /*!40101 SET @OLD_CHARACTER_SET_RESULTS=@@CHARACTER_SET_RESULTS */;
  15. /*!40101 SET @OLD_COLLATION_CONNECTION=@@COLLATION_CONNECTION */;
  16. /*!40101 SET NAMES utf8mb4 */;
  17. --
  18. -- 数据库: `churen`
  19. --
  20. CREATE DATABASE IF NOT EXISTS `churen` DEFAULT CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci;
  21. USE `churen`;
  22. -- --------------------------------------------------------
  23. --
  24. -- 表的结构 `churen_act_info`
  25. --
  26. DROP TABLE IF EXISTS `churen_act_info`;
  27. CREATE TABLE `churen_act_info` (
  28. `id` int(11) UNSIGNED NOT NULL COMMENT 'ID',
  29. `name` varchar(80) DEFAULT NULL COMMENT '标题-活动标题,同时也用于分享标题',
  30. `desc` varchar(500) DEFAULT NULL COMMENT '摘要-活动摘要,同时也用于分享内容',
  31. `cover` varchar(150) DEFAULT NULL COMMENT '封面图',
  32. `type` int(11) NOT NULL DEFAULT '1' COMMENT '活动类型',
  33. `content` text COMMENT '内容',
  34. `reorder` int(11) NOT NULL DEFAULT '1' COMMENT '排序-数值越大越靠前,相当于置顶',
  35. `state` tinyint(1) NOT NULL DEFAULT '1' COMMENT '状态',
  36. `cdate` int(11) NOT NULL DEFAULT '0' COMMENT '录入时间',
  37. `color` varchar(10) NOT NULL COMMENT '按钮颜色-请填写颜色代码,选填项',
  38. `bgcolor` varchar(10) NOT NULL COMMENT '背景颜色-请填写颜色代码,选填项',
  39. `back` varchar(150) NOT NULL COMMENT '背景图'
  40. ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4;
  41. -- --------------------------------------------------------
  42. --
  43. -- 表的结构 `churen_area_city`
  44. --
  45. DROP TABLE IF EXISTS `churen_area_city`;
  46. CREATE TABLE `churen_area_city` (
  47. `id` int(11) UNSIGNED NOT NULL COMMENT 'ID',
  48. `name` varchar(150) DEFAULT NULL COMMENT '城市名称',
  49. `pinyin` varchar(300) DEFAULT NULL COMMENT '拼音',
  50. `pinyin_first` varchar(30) DEFAULT NULL COMMENT '拼音首字母',
  51. `province_id` int(11) NOT NULL DEFAULT '0' COMMENT '省份',
  52. `reorder` int(11) NOT NULL DEFAULT '1' COMMENT '排序(数值越大越靠前)',
  53. `state` tinyint(1) NOT NULL DEFAULT '1' COMMENT '状态',
  54. `cdate` int(11) NOT NULL DEFAULT '0' COMMENT '录入时间'
  55. ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4;
  56. -- --------------------------------------------------------
  57. --
  58. -- 表的结构 `churen_area_county`
  59. --
  60. DROP TABLE IF EXISTS `churen_area_county`;
  61. CREATE TABLE `churen_area_county` (
  62. `id` int(11) UNSIGNED NOT NULL COMMENT 'ID',
  63. `name` varchar(150) DEFAULT NULL COMMENT '县区名称',
  64. `pinyin` varchar(300) DEFAULT NULL COMMENT '拼音',
  65. `pinyin_first` varchar(30) DEFAULT NULL COMMENT '拼音首字母',
  66. `city_id` int(11) NOT NULL DEFAULT '0' COMMENT '城市',
  67. `reorder` int(11) NOT NULL DEFAULT '1' COMMENT '排序(数值越大越靠前)',
  68. `state` tinyint(1) NOT NULL DEFAULT '1' COMMENT '状态',
  69. `cdate` int(11) NOT NULL DEFAULT '0' COMMENT '录入时间'
  70. ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4;
  71. -- --------------------------------------------------------
  72. --
  73. -- 表的结构 `churen_area_province`
  74. --
  75. DROP TABLE IF EXISTS `churen_area_province`;
  76. CREATE TABLE `churen_area_province` (
  77. `id` int(11) UNSIGNED NOT NULL COMMENT 'ID',
  78. `name` varchar(150) DEFAULT NULL COMMENT '省份名称',
  79. `pinyin` varchar(300) DEFAULT NULL COMMENT '拼音',
  80. `pinyin_first` varchar(30) DEFAULT NULL COMMENT '拼音首字母',
  81. `reorder` int(11) NOT NULL DEFAULT '1' COMMENT '排序(数值越大越靠前)',
  82. `state` tinyint(1) NOT NULL DEFAULT '1' COMMENT '状态',
  83. `cdate` int(11) NOT NULL DEFAULT '0' COMMENT '录入时间'
  84. ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4;
  85. -- --------------------------------------------------------
  86. --
  87. -- 表的结构 `churen_area_town`
  88. --
  89. DROP TABLE IF EXISTS `churen_area_town`;
  90. CREATE TABLE `churen_area_town` (
  91. `id` bigint(11) UNSIGNED NOT NULL COMMENT 'ID',
  92. `name` varchar(150) DEFAULT NULL COMMENT '街道名称',
  93. `pinyin` varchar(300) DEFAULT NULL COMMENT '拼音',
  94. `pinyin_first` varchar(30) DEFAULT NULL COMMENT '拼音首字母',
  95. `county_id` int(11) NOT NULL DEFAULT '0' COMMENT '县区',
  96. `reorder` int(11) NOT NULL DEFAULT '1' COMMENT '排序(数值越大越靠前)',
  97. `state` tinyint(1) NOT NULL DEFAULT '1' COMMENT '状态',
  98. `cdate` int(11) NOT NULL DEFAULT '0' COMMENT '录入时间'
  99. ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4;
  100. -- --------------------------------------------------------
  101. --
  102. -- 表的结构 `churen_area_village`
  103. --
  104. DROP TABLE IF EXISTS `churen_area_village`;
  105. CREATE TABLE `churen_area_village` (
  106. `id` bigint(11) UNSIGNED NOT NULL COMMENT 'ID',
  107. `name` varchar(150) DEFAULT NULL COMMENT '社区名称',
  108. `pinyin` varchar(300) DEFAULT NULL COMMENT '拼音',
  109. `pinyin_first` varchar(30) DEFAULT NULL COMMENT '拼音首字母',
  110. `code` int(11) NOT NULL DEFAULT '0' COMMENT '城乡分类代码',
  111. `town_id` int(11) NOT NULL DEFAULT '0' COMMENT '街道',
  112. `reorder` int(11) NOT NULL DEFAULT '1' COMMENT '排序(数值越大越靠前)',
  113. `state` tinyint(1) NOT NULL DEFAULT '1' COMMENT '状态',
  114. `cdate` int(11) NOT NULL DEFAULT '0' COMMENT '录入时间'
  115. ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4;
  116. -- --------------------------------------------------------
  117. --
  118. -- 表的结构 `churen_attr_cate`
  119. --
  120. DROP TABLE IF EXISTS `churen_attr_cate`;
  121. CREATE TABLE `churen_attr_cate` (
  122. `id` int(11) UNSIGNED NOT NULL COMMENT 'ID',
  123. `name` varchar(150) DEFAULT NULL COMMENT '类别名称',
  124. `reorder` int(11) NOT NULL DEFAULT '1' COMMENT '排序(数值越大越靠前)',
  125. `state` tinyint(1) NOT NULL DEFAULT '1' COMMENT '状态',
  126. `cdate` int(11) NOT NULL DEFAULT '0' COMMENT '录入时间'
  127. ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4;
  128. -- --------------------------------------------------------
  129. --
  130. -- 表的结构 `churen_attr_info`
  131. --
  132. DROP TABLE IF EXISTS `churen_attr_info`;
  133. CREATE TABLE `churen_attr_info` (
  134. `id` int(11) UNSIGNED NOT NULL COMMENT 'ID',
  135. `name` varchar(150) DEFAULT NULL COMMENT '名称',
  136. `cate_id` int(11) NOT NULL DEFAULT '1' COMMENT '属性类别',
  137. `is_must` tinyint(1) NOT NULL DEFAULT '1' COMMENT '是否必填',
  138. `is_sell` tinyint(1) NOT NULL DEFAULT '1' COMMENT '是否销售属性',
  139. `type` tinyint(11) NOT NULL DEFAULT '1' COMMENT '属性类型',
  140. `data_type` tinyint(1) NOT NULL DEFAULT '1' COMMENT '数据类型-选择类型之后会自动验证数据有效性',
  141. `match` varchar(600) DEFAULT NULL COMMENT '正则匹配规则-直接输入正则表达式即可',
  142. `list_reorder` int(11) NOT NULL DEFAULT '1' COMMENT '列表页排序-设置该属性在列表页中的排序,数字越大越靠前,如果为负数或者0,则不加入到列表页中。',
  143. `search_reorder` int(11) NOT NULL DEFAULT '1' COMMENT '搜索条件排序-设置搜索条件中的排序,数字越大越靠前,如果为负数或者0,则不加入到搜索条件中。',
  144. `view_reorder` int(11) NOT NULL DEFAULT '1' COMMENT '详情页排序-设置该属性在详情页中的排序,数字越大越靠前,如果为负数或者0,则不加入到详情页中。',
  145. `unit` varchar(150) DEFAULT NULL COMMENT '单位-填写属性单位,选填项',
  146. `ename` varchar(150) DEFAULT NULL COMMENT '英文标识-该标识一般为前端样式名称,选填项',
  147. `icon` varchar(150) DEFAULT NULL COMMENT '图标',
  148. `color` varchar(10) DEFAULT NULL COMMENT '字体颜色-请填写颜色代码',
  149. `bgcolor` varchar(10) DEFAULT NULL COMMENT '背景颜色-请填写颜色代码',
  150. `state` tinyint(1) NOT NULL DEFAULT '1' COMMENT '状态',
  151. `cdate` int(11) NOT NULL DEFAULT '0' COMMENT '录入时间',
  152. `sell_type` tinyint(1) NOT NULL DEFAULT '1' COMMENT '销售属性类型-组合类型将会生成不同的SKU组合价格,根据不同的SKU组合生成总价和库存;单选类型将生成单独的属性价格,将影响总价,可单独设置库存;输入类型一般为输入尺寸,需要单独设置影响总价的方式;具体价格都需要在商品中设置',
  153. `sell_compute` tinyint(1) NOT NULL DEFAULT '1' COMMENT '计算方式-如输入类型设置了宽度和高度,总价需要平米来计算,这里选择相乘即可',
  154. `sell_value` varchar(50) NOT NULL DEFAULT '0' COMMENT '价格起始值-同样是平米为例,这里输入10的话,就是大于10平米时开始加价,具体加价多少需要在商品中设置'
  155. ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4;
  156. -- --------------------------------------------------------
  157. --
  158. -- 表的结构 `churen_attr_search`
  159. --
  160. DROP TABLE IF EXISTS `churen_attr_search`;
  161. CREATE TABLE `churen_attr_search` (
  162. `id` int(11) UNSIGNED NOT NULL COMMENT 'ID',
  163. `info_id` int(11) NOT NULL DEFAULT '1' COMMENT '属性ID',
  164. `name` varchar(1000) DEFAULT NULL COMMENT '搜索名称-如设置为100万以下',
  165. `value` varchar(1000) DEFAULT NULL COMMENT '搜索值-可以设置为{V}<=100,{V}为当前值,如果是区间输入框,则{S}为区间最小值,{E}为区间最大值',
  166. `reorder` int(11) NOT NULL DEFAULT '1' COMMENT '排序(数值越大越靠前)',
  167. `state` tinyint(1) NOT NULL DEFAULT '1' COMMENT '状态',
  168. `cdate` int(11) NOT NULL DEFAULT '0' COMMENT '录入时间'
  169. ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4;
  170. -- --------------------------------------------------------
  171. --
  172. -- 表的结构 `churen_attr_value`
  173. --
  174. DROP TABLE IF EXISTS `churen_attr_value`;
  175. CREATE TABLE `churen_attr_value` (
  176. `id` int(11) UNSIGNED NOT NULL COMMENT 'ID',
  177. `info_id` int(11) NOT NULL DEFAULT '1' COMMENT '属性ID',
  178. `name` varchar(1000) DEFAULT NULL COMMENT '属性值名称-如绿色',
  179. `value` varchar(1000) DEFAULT NULL COMMENT '属性值-如#000000,可以为空',
  180. `icon` varchar(150) DEFAULT NULL COMMENT '图标',
  181. `reorder` int(11) NOT NULL DEFAULT '1' COMMENT '排序(数值越大越靠前)',
  182. `state` tinyint(1) NOT NULL DEFAULT '1' COMMENT '状态',
  183. `cdate` int(11) NOT NULL DEFAULT '0' COMMENT '录入时间'
  184. ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4;
  185. -- --------------------------------------------------------
  186. --
  187. -- 表的结构 `churen_card_add`
  188. --
  189. DROP TABLE IF EXISTS `churen_card_add`;
  190. CREATE TABLE `churen_card_add` (
  191. `id` int(11) UNSIGNED NOT NULL COMMENT '系统ID',
  192. `card_id` int(11) NOT NULL DEFAULT '0' COMMENT '礼品卡',
  193. `type` int(11) NOT NULL DEFAULT '1' COMMENT '生成方式',
  194. `num` varchar(32) DEFAULT NULL COMMENT '生成数量',
  195. `content` text COMMENT '填写卡号-多个换行隔开,如卡号重复将不会录入到库中',
  196. `cdate` int(11) NOT NULL DEFAULT '0' COMMENT '录入时间'
  197. ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4;
  198. -- --------------------------------------------------------
  199. --
  200. -- 表的结构 `churen_card_code`
  201. --
  202. DROP TABLE IF EXISTS `churen_card_code`;
  203. CREATE TABLE `churen_card_code` (
  204. `id` int(11) UNSIGNED NOT NULL COMMENT 'ID',
  205. `card_id` int(11) NOT NULL DEFAULT '0' COMMENT '礼品卡',
  206. `card` varchar(32) DEFAULT NULL COMMENT '卡号',
  207. `status` int(11) NOT NULL DEFAULT '1' COMMENT '使用状态',
  208. `total_cash` float NOT NULL DEFAULT '0' COMMENT '总面值',
  209. `use_cash` float NOT NULL DEFAULT '0' COMMENT '已用面值',
  210. `uid` int(11) NOT NULL DEFAULT '0' COMMENT '下单用户',
  211. `dh_uid` int(11) NOT NULL DEFAULT '0' COMMENT '兑换用户',
  212. `shop_id` int(11) NOT NULL DEFAULT '0' COMMENT '下单门店',
  213. `order_id` int(11) NOT NULL DEFAULT '0' COMMENT '订单表ID',
  214. `order_card_id` int(11) NOT NULL DEFAULT '0' COMMENT '订单表ID',
  215. `bdate` int(11) NOT NULL DEFAULT '0' COMMENT '绑定时间',
  216. `ddate` int(11) NOT NULL DEFAULT '0' COMMENT '兑换时间',
  217. `state` tinyint(1) NOT NULL DEFAULT '1' COMMENT '状态',
  218. `cdate` int(11) NOT NULL DEFAULT '0' COMMENT '生成时间',
  219. `city` int(11) NOT NULL COMMENT '城市'
  220. ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4;
  221. -- --------------------------------------------------------
  222. --
  223. -- 表的结构 `churen_card_info`
  224. --
  225. DROP TABLE IF EXISTS `churen_card_info`;
  226. CREATE TABLE `churen_card_info` (
  227. `id` int(11) UNSIGNED NOT NULL COMMENT 'ID',
  228. `name` varchar(80) DEFAULT NULL COMMENT '礼品卡名称',
  229. `type_id` int(11) NOT NULL DEFAULT '1' COMMENT '礼品卡类型',
  230. `value` int(11) NOT NULL DEFAULT '100' COMMENT '面值',
  231. `price` varchar(80) DEFAULT NULL COMMENT '售价',
  232. `card_type` int(11) NOT NULL DEFAULT '3' COMMENT '卡号生成规则',
  233. `card_prefix` varchar(80) DEFAULT NULL COMMENT '卡号前缀-前缀不占用卡号长度的位数,如卡号长度填写14,卡号前缀为Q,则生成卡号前缀+14位随机数',
  234. `card_len` int(11) NOT NULL DEFAULT '14' COMMENT '卡号长度',
  235. `status` int(11) NOT NULL DEFAULT '1' COMMENT '状态',
  236. `reorder` int(11) NOT NULL DEFAULT '1' COMMENT '排序-数值越大越靠前',
  237. `state` tinyint(1) NOT NULL DEFAULT '1' COMMENT '状态',
  238. `cdate` int(11) NOT NULL DEFAULT '0' COMMENT '录入时间'
  239. ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4;
  240. -- --------------------------------------------------------
  241. --
  242. -- 表的结构 `churen_card_order`
  243. --
  244. DROP TABLE IF EXISTS `churen_card_order`;
  245. CREATE TABLE `churen_card_order` (
  246. `id` int(11) UNSIGNED NOT NULL COMMENT 'ID',
  247. `uid` int(11) NOT NULL DEFAULT '0' COMMENT '购买人名称',
  248. `mobile` varchar(300) DEFAULT NULL COMMENT '下单手机号',
  249. `shop_id` int(11) NOT NULL DEFAULT '0' COMMENT '兑换门店',
  250. `address_id` int(11) NOT NULL DEFAULT '0' COMMENT '送货地址',
  251. `order_num` varchar(100) DEFAULT NULL COMMENT '订单号',
  252. `oprice` varchar(50) DEFAULT NULL COMMENT '原价',
  253. `price` varchar(50) DEFAULT NULL COMMENT '支付金额',
  254. `num` int(11) NOT NULL DEFAULT '0' COMMENT '购买数量',
  255. `status` int(11) NOT NULL DEFAULT '1' COMMENT '状态',
  256. `fdate` int(11) NOT NULL DEFAULT '0' COMMENT '完成时间',
  257. `operdate` int(11) NOT NULL DEFAULT '0' COMMENT '操作时间',
  258. `state` tinyint(1) NOT NULL DEFAULT '1' COMMENT '状态',
  259. `cdate` int(11) NOT NULL DEFAULT '0' COMMENT '生成时间'
  260. ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4;
  261. -- --------------------------------------------------------
  262. --
  263. -- 表的结构 `churen_card_order_card`
  264. --
  265. DROP TABLE IF EXISTS `churen_card_order_card`;
  266. CREATE TABLE `churen_card_order_card` (
  267. `id` int(11) UNSIGNED NOT NULL COMMENT 'ID',
  268. `order_id` int(11) NOT NULL DEFAULT '0' COMMENT '订单表ID',
  269. `uid` int(11) NOT NULL DEFAULT '0' COMMENT '购买人名称',
  270. `card_id` int(11) NOT NULL DEFAULT '0' COMMENT '礼品卡名称',
  271. `city` int(11) NOT NULL DEFAULT '0' COMMENT '城市',
  272. `price` varchar(50) DEFAULT NULL COMMENT '单价',
  273. `num` int(11) NOT NULL DEFAULT '0' COMMENT '购买数量',
  274. `cards` varchar(2000) DEFAULT NULL COMMENT '卡号',
  275. `status` int(11) NOT NULL DEFAULT '1' COMMENT '状态',
  276. `state` tinyint(1) NOT NULL DEFAULT '1' COMMENT '状态',
  277. `cdate` int(11) NOT NULL DEFAULT '0' COMMENT '创建时间'
  278. ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4;
  279. -- --------------------------------------------------------
  280. --
  281. -- 表的结构 `churen_card_order_ps`
  282. --
  283. DROP TABLE IF EXISTS `churen_card_order_ps`;
  284. CREATE TABLE `churen_card_order_ps` (
  285. `id` int(11) UNSIGNED NOT NULL COMMENT 'ID',
  286. `order_id` int(11) NOT NULL DEFAULT '0' COMMENT '订单表ID',
  287. `service_id` int(11) NOT NULL DEFAULT '-1' COMMENT '配送服务商',
  288. `order_num` varchar(800) DEFAULT NULL COMMENT '快递单号-多个用换行隔开',
  289. `num` int(11) NOT NULL DEFAULT '0' COMMENT '包裹数量',
  290. `price` varchar(50) DEFAULT NULL COMMENT '快递费用',
  291. `status` int(11) NOT NULL DEFAULT '1' COMMENT '状态',
  292. `qu_date` int(11) NOT NULL DEFAULT '0' COMMENT '取件时间',
  293. `qs_date` int(11) NOT NULL DEFAULT '0' COMMENT '签收时间',
  294. `state` tinyint(1) NOT NULL DEFAULT '1' COMMENT '状态',
  295. `cdate` int(11) NOT NULL DEFAULT '0' COMMENT '创建时间'
  296. ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4;
  297. -- --------------------------------------------------------
  298. --
  299. -- 表的结构 `churen_card_type`
  300. --
  301. DROP TABLE IF EXISTS `churen_card_type`;
  302. CREATE TABLE `churen_card_type` (
  303. `id` int(11) UNSIGNED NOT NULL COMMENT 'ID',
  304. `name` varchar(200) DEFAULT NULL COMMENT '类型名称',
  305. `desc` varchar(800) DEFAULT NULL COMMENT '类型描述',
  306. `type` int(11) NOT NULL DEFAULT '1' COMMENT '购买方式',
  307. `shop_type` varchar(200) DEFAULT NULL COMMENT '可用门店类型',
  308. `city_type` int(11) NOT NULL DEFAULT '1' COMMENT '可用范围',
  309. `city` varchar(2000) DEFAULT NULL COMMENT '选择城市',
  310. `cover` varchar(150) DEFAULT NULL COMMENT '封面图',
  311. `content` text COMMENT '购买使用须知',
  312. `reorder` int(11) NOT NULL DEFAULT '1' COMMENT '排序-数值越大越靠前,相当于置顶',
  313. `state` tinyint(1) NOT NULL DEFAULT '1' COMMENT '状态',
  314. `cdate` int(11) NOT NULL DEFAULT '0' COMMENT '创建时间',
  315. `icon` varchar(150) NOT NULL COMMENT '图标',
  316. `bgpic` varchar(150) NOT NULL COMMENT '背景图'
  317. ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4;
  318. -- --------------------------------------------------------
  319. --
  320. -- 表的结构 `churen_cash_factory`
  321. --
  322. DROP TABLE IF EXISTS `churen_cash_factory`;
  323. CREATE TABLE `churen_cash_factory` (
  324. `id` int(11) UNSIGNED NOT NULL COMMENT 'ID',
  325. `type` tinyint(1) NOT NULL DEFAULT '1' COMMENT '对账单类型',
  326. `day` int(11) NOT NULL DEFAULT '0' COMMENT '对账单时间',
  327. `factory_id` int(11) NOT NULL DEFAULT '0' COMMENT '对账工厂',
  328. `start` int(11) NOT NULL DEFAULT '0' COMMENT '对账单开始时间',
  329. `end` int(11) NOT NULL DEFAULT '0' COMMENT '对账单结束时间',
  330. `cash` varchar(100) DEFAULT NULL COMMENT '对账金额',
  331. `num` varchar(100) DEFAULT NULL COMMENT '对账数量',
  332. `factory_status` int(11) NOT NULL DEFAULT '1' COMMENT '工厂对账状态',
  333. `status` int(11) NOT NULL DEFAULT '1' COMMENT '平台对账状态',
  334. `state` tinyint(1) NOT NULL DEFAULT '1' COMMENT '状态',
  335. `cdate` int(11) NOT NULL DEFAULT '0' COMMENT '生成时间'
  336. ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4;
  337. -- --------------------------------------------------------
  338. --
  339. -- 表的结构 `churen_cash_order`
  340. --
  341. DROP TABLE IF EXISTS `churen_cash_order`;
  342. CREATE TABLE `churen_cash_order` (
  343. `id` int(11) UNSIGNED NOT NULL COMMENT 'ID',
  344. `order_num` varchar(100) DEFAULT NULL COMMENT '结算单号',
  345. `type` int(11) NOT NULL DEFAULT '0' COMMENT '采购人类型',
  346. `type_id` int(11) NOT NULL DEFAULT '0' COMMENT '结算门店',
  347. `source_type` int(11) NOT NULL DEFAULT '0' COMMENT '供货商类型',
  348. `source_id` int(11) NOT NULL DEFAULT '0' COMMENT '结算门店',
  349. `source_order_id` int(11) NOT NULL DEFAULT '0' COMMENT '订货单ID',
  350. `source_order_num` varchar(100) DEFAULT NULL COMMENT '订货单编号',
  351. `refund_id` int(11) NOT NULL DEFAULT '-1' COMMENT '退款ID',
  352. `num` int(11) NOT NULL DEFAULT '0' COMMENT '数量',
  353. `cash` varchar(50) DEFAULT NULL COMMENT '结算金额',
  354. `p_cash` varchar(50) DEFAULT NULL COMMENT '结算金额',
  355. `jstype` tinyint(1) NOT NULL DEFAULT '1' COMMENT '结算类型',
  356. `status` tinyint(1) NOT NULL DEFAULT '1' COMMENT '入账状态',
  357. `audit` tinyint(1) NOT NULL DEFAULT '1' COMMENT '审核状态',
  358. `audit_type` tinyint(1) NOT NULL DEFAULT '1' COMMENT '审核类型',
  359. `fdate` int(11) NOT NULL DEFAULT '0' COMMENT '完成时间',
  360. `operdate` int(11) NOT NULL DEFAULT '0' COMMENT '结算时间',
  361. `desc` varchar(500) DEFAULT NULL COMMENT '未通过原因',
  362. `state` tinyint(1) NOT NULL DEFAULT '1' COMMENT '状态',
  363. `cdate` int(11) NOT NULL DEFAULT '0' COMMENT '生成时间'
  364. ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4;
  365. -- --------------------------------------------------------
  366. --
  367. -- 表的结构 `churen_cash_shop`
  368. --
  369. DROP TABLE IF EXISTS `churen_cash_shop`;
  370. CREATE TABLE `churen_cash_shop` (
  371. `id` int(11) UNSIGNED NOT NULL COMMENT 'ID',
  372. `type` tinyint(1) NOT NULL DEFAULT '1' COMMENT '对账单类型',
  373. `day` int(11) NOT NULL DEFAULT '0' COMMENT '对账单时间',
  374. `shop_id` int(11) NOT NULL DEFAULT '0' COMMENT '对账门店',
  375. `start` int(11) NOT NULL DEFAULT '0' COMMENT '对账单开始时间',
  376. `end` int(11) NOT NULL DEFAULT '0' COMMENT '对账单结束时间',
  377. `cash` varchar(100) DEFAULT NULL COMMENT '对账金额',
  378. `num` varchar(100) DEFAULT NULL COMMENT '对账数量',
  379. `shop_status` int(11) NOT NULL DEFAULT '1' COMMENT '门店对账状态',
  380. `status` int(11) NOT NULL DEFAULT '1' COMMENT '平台对账状态',
  381. `state` tinyint(1) NOT NULL DEFAULT '1' COMMENT '状态',
  382. `cdate` int(11) NOT NULL DEFAULT '0' COMMENT '生成时间'
  383. ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4;
  384. -- --------------------------------------------------------
  385. --
  386. -- 表的结构 `churen_cash_store`
  387. --
  388. DROP TABLE IF EXISTS `churen_cash_store`;
  389. CREATE TABLE `churen_cash_store` (
  390. `id` int(11) UNSIGNED NOT NULL COMMENT 'ID',
  391. `type` tinyint(1) NOT NULL DEFAULT '1' COMMENT '对账单类型',
  392. `day` int(11) NOT NULL DEFAULT '0' COMMENT '对账单时间',
  393. `store_id` int(11) NOT NULL DEFAULT '0' COMMENT '对账仓库',
  394. `start` int(11) NOT NULL DEFAULT '0' COMMENT '对账单开始时间',
  395. `end` int(11) NOT NULL DEFAULT '0' COMMENT '对账单结束时间',
  396. `cash` varchar(100) DEFAULT NULL COMMENT '对账金额',
  397. `num` varchar(100) DEFAULT NULL COMMENT '对账数量',
  398. `store_status` int(11) NOT NULL DEFAULT '1' COMMENT '仓库对账状态',
  399. `status` int(11) NOT NULL DEFAULT '1' COMMENT '平台对账状态',
  400. `state` tinyint(1) NOT NULL DEFAULT '1' COMMENT '状态',
  401. `cdate` int(11) NOT NULL DEFAULT '0' COMMENT '生成时间'
  402. ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4;
  403. -- --------------------------------------------------------
  404. --
  405. -- 表的结构 `churen_category_attr`
  406. --
  407. DROP TABLE IF EXISTS `churen_category_attr`;
  408. CREATE TABLE `churen_category_attr` (
  409. `id` int(11) UNSIGNED NOT NULL COMMENT 'ID',
  410. `category` varchar(500) DEFAULT NULL COMMENT '分类',
  411. `attr` varchar(800) DEFAULT NULL COMMENT '属性设置',
  412. `attr_input` text COMMENT '属性值设置',
  413. `state` tinyint(1) NOT NULL DEFAULT '1' COMMENT '状态',
  414. `cdate` int(11) NOT NULL DEFAULT '0' COMMENT '录入时间'
  415. ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4;
  416. -- --------------------------------------------------------
  417. --
  418. -- 表的结构 `churen_category_info`
  419. --
  420. DROP TABLE IF EXISTS `churen_category_info`;
  421. CREATE TABLE `churen_category_info` (
  422. `id` int(11) UNSIGNED NOT NULL COMMENT 'ID',
  423. `name` varchar(150) DEFAULT NULL COMMENT '分类名称',
  424. `key` varchar(150) DEFAULT NULL COMMENT '分类标识-请输入英文,分类标识为唯一项,用来区分前端展示,选填项',
  425. `info` varchar(800) DEFAULT NULL COMMENT '上级分类',
  426. `project_id` int(11) NOT NULL DEFAULT '1' COMMENT '所属项目',
  427. `icon` varchar(150) DEFAULT NULL COMMENT '图标',
  428. `color` varchar(10) DEFAULT NULL COMMENT '字体颜色-请填写颜色代码',
  429. `bgcolor` varchar(10) DEFAULT NULL COMMENT '背景颜色-请填写颜色代码',
  430. `info_id` int(11) NOT NULL DEFAULT '-1' COMMENT '上级分类',
  431. `top_id` int(11) NOT NULL DEFAULT '-1' COMMENT '顶级分类',
  432. `level` int(11) NOT NULL DEFAULT '1' COMMENT '分类级别-1为顶级分类、2为2级分类,-1为最后一级分类',
  433. `status` tinyint(1) NOT NULL DEFAULT '1' COMMENT '是否启用',
  434. `reorder` int(11) NOT NULL DEFAULT '1' COMMENT '排序(数值越大越靠前)',
  435. `state` tinyint(1) NOT NULL DEFAULT '1' COMMENT '状态',
  436. `cdate` int(11) NOT NULL DEFAULT '0' COMMENT '录入时间'
  437. ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4;
  438. -- --------------------------------------------------------
  439. --
  440. -- 表的结构 `churen_category_project`
  441. --
  442. DROP TABLE IF EXISTS `churen_category_project`;
  443. CREATE TABLE `churen_category_project` (
  444. `id` int(11) UNSIGNED NOT NULL COMMENT 'ID',
  445. `name` varchar(150) DEFAULT NULL COMMENT '项目名称',
  446. `reorder` int(11) NOT NULL DEFAULT '1' COMMENT '排序(数值越大越靠前)',
  447. `state` tinyint(1) NOT NULL DEFAULT '1' COMMENT '状态',
  448. `cdate` int(11) NOT NULL DEFAULT '0' COMMENT '录入时间'
  449. ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4;
  450. -- --------------------------------------------------------
  451. --
  452. -- 表的结构 `churen_content_feature`
  453. --
  454. DROP TABLE IF EXISTS `churen_content_feature`;
  455. CREATE TABLE `churen_content_feature` (
  456. `id` int(11) UNSIGNED NOT NULL COMMENT 'ID',
  457. `name` varchar(80) DEFAULT NULL COMMENT '标题-专题标题,同时也用于分享标题',
  458. `desc` varchar(500) DEFAULT NULL COMMENT '摘要-专题摘要,同时也用于分享内容',
  459. `cover` varchar(150) DEFAULT NULL COMMENT '封面图',
  460. `content` text COMMENT '内容',
  461. `reorder` int(11) NOT NULL DEFAULT '1' COMMENT '排序-数值越大越靠前,相当于置顶',
  462. `state` tinyint(1) NOT NULL DEFAULT '1' COMMENT '状态',
  463. `cdate` int(11) NOT NULL DEFAULT '0' COMMENT '录入时间'
  464. ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4;
  465. -- --------------------------------------------------------
  466. --
  467. -- 表的结构 `churen_content_news`
  468. --
  469. DROP TABLE IF EXISTS `churen_content_news`;
  470. CREATE TABLE `churen_content_news` (
  471. `id` int(11) UNSIGNED NOT NULL COMMENT 'ID',
  472. `name` varchar(80) DEFAULT NULL COMMENT '标题-文章标题,同时也用于分享标题',
  473. `desc` varchar(500) DEFAULT NULL COMMENT '摘要-文章摘要,同时也用于分享内容',
  474. `cover` varchar(150) DEFAULT NULL COMMENT '封面图',
  475. `content` text COMMENT '内容',
  476. `reorder` int(11) NOT NULL DEFAULT '1' COMMENT '排序-数值越大越靠前,相当于置顶',
  477. `state` tinyint(1) NOT NULL DEFAULT '1' COMMENT '状态',
  478. `cdate` int(11) NOT NULL DEFAULT '0' COMMENT '录入时间'
  479. ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4;
  480. -- --------------------------------------------------------
  481. --
  482. -- 表的结构 `churen_factory_goods`
  483. --
  484. DROP TABLE IF EXISTS `churen_factory_goods`;
  485. CREATE TABLE `churen_factory_goods` (
  486. `id` int(11) UNSIGNED NOT NULL COMMENT 'ID',
  487. `factory_id` int(11) NOT NULL DEFAULT '0' COMMENT '所属工厂',
  488. `goods_id` int(11) NOT NULL DEFAULT '0' COMMENT '商品名称',
  489. `category_id` int(11) NOT NULL DEFAULT '0' COMMENT '分类ID',
  490. `p_price` varchar(100) NOT NULL DEFAULT '0' COMMENT '出厂价',
  491. `state` tinyint(1) NOT NULL DEFAULT '1' COMMENT '状态',
  492. `cdate` int(11) NOT NULL DEFAULT '0' COMMENT '创建时间',
  493. `price_type` int(11) NOT NULL DEFAULT '0' COMMENT '价格类型',
  494. `sell_num` int(11) NOT NULL DEFAULT '0' COMMENT '销量',
  495. `status` tinyint(1) NOT NULL DEFAULT '2' COMMENT '状态'
  496. ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4;
  497. -- --------------------------------------------------------
  498. --
  499. -- 表的结构 `churen_factory_goods_sku`
  500. --
  501. DROP TABLE IF EXISTS `churen_factory_goods_sku`;
  502. CREATE TABLE `churen_factory_goods_sku` (
  503. `id` int(11) UNSIGNED NOT NULL COMMENT 'ID',
  504. `factory_id` int(11) NOT NULL DEFAULT '0' COMMENT '所属工厂',
  505. `goods_id` int(11) NOT NULL DEFAULT '0' COMMENT '商品名称',
  506. `sku_id` int(11) NOT NULL DEFAULT '0' COMMENT '商品SKU',
  507. `p_price` varchar(100) NOT NULL DEFAULT '0' COMMENT '出厂价',
  508. `reorder` int(11) NOT NULL DEFAULT '1' COMMENT '排序-数值越大越靠前,相当于置顶',
  509. `state` tinyint(1) NOT NULL DEFAULT '1' COMMENT '数据状态',
  510. `cdate` int(11) NOT NULL DEFAULT '0' COMMENT '发布时间',
  511. `sell_num` int(11) NOT NULL DEFAULT '0' COMMENT '销量'
  512. ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4;
  513. -- --------------------------------------------------------
  514. --
  515. -- 表的结构 `churen_factory_info`
  516. --
  517. DROP TABLE IF EXISTS `churen_factory_info`;
  518. CREATE TABLE `churen_factory_info` (
  519. `id` int(11) UNSIGNED NOT NULL COMMENT 'ID',
  520. `uid` int(11) NOT NULL DEFAULT '0' COMMENT '用户名',
  521. `name` varchar(32) DEFAULT NULL COMMENT '工厂名称',
  522. `truename` varchar(100) DEFAULT NULL COMMENT '联系人姓名',
  523. `mobile` bigint(11) NOT NULL DEFAULT '0' COMMENT '联系人电话',
  524. `area` varchar(500) DEFAULT NULL COMMENT '所在城市',
  525. `province` int(11) NOT NULL DEFAULT '0' COMMENT '省份',
  526. `city` int(11) NOT NULL DEFAULT '0' COMMENT '城市',
  527. `map` varchar(300) DEFAULT NULL COMMENT '地理位置',
  528. `lng` varchar(100) DEFAULT NULL COMMENT '经度',
  529. `lat` varchar(100) DEFAULT NULL COMMENT '纬度',
  530. `address` varchar(1000) DEFAULT NULL COMMENT '工厂地址',
  531. `goods` text COMMENT '请先选择分类-选择分类,之后选择分类下的商品,点击商品名称可以设置出厂价',
  532. `license` varchar(150) DEFAULT NULL COMMENT '营业执照',
  533. `license_number` varchar(200) DEFAULT NULL COMMENT '营业执照号码',
  534. `company_name` varchar(200) DEFAULT NULL COMMENT '公司名称',
  535. `idcard_front` varchar(150) DEFAULT NULL COMMENT '身份证正面',
  536. `idcard_back` varchar(150) DEFAULT NULL COMMENT '身份证背面',
  537. `kh_license` varchar(150) DEFAULT NULL COMMENT '开户许可证',
  538. `status` int(11) NOT NULL DEFAULT '1' COMMENT '认证状态',
  539. `reorder` int(11) NOT NULL DEFAULT '1' COMMENT '排序(数值越大越靠前)',
  540. `state` tinyint(1) NOT NULL DEFAULT '1' COMMENT '状态',
  541. `cdate` int(11) NOT NULL DEFAULT '0' COMMENT '录入时间',
  542. `stat_type` int(11) NOT NULL DEFAULT '1' COMMENT '对账周期-可以选择按月还是按周生成对账单',
  543. `stat_day` int(11) NOT NULL DEFAULT '10' COMMENT '对账单生成日期-这里直接填写对账周期内的第几天即可,如按月对账,这里填写10,就是本月10号生成上一个月的对账单,如按周对账,这里填写2,就是本周二生成上一周的对账单'
  544. ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4;
  545. -- --------------------------------------------------------
  546. --
  547. -- 表的结构 `churen_factory_member`
  548. --
  549. DROP TABLE IF EXISTS `churen_factory_member`;
  550. CREATE TABLE `churen_factory_member` (
  551. `id` int(11) UNSIGNED NOT NULL COMMENT 'ID',
  552. `uid` int(11) NOT NULL DEFAULT '0' COMMENT '用户名',
  553. `factory_id` int(11) NOT NULL DEFAULT '0' COMMENT '所属工厂',
  554. `role_id` varchar(60) DEFAULT NULL COMMENT '角色',
  555. `name` varchar(32) DEFAULT NULL COMMENT '员工姓名',
  556. `mobile` bigint(11) NOT NULL DEFAULT '0' COMMENT '员工手机号',
  557. `avatar` varchar(150) DEFAULT NULL COMMENT '头像',
  558. `state` tinyint(1) NOT NULL DEFAULT '1' COMMENT '状态',
  559. `cdate` int(11) NOT NULL DEFAULT '0' COMMENT '创建时间'
  560. ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4;
  561. -- --------------------------------------------------------
  562. --
  563. -- 表的结构 `churen_factory_order`
  564. --
  565. DROP TABLE IF EXISTS `churen_factory_order`;
  566. CREATE TABLE `churen_factory_order` (
  567. `id` int(11) UNSIGNED NOT NULL COMMENT 'ID',
  568. `factory_id` int(11) NOT NULL DEFAULT '0' COMMENT '所属工厂',
  569. `store_id` int(11) NOT NULL DEFAULT '-1' COMMENT '所属仓库',
  570. `store_order_id` int(11) NOT NULL DEFAULT '0' COMMENT '仓库订单ID',
  571. `shop_id` int(11) NOT NULL DEFAULT '0' COMMENT '所属门店',
  572. `shop_order_id` int(11) NOT NULL DEFAULT '0' COMMENT '门店订单ID',
  573. `name` varchar(80) DEFAULT NULL COMMENT '订单名称',
  574. `order_num` varchar(100) DEFAULT NULL COMMENT '订单编号',
  575. `price` varchar(50) DEFAULT NULL COMMENT '购买价格',
  576. `num` int(11) NOT NULL DEFAULT '0' COMMENT '购买数量',
  577. `pay_id` varchar(100) DEFAULT NULL COMMENT '支付订单ID',
  578. `pay_status` tinyint(1) NOT NULL DEFAULT '1' COMMENT '支付状态',
  579. `pay_price` varchar(50) DEFAULT NULL COMMENT '付款金额',
  580. `info` varchar(300) DEFAULT NULL COMMENT '订单备注',
  581. `note` tinyint(1) NOT NULL DEFAULT '1' COMMENT '是否发送状态提醒-1未发送,2已发送',
  582. `notice` int(11) NOT NULL DEFAULT '0' COMMENT '模板消息提醒次数',
  583. `tk_pic` varchar(150) DEFAULT NULL COMMENT '退款截图',
  584. `tk_time` int(11) NOT NULL DEFAULT '0' COMMENT '退款时间',
  585. `tk_admin` int(11) NOT NULL DEFAULT '1' COMMENT '退款审核人',
  586. `tk_desc` varchar(300) DEFAULT NULL COMMENT '退款备注',
  587. `state` tinyint(1) NOT NULL DEFAULT '1' COMMENT '状态',
  588. `cdate` int(11) NOT NULL DEFAULT '0' COMMENT '下单时间'
  589. ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4;
  590. -- --------------------------------------------------------
  591. --
  592. -- 表的结构 `churen_goods_add_card`
  593. --
  594. DROP TABLE IF EXISTS `churen_goods_add_card`;
  595. CREATE TABLE `churen_goods_add_card` (
  596. `id` int(11) UNSIGNED NOT NULL COMMENT '系统ID',
  597. `card_id` int(11) NOT NULL DEFAULT '0' COMMENT '礼品卡',
  598. `num` varchar(32) DEFAULT NULL COMMENT '兑换码数量',
  599. `cdate` int(11) NOT NULL DEFAULT '0' COMMENT '录入时间'
  600. ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4;
  601. -- --------------------------------------------------------
  602. --
  603. -- 表的结构 `churen_goods_card`
  604. --
  605. DROP TABLE IF EXISTS `churen_goods_card`;
  606. CREATE TABLE `churen_goods_card` (
  607. `id` int(11) UNSIGNED NOT NULL COMMENT 'ID',
  608. `name` varchar(80) DEFAULT NULL COMMENT '礼品卡名称',
  609. `type` int(11) NOT NULL DEFAULT '1' COMMENT '礼品卡类型',
  610. `day` int(11) NOT NULL DEFAULT '7' COMMENT '有效天数',
  611. `method` int(11) NOT NULL DEFAULT '3' COMMENT '领取方式',
  612. `goods` text COMMENT '商品配置',
  613. `status` int(11) NOT NULL DEFAULT '1' COMMENT '状态',
  614. `state` tinyint(1) NOT NULL DEFAULT '1' COMMENT '状态',
  615. `cdate` int(11) NOT NULL DEFAULT '0' COMMENT '录入时间',
  616. `card_type` int(11) NOT NULL DEFAULT '3' COMMENT '卡号生成规则',
  617. `card_prefix` varchar(80) NOT NULL COMMENT '卡号前缀-前缀不占用卡号长度的位数,如卡号长度填写14,卡号前缀为Q,则生成卡号前缀+14位随机数',
  618. `card_len` int(11) NOT NULL DEFAULT '14' COMMENT '卡号长度',
  619. `pwd_type` int(11) NOT NULL DEFAULT '3' COMMENT '密码生成规则',
  620. `pwd_prefix` varchar(80) NOT NULL COMMENT '密码前缀',
  621. `pwd_len` int(11) NOT NULL DEFAULT '8' COMMENT '密码长度'
  622. ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4;
  623. -- --------------------------------------------------------
  624. --
  625. -- 表的结构 `churen_goods_card_code`
  626. --
  627. DROP TABLE IF EXISTS `churen_goods_card_code`;
  628. CREATE TABLE `churen_goods_card_code` (
  629. `id` int(11) UNSIGNED NOT NULL COMMENT 'ID',
  630. `card_id` int(11) NOT NULL DEFAULT '0' COMMENT '礼品卡',
  631. `card` varchar(32) DEFAULT NULL COMMENT '卡号',
  632. `pwd` varchar(32) DEFAULT NULL COMMENT '密码',
  633. `status` int(11) NOT NULL DEFAULT '1' COMMENT '使用状态',
  634. `uid` int(11) NOT NULL DEFAULT '0' COMMENT '用户信息',
  635. `shop_id` int(11) NOT NULL DEFAULT '0' COMMENT '兑换门店',
  636. `order_id` int(11) NOT NULL DEFAULT '0' COMMENT '订单表ID',
  637. `ddate` int(11) NOT NULL DEFAULT '0' COMMENT '兑换时间',
  638. `edate` int(11) NOT NULL DEFAULT '0' COMMENT '失效时间',
  639. `state` tinyint(1) NOT NULL DEFAULT '1' COMMENT '状态',
  640. `cdate` int(11) NOT NULL DEFAULT '0' COMMENT '生成时间'
  641. ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4;
  642. -- --------------------------------------------------------
  643. --
  644. -- 表的结构 `churen_goods_column`
  645. --
  646. DROP TABLE IF EXISTS `churen_goods_column`;
  647. CREATE TABLE `churen_goods_column` (
  648. `id` int(11) UNSIGNED NOT NULL COMMENT 'ID',
  649. `name` varchar(150) DEFAULT NULL COMMENT '栏目名称',
  650. `reorder` int(11) NOT NULL DEFAULT '1' COMMENT '排序(数值越大越靠前)',
  651. `state` tinyint(1) NOT NULL DEFAULT '1' COMMENT '状态',
  652. `cdate` int(11) NOT NULL DEFAULT '0' COMMENT '录入时间'
  653. ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4;
  654. -- --------------------------------------------------------
  655. --
  656. -- 表的结构 `churen_goods_coupon`
  657. --
  658. DROP TABLE IF EXISTS `churen_goods_coupon`;
  659. CREATE TABLE `churen_goods_coupon` (
  660. `id` int(11) UNSIGNED NOT NULL COMMENT 'ID',
  661. `name` varchar(80) DEFAULT NULL COMMENT '优惠券名称',
  662. `type` int(11) NOT NULL DEFAULT '1' COMMENT '优惠券类型',
  663. `method` int(11) NOT NULL DEFAULT '1' COMMENT '优惠券属性',
  664. `total_cash` varchar(100) DEFAULT NULL COMMENT '满减金额-如满100减50,这里填写100',
  665. `cash` varchar(100) DEFAULT NULL COMMENT '抵扣金额',
  666. `status` int(11) NOT NULL DEFAULT '1' COMMENT '状态',
  667. `content` text COMMENT '使用规则',
  668. `state` tinyint(1) NOT NULL DEFAULT '1' COMMENT '状态',
  669. `cdate` int(11) NOT NULL DEFAULT '0' COMMENT '录入时间'
  670. ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4;
  671. -- --------------------------------------------------------
  672. --
  673. -- 表的结构 `churen_goods_info`
  674. --
  675. DROP TABLE IF EXISTS `churen_goods_info`;
  676. CREATE TABLE `churen_goods_info` (
  677. `id` int(11) UNSIGNED NOT NULL COMMENT 'ID',
  678. `name` varchar(800) DEFAULT NULL COMMENT '商品名称',
  679. `category` varchar(500) DEFAULT NULL COMMENT '分类',
  680. `top_category_id` int(11) NOT NULL DEFAULT '-1' COMMENT '顶级分类ID-顶级分类,用于分类查询',
  681. `second_category_id` int(11) NOT NULL DEFAULT '-1' COMMENT '二级分类ID-二级分类,用于分类查询',
  682. `category_id` int(11) NOT NULL DEFAULT '-1' COMMENT '子分类ID-最后一个级别的分类,用于分类查询',
  683. `area` int(11) NOT NULL DEFAULT '0' COMMENT '所在地区',
  684. `mode` int(11) NOT NULL DEFAULT '1' COMMENT '取货形式',
  685. `price_type` int(11) NOT NULL DEFAULT '1' COMMENT '价格类型',
  686. `price` varchar(100) NOT NULL DEFAULT '0' COMMENT '销售价',
  687. `s_price` varchar(100) NOT NULL DEFAULT '0' COMMENT '市场价',
  688. `f_price` varchar(100) NOT NULL DEFAULT '0' COMMENT '采购价',
  689. `cover` varchar(150) DEFAULT NULL COMMENT '封面图-图片尺寸300*300PX或等比尺寸,上传大小不能超过2M,支持JPG、PNG、GIF格式,建议上传JPG格式,用户上传图片之后会自动进行居中裁剪',
  690. `video` varchar(800) DEFAULT NULL COMMENT '视频-视频格式MP4,上传大小不能超过4G',
  691. `pic` text COMMENT '多张图片-图片尺寸750*422PX或等比尺寸,上传大小不能超过2M,支持JPG、PNG、GIF格式,建议上传JPG格式,用户上传图片之后会自动进行居中裁剪',
  692. `top` int(11) NOT NULL DEFAULT '2' COMMENT '是否人气推荐',
  693. `youhui` int(11) NOT NULL DEFAULT '2' COMMENT '是否每日优惠',
  694. `content` text COMMENT '内容介绍',
  695. `status` tinyint(1) NOT NULL DEFAULT '1' COMMENT '状态',
  696. `reorder` int(11) NOT NULL DEFAULT '1' COMMENT '排序-数值越大越靠前,相当于置顶',
  697. `state` tinyint(1) NOT NULL DEFAULT '1' COMMENT '数据状态',
  698. `udate` int(11) NOT NULL DEFAULT '0' COMMENT '更新时间',
  699. `cdate` int(11) NOT NULL DEFAULT '0' COMMENT '发布时间',
  700. `column_id` varchar(8000) NOT NULL COMMENT '栏目',
  701. `hot` int(11) NOT NULL DEFAULT '2' COMMENT '是否热门商品',
  702. `goods` text NOT NULL COMMENT '套餐商品配置-套餐商品只可以选择普通商品',
  703. `sku_id` int(11) NOT NULL DEFAULT '-1' COMMENT 'SKU_ID',
  704. `tag_id` varchar(800) NOT NULL COMMENT '标签',
  705. `sell_type` int(11) NOT NULL DEFAULT '1' COMMENT '售卖类型',
  706. `min` int(11) NOT NULL DEFAULT '1' COMMENT '起购数',
  707. `code` varchar(100) NOT NULL COMMENT '商品条码号'
  708. ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4;
  709. -- --------------------------------------------------------
  710. --
  711. -- 表的结构 `churen_goods_info_category`
  712. --
  713. DROP TABLE IF EXISTS `churen_goods_info_category`;
  714. CREATE TABLE `churen_goods_info_category` (
  715. `id` int(11) UNSIGNED NOT NULL COMMENT 'ID',
  716. `info_id` int(11) NOT NULL DEFAULT '0' COMMENT '商品ID',
  717. `category_id` int(11) NOT NULL DEFAULT '0' COMMENT '分类ID',
  718. `cdate` int(11) NOT NULL DEFAULT '0' COMMENT '录入时间',
  719. `state` tinyint(1) NOT NULL DEFAULT '1' COMMENT '数据状态'
  720. ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4;
  721. -- --------------------------------------------------------
  722. --
  723. -- 表的结构 `churen_goods_info_column`
  724. --
  725. DROP TABLE IF EXISTS `churen_goods_info_column`;
  726. CREATE TABLE `churen_goods_info_column` (
  727. `id` int(11) UNSIGNED NOT NULL COMMENT 'ID',
  728. `info_id` int(11) NOT NULL DEFAULT '0' COMMENT '商品ID',
  729. `column_id` int(11) NOT NULL DEFAULT '0' COMMENT '栏目ID',
  730. `state` tinyint(1) NOT NULL DEFAULT '1' COMMENT '数据状态',
  731. `cdate` int(11) NOT NULL DEFAULT '0' COMMENT '录入时间'
  732. ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4;
  733. -- --------------------------------------------------------
  734. --
  735. -- 表的结构 `churen_goods_info_sku`
  736. --
  737. DROP TABLE IF EXISTS `churen_goods_info_sku`;
  738. CREATE TABLE `churen_goods_info_sku` (
  739. `id` int(11) UNSIGNED NOT NULL COMMENT 'ID',
  740. `info_id` int(11) NOT NULL DEFAULT '0' COMMENT '商品ID',
  741. `key` varchar(100) DEFAULT NULL COMMENT '属性标识',
  742. `attr` text COMMENT '属性组合规则',
  743. `price` varchar(100) NOT NULL DEFAULT '0' COMMENT '销售价',
  744. `s_price` varchar(100) NOT NULL DEFAULT '0' COMMENT '市场价',
  745. `f_price` varchar(100) NOT NULL DEFAULT '0' COMMENT '采购价',
  746. `num` int(11) NOT NULL DEFAULT '0' COMMENT '库存',
  747. `sell_num` int(11) NOT NULL DEFAULT '0' COMMENT '销量',
  748. `reorder` int(11) NOT NULL DEFAULT '1' COMMENT '排序-数值越大越靠前,相当于置顶',
  749. `state` tinyint(1) NOT NULL DEFAULT '1' COMMENT '数据状态',
  750. `cdate` int(11) NOT NULL DEFAULT '0' COMMENT '发布时间',
  751. `type` tinyint(1) NOT NULL DEFAULT '2' COMMENT '属性类型',
  752. `min` int(11) NOT NULL DEFAULT '1' COMMENT '起购数',
  753. `code` varchar(100) NOT NULL COMMENT '商品条码号'
  754. ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4;
  755. -- --------------------------------------------------------
  756. --
  757. -- 表的结构 `churen_goods_info_tag`
  758. --
  759. DROP TABLE IF EXISTS `churen_goods_info_tag`;
  760. CREATE TABLE `churen_goods_info_tag` (
  761. `id` int(11) UNSIGNED NOT NULL COMMENT 'ID',
  762. `info_id` int(11) NOT NULL DEFAULT '0' COMMENT '商品ID',
  763. `tag_id` int(11) NOT NULL DEFAULT '0' COMMENT '标签ID',
  764. `state` tinyint(1) NOT NULL DEFAULT '1' COMMENT '数据状态',
  765. `cdate` int(11) NOT NULL DEFAULT '0' COMMENT '录入时间'
  766. ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4;
  767. -- --------------------------------------------------------
  768. --
  769. -- 表的结构 `churen_goods_tag`
  770. --
  771. DROP TABLE IF EXISTS `churen_goods_tag`;
  772. CREATE TABLE `churen_goods_tag` (
  773. `id` int(11) UNSIGNED NOT NULL COMMENT 'ID',
  774. `name` varchar(150) DEFAULT NULL COMMENT '标签名称',
  775. `color` varchar(10) DEFAULT NULL COMMENT '颜色-请填写颜色代码',
  776. `reorder` int(11) NOT NULL DEFAULT '1' COMMENT '排序(数值越大越靠前)',
  777. `state` tinyint(1) NOT NULL DEFAULT '1' COMMENT '状态',
  778. `cdate` int(11) NOT NULL DEFAULT '0' COMMENT '录入时间'
  779. ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4;
  780. -- --------------------------------------------------------
  781. --
  782. -- 表的结构 `churen_main_cate`
  783. --
  784. DROP TABLE IF EXISTS `churen_main_cate`;
  785. CREATE TABLE `churen_main_cate` (
  786. `id` int(11) UNSIGNED NOT NULL COMMENT 'ID',
  787. `name` varchar(32) DEFAULT NULL COMMENT '分类名称',
  788. `reorder` int(11) NOT NULL DEFAULT '1' COMMENT '排序(数值越大越靠前)',
  789. `state` tinyint(1) NOT NULL DEFAULT '1' COMMENT '状态',
  790. `cdate` int(11) NOT NULL DEFAULT '0' COMMENT '录入时间'
  791. ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4;
  792. -- --------------------------------------------------------
  793. --
  794. -- 表的结构 `churen_main_config`
  795. --
  796. DROP TABLE IF EXISTS `churen_main_config`;
  797. CREATE TABLE `churen_main_config` (
  798. `id` int(11) UNSIGNED NOT NULL COMMENT '平台ID',
  799. `name` varchar(32) DEFAULT NULL COMMENT '网站名称',
  800. `logo` varchar(150) DEFAULT NULL COMMENT '网站LOGO',
  801. `seo_keyword` varchar(1000) DEFAULT NULL COMMENT 'SEO关键词',
  802. `seo_desc` varchar(1000) DEFAULT NULL COMMENT 'SEO描述',
  803. `phone` varchar(100) DEFAULT NULL COMMENT '客服电话',
  804. `worktime` varchar(100) DEFAULT NULL COMMENT '工作时间',
  805. `wechat` varchar(150) DEFAULT NULL COMMENT '公众号',
  806. `foot` text COMMENT '底部信息',
  807. `state` tinyint(1) NOT NULL DEFAULT '1' COMMENT '状态',
  808. `cdate` int(11) NOT NULL DEFAULT '0' COMMENT '录入时间',
  809. `site` varchar(200) NOT NULL COMMENT '网站地址',
  810. `citys` varchar(1000) NOT NULL COMMENT '开通城市-直接填写城市名称,多个用换行隔开',
  811. `video_name` varchar(32) NOT NULL COMMENT '视频名称',
  812. `video_desc` varchar(800) NOT NULL COMMENT '视频介绍',
  813. `video` varchar(800) NOT NULL COMMENT '上传视频-视频格式MP4,上传大小不能超过4G',
  814. `video_pic` varchar(150) NOT NULL COMMENT '封面图-封面图自动生成,也可以直接上传,上传大小不能超过2M,支持JPG、PNG、GIF格式,建议上传JPG格式',
  815. `news_name` varchar(100) NOT NULL COMMENT '企业动态标题',
  816. `news_desc` varchar(500) NOT NULL COMMENT '企业动态介绍',
  817. `news_pic` varchar(150) NOT NULL COMMENT '企业动态图片',
  818. `contact_desc` varchar(800) NOT NULL COMMENT '联系我们介绍',
  819. `contact` text NOT NULL COMMENT '联系我们配置',
  820. `contact_address` varchar(500) NOT NULL COMMENT '公司地址',
  821. `contact_address_map` varchar(800) NOT NULL COMMENT '地址地图链接',
  822. `douyin` varchar(150) NOT NULL COMMENT '抖音',
  823. `weibo` varchar(150) NOT NULL COMMENT '微博'
  824. ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4;
  825. -- --------------------------------------------------------
  826. --
  827. -- 表的结构 `churen_main_factory_config`
  828. --
  829. DROP TABLE IF EXISTS `churen_main_factory_config`;
  830. CREATE TABLE `churen_main_factory_config` (
  831. `id` int(11) UNSIGNED NOT NULL COMMENT '平台ID',
  832. `name` varchar(32) DEFAULT NULL COMMENT '供应链名称',
  833. `info` varchar(1000) DEFAULT NULL COMMENT '供应链业务描述',
  834. `phone` varchar(100) DEFAULT NULL COMMENT '客服电话',
  835. `state` tinyint(1) NOT NULL DEFAULT '1' COMMENT '状态',
  836. `cdate` int(11) NOT NULL DEFAULT '0' COMMENT '录入时间',
  837. `kf_name` varchar(100) NOT NULL COMMENT '客服姓名',
  838. `foot` text NOT NULL COMMENT '底部信息',
  839. `dz_phone` varchar(100) NOT NULL COMMENT '对账专员电话'
  840. ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4;
  841. -- --------------------------------------------------------
  842. --
  843. -- 表的结构 `churen_main_group`
  844. --
  845. DROP TABLE IF EXISTS `churen_main_group`;
  846. CREATE TABLE `churen_main_group` (
  847. `id` int(11) UNSIGNED NOT NULL COMMENT 'ID',
  848. `name` varchar(32) DEFAULT NULL COMMENT '部门名称',
  849. `reorder` int(11) NOT NULL DEFAULT '1' COMMENT '排序(数值越大越靠前)',
  850. `state` tinyint(1) NOT NULL DEFAULT '1' COMMENT '状态',
  851. `cdate` int(11) NOT NULL DEFAULT '0' COMMENT '录入时间'
  852. ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4;
  853. -- --------------------------------------------------------
  854. --
  855. -- 表的结构 `churen_main_help`
  856. --
  857. DROP TABLE IF EXISTS `churen_main_help`;
  858. CREATE TABLE `churen_main_help` (
  859. `id` int(11) UNSIGNED NOT NULL COMMENT 'ID',
  860. `name` varchar(80) DEFAULT NULL COMMENT '标题',
  861. `type` int(11) NOT NULL DEFAULT '1' COMMENT '帮助类型',
  862. `content` text COMMENT '内容',
  863. `state` tinyint(1) NOT NULL DEFAULT '1' COMMENT '状态',
  864. `cdate` int(11) NOT NULL DEFAULT '0' COMMENT '录入时间',
  865. `desc` varchar(500) NOT NULL COMMENT '描述'
  866. ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4;
  867. -- --------------------------------------------------------
  868. --
  869. -- 表的结构 `churen_main_info`
  870. --
  871. DROP TABLE IF EXISTS `churen_main_info`;
  872. CREATE TABLE `churen_main_info` (
  873. `id` int(11) UNSIGNED NOT NULL COMMENT 'ID',
  874. `name` varchar(80) DEFAULT NULL COMMENT '标题-文章标题,同时也用于分享标题',
  875. `desc` varchar(500) DEFAULT NULL COMMENT '摘要-文章摘要,同时也用于分享内容',
  876. `cate_id` int(11) NOT NULL DEFAULT '1' COMMENT '所属分类',
  877. `source_id` int(11) NOT NULL DEFAULT '1' COMMENT '来源',
  878. `pic_cover` text COMMENT '封面图-可以上传多张,也可以不传,不传则自动从内容中获取',
  879. `num_add_view` int(11) NOT NULL DEFAULT '0' COMMENT '浏览量基数',
  880. `num_view` int(11) NOT NULL DEFAULT '0' COMMENT '浏览量',
  881. `pdate` int(11) NOT NULL DEFAULT '0' COMMENT '发布时间',
  882. `reorder` int(11) NOT NULL DEFAULT '1' COMMENT '排序(数值越大越靠前)',
  883. `udate` int(11) NOT NULL DEFAULT '0' COMMENT '更新时间',
  884. `content` text COMMENT '内容',
  885. `status` int(11) NOT NULL DEFAULT '1' COMMENT '发布状态',
  886. `state` tinyint(1) NOT NULL DEFAULT '1' COMMENT '状态',
  887. `cdate` int(11) NOT NULL DEFAULT '0' COMMENT '录入时间'
  888. ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4;
  889. -- --------------------------------------------------------
  890. --
  891. -- 表的结构 `churen_main_manage_config`
  892. --
  893. DROP TABLE IF EXISTS `churen_main_manage_config`;
  894. CREATE TABLE `churen_main_manage_config` (
  895. `id` int(11) UNSIGNED NOT NULL COMMENT '平台ID',
  896. `name` varchar(32) DEFAULT NULL COMMENT '小程序名称',
  897. `info` varchar(1000) DEFAULT NULL COMMENT '小程序业务描述',
  898. `logo` varchar(150) DEFAULT NULL COMMENT '小程序LOGO',
  899. `applet` varchar(150) DEFAULT NULL COMMENT '小程序二维码',
  900. `phone` varchar(100) DEFAULT NULL COMMENT '客服电话',
  901. `km` varchar(32) DEFAULT NULL COMMENT '推荐门店公里数-单位是公里,如5公里,填写5即可',
  902. `video` varchar(800) DEFAULT NULL COMMENT '视频宣传片-视频格式MP4,上传大小不能超过4G',
  903. `file` varchar(150) DEFAULT NULL COMMENT '宣传文件',
  904. `rule` text COMMENT '门店合作规则',
  905. `state` tinyint(1) NOT NULL DEFAULT '1' COMMENT '状态',
  906. `cdate` int(11) NOT NULL DEFAULT '0' COMMENT '录入时间',
  907. `video_cover` varchar(150) NOT NULL COMMENT '视频封面图-封面图自动生成,也可以更改,上传大小不能超过2M,支持JPG、PNG、GIF格式,建议上传JPG格式',
  908. `dz_phone` varchar(100) NOT NULL COMMENT '对账专员电话'
  909. ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4;
  910. -- --------------------------------------------------------
  911. --
  912. -- 表的结构 `churen_main_page`
  913. --
  914. DROP TABLE IF EXISTS `churen_main_page`;
  915. CREATE TABLE `churen_main_page` (
  916. `id` int(11) UNSIGNED NOT NULL COMMENT 'ID',
  917. `name` varchar(80) DEFAULT NULL COMMENT '标题',
  918. `type` int(11) NOT NULL DEFAULT '1' COMMENT '类型',
  919. `key` varchar(80) DEFAULT NULL COMMENT '标识',
  920. `content` text COMMENT '内容',
  921. `state` tinyint(1) NOT NULL DEFAULT '1' COMMENT '状态',
  922. `cdate` int(11) NOT NULL DEFAULT '0' COMMENT '录入时间'
  923. ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4;
  924. -- --------------------------------------------------------
  925. --
  926. -- 表的结构 `churen_main_sell_config`
  927. --
  928. DROP TABLE IF EXISTS `churen_main_sell_config`;
  929. CREATE TABLE `churen_main_sell_config` (
  930. `id` int(11) UNSIGNED NOT NULL COMMENT '平台ID',
  931. `name` varchar(32) DEFAULT NULL COMMENT '小程序名称',
  932. `info` varchar(1000) DEFAULT NULL COMMENT '小程序业务描述',
  933. `logo` varchar(150) DEFAULT NULL COMMENT '小程序LOGO',
  934. `applet` varchar(150) DEFAULT NULL COMMENT '小程序二维码',
  935. `phone` varchar(100) DEFAULT NULL COMMENT '客服电话',
  936. `state` tinyint(1) NOT NULL DEFAULT '1' COMMENT '状态',
  937. `cdate` int(11) NOT NULL DEFAULT '0' COMMENT '录入时间',
  938. `dz_phone` varchar(100) NOT NULL COMMENT '对账专员电话',
  939. `card` varchar(150) NOT NULL COMMENT '礼品卡封面',
  940. `per` int(11) NOT NULL DEFAULT '1' COMMENT '平台佣金比例-输入1就是百分之1,分账时,平台自动从支付的金额里抽取1%的手续费',
  941. `card_name` varchar(150) NOT NULL DEFAULT '厨人E卡' COMMENT '礼品卡名称'
  942. ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4;
  943. -- --------------------------------------------------------
  944. --
  945. -- 表的结构 `churen_main_source`
  946. --
  947. DROP TABLE IF EXISTS `churen_main_source`;
  948. CREATE TABLE `churen_main_source` (
  949. `id` int(11) UNSIGNED NOT NULL COMMENT 'ID',
  950. `name` varchar(32) DEFAULT NULL COMMENT '来源名称-长度不能超过16个汉字',
  951. `link` varchar(500) DEFAULT NULL COMMENT '来源链接',
  952. `reorder` int(11) NOT NULL DEFAULT '1' COMMENT '排序(数值越大越靠前)',
  953. `state` tinyint(1) NOT NULL DEFAULT '1' COMMENT '状态',
  954. `cdate` int(11) NOT NULL DEFAULT '0' COMMENT '录入时间'
  955. ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4;
  956. -- --------------------------------------------------------
  957. --
  958. -- 表的结构 `churen_main_zhaopin`
  959. --
  960. DROP TABLE IF EXISTS `churen_main_zhaopin`;
  961. CREATE TABLE `churen_main_zhaopin` (
  962. `id` int(11) UNSIGNED NOT NULL COMMENT 'ID',
  963. `name` varchar(80) DEFAULT NULL COMMENT '职位名称',
  964. `group_id` int(11) NOT NULL DEFAULT '1' COMMENT '所属部门',
  965. `type` int(11) NOT NULL DEFAULT '1' COMMENT '职位类型',
  966. `area` varchar(80) DEFAULT NULL COMMENT '所在地区',
  967. `desc` text COMMENT '岗位描述',
  968. `content` text COMMENT '任职要求',
  969. `reorder` int(11) NOT NULL DEFAULT '1' COMMENT '排序(数值越大越靠前)',
  970. `state` tinyint(1) NOT NULL DEFAULT '1' COMMENT '状态',
  971. `cdate` int(11) NOT NULL DEFAULT '0' COMMENT '录入时间'
  972. ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4;
  973. -- --------------------------------------------------------
  974. --
  975. -- 表的结构 `churen_manage_admin`
  976. --
  977. DROP TABLE IF EXISTS `churen_manage_admin`;
  978. CREATE TABLE `churen_manage_admin` (
  979. `id` int(11) UNSIGNED NOT NULL COMMENT '管理员ID',
  980. `username` varchar(24) DEFAULT NULL COMMENT '管理员名',
  981. `email` varchar(150) DEFAULT NULL COMMENT '邮箱-可用于登录,请准确填写,不允许重复',
  982. `mobile` varchar(32) DEFAULT NULL COMMENT '手机号',
  983. `password` varchar(64) DEFAULT NULL COMMENT '管理员密码',
  984. `config` int(11) NOT NULL DEFAULT '1' COMMENT '后台配置',
  985. `role` varchar(100) DEFAULT NULL COMMENT '角色',
  986. `group` int(11) NOT NULL DEFAULT '1' COMMENT '分组',
  987. `top` text COMMENT '头部菜单-这里的头部菜单如果设置,则会覆盖角色中的头部菜单',
  988. `state` tinyint(1) NOT NULL DEFAULT '1' COMMENT '数据状态',
  989. `status` tinyint(1) NOT NULL DEFAULT '1' COMMENT '状态',
  990. `cdate` int(11) NOT NULL DEFAULT '0' COMMENT '录入时间'
  991. ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4;
  992. -- --------------------------------------------------------
  993. --
  994. -- 表的结构 `churen_manage_admin_role`
  995. --
  996. DROP TABLE IF EXISTS `churen_manage_admin_role`;
  997. CREATE TABLE `churen_manage_admin_role` (
  998. `id` int(11) UNSIGNED NOT NULL COMMENT 'ID',
  999. `admin_id` int(11) NOT NULL DEFAULT '0' COMMENT '管理员ID',
  1000. `role_id` int(11) NOT NULL DEFAULT '0' COMMENT '角色ID',
  1001. `cdate` int(11) NOT NULL DEFAULT '0' COMMENT '录入时间'
  1002. ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4;
  1003. -- --------------------------------------------------------
  1004. --
  1005. -- 表的结构 `churen_manage_api`
  1006. --
  1007. DROP TABLE IF EXISTS `churen_manage_api`;
  1008. CREATE TABLE `churen_manage_api` (
  1009. `id` int(11) UNSIGNED NOT NULL COMMENT 'ID',
  1010. `name` varchar(30) DEFAULT NULL COMMENT '接口名称',
  1011. `type` tinyint(1) NOT NULL DEFAULT '1' COMMENT '接口类型',
  1012. `project` varchar(30) DEFAULT NULL COMMENT '所属项目',
  1013. `site` varchar(500) DEFAULT NULL COMMENT '接口地址',
  1014. `reorder` int(11) NOT NULL DEFAULT '1' COMMENT '排序',
  1015. `state` tinyint(1) NOT NULL DEFAULT '1' COMMENT '数据状态',
  1016. `cdate` int(11) NOT NULL DEFAULT '0' COMMENT '录入时间'
  1017. ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4;
  1018. -- --------------------------------------------------------
  1019. --
  1020. -- 表的结构 `churen_manage_api_request`
  1021. --
  1022. DROP TABLE IF EXISTS `churen_manage_api_request`;
  1023. CREATE TABLE `churen_manage_api_request` (
  1024. `id` int(11) UNSIGNED NOT NULL COMMENT 'ID',
  1025. `api_id` int(11) NOT NULL DEFAULT '0' COMMENT '接口ID',
  1026. `parent_id` int(11) NOT NULL DEFAULT '-1' COMMENT '上级ID',
  1027. `name` varchar(50) DEFAULT NULL COMMENT '字段',
  1028. `type` varchar(50) DEFAULT NULL COMMENT '类型',
  1029. `desc` text COMMENT '描述',
  1030. `state` tinyint(1) NOT NULL DEFAULT '1' COMMENT '数据状态',
  1031. `cdate` int(11) NOT NULL DEFAULT '0' COMMENT '操作时间'
  1032. ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4;
  1033. -- --------------------------------------------------------
  1034. --
  1035. -- 表的结构 `churen_manage_api_response`
  1036. --
  1037. DROP TABLE IF EXISTS `churen_manage_api_response`;
  1038. CREATE TABLE `churen_manage_api_response` (
  1039. `id` int(11) UNSIGNED NOT NULL COMMENT 'ID',
  1040. `api_id` int(11) NOT NULL DEFAULT '0' COMMENT '接口ID',
  1041. `parent_id` int(11) NOT NULL DEFAULT '-1' COMMENT '上级ID',
  1042. `name` varchar(50) DEFAULT NULL COMMENT '字段',
  1043. `type` varchar(50) DEFAULT NULL COMMENT '类型',
  1044. `desc` text COMMENT '描述',
  1045. `state` tinyint(1) NOT NULL DEFAULT '1' COMMENT '数据状态',
  1046. `cdate` int(11) NOT NULL DEFAULT '0' COMMENT '操作时间'
  1047. ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4;
  1048. -- --------------------------------------------------------
  1049. --
  1050. -- 表的结构 `churen_manage_auth`
  1051. --
  1052. DROP TABLE IF EXISTS `churen_manage_auth`;
  1053. CREATE TABLE `churen_manage_auth` (
  1054. `id` int(11) UNSIGNED NOT NULL COMMENT 'ID',
  1055. `project` varchar(50) DEFAULT NULL COMMENT '项目KEY',
  1056. `project_name` varchar(50) DEFAULT NULL COMMENT '项目名',
  1057. `name` varchar(50) DEFAULT NULL COMMENT '权限名',
  1058. `auth_id` int(11) NOT NULL DEFAULT '-1' COMMENT '上级权限',
  1059. `key` varchar(100) DEFAULT NULL COMMENT '权限KEY',
  1060. `value` varchar(30) DEFAULT NULL COMMENT '对应的值',
  1061. `state` tinyint(1) NOT NULL DEFAULT '1' COMMENT '状态',
  1062. `cdate` int(11) NOT NULL DEFAULT '0' COMMENT '录入时间'
  1063. ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4;
  1064. -- --------------------------------------------------------
  1065. --
  1066. -- 表的结构 `churen_manage_config`
  1067. --
  1068. DROP TABLE IF EXISTS `churen_manage_config`;
  1069. CREATE TABLE `churen_manage_config` (
  1070. `id` int(11) UNSIGNED NOT NULL COMMENT '配置ID',
  1071. `name` varchar(32) DEFAULT NULL COMMENT '配置名',
  1072. `template` int(1) NOT NULL DEFAULT '1' COMMENT '后台模板',
  1073. `title` varchar(32) DEFAULT NULL COMMENT '后台TITLE',
  1074. `info` varchar(40) DEFAULT NULL COMMENT '控制台欢迎标题',
  1075. `content` text COMMENT '控制台欢迎内容',
  1076. `state` tinyint(1) NOT NULL DEFAULT '1' COMMENT '状态',
  1077. `cdate` int(11) NOT NULL DEFAULT '0' COMMENT '录入时间',
  1078. `help_title` varchar(32) NOT NULL DEFAULT '帮助标题' COMMENT '帮助标题',
  1079. `help_info` varchar(800) NOT NULL DEFAULT '默认帮助介绍' COMMENT '帮助介绍'
  1080. ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4;
  1081. -- --------------------------------------------------------
  1082. --
  1083. -- 表的结构 `churen_manage_cron`
  1084. --
  1085. DROP TABLE IF EXISTS `churen_manage_cron`;
  1086. CREATE TABLE `churen_manage_cron` (
  1087. `id` int(11) UNSIGNED NOT NULL COMMENT 'ID',
  1088. `name` varchar(32) DEFAULT NULL COMMENT '任务名',
  1089. `project` varchar(30) DEFAULT NULL COMMENT '项目',
  1090. `interface` varchar(100) DEFAULT NULL COMMENT '接口(命令行)',
  1091. `ldate` int(11) NOT NULL DEFAULT '0' COMMENT '执行时间',
  1092. `time` int(11) NOT NULL DEFAULT '0' COMMENT '时间间隔(为0则执行一次)',
  1093. `state` tinyint(1) NOT NULL DEFAULT '1' COMMENT '状态',
  1094. `cdate` int(11) NOT NULL DEFAULT '0' COMMENT '录入时间'
  1095. ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4;
  1096. -- --------------------------------------------------------
  1097. --
  1098. -- 表的结构 `churen_manage_group`
  1099. --
  1100. DROP TABLE IF EXISTS `churen_manage_group`;
  1101. CREATE TABLE `churen_manage_group` (
  1102. `id` int(11) UNSIGNED NOT NULL COMMENT '组ID',
  1103. `name` varchar(50) DEFAULT NULL COMMENT '组名称',
  1104. `area` varchar(255) DEFAULT NULL COMMENT '区域',
  1105. `state` tinyint(1) NOT NULL DEFAULT '1' COMMENT '状态',
  1106. `cdate` int(11) NOT NULL DEFAULT '0' COMMENT '录入时间'
  1107. ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4;
  1108. -- --------------------------------------------------------
  1109. --
  1110. -- 表的结构 `churen_manage_help`
  1111. --
  1112. DROP TABLE IF EXISTS `churen_manage_help`;
  1113. CREATE TABLE `churen_manage_help` (
  1114. `id` int(11) UNSIGNED NOT NULL COMMENT 'ID',
  1115. `name` varchar(32) DEFAULT NULL COMMENT '帮助标题',
  1116. `config` int(11) NOT NULL DEFAULT '1' COMMENT '后台配置',
  1117. `reorder` int(11) NOT NULL DEFAULT '1' COMMENT '排序(数值越大越靠前)',
  1118. `video` varchar(800) DEFAULT NULL COMMENT '帮助视频-视频格式MP4,上传大小不能超过4G',
  1119. `content` text COMMENT '内容',
  1120. `state` tinyint(1) NOT NULL DEFAULT '1' COMMENT '状态',
  1121. `cdate` int(11) NOT NULL DEFAULT '0' COMMENT '录入时间'
  1122. ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4;
  1123. -- --------------------------------------------------------
  1124. --
  1125. -- 表的结构 `churen_manage_log`
  1126. --
  1127. DROP TABLE IF EXISTS `churen_manage_log`;
  1128. CREATE TABLE `churen_manage_log` (
  1129. `id` int(11) UNSIGNED NOT NULL COMMENT 'ID',
  1130. `project` varchar(32) DEFAULT NULL COMMENT '项目名',
  1131. `table` varchar(32) DEFAULT NULL COMMENT '项目下的表名',
  1132. `info` longtext COMMENT '日志记录',
  1133. `admin` int(11) NOT NULL DEFAULT '0' COMMENT '操作人',
  1134. `tid` int(11) NOT NULL DEFAULT '0' COMMENT '来源表ID',
  1135. `state` tinyint(1) NOT NULL DEFAULT '1' COMMENT '状态',
  1136. `cdate` int(11) NOT NULL DEFAULT '0' COMMENT '操作时间'
  1137. ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4;
  1138. -- --------------------------------------------------------
  1139. --
  1140. -- 表的结构 `churen_manage_menu`
  1141. --
  1142. DROP TABLE IF EXISTS `churen_manage_menu`;
  1143. CREATE TABLE `churen_manage_menu` (
  1144. `id` int(11) UNSIGNED NOT NULL COMMENT '菜单ID',
  1145. `name` varchar(50) DEFAULT NULL COMMENT '菜单名称',
  1146. `group_id` int(11) NOT NULL DEFAULT '1' COMMENT '选择分组',
  1147. `menu_id` int(11) NOT NULL DEFAULT '-1' COMMENT '上级菜单',
  1148. `menu` varchar(800) DEFAULT NULL COMMENT '上级菜单',
  1149. `key` varchar(100) DEFAULT NULL COMMENT '菜单标识-选填,可以为空,用来标识菜单的唯一性',
  1150. `link` varchar(150) DEFAULT NULL COMMENT '链接(或路径)-选填,可以为空',
  1151. `reorder` int(11) NOT NULL DEFAULT '1' COMMENT '排序',
  1152. `type` tinyint(1) NOT NULL DEFAULT '2' COMMENT '开启子菜单',
  1153. `icon` varchar(100) DEFAULT NULL COMMENT '图标代码-请<A HREF="HTTPS://WWW.LAYUI.COM/DOC/ELEMENT/ICON.HTML" TARGET="_BLANK">点此</A>查看图标代码',
  1154. `fast` tinyint(1) NOT NULL DEFAULT '2' COMMENT '是否快捷菜单',
  1155. `state` tinyint(1) NOT NULL DEFAULT '1' COMMENT '状态',
  1156. `cdate` int(11) NOT NULL DEFAULT '0' COMMENT '录入时间'
  1157. ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4;
  1158. -- --------------------------------------------------------
  1159. --
  1160. -- 表的结构 `churen_manage_menu_group`
  1161. --
  1162. DROP TABLE IF EXISTS `churen_manage_menu_group`;
  1163. CREATE TABLE `churen_manage_menu_group` (
  1164. `id` int(11) UNSIGNED NOT NULL COMMENT '分组ID',
  1165. `name` varchar(50) DEFAULT NULL COMMENT '分组名称',
  1166. `icon` varchar(100) DEFAULT NULL COMMENT '图标代码-请<A HREF="HTTPS://WWW.LAYUI.COM/DOC/ELEMENT/ICON.HTML" TARGET="_BLANK">点此</A>查看图标代码',
  1167. `reorder` int(11) NOT NULL DEFAULT '1' COMMENT '排序',
  1168. `state` tinyint(1) NOT NULL DEFAULT '1' COMMENT '状态',
  1169. `cdate` int(11) NOT NULL DEFAULT '0' COMMENT '录入时间'
  1170. ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4;
  1171. -- --------------------------------------------------------
  1172. --
  1173. -- 表的结构 `churen_manage_notice`
  1174. --
  1175. DROP TABLE IF EXISTS `churen_manage_notice`;
  1176. CREATE TABLE `churen_manage_notice` (
  1177. `id` int(11) UNSIGNED NOT NULL COMMENT '公告ID',
  1178. `name` varchar(32) DEFAULT NULL COMMENT '公告标题',
  1179. `config` int(11) NOT NULL DEFAULT '1' COMMENT '后台配置',
  1180. `reorder` int(11) NOT NULL DEFAULT '1' COMMENT '排序(数值越大越靠前)',
  1181. `content` text COMMENT '内容',
  1182. `state` tinyint(1) NOT NULL DEFAULT '1' COMMENT '状态',
  1183. `cdate` int(11) NOT NULL DEFAULT '0' COMMENT '录入时间'
  1184. ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4;
  1185. -- --------------------------------------------------------
  1186. --
  1187. -- 表的结构 `churen_manage_opt`
  1188. --
  1189. DROP TABLE IF EXISTS `churen_manage_opt`;
  1190. CREATE TABLE `churen_manage_opt` (
  1191. `id` int(11) UNSIGNED NOT NULL COMMENT 'ID',
  1192. `project` varchar(30) DEFAULT NULL COMMENT '项目',
  1193. `table` varchar(30) DEFAULT NULL COMMENT '数据表-请输入表的英文名',
  1194. `method` varchar(32) DEFAULT NULL COMMENT '所属方法名',
  1195. `col` varchar(500) DEFAULT NULL COMMENT '使用的字段',
  1196. `col_index` varchar(500) DEFAULT NULL COMMENT '建立索引的字段',
  1197. `version` int(11) NOT NULL DEFAULT '0' COMMENT '版本号',
  1198. `num` int(11) NOT NULL DEFAULT '0' COMMENT '执行次数',
  1199. `time` varchar(30) DEFAULT NULL COMMENT '执行时间',
  1200. `status` tinyint(1) NOT NULL DEFAULT '1' COMMENT '是否建立索引',
  1201. `state` tinyint(1) NOT NULL DEFAULT '1' COMMENT '数据是否存在',
  1202. `cdate` int(11) NOT NULL DEFAULT '0' COMMENT '录入时间'
  1203. ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4;
  1204. -- --------------------------------------------------------
  1205. --
  1206. -- 表的结构 `churen_manage_role`
  1207. --
  1208. DROP TABLE IF EXISTS `churen_manage_role`;
  1209. CREATE TABLE `churen_manage_role` (
  1210. `id` int(11) UNSIGNED NOT NULL COMMENT '角色ID',
  1211. `name` varchar(24) DEFAULT NULL COMMENT '角色名',
  1212. `role_id` int(11) NOT NULL DEFAULT '-1' COMMENT '上级角色',
  1213. `self` tinyint(1) NOT NULL DEFAULT '2' COMMENT '是否只能管理自己发布的内容-请在需要此项权限的表中增加[数据查询时影响的字段]',
  1214. `col_select` varchar(30) DEFAULT NULL COMMENT '数据查询时影响的字段-该项影响数据查询,如果在表中增加该字段,则后台在查询数据时自动查询当前管理员的ID下的数据,多个用逗号隔开,与[是否只能管理自己发布的内容]相关',
  1215. `col_insert` varchar(30) DEFAULT NULL COMMENT '数据插入时影响的字段-该项影响数据插入,如果在表中增加该字段,则后台操作时自动为该字段赋值为当前管理员的ID,多个用逗号隔开',
  1216. `col_update` varchar(30) DEFAULT NULL COMMENT '数据更新时影响的字段-该项影响数据更新,如果在表中增加该字段,则后台操作时自动为该字段赋值为当前管理员的ID,多个用逗号隔开',
  1217. `oper` varchar(24) DEFAULT NULL COMMENT '操作权限',
  1218. `auth` text COMMENT '左侧菜单',
  1219. `top` text COMMENT '头部菜单',
  1220. `auth_data` text COMMENT '数据权限',
  1221. `reorder` int(11) NOT NULL DEFAULT '1' COMMENT '排序-数值越大越靠前',
  1222. `state` tinyint(1) NOT NULL DEFAULT '1' COMMENT '状态',
  1223. `status` tinyint(1) NOT NULL DEFAULT '1' COMMENT '状态',
  1224. `cdate` int(11) NOT NULL DEFAULT '0' COMMENT '录入时间'
  1225. ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4;
  1226. -- --------------------------------------------------------
  1227. --
  1228. -- 表的结构 `churen_manage_top`
  1229. --
  1230. DROP TABLE IF EXISTS `churen_manage_top`;
  1231. CREATE TABLE `churen_manage_top` (
  1232. `id` int(11) UNSIGNED NOT NULL COMMENT 'ID',
  1233. `name` varchar(50) DEFAULT NULL COMMENT '权限名',
  1234. `top_id` int(11) NOT NULL DEFAULT '-1' COMMENT '上级权限',
  1235. `key` varchar(100) DEFAULT NULL COMMENT '权限KEY',
  1236. `value` varchar(30) DEFAULT NULL COMMENT '对应的值',
  1237. `state` tinyint(1) NOT NULL DEFAULT '1' COMMENT '状态',
  1238. `cdate` int(11) NOT NULL DEFAULT '0' COMMENT '录入时间'
  1239. ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4;
  1240. -- --------------------------------------------------------
  1241. --
  1242. -- 表的结构 `churen_message_inbox`
  1243. --
  1244. DROP TABLE IF EXISTS `churen_message_inbox`;
  1245. CREATE TABLE `churen_message_inbox` (
  1246. `id` int(11) UNSIGNED NOT NULL COMMENT 'ID',
  1247. `oid` int(11) NOT NULL DEFAULT '0' COMMENT '收件ID',
  1248. `uid` int(11) NOT NULL DEFAULT '0' COMMENT '收件人',
  1249. `from_uid` int(11) NOT NULL DEFAULT '0' COMMENT '发件人',
  1250. `name` varchar(30) DEFAULT NULL COMMENT '发件标题',
  1251. `content` text COMMENT '发件内容',
  1252. `project_id` int(11) NOT NULL DEFAULT '1' COMMENT '所属项目',
  1253. `type` int(11) NOT NULL DEFAULT '1' COMMENT '消息类型',
  1254. `scope` tinyint(1) NOT NULL DEFAULT '1' COMMENT '消息范围',
  1255. `param` varchar(800) DEFAULT NULL COMMENT '传入参数-一般为JSON格式数据',
  1256. `status` tinyint(1) NOT NULL DEFAULT '1' COMMENT '已读状态',
  1257. `state` tinyint(1) NOT NULL DEFAULT '1' COMMENT '状态',
  1258. `cdate` int(11) NOT NULL DEFAULT '0' COMMENT '录入时间',
  1259. `link` varchar(30) NOT NULL COMMENT '链接-选填,如有链接,则点击消息跳转至该链接'
  1260. ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4;
  1261. -- --------------------------------------------------------
  1262. --
  1263. -- 表的结构 `churen_message_outbox`
  1264. --
  1265. DROP TABLE IF EXISTS `churen_message_outbox`;
  1266. CREATE TABLE `churen_message_outbox` (
  1267. `id` int(11) UNSIGNED NOT NULL COMMENT 'ID',
  1268. `uid` int(11) NOT NULL DEFAULT '-1' COMMENT '发件人',
  1269. `name` varchar(30) DEFAULT NULL COMMENT '发件标题',
  1270. `content` text COMMENT '发件内容',
  1271. `project_id` int(11) NOT NULL DEFAULT '1' COMMENT '所属项目',
  1272. `type` int(11) NOT NULL DEFAULT '1' COMMENT '消息类型',
  1273. `scope` tinyint(1) NOT NULL DEFAULT '1' COMMENT '消息范围',
  1274. `param` varchar(800) DEFAULT NULL COMMENT '传入参数-一般为JSON格式数据',
  1275. `to_uid` text COMMENT '收件人-直接填写UID,多个用换行隔开,后期升级',
  1276. `state` tinyint(1) NOT NULL DEFAULT '1' COMMENT '状态',
  1277. `cdate` int(11) NOT NULL DEFAULT '0' COMMENT '录入时间',
  1278. `link` varchar(30) NOT NULL COMMENT '链接-选填,如有链接,则点击消息跳转至该链接'
  1279. ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4;
  1280. -- --------------------------------------------------------
  1281. --
  1282. -- 表的结构 `churen_message_project`
  1283. --
  1284. DROP TABLE IF EXISTS `churen_message_project`;
  1285. CREATE TABLE `churen_message_project` (
  1286. `id` int(11) UNSIGNED NOT NULL COMMENT 'ID',
  1287. `name` varchar(30) DEFAULT NULL COMMENT '项目名称',
  1288. `state` tinyint(1) NOT NULL DEFAULT '1' COMMENT '状态',
  1289. `cdate` int(11) NOT NULL DEFAULT '0' COMMENT '录入时间'
  1290. ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4;
  1291. -- --------------------------------------------------------
  1292. --
  1293. -- 表的结构 `churen_message_push`
  1294. --
  1295. DROP TABLE IF EXISTS `churen_message_push`;
  1296. CREATE TABLE `churen_message_push` (
  1297. `id` int(11) UNSIGNED NOT NULL COMMENT 'ID',
  1298. `name` varchar(30) DEFAULT NULL COMMENT '推送名称',
  1299. `type` tinyint(1) NOT NULL DEFAULT '1' COMMENT '推送类型',
  1300. `android_appid` varchar(100) DEFAULT NULL COMMENT '安卓推送APPID',
  1301. `android_appsecret` varchar(200) DEFAULT NULL COMMENT '安卓推送APPSECRET',
  1302. `ios_appid` varchar(100) DEFAULT NULL COMMENT '苹果推送APPID',
  1303. `ios_appsecret` varchar(200) DEFAULT NULL COMMENT '苹果推送APPSECRET',
  1304. `state` tinyint(1) NOT NULL DEFAULT '1' COMMENT '状态',
  1305. `cdate` int(11) NOT NULL DEFAULT '0' COMMENT '录入时间'
  1306. ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4;
  1307. -- --------------------------------------------------------
  1308. --
  1309. -- 表的结构 `churen_message_type`
  1310. --
  1311. DROP TABLE IF EXISTS `churen_message_type`;
  1312. CREATE TABLE `churen_message_type` (
  1313. `id` int(11) UNSIGNED NOT NULL COMMENT 'ID',
  1314. `name` varchar(30) DEFAULT NULL COMMENT '类型名称-类型ID值为10以下则为系统消息',
  1315. `scope` tinyint(1) NOT NULL DEFAULT '1' COMMENT '消息范围',
  1316. `type` tinyint(1) NOT NULL DEFAULT '1' COMMENT '同步推送',
  1317. `push` int(11) NOT NULL DEFAULT '1' COMMENT '推送方式',
  1318. `state` tinyint(1) NOT NULL DEFAULT '1' COMMENT '状态',
  1319. `cdate` int(11) NOT NULL DEFAULT '0' COMMENT '录入时间'
  1320. ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4;
  1321. -- --------------------------------------------------------
  1322. --
  1323. -- 表的结构 `churen_passport_address`
  1324. --
  1325. DROP TABLE IF EXISTS `churen_passport_address`;
  1326. CREATE TABLE `churen_passport_address` (
  1327. `id` int(11) UNSIGNED NOT NULL COMMENT 'ID',
  1328. `uid` int(11) NOT NULL DEFAULT '0' COMMENT '用户名',
  1329. `type` tinyint(1) NOT NULL DEFAULT '2' COMMENT '类型',
  1330. `contact` varchar(100) DEFAULT NULL COMMENT '联系人',
  1331. `sex` tinyint(1) NOT NULL DEFAULT '3' COMMENT '性别',
  1332. `mobile` varchar(100) DEFAULT NULL COMMENT '联系电话',
  1333. `country` varchar(100) DEFAULT NULL COMMENT '国家',
  1334. `province` int(11) NOT NULL DEFAULT '0' COMMENT '省份',
  1335. `city` int(11) NOT NULL DEFAULT '0' COMMENT '城市',
  1336. `county` int(11) NOT NULL DEFAULT '0' COMMENT '县区',
  1337. `area` varchar(800) DEFAULT NULL COMMENT '地区',
  1338. `address` varchar(1000) DEFAULT NULL COMMENT '详细地址',
  1339. `house_number` varchar(500) DEFAULT NULL COMMENT '门牌号',
  1340. `tag` tinyint(1) NOT NULL DEFAULT '1' COMMENT '标签',
  1341. `state` tinyint(1) NOT NULL DEFAULT '1' COMMENT '状态',
  1342. `cdate` int(11) NOT NULL DEFAULT '0' COMMENT '操作时间'
  1343. ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4;
  1344. -- --------------------------------------------------------
  1345. --
  1346. -- 表的结构 `churen_passport_avatar`
  1347. --
  1348. DROP TABLE IF EXISTS `churen_passport_avatar`;
  1349. CREATE TABLE `churen_passport_avatar` (
  1350. `id` int(11) UNSIGNED NOT NULL COMMENT 'ID',
  1351. `sex` tinyint(1) NOT NULL DEFAULT '4' COMMENT '头像性别',
  1352. `avatar` varchar(150) DEFAULT NULL COMMENT '头像',
  1353. `state` tinyint(1) NOT NULL DEFAULT '1' COMMENT '状态',
  1354. `cdate` int(11) NOT NULL DEFAULT '0' COMMENT '注册时间'
  1355. ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4;
  1356. -- --------------------------------------------------------
  1357. --
  1358. -- 表的结构 `churen_passport_code`
  1359. --
  1360. DROP TABLE IF EXISTS `churen_passport_code`;
  1361. CREATE TABLE `churen_passport_code` (
  1362. `id` int(11) UNSIGNED NOT NULL COMMENT 'ID',
  1363. `mobile` varchar(32) DEFAULT NULL COMMENT '手机号',
  1364. `code` varchar(32) DEFAULT NULL COMMENT '验证码',
  1365. `day` int(11) NOT NULL DEFAULT '0' COMMENT '申请时间',
  1366. `state` tinyint(1) NOT NULL DEFAULT '1' COMMENT '状态',
  1367. `cdate` int(11) NOT NULL DEFAULT '0' COMMENT '申请时间'
  1368. ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4;
  1369. -- --------------------------------------------------------
  1370. --
  1371. -- 表的结构 `churen_passport_invoice`
  1372. --
  1373. DROP TABLE IF EXISTS `churen_passport_invoice`;
  1374. CREATE TABLE `churen_passport_invoice` (
  1375. `id` int(11) UNSIGNED NOT NULL COMMENT 'ID',
  1376. `uid` int(11) NOT NULL DEFAULT '0' COMMENT '用户名',
  1377. `type` tinyint(1) NOT NULL DEFAULT '2' COMMENT '类型',
  1378. `title_type` tinyint(1) NOT NULL DEFAULT '1' COMMENT '抬头类型',
  1379. `title` varchar(100) DEFAULT NULL COMMENT '抬头名称',
  1380. `email` varchar(100) DEFAULT NULL COMMENT '邮箱',
  1381. `mobile` varchar(100) DEFAULT NULL COMMENT '手机号',
  1382. `number` varchar(100) DEFAULT NULL COMMENT '公司税号',
  1383. `phone` varchar(100) DEFAULT NULL COMMENT '公司电话',
  1384. `address` varchar(1000) DEFAULT NULL COMMENT '注册地址',
  1385. `bank` varchar(100) DEFAULT NULL COMMENT '开户银行',
  1386. `bank_number` varchar(100) DEFAULT NULL COMMENT '银行账号',
  1387. `state` tinyint(1) NOT NULL DEFAULT '1' COMMENT '状态',
  1388. `cdate` int(11) NOT NULL DEFAULT '0' COMMENT '操作时间'
  1389. ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4;
  1390. -- --------------------------------------------------------
  1391. --
  1392. -- 表的结构 `churen_passport_profession`
  1393. --
  1394. DROP TABLE IF EXISTS `churen_passport_profession`;
  1395. CREATE TABLE `churen_passport_profession` (
  1396. `id` int(11) UNSIGNED NOT NULL COMMENT 'ID',
  1397. `name` varchar(32) DEFAULT NULL COMMENT '职业名称',
  1398. `system_id` int(11) NOT NULL DEFAULT '1' COMMENT '所属项目',
  1399. `reorder` int(11) NOT NULL DEFAULT '1' COMMENT '排序(数值越大越靠前)',
  1400. `state` tinyint(1) NOT NULL DEFAULT '1' COMMENT '状态',
  1401. `cdate` int(11) NOT NULL DEFAULT '0' COMMENT '录入时间'
  1402. ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4;
  1403. -- --------------------------------------------------------
  1404. --
  1405. -- 表的结构 `churen_passport_stat`
  1406. --
  1407. DROP TABLE IF EXISTS `churen_passport_stat`;
  1408. CREATE TABLE `churen_passport_stat` (
  1409. `id` int(11) UNSIGNED NOT NULL COMMENT 'ID',
  1410. `day` int(11) NOT NULL DEFAULT '0' COMMENT '日期',
  1411. `user` int(11) NOT NULL DEFAULT '0' COMMENT '新增用户量',
  1412. `state` tinyint(1) NOT NULL DEFAULT '1' COMMENT '状态',
  1413. `cdate` int(11) NOT NULL DEFAULT '0' COMMENT '生成时间'
  1414. ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4;
  1415. -- --------------------------------------------------------
  1416. --
  1417. -- 表的结构 `churen_passport_system`
  1418. --
  1419. DROP TABLE IF EXISTS `churen_passport_system`;
  1420. CREATE TABLE `churen_passport_system` (
  1421. `id` int(11) UNSIGNED NOT NULL COMMENT 'ID',
  1422. `name` varchar(32) DEFAULT NULL COMMENT '项目名称',
  1423. `appid` varchar(150) DEFAULT NULL COMMENT '微信小程序APPID',
  1424. `secret` varchar(150) DEFAULT NULL COMMENT '微信小程序SECRET',
  1425. `reorder` int(11) NOT NULL DEFAULT '1' COMMENT '排序(数值越大越靠前)',
  1426. `state` tinyint(1) NOT NULL DEFAULT '1' COMMENT '状态',
  1427. `cdate` int(11) NOT NULL DEFAULT '0' COMMENT '录入时间'
  1428. ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4;
  1429. -- --------------------------------------------------------
  1430. --
  1431. -- 表的结构 `churen_passport_user`
  1432. --
  1433. DROP TABLE IF EXISTS `churen_passport_user`;
  1434. CREATE TABLE `churen_passport_user` (
  1435. `id` int(11) UNSIGNED NOT NULL COMMENT '用户ID',
  1436. `username` varchar(50) DEFAULT NULL COMMENT '用户名',
  1437. `truename` varchar(50) DEFAULT NULL COMMENT '姓名',
  1438. `title` varchar(800) DEFAULT NULL COMMENT '头衔',
  1439. `mobile` varchar(32) DEFAULT NULL COMMENT '手机号',
  1440. `system_id` int(11) NOT NULL DEFAULT '1' COMMENT '所属项目',
  1441. `profession` int(11) NOT NULL DEFAULT '1' COMMENT '职业',
  1442. `wechat` varchar(100) DEFAULT NULL COMMENT '微信号',
  1443. `source_type` varchar(100) DEFAULT NULL COMMENT '用户来源-废弃,用SYSTEM_SOURCE替代,暂时保留',
  1444. `system_source` tinyint(1) NOT NULL DEFAULT '1' COMMENT '所属平台',
  1445. `email` varchar(150) DEFAULT NULL COMMENT '邮箱',
  1446. `password` varchar(50) DEFAULT NULL COMMENT '密码',
  1447. `avatar_id` int(11) NOT NULL DEFAULT '1' COMMENT '默认头像',
  1448. `avatar` varchar(150) DEFAULT NULL COMMENT '头像',
  1449. `address_contact` varchar(100) DEFAULT NULL COMMENT '联系人',
  1450. `address_mobile` varchar(100) DEFAULT NULL COMMENT '联系电话',
  1451. `country` varchar(100) DEFAULT NULL COMMENT '国家-来自微信',
  1452. `province` varchar(100) DEFAULT NULL COMMENT '省份-来自微信',
  1453. `city` varchar(100) DEFAULT NULL COMMENT '城市-来自微信',
  1454. `county` varchar(100) DEFAULT NULL COMMENT '区县-来自微信',
  1455. `area` varchar(800) DEFAULT NULL COMMENT '地区-来自微信',
  1456. `area_id` varchar(500) DEFAULT NULL COMMENT '地区-用户自己选择',
  1457. `address` varchar(1000) DEFAULT NULL COMMENT '详细地址-不带省市区的地址',
  1458. `info` varchar(255) DEFAULT NULL COMMENT '介绍-选填,如果想清空该介绍,请输入NULL。',
  1459. `score` varchar(50) DEFAULT NULL COMMENT '积分',
  1460. `sex` tinyint(1) NOT NULL DEFAULT '3' COMMENT '用户性别',
  1461. `level` int(11) NOT NULL DEFAULT '1' COMMENT '用户等级',
  1462. `temp` tinyint(1) NOT NULL DEFAULT '1' COMMENT '是否临时用户',
  1463. `birthday` int(11) NOT NULL DEFAULT '0' COMMENT '生日',
  1464. `login_date` int(11) NOT NULL DEFAULT '0' COMMENT '最近登录',
  1465. `bind` tinyint(1) NOT NULL DEFAULT '2' COMMENT '是否绑定手机',
  1466. `state` tinyint(1) NOT NULL DEFAULT '1' COMMENT '状态',
  1467. `cdate` int(11) NOT NULL DEFAULT '0' COMMENT '注册时间'
  1468. ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4;
  1469. -- --------------------------------------------------------
  1470. --
  1471. -- 表的结构 `churen_passport_user_system`
  1472. --
  1473. DROP TABLE IF EXISTS `churen_passport_user_system`;
  1474. CREATE TABLE `churen_passport_user_system` (
  1475. `id` int(11) UNSIGNED NOT NULL COMMENT '用户ID',
  1476. `uid` int(11) NOT NULL DEFAULT '0' COMMENT '用户名',
  1477. `system_id` int(11) NOT NULL DEFAULT '1' COMMENT '所属项目',
  1478. `state` tinyint(1) NOT NULL DEFAULT '1' COMMENT '状态',
  1479. `cdate` int(11) NOT NULL DEFAULT '0' COMMENT '创建时间'
  1480. ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4;
  1481. -- --------------------------------------------------------
  1482. --
  1483. -- 表的结构 `churen_passport_wechat`
  1484. --
  1485. DROP TABLE IF EXISTS `churen_passport_wechat`;
  1486. CREATE TABLE `churen_passport_wechat` (
  1487. `id` int(11) UNSIGNED NOT NULL COMMENT 'ID',
  1488. `system_id` int(11) NOT NULL DEFAULT '1' COMMENT '所属项目',
  1489. `account_id` int(11) NOT NULL DEFAULT '1' COMMENT '所属账户',
  1490. `uid` int(11) NOT NULL DEFAULT '0' COMMENT '用户',
  1491. `type` tinyint(1) NOT NULL DEFAULT '1' COMMENT '类型-废弃,用SYSTEM_SOURCE替代,暂时保留',
  1492. `system_source` tinyint(1) NOT NULL DEFAULT '1' COMMENT '所属平台',
  1493. `openid` varchar(50) DEFAULT NULL COMMENT 'OPENID-微信的唯一用户ID',
  1494. `unionid` varchar(50) DEFAULT NULL COMMENT 'UNIONID-微信的唯一用户ID',
  1495. `session_key` varchar(50) DEFAULT NULL COMMENT 'SESSION_KEY',
  1496. `access_token` varchar(200) DEFAULT NULL COMMENT 'ACCESS_TOKEN',
  1497. `refresh_token` varchar(200) DEFAULT NULL COMMENT 'REFRESH_TOKEN',
  1498. `expires_in` varchar(100) DEFAULT NULL COMMENT 'EXPIRES_IN',
  1499. `state` tinyint(1) NOT NULL DEFAULT '1' COMMENT '状态',
  1500. `cdate` int(11) NOT NULL DEFAULT '0' COMMENT '录入时间'
  1501. ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4;
  1502. -- --------------------------------------------------------
  1503. --
  1504. -- 表的结构 `churen_pay_account`
  1505. --
  1506. DROP TABLE IF EXISTS `churen_pay_account`;
  1507. CREATE TABLE `churen_pay_account` (
  1508. `id` int(11) UNSIGNED NOT NULL COMMENT 'ID',
  1509. `name` varchar(60) DEFAULT NULL COMMENT '账户名称',
  1510. `type` varchar(30) DEFAULT NULL COMMENT '支付类型',
  1511. `box` int(11) NOT NULL DEFAULT '1' COMMENT '支付环境-沙箱模式为支付时第三方平台不实际收费,测试环境为不拉取第三方支付',
  1512. `system_source` tinyint(1) NOT NULL DEFAULT '1' COMMENT '支付平台',
  1513. `channel_id` int(11) NOT NULL DEFAULT '1' COMMENT '所属渠道',
  1514. `mchid` varchar(150) DEFAULT NULL COMMENT '商户号',
  1515. `key` varchar(150) DEFAULT NULL COMMENT '密匙KEY',
  1516. `appid` varchar(150) DEFAULT NULL COMMENT 'APPID',
  1517. `appsecret` varchar(300) DEFAULT NULL COMMENT 'APPSECRET',
  1518. `account` varchar(150) DEFAULT NULL COMMENT '支付账号',
  1519. `private_key` text COMMENT '商户私钥-HTTPS://DOC.OPEN.ALIPAY.COM/DOC2/DETAIL.HTM?SPM=A219A.7629140.0.0.NBDXFY&TREEID=58&ARTICLEID=103242&DOCTYPE=1',
  1520. `m_public_key` varchar(1000) DEFAULT NULL COMMENT '商户公钥-HTTPS://B.ALIPAY.COM/ORDER/PIDANDKEY.HTM',
  1521. `public_key` varchar(1000) DEFAULT NULL COMMENT '支付宝公钥-HTTPS://B.ALIPAY.COM/ORDER/PIDANDKEY.HTM',
  1522. `appCertPath` varchar(150) DEFAULT NULL COMMENT '支付宝APPCERTPATH',
  1523. `alipayCertPath` varchar(150) DEFAULT NULL COMMENT '支付宝ALIPAYCERTPATH',
  1524. `rootCertPath` varchar(150) DEFAULT NULL COMMENT '支付宝ROOTCERTPATH',
  1525. `file_cert` varchar(150) DEFAULT NULL COMMENT '证书CERT文件-微信支付需要退款时使用',
  1526. `file_key` varchar(150) DEFAULT NULL COMMENT '证书KEY文件-微信支付需要退款时使用',
  1527. `timeout` int(11) NOT NULL DEFAULT '600' COMMENT '支付有效期-秒',
  1528. `state` tinyint(1) NOT NULL DEFAULT '1' COMMENT '状态',
  1529. `cdate` int(11) NOT NULL DEFAULT '0' COMMENT '申请时间'
  1530. ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4;
  1531. -- --------------------------------------------------------
  1532. --
  1533. -- 表的结构 `churen_pay_channel`
  1534. --
  1535. DROP TABLE IF EXISTS `churen_pay_channel`;
  1536. CREATE TABLE `churen_pay_channel` (
  1537. `id` int(11) UNSIGNED NOT NULL COMMENT 'ID',
  1538. `name` varchar(60) DEFAULT NULL COMMENT '渠道名称',
  1539. `state` tinyint(1) NOT NULL DEFAULT '1' COMMENT '状态',
  1540. `cdate` int(11) NOT NULL DEFAULT '0' COMMENT '申请时间'
  1541. ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4;
  1542. -- --------------------------------------------------------
  1543. --
  1544. -- 表的结构 `churen_pay_order`
  1545. --
  1546. DROP TABLE IF EXISTS `churen_pay_order`;
  1547. CREATE TABLE `churen_pay_order` (
  1548. `id` int(11) UNSIGNED NOT NULL COMMENT 'ID',
  1549. `uid` int(11) NOT NULL DEFAULT '1' COMMENT '用户',
  1550. `username` varchar(200) DEFAULT NULL COMMENT '用户名称',
  1551. `name` varchar(200) DEFAULT NULL COMMENT '订单名称',
  1552. `order_id` varchar(200) DEFAULT NULL COMMENT '订单ID',
  1553. `type` varchar(30) DEFAULT NULL COMMENT '支付类型',
  1554. `product_id` varchar(800) DEFAULT NULL COMMENT '产品ID-可能为多个',
  1555. `account_id` int(11) NOT NULL DEFAULT '1' COMMENT '支付账户',
  1556. `project_id` int(11) NOT NULL DEFAULT '0' COMMENT '所属项目',
  1557. `cash` varchar(11) DEFAULT NULL COMMENT '金额',
  1558. `status` tinyint(1) NOT NULL DEFAULT '1' COMMENT '支付状态',
  1559. `status_desc` varchar(300) DEFAULT NULL COMMENT '支付状态说明',
  1560. `tk_pic` varchar(150) DEFAULT NULL COMMENT '退款截图',
  1561. `tk_time` int(11) NOT NULL DEFAULT '0' COMMENT '退款时间',
  1562. `tk_admin` int(11) NOT NULL DEFAULT '1' COMMENT '退款审核人',
  1563. `tk_desc` varchar(300) DEFAULT NULL COMMENT '退款备注',
  1564. `param` text COMMENT '支付信息-用于二次支付',
  1565. `state` tinyint(1) NOT NULL DEFAULT '1' COMMENT '状态',
  1566. `pay_time` int(11) NOT NULL DEFAULT '0' COMMENT '付款时间',
  1567. `cdate` int(11) NOT NULL DEFAULT '0' COMMENT '申请时间',
  1568. `refund_cash` varchar(11) NOT NULL COMMENT '退款金额'
  1569. ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4;
  1570. -- --------------------------------------------------------
  1571. --
  1572. -- 表的结构 `churen_pay_project`
  1573. --
  1574. DROP TABLE IF EXISTS `churen_pay_project`;
  1575. CREATE TABLE `churen_pay_project` (
  1576. `id` int(11) UNSIGNED NOT NULL COMMENT 'ID',
  1577. `name` varchar(60) DEFAULT NULL COMMENT '项目名称',
  1578. `key` varchar(150) DEFAULT NULL COMMENT '密匙KEY',
  1579. `notify` varchar(500) DEFAULT NULL COMMENT '支付完成回调接口',
  1580. `state` tinyint(1) NOT NULL DEFAULT '1' COMMENT '状态',
  1581. `cdate` int(11) NOT NULL DEFAULT '0' COMMENT '申请时间'
  1582. ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4;
  1583. -- --------------------------------------------------------
  1584. --
  1585. -- 表的结构 `churen_poster_template`
  1586. --
  1587. DROP TABLE IF EXISTS `churen_poster_template`;
  1588. CREATE TABLE `churen_poster_template` (
  1589. `id` int(11) UNSIGNED NOT NULL COMMENT 'ID',
  1590. `name` varchar(32) DEFAULT NULL COMMENT '模板名称',
  1591. `key` varchar(32) DEFAULT NULL COMMENT '模板标识-调用模板时,使用该标识来获取模板信息,相同的模板标识,将随机抽取一条',
  1592. `type` varchar(32) DEFAULT NULL COMMENT '使用的图形库',
  1593. `update` tinyint(1) NOT NULL DEFAULT '2' COMMENT '生成规则',
  1594. `create` int(11) NOT NULL DEFAULT '2' COMMENT '模板背景图',
  1595. `width` varchar(11) DEFAULT NULL COMMENT '背景图宽度',
  1596. `height` varchar(11) DEFAULT NULL COMMENT '背景图高度',
  1597. `background` varchar(150) DEFAULT NULL COMMENT '模板背景图',
  1598. `pic` varchar(150) DEFAULT NULL COMMENT '样例图',
  1599. `state` tinyint(1) NOT NULL DEFAULT '1' COMMENT '状态',
  1600. `cdate` int(11) NOT NULL DEFAULT '0' COMMENT '录入时间'
  1601. ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4;
  1602. -- --------------------------------------------------------
  1603. --
  1604. -- 表的结构 `churen_push_col`
  1605. --
  1606. DROP TABLE IF EXISTS `churen_push_col`;
  1607. CREATE TABLE `churen_push_col` (
  1608. `id` int(11) UNSIGNED NOT NULL COMMENT 'ID',
  1609. `name` varchar(32) DEFAULT NULL COMMENT '字段名称',
  1610. `ename` varchar(32) DEFAULT NULL COMMENT '字段英文名称-用于前台使用',
  1611. `desc` varchar(200) DEFAULT NULL COMMENT '字段描述',
  1612. `type` tinyint(1) NOT NULL DEFAULT '1' COMMENT '类型',
  1613. `pic` varchar(20) DEFAULT NULL COMMENT '图片尺寸提醒-请直接输入尺寸,如100*100',
  1614. `option` varchar(1000) DEFAULT NULL COMMENT '可选项-每行一个选项,多个直接换行',
  1615. `reorder` int(11) NOT NULL DEFAULT '1' COMMENT '排序(数值越大越靠前)',
  1616. `state` tinyint(1) NOT NULL DEFAULT '1' COMMENT '状态',
  1617. `cdate` int(11) NOT NULL DEFAULT '0' COMMENT '录入时间'
  1618. ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4;
  1619. -- --------------------------------------------------------
  1620. --
  1621. -- 表的结构 `churen_push_data`
  1622. --
  1623. DROP TABLE IF EXISTS `churen_push_data`;
  1624. CREATE TABLE `churen_push_data` (
  1625. `id` int(11) UNSIGNED NOT NULL COMMENT 'ID',
  1626. `info_id` int(11) NOT NULL DEFAULT '1' COMMENT '所属推送位',
  1627. `type` int(11) NOT NULL DEFAULT '-1' COMMENT '功能类型',
  1628. `type_id` int(11) NOT NULL DEFAULT '0' COMMENT '关联数据',
  1629. `data` text COMMENT '自定义数据项',
  1630. `reorder` int(11) NOT NULL DEFAULT '1' COMMENT '排序(数值越大越靠前)',
  1631. `state` tinyint(1) NOT NULL DEFAULT '1' COMMENT '状态',
  1632. `cdate` int(11) NOT NULL DEFAULT '0' COMMENT '录入时间'
  1633. ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4;
  1634. -- --------------------------------------------------------
  1635. --
  1636. -- 表的结构 `churen_push_func`
  1637. --
  1638. DROP TABLE IF EXISTS `churen_push_func`;
  1639. CREATE TABLE `churen_push_func` (
  1640. `id` int(11) UNSIGNED NOT NULL COMMENT 'ID',
  1641. `name` varchar(32) DEFAULT NULL COMMENT '功能名称',
  1642. `api` varchar(200) DEFAULT NULL COMMENT '功能接口-可以直接输入HTTP接口地址,也可以使用DEVER接口,如果接口返回一条数据,就为单条,如果是多条,就是列表',
  1643. `col` text COMMENT '关联字段',
  1644. `reorder` int(11) NOT NULL DEFAULT '1' COMMENT '排序(数值越大越靠前)',
  1645. `state` tinyint(1) NOT NULL DEFAULT '1' COMMENT '状态',
  1646. `cdate` int(11) NOT NULL DEFAULT '0' COMMENT '录入时间',
  1647. `type` tinyint(1) NOT NULL DEFAULT '1' COMMENT '功能类型'
  1648. ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4;
  1649. -- --------------------------------------------------------
  1650. --
  1651. -- 表的结构 `churen_push_info`
  1652. --
  1653. DROP TABLE IF EXISTS `churen_push_info`;
  1654. CREATE TABLE `churen_push_info` (
  1655. `id` int(11) UNSIGNED NOT NULL COMMENT '推送位ID',
  1656. `name` varchar(60) DEFAULT NULL COMMENT '推送位标题',
  1657. `key` varchar(60) DEFAULT NULL COMMENT '推送位标识',
  1658. `num` int(11) NOT NULL DEFAULT '10' COMMENT '数据显示条数-为空或小于0则取默认值10,只对前台有效,当有分页时,则为每页显示的条数',
  1659. `func` varchar(300) DEFAULT NULL COMMENT '功能类型',
  1660. `col` varchar(300) DEFAULT NULL COMMENT '启用的字段',
  1661. `col_pic` varchar(500) DEFAULT NULL COMMENT '图片尺寸提醒-请直接输入提醒的文字即可,如100*100,如果有多个图片字段,请用换行隔开',
  1662. `reorder` int(11) NOT NULL DEFAULT '1' COMMENT '排序(数值越大越靠前)',
  1663. `state` tinyint(1) NOT NULL DEFAULT '1' COMMENT '状态',
  1664. `cdate` int(11) NOT NULL DEFAULT '0' COMMENT '录入时间'
  1665. ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4;
  1666. -- --------------------------------------------------------
  1667. --
  1668. -- 表的结构 `churen_score_action`
  1669. --
  1670. DROP TABLE IF EXISTS `churen_score_action`;
  1671. CREATE TABLE `churen_score_action` (
  1672. `id` int(11) UNSIGNED NOT NULL COMMENT 'ID',
  1673. `name` varchar(80) DEFAULT NULL COMMENT '行为名称',
  1674. `key` varchar(80) DEFAULT NULL COMMENT '行为标识-用于程序中统计积分总数',
  1675. `state` tinyint(1) NOT NULL DEFAULT '1' COMMENT '状态',
  1676. `cdate` int(11) NOT NULL DEFAULT '0' COMMENT '录入时间'
  1677. ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4;
  1678. -- --------------------------------------------------------
  1679. --
  1680. -- 表的结构 `churen_score_action_log`
  1681. --
  1682. DROP TABLE IF EXISTS `churen_score_action_log`;
  1683. CREATE TABLE `churen_score_action_log` (
  1684. `id` int(11) UNSIGNED NOT NULL COMMENT 'ID',
  1685. `uid` int(11) NOT NULL DEFAULT '0' COMMENT '用户名',
  1686. `parent_uid` int(11) NOT NULL DEFAULT '0' COMMENT '上级用户',
  1687. `action_id` int(11) NOT NULL DEFAULT '1' COMMENT '所属行为',
  1688. `type` varchar(32) DEFAULT NULL COMMENT '所属数据源',
  1689. `type_id` int(11) NOT NULL DEFAULT '0' COMMENT '数据源ID',
  1690. `score_type` int(11) NOT NULL DEFAULT '1' COMMENT '是否增加积分',
  1691. `cron_type` int(11) NOT NULL DEFAULT '3' COMMENT '状态',
  1692. `score` varchar(30) DEFAULT NULL COMMENT '增加积分数',
  1693. `num` varchar(30) DEFAULT NULL COMMENT '增加的积分将乘以该数量',
  1694. `mscore` varchar(30) DEFAULT NULL COMMENT '手动增加积分数',
  1695. `callback` varchar(800) DEFAULT NULL COMMENT '行为回调方法',
  1696. `cdate` int(11) NOT NULL DEFAULT '0' COMMENT '录入时间'
  1697. ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4;
  1698. -- --------------------------------------------------------
  1699. --
  1700. -- 表的结构 `churen_score_action_log_finish`
  1701. --
  1702. DROP TABLE IF EXISTS `churen_score_action_log_finish`;
  1703. CREATE TABLE `churen_score_action_log_finish` (
  1704. `id` int(11) UNSIGNED NOT NULL COMMENT 'ID',
  1705. `log_id` int(11) NOT NULL DEFAULT '0' COMMENT 'ID',
  1706. `uid` int(11) NOT NULL DEFAULT '0' COMMENT '用户名',
  1707. `parent_uid` int(11) NOT NULL DEFAULT '0' COMMENT '上级用户',
  1708. `action_id` int(11) NOT NULL DEFAULT '1' COMMENT '所属行为',
  1709. `type` varchar(32) DEFAULT NULL COMMENT '所属数据源',
  1710. `type_id` int(11) NOT NULL DEFAULT '0' COMMENT '数据源ID',
  1711. `score_type` int(11) NOT NULL DEFAULT '1' COMMENT '是否增加积分',
  1712. `cron_type` int(11) NOT NULL DEFAULT '3' COMMENT '状态',
  1713. `score` varchar(30) DEFAULT NULL COMMENT '增加积分数',
  1714. `num` varchar(30) DEFAULT NULL COMMENT '增加的积分将乘以该数量',
  1715. `mscore` varchar(30) DEFAULT NULL COMMENT '手动增加积分数',
  1716. `callback` varchar(800) DEFAULT NULL COMMENT '行为回调方法',
  1717. `cdate` int(11) NOT NULL DEFAULT '0' COMMENT '录入时间'
  1718. ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4;
  1719. -- --------------------------------------------------------
  1720. --
  1721. -- 表的结构 `churen_score_config`
  1722. --
  1723. DROP TABLE IF EXISTS `churen_score_config`;
  1724. CREATE TABLE `churen_score_config` (
  1725. `id` int(11) UNSIGNED NOT NULL COMMENT 'ID',
  1726. `name` varchar(32) DEFAULT NULL COMMENT '积分名称',
  1727. `type` int(11) NOT NULL DEFAULT '2' COMMENT '是否主积分-只能有一个主积分,主积分将作为用户主要积分显示在用户信息中',
  1728. `callback_type` tinyint(1) NOT NULL DEFAULT '1' COMMENT '回调类型',
  1729. `callback_value` varchar(800) DEFAULT NULL COMMENT '回调地址-积分增减成功后,将自动调取回调,会把USER_LOG表的数据传过去,如果代码中设置了回调,该回调将失效',
  1730. `reorder` int(11) NOT NULL DEFAULT '1' COMMENT '排序(数值越大越靠前)',
  1731. `state` tinyint(1) NOT NULL DEFAULT '1' COMMENT '状态',
  1732. `cdate` int(11) NOT NULL DEFAULT '0' COMMENT '录入时间'
  1733. ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4;
  1734. -- --------------------------------------------------------
  1735. --
  1736. -- 表的结构 `churen_score_level`
  1737. --
  1738. DROP TABLE IF EXISTS `churen_score_level`;
  1739. CREATE TABLE `churen_score_level` (
  1740. `id` int(11) UNSIGNED NOT NULL COMMENT 'ID',
  1741. `name` varchar(32) DEFAULT NULL COMMENT '等级名称',
  1742. `level_type_id` int(11) NOT NULL DEFAULT '1' COMMENT '等级类别',
  1743. `score` text COMMENT '积分设置',
  1744. `level` int(11) NOT NULL DEFAULT '1' COMMENT '等级数字-请直接输入等级数字,每次升级按照该数字进行匹配,如果设置为1,则为LV1,不允许重复',
  1745. `total_type` tinyint(1) NOT NULL DEFAULT '2' COMMENT '是否限制当前级别的总数-如果限制,请填写限制的总数,升级的用户数不能超过该数量',
  1746. `total` int(11) NOT NULL DEFAULT '0' COMMENT '限制总数',
  1747. `state` tinyint(1) NOT NULL DEFAULT '1' COMMENT '状态',
  1748. `cdate` int(11) NOT NULL DEFAULT '0' COMMENT '录入时间'
  1749. ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4;
  1750. -- --------------------------------------------------------
  1751. --
  1752. -- 表的结构 `churen_score_level_type`
  1753. --
  1754. DROP TABLE IF EXISTS `churen_score_level_type`;
  1755. CREATE TABLE `churen_score_level_type` (
  1756. `id` int(11) UNSIGNED NOT NULL COMMENT 'ID',
  1757. `name` varchar(32) DEFAULT NULL COMMENT '类别名称',
  1758. `type` int(11) NOT NULL DEFAULT '1' COMMENT '升级方式',
  1759. `score` int(11) NOT NULL DEFAULT '1' COMMENT '是否清空积分-选择清空将清空等级里设置的积分',
  1760. `reorder` int(11) NOT NULL DEFAULT '1' COMMENT '排序-数值越大越靠前,排在前面的类别将优先显示,如设置了VIP等级和普通用户等级,VIP等级的排序比普通用户等级大,VIP等级将优先显示',
  1761. `state` tinyint(1) NOT NULL DEFAULT '1' COMMENT '状态',
  1762. `cdate` int(11) NOT NULL DEFAULT '0' COMMENT '录入时间'
  1763. ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4;
  1764. -- --------------------------------------------------------
  1765. --
  1766. -- 表的结构 `churen_score_rule`
  1767. --
  1768. DROP TABLE IF EXISTS `churen_score_rule`;
  1769. CREATE TABLE `churen_score_rule` (
  1770. `id` int(11) UNSIGNED NOT NULL COMMENT 'ID',
  1771. `config_id` int(11) NOT NULL DEFAULT '1' COMMENT '积分名称',
  1772. `action_id` int(11) NOT NULL DEFAULT '1' COMMENT '所属行为',
  1773. `num` varchar(80) DEFAULT NULL COMMENT '增加积分数-如果为负数,则是减少积分',
  1774. `upper` int(11) NOT NULL DEFAULT '1' COMMENT '是否有上限限制',
  1775. `upper_type` int(11) NOT NULL DEFAULT '1' COMMENT '上限限制类型',
  1776. `upper_time` int(11) NOT NULL DEFAULT '12' COMMENT '间隔小时数',
  1777. `upper_limit` int(11) NOT NULL DEFAULT '2' COMMENT '上限限制次数-小于1则不限制',
  1778. `rebate_type` tinyint(1) NOT NULL DEFAULT '1' COMMENT '返利设置',
  1779. `rebate_config_id` int(11) NOT NULL DEFAULT '-1' COMMENT '返利积分名称',
  1780. `rebate_value` varchar(500) DEFAULT NULL COMMENT '返利积分数-如果是百分比类型,这里如果填的是10,那就是当前获得积分数的10%。直接填写数字就是当前用户的上级(1级)返利,支持多层层级设置,1:20,2:30 就是1级202级30,同时也支持0级',
  1781. `state` tinyint(1) NOT NULL DEFAULT '1' COMMENT '状态',
  1782. `cdate` int(11) NOT NULL DEFAULT '0' COMMENT '录入时间'
  1783. ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4;
  1784. -- --------------------------------------------------------
  1785. --
  1786. -- 表的结构 `churen_score_user`
  1787. --
  1788. DROP TABLE IF EXISTS `churen_score_user`;
  1789. CREATE TABLE `churen_score_user` (
  1790. `id` int(11) UNSIGNED NOT NULL COMMENT 'ID',
  1791. `uid` int(11) NOT NULL DEFAULT '0' COMMENT '用户名',
  1792. `config_id` int(11) NOT NULL DEFAULT '1' COMMENT '积分名称',
  1793. `score` varchar(80) DEFAULT NULL COMMENT '可用数量',
  1794. `no_score` varchar(80) DEFAULT NULL COMMENT '冻结数量',
  1795. `cdate` int(11) NOT NULL DEFAULT '0' COMMENT '录入时间'
  1796. ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4;
  1797. -- --------------------------------------------------------
  1798. --
  1799. -- 表的结构 `churen_shop_apply`
  1800. --
  1801. DROP TABLE IF EXISTS `churen_shop_apply`;
  1802. CREATE TABLE `churen_shop_apply` (
  1803. `id` int(11) UNSIGNED NOT NULL COMMENT 'ID',
  1804. `name` varchar(100) DEFAULT NULL COMMENT '申请人姓名',
  1805. `mobile` bigint(11) NOT NULL DEFAULT '0' COMMENT '申请人电话',
  1806. `area` varchar(500) DEFAULT NULL COMMENT '所在城市',
  1807. `province` int(11) NOT NULL DEFAULT '0' COMMENT '省份',
  1808. `city` int(11) NOT NULL DEFAULT '0' COMMENT '城市',
  1809. `lng` varchar(100) DEFAULT NULL COMMENT '经度',
  1810. `lat` varchar(100) DEFAULT NULL COMMENT '纬度',
  1811. `status` int(11) NOT NULL DEFAULT '1' COMMENT '申请状态',
  1812. `state` tinyint(1) NOT NULL DEFAULT '1' COMMENT '状态',
  1813. `cdate` int(11) NOT NULL DEFAULT '0' COMMENT '录入时间'
  1814. ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4;
  1815. -- --------------------------------------------------------
  1816. --
  1817. -- 表的结构 `churen_shop_buy_order`
  1818. --
  1819. DROP TABLE IF EXISTS `churen_shop_buy_order`;
  1820. CREATE TABLE `churen_shop_buy_order` (
  1821. `id` int(11) UNSIGNED NOT NULL COMMENT 'ID',
  1822. `type` int(11) NOT NULL DEFAULT '0' COMMENT '采购人类型',
  1823. `type_id` int(11) NOT NULL DEFAULT '0' COMMENT '采购人',
  1824. `source_type` int(11) NOT NULL DEFAULT '0' COMMENT '供货商类型',
  1825. `source_id` int(11) NOT NULL DEFAULT '0' COMMENT '供货商',
  1826. `name` varchar(800) DEFAULT NULL COMMENT '订单名称',
  1827. `parent_order_id` varchar(100) DEFAULT NULL COMMENT '原订单编号',
  1828. `order_num` varchar(100) DEFAULT NULL COMMENT '订单编号',
  1829. `price` varchar(50) DEFAULT NULL COMMENT '购买价格-销售价',
  1830. `p_price` varchar(50) DEFAULT NULL COMMENT '购买价格-出厂价,给厂家看的',
  1831. `num` int(11) NOT NULL DEFAULT '0' COMMENT '购买数量',
  1832. `refund_cash` varchar(50) DEFAULT NULL COMMENT '退款合计金额-采购价格',
  1833. `refund_p_cash` varchar(50) DEFAULT NULL COMMENT '退款合计金额-出厂价格',
  1834. `refund_status` tinyint(1) NOT NULL DEFAULT '1' COMMENT '申请退款类型',
  1835. `info` varchar(300) DEFAULT NULL COMMENT '订单备注',
  1836. `status` tinyint(1) NOT NULL DEFAULT '1' COMMENT '状态',
  1837. `state` tinyint(1) NOT NULL DEFAULT '1' COMMENT '状态',
  1838. `fdate` int(11) NOT NULL DEFAULT '0' COMMENT '完成时间',
  1839. `operdate` int(11) NOT NULL DEFAULT '0' COMMENT '审核时间',
  1840. `cdate` int(11) NOT NULL DEFAULT '0' COMMENT '下单时间',
  1841. `audit` tinyint(1) NOT NULL DEFAULT '2' COMMENT '审核状态',
  1842. `audit_desc` varchar(500) NOT NULL COMMENT '未通过原因'
  1843. ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4;
  1844. -- --------------------------------------------------------
  1845. --
  1846. -- 表的结构 `churen_shop_buy_order_goods`
  1847. --
  1848. DROP TABLE IF EXISTS `churen_shop_buy_order_goods`;
  1849. CREATE TABLE `churen_shop_buy_order_goods` (
  1850. `id` int(11) UNSIGNED NOT NULL COMMENT 'ID',
  1851. `order_id` int(11) NOT NULL DEFAULT '0' COMMENT '订单表ID',
  1852. `goods_id` int(11) NOT NULL DEFAULT '0' COMMENT '商品名称',
  1853. `sku_id` int(11) NOT NULL DEFAULT '-1' COMMENT 'SKU_ID',
  1854. `extend` text COMMENT '扩展信息',
  1855. `price` varchar(50) DEFAULT NULL COMMENT '单价',
  1856. `p_price` varchar(50) DEFAULT NULL COMMENT '单价',
  1857. `num` int(11) NOT NULL DEFAULT '0' COMMENT '购买数量',
  1858. `status` int(11) NOT NULL DEFAULT '1' COMMENT '状态',
  1859. `state` tinyint(1) NOT NULL DEFAULT '1' COMMENT '状态',
  1860. `cdate` int(11) NOT NULL DEFAULT '0' COMMENT '创建时间'
  1861. ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4;
  1862. -- --------------------------------------------------------
  1863. --
  1864. -- 表的结构 `churen_shop_buy_order_ps`
  1865. --
  1866. DROP TABLE IF EXISTS `churen_shop_buy_order_ps`;
  1867. CREATE TABLE `churen_shop_buy_order_ps` (
  1868. `id` int(11) UNSIGNED NOT NULL COMMENT 'ID',
  1869. `order_id` int(11) NOT NULL DEFAULT '0' COMMENT '订单表ID',
  1870. `service_id` int(11) NOT NULL DEFAULT '-1' COMMENT '配送服务商',
  1871. `order_num` varchar(800) DEFAULT NULL COMMENT '快递单号-多个用换行隔开',
  1872. `phy` varchar(200) DEFAULT NULL COMMENT '配货员',
  1873. `dby` varchar(200) DEFAULT NULL COMMENT '打包员',
  1874. `zl` varchar(200) DEFAULT NULL COMMENT '包裹重量-单位:克',
  1875. `tj` varchar(200) DEFAULT NULL COMMENT '包裹体积-单位:立方厘米',
  1876. `num` int(11) NOT NULL DEFAULT '0' COMMENT '包裹数量',
  1877. `price` varchar(50) DEFAULT NULL COMMENT '快递费用',
  1878. `status` int(11) NOT NULL DEFAULT '1' COMMENT '状态',
  1879. `ydate` int(11) NOT NULL DEFAULT '0' COMMENT '签收时间',
  1880. `state` tinyint(1) NOT NULL DEFAULT '1' COMMENT '状态',
  1881. `cdate` int(11) NOT NULL DEFAULT '0' COMMENT '发货时间'
  1882. ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4;
  1883. -- --------------------------------------------------------
  1884. --
  1885. -- 表的结构 `churen_shop_buy_order_refund`
  1886. --
  1887. DROP TABLE IF EXISTS `churen_shop_buy_order_refund`;
  1888. CREATE TABLE `churen_shop_buy_order_refund` (
  1889. `id` int(11) UNSIGNED NOT NULL COMMENT 'ID',
  1890. `order_id` int(11) NOT NULL DEFAULT '0' COMMENT '订单表ID',
  1891. `order_goods_id` varchar(100) NOT NULL DEFAULT '-1' COMMENT '订单商品表ID',
  1892. `cash` varchar(300) DEFAULT NULL COMMENT '退款金额-采购价',
  1893. `p_cash` varchar(300) DEFAULT NULL COMMENT '退款金额-出厂价',
  1894. `num` int(11) NOT NULL DEFAULT '0' COMMENT '退款数量',
  1895. `desc` varchar(300) DEFAULT NULL COMMENT '退款描述',
  1896. `pic` varchar(8000) DEFAULT NULL COMMENT '退款图片',
  1897. `type` int(11) NOT NULL DEFAULT '1' COMMENT '类型',
  1898. `status` int(11) NOT NULL DEFAULT '1' COMMENT '状态',
  1899. `process` int(11) NOT NULL DEFAULT '1' COMMENT '审核进度',
  1900. `state` tinyint(1) NOT NULL DEFAULT '1' COMMENT '状态',
  1901. `cdate` int(11) NOT NULL DEFAULT '0' COMMENT '创建时间'
  1902. ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4;
  1903. -- --------------------------------------------------------
  1904. --
  1905. -- 表的结构 `churen_shop_buy_stat`
  1906. --
  1907. DROP TABLE IF EXISTS `churen_shop_buy_stat`;
  1908. CREATE TABLE `churen_shop_buy_stat` (
  1909. `id` int(11) UNSIGNED NOT NULL COMMENT 'ID',
  1910. `day` int(11) NOT NULL DEFAULT '0' COMMENT '日期',
  1911. `shop_id` int(11) NOT NULL DEFAULT '0' COMMENT '所属门店',
  1912. `area` varchar(500) DEFAULT NULL COMMENT '选择地区',
  1913. `province` int(11) NOT NULL DEFAULT '0' COMMENT '省份',
  1914. `city` int(11) NOT NULL DEFAULT '0' COMMENT '城市',
  1915. `county` int(11) NOT NULL DEFAULT '0' COMMENT '县区',
  1916. `town` int(11) NOT NULL DEFAULT '0' COMMENT '街道',
  1917. `order` varchar(100) DEFAULT NULL COMMENT '订货单数',
  1918. `goods` varchar(100) DEFAULT NULL COMMENT '商品数量',
  1919. `cash` varchar(100) DEFAULT NULL COMMENT '采购金额',
  1920. `p_cash` varchar(100) DEFAULT NULL COMMENT '出厂价',
  1921. `state` tinyint(1) NOT NULL DEFAULT '1' COMMENT '状态',
  1922. `cdate` int(11) NOT NULL DEFAULT '0' COMMENT '生成时间'
  1923. ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4;
  1924. -- --------------------------------------------------------
  1925. --
  1926. -- 表的结构 `churen_shop_buy_stat_month`
  1927. --
  1928. DROP TABLE IF EXISTS `churen_shop_buy_stat_month`;
  1929. CREATE TABLE `churen_shop_buy_stat_month` (
  1930. `id` int(11) UNSIGNED NOT NULL COMMENT 'ID',
  1931. `shop_id` int(11) NOT NULL DEFAULT '0' COMMENT '所属门店',
  1932. `month` int(11) NOT NULL DEFAULT '0' COMMENT '账单时间',
  1933. `order` varchar(100) DEFAULT NULL COMMENT '订单量',
  1934. `goods` varchar(100) DEFAULT NULL COMMENT '商品数',
  1935. `cash` varchar(100) DEFAULT NULL COMMENT '销售额',
  1936. `type` int(11) NOT NULL DEFAULT '1' COMMENT '是否已对账',
  1937. `state` tinyint(1) NOT NULL DEFAULT '1' COMMENT '状态',
  1938. `cdate` int(11) NOT NULL DEFAULT '0' COMMENT '生成时间'
  1939. ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4;
  1940. -- --------------------------------------------------------
  1941. --
  1942. -- 表的结构 `churen_shop_cart`
  1943. --
  1944. DROP TABLE IF EXISTS `churen_shop_cart`;
  1945. CREATE TABLE `churen_shop_cart` (
  1946. `id` int(11) UNSIGNED NOT NULL COMMENT 'ID',
  1947. `uid` int(11) NOT NULL DEFAULT '0' COMMENT '用户名',
  1948. `shop_id` int(11) NOT NULL DEFAULT '0' COMMENT '所属门店',
  1949. `goods_id` int(11) NOT NULL DEFAULT '0' COMMENT '商品名称',
  1950. `sku_id` int(11) NOT NULL DEFAULT '0' COMMENT 'SKU',
  1951. `num` int(11) NOT NULL DEFAULT '0' COMMENT '购买数量',
  1952. `status` int(11) NOT NULL DEFAULT '1' COMMENT '状态',
  1953. `state` tinyint(1) NOT NULL DEFAULT '1' COMMENT '状态',
  1954. `cdate` int(11) NOT NULL DEFAULT '0' COMMENT '创建时间'
  1955. ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4;
  1956. -- --------------------------------------------------------
  1957. --
  1958. -- 表的结构 `churen_shop_coupon`
  1959. --
  1960. DROP TABLE IF EXISTS `churen_shop_coupon`;
  1961. CREATE TABLE `churen_shop_coupon` (
  1962. `id` int(11) UNSIGNED NOT NULL COMMENT 'ID',
  1963. `shop_id` int(11) NOT NULL DEFAULT '0' COMMENT '所属门店',
  1964. `coupon` varchar(500) DEFAULT NULL COMMENT '优惠券',
  1965. `method` int(11) NOT NULL DEFAULT '0' COMMENT '优惠券属性',
  1966. `coupon_id` int(11) NOT NULL DEFAULT '0' COMMENT '优惠券',
  1967. `city` int(11) NOT NULL DEFAULT '0' COMMENT '城市',
  1968. `day` int(11) NOT NULL DEFAULT '7' COMMENT '有效期-请选择天数',
  1969. `num` int(11) NOT NULL DEFAULT '10' COMMENT '发放数量-数量为0则不限量',
  1970. `act_num` int(11) NOT NULL DEFAULT '0' COMMENT '已用数量',
  1971. `state` tinyint(1) NOT NULL DEFAULT '1' COMMENT '状态',
  1972. `cdate` int(11) NOT NULL DEFAULT '0' COMMENT '创建时间'
  1973. ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4;
  1974. -- --------------------------------------------------------
  1975. --
  1976. -- 表的结构 `churen_shop_coupon_act`
  1977. --
  1978. DROP TABLE IF EXISTS `churen_shop_coupon_act`;
  1979. CREATE TABLE `churen_shop_coupon_act` (
  1980. `id` int(11) UNSIGNED NOT NULL COMMENT 'ID',
  1981. `shop_id` int(11) NOT NULL DEFAULT '0' COMMENT '所属门店',
  1982. `act_id` int(11) NOT NULL DEFAULT '0' COMMENT '活动名称',
  1983. `shop_coupon_id` varchar(500) DEFAULT NULL COMMENT '勾选参与活动可发放的优惠券',
  1984. `state` tinyint(1) NOT NULL DEFAULT '1' COMMENT '状态',
  1985. `cdate` int(11) NOT NULL DEFAULT '0' COMMENT '创建时间'
  1986. ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4;
  1987. -- --------------------------------------------------------
  1988. --
  1989. -- 表的结构 `churen_shop_coupon_act_1`
  1990. --
  1991. DROP TABLE IF EXISTS `churen_shop_coupon_act_1`;
  1992. CREATE TABLE `churen_shop_coupon_act_1` (
  1993. `id` int(11) UNSIGNED NOT NULL COMMENT 'ID',
  1994. `shop_id` int(11) NOT NULL DEFAULT '0' COMMENT '所属门店',
  1995. `shop_coupon_id` varchar(500) DEFAULT NULL COMMENT '勾选参与活动可发放的优惠券',
  1996. `state` tinyint(1) NOT NULL DEFAULT '1' COMMENT '状态',
  1997. `cdate` int(11) NOT NULL DEFAULT '0' COMMENT '创建时间'
  1998. ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4;
  1999. -- --------------------------------------------------------
  2000. --
  2001. -- 表的结构 `churen_shop_factory`
  2002. --
  2003. DROP TABLE IF EXISTS `churen_shop_factory`;
  2004. CREATE TABLE `churen_shop_factory` (
  2005. `id` int(11) UNSIGNED NOT NULL COMMENT 'ID',
  2006. `shop_id` int(11) NOT NULL DEFAULT '0' COMMENT '所属门店',
  2007. `factory_id` int(11) NOT NULL DEFAULT '0' COMMENT '所属工厂',
  2008. `city` int(11) NOT NULL DEFAULT '0' COMMENT '城市',
  2009. `state` tinyint(1) NOT NULL DEFAULT '1' COMMENT '状态',
  2010. `cdate` int(11) NOT NULL DEFAULT '0' COMMENT '创建时间'
  2011. ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4;
  2012. -- --------------------------------------------------------
  2013. --
  2014. -- 表的结构 `churen_shop_factory_stat_month`
  2015. --
  2016. DROP TABLE IF EXISTS `churen_shop_factory_stat_month`;
  2017. CREATE TABLE `churen_shop_factory_stat_month` (
  2018. `id` int(11) UNSIGNED NOT NULL COMMENT 'ID',
  2019. `factory_id` int(11) NOT NULL DEFAULT '0' COMMENT '所属工厂',
  2020. `month` int(11) NOT NULL DEFAULT '0' COMMENT '账单时间',
  2021. `order` varchar(100) DEFAULT NULL COMMENT '订单量',
  2022. `goods` varchar(100) DEFAULT NULL COMMENT '商品数',
  2023. `cash` varchar(100) DEFAULT NULL COMMENT '销售额',
  2024. `type` int(11) NOT NULL DEFAULT '1' COMMENT '是否已对账',
  2025. `state` tinyint(1) NOT NULL DEFAULT '1' COMMENT '状态',
  2026. `cdate` int(11) NOT NULL DEFAULT '0' COMMENT '生成时间'
  2027. ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4;
  2028. -- --------------------------------------------------------
  2029. --
  2030. -- 表的结构 `churen_shop_feedback`
  2031. --
  2032. DROP TABLE IF EXISTS `churen_shop_feedback`;
  2033. CREATE TABLE `churen_shop_feedback` (
  2034. `id` int(11) UNSIGNED NOT NULL COMMENT 'ID',
  2035. `uid` int(11) NOT NULL DEFAULT '0' COMMENT '用户名',
  2036. `shop_id` int(11) NOT NULL DEFAULT '0' COMMENT '所属门店',
  2037. `mobile` varchar(300) DEFAULT NULL COMMENT '下单手机号',
  2038. `truename` varchar(300) DEFAULT NULL COMMENT '联系人姓名',
  2039. `content` varchar(800) DEFAULT NULL COMMENT '反馈内容',
  2040. `type` tinyint(1) NOT NULL DEFAULT '1' COMMENT '是否回复',
  2041. `state` tinyint(1) NOT NULL DEFAULT '1' COMMENT '状态',
  2042. `cdate` int(11) NOT NULL DEFAULT '0' COMMENT '时间'
  2043. ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4;
  2044. -- --------------------------------------------------------
  2045. --
  2046. -- 表的结构 `churen_shop_focus`
  2047. --
  2048. DROP TABLE IF EXISTS `churen_shop_focus`;
  2049. CREATE TABLE `churen_shop_focus` (
  2050. `id` int(11) UNSIGNED NOT NULL COMMENT 'ID',
  2051. `name` varchar(32) DEFAULT NULL COMMENT '名称',
  2052. `type` int(11) NOT NULL DEFAULT '1' COMMENT '类型',
  2053. `link` varchar(400) DEFAULT NULL COMMENT '链接',
  2054. `location` int(11) NOT NULL DEFAULT '1' COMMENT '显示位置',
  2055. `pic` varchar(150) DEFAULT NULL COMMENT '图片',
  2056. `reorder` int(11) NOT NULL DEFAULT '1' COMMENT '排序(数值越大越靠前)',
  2057. `state` tinyint(1) NOT NULL DEFAULT '1' COMMENT '状态',
  2058. `cdate` int(11) NOT NULL DEFAULT '0' COMMENT '录入时间'
  2059. ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4;
  2060. -- --------------------------------------------------------
  2061. --
  2062. -- 表的结构 `churen_shop_goods`
  2063. --
  2064. DROP TABLE IF EXISTS `churen_shop_goods`;
  2065. CREATE TABLE `churen_shop_goods` (
  2066. `id` int(11) UNSIGNED NOT NULL COMMENT 'ID',
  2067. `shop_id` int(11) NOT NULL DEFAULT '0' COMMENT '所属门店',
  2068. `goods_id` int(11) NOT NULL DEFAULT '0' COMMENT '商品名称',
  2069. `category_id` int(11) NOT NULL DEFAULT '0' COMMENT '分类ID',
  2070. `price_type` int(11) NOT NULL DEFAULT '1' COMMENT '价格类型',
  2071. `add_num` int(11) NOT NULL DEFAULT '0' COMMENT '新增库存-输入小于0的数字,则为减少库存',
  2072. `total_num` int(11) NOT NULL DEFAULT '0' COMMENT '总库存',
  2073. `sell_num` int(11) NOT NULL DEFAULT '0' COMMENT '销量',
  2074. `state` tinyint(1) NOT NULL DEFAULT '1' COMMENT '状态',
  2075. `cdate` int(11) NOT NULL DEFAULT '0' COMMENT '创建时间',
  2076. `status` tinyint(1) NOT NULL DEFAULT '2' COMMENT '状态'
  2077. ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4;
  2078. -- --------------------------------------------------------
  2079. --
  2080. -- 表的结构 `churen_shop_goods_sku`
  2081. --
  2082. DROP TABLE IF EXISTS `churen_shop_goods_sku`;
  2083. CREATE TABLE `churen_shop_goods_sku` (
  2084. `id` int(11) UNSIGNED NOT NULL COMMENT 'ID',
  2085. `shop_id` int(11) NOT NULL DEFAULT '0' COMMENT '所属门店',
  2086. `goods_id` int(11) NOT NULL DEFAULT '0' COMMENT '商品名称',
  2087. `sku_id` int(11) NOT NULL DEFAULT '-1' COMMENT 'SKU_ID',
  2088. `add_num` int(11) NOT NULL DEFAULT '0' COMMENT '新增库存-输入小于0的数字,则为减少库存',
  2089. `total_num` int(11) NOT NULL DEFAULT '0' COMMENT '总库存',
  2090. `sell_num` int(11) NOT NULL DEFAULT '0' COMMENT '销量',
  2091. `reorder` int(11) NOT NULL DEFAULT '1' COMMENT '排序-数值越大越靠前,相当于置顶',
  2092. `state` tinyint(1) NOT NULL DEFAULT '1' COMMENT '数据状态',
  2093. `cdate` int(11) NOT NULL DEFAULT '0' COMMENT '发布时间'
  2094. ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4;
  2095. -- --------------------------------------------------------
  2096. --
  2097. -- 表的结构 `churen_shop_info`
  2098. --
  2099. DROP TABLE IF EXISTS `churen_shop_info`;
  2100. CREATE TABLE `churen_shop_info` (
  2101. `id` int(11) UNSIGNED NOT NULL COMMENT 'ID',
  2102. `uid` int(11) NOT NULL DEFAULT '0' COMMENT '用户名',
  2103. `name` varchar(32) DEFAULT NULL COMMENT '门店名称',
  2104. `desc` varchar(800) DEFAULT NULL COMMENT '门店介绍',
  2105. `truename` varchar(100) DEFAULT NULL COMMENT '联系人姓名',
  2106. `mobile` bigint(11) NOT NULL DEFAULT '0' COMMENT '联系人电话',
  2107. `area` varchar(500) DEFAULT NULL COMMENT '所在城市',
  2108. `province` int(11) NOT NULL DEFAULT '0' COMMENT '省份',
  2109. `city` int(11) NOT NULL DEFAULT '0' COMMENT '城市',
  2110. `map` varchar(300) DEFAULT NULL COMMENT '地理位置',
  2111. `lng` varchar(100) DEFAULT NULL COMMENT '经度',
  2112. `lat` varchar(100) DEFAULT NULL COMMENT '纬度',
  2113. `address` varchar(1000) DEFAULT NULL COMMENT '门店地址',
  2114. `goods` text COMMENT '请先选择分类-选择分类,之后选择分类下的商品,点击商品名称可以设置库存',
  2115. `factory` text COMMENT '分配工厂-请先选择地区,再选择工厂',
  2116. `store` text COMMENT '分配仓库-请先选择地区,再选择仓库',
  2117. `open` int(11) NOT NULL DEFAULT '1' COMMENT '营业状态',
  2118. `method` int(11) NOT NULL DEFAULT '3' COMMENT '门店能力',
  2119. `worktime` varchar(100) DEFAULT NULL COMMENT '营业时间-如10:00~22:00,24小时制',
  2120. `gotime` varchar(100) DEFAULT NULL COMMENT '外送时间-如10:00~22:00,24小时制',
  2121. `license` varchar(150) DEFAULT NULL COMMENT '营业执照',
  2122. `license_number` varchar(200) DEFAULT NULL COMMENT '营业执照号码',
  2123. `company_name` varchar(200) DEFAULT NULL COMMENT '公司名称',
  2124. `idcard_front` varchar(150) DEFAULT NULL COMMENT '身份证正面',
  2125. `idcard_back` varchar(150) DEFAULT NULL COMMENT '身份证背面',
  2126. `jy_license` varchar(150) DEFAULT NULL COMMENT '经营许可证',
  2127. `food_license` varchar(150) DEFAULT NULL COMMENT '食品许可证',
  2128. `type` int(11) NOT NULL DEFAULT '1' COMMENT '门店类型-自营为平台店,当没有找到加盟店时,将自动获取平台店',
  2129. `status` int(11) NOT NULL DEFAULT '1' COMMENT '合作状态',
  2130. `state` tinyint(1) NOT NULL DEFAULT '1' COMMENT '状态',
  2131. `cdate` int(11) NOT NULL DEFAULT '0' COMMENT '录入时间',
  2132. `county` int(11) NOT NULL COMMENT '县区',
  2133. `town` int(11) NOT NULL COMMENT '街道',
  2134. `coupon_city` int(11) NOT NULL DEFAULT '2' COMMENT '优惠券是否同城可用',
  2135. `act` varchar(500) NOT NULL COMMENT '参与活动',
  2136. `pdesc` text NOT NULL COMMENT '配送与自提说明',
  2137. `coord_address` varchar(1000) NOT NULL COMMENT '门店坐标地址',
  2138. `stat_type` int(11) NOT NULL DEFAULT '1' COMMENT '对账周期-可以选择按月还是按周生成对账单',
  2139. `stat_day` int(11) NOT NULL DEFAULT '10' COMMENT '对账单生成日期-这里直接填写对账周期内的第几天即可,如按月对账,这里填写10,就是本月10号生成上一个月的对账单,如按周对账,这里填写2,就是本周二生成上一周的对账单',
  2140. `reorder` int(11) NOT NULL DEFAULT '1' COMMENT '排序(数值越大越靠前)',
  2141. `ps_cash` varchar(50) NOT NULL DEFAULT '0' COMMENT '配送费',
  2142. `invoice` int(11) NOT NULL DEFAULT '1' COMMENT '是否可以开发票',
  2143. `sid` int(11) NOT NULL COMMENT '店铺编号-一般为5位数字,不能重复',
  2144. `mid` varchar(50) NOT NULL COMMENT '分账商户号'
  2145. ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4;
  2146. -- --------------------------------------------------------
  2147. --
  2148. -- 表的结构 `churen_shop_member`
  2149. --
  2150. DROP TABLE IF EXISTS `churen_shop_member`;
  2151. CREATE TABLE `churen_shop_member` (
  2152. `id` int(11) UNSIGNED NOT NULL COMMENT 'ID',
  2153. `uid` int(11) NOT NULL DEFAULT '0' COMMENT '用户名',
  2154. `shop_id` int(11) NOT NULL DEFAULT '0' COMMENT '所属门店',
  2155. `role_id` varchar(60) DEFAULT NULL COMMENT '角色',
  2156. `name` varchar(32) DEFAULT NULL COMMENT '员工姓名',
  2157. `mobile` bigint(11) NOT NULL DEFAULT '0' COMMENT '员工手机号',
  2158. `avatar` varchar(150) DEFAULT NULL COMMENT '头像',
  2159. `state` tinyint(1) NOT NULL DEFAULT '1' COMMENT '状态',
  2160. `cdate` int(11) NOT NULL DEFAULT '0' COMMENT '创建时间'
  2161. ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4;
  2162. -- --------------------------------------------------------
  2163. --
  2164. -- 表的结构 `churen_shop_out_order`
  2165. --
  2166. DROP TABLE IF EXISTS `churen_shop_out_order`;
  2167. CREATE TABLE `churen_shop_out_order` (
  2168. `id` int(11) UNSIGNED NOT NULL COMMENT 'ID',
  2169. `type` int(11) NOT NULL DEFAULT '0' COMMENT '拥有人类型',
  2170. `type_id` int(11) NOT NULL DEFAULT '0' COMMENT '所属门店',
  2171. `name` varchar(800) DEFAULT NULL COMMENT '订单名称',
  2172. `order_num` varchar(100) DEFAULT NULL COMMENT '订单编号',
  2173. `price` varchar(50) DEFAULT NULL COMMENT '价格',
  2174. `num` int(11) NOT NULL DEFAULT '0' COMMENT '数量',
  2175. `info` varchar(300) DEFAULT NULL COMMENT '订单备注',
  2176. `member_id` int(11) NOT NULL DEFAULT '0' COMMENT '操作人',
  2177. `out_type` int(11) NOT NULL DEFAULT '1' COMMENT '出库类型',
  2178. `status` tinyint(1) NOT NULL DEFAULT '1' COMMENT '状态',
  2179. `state` tinyint(1) NOT NULL DEFAULT '1' COMMENT '状态',
  2180. `cdate` int(11) NOT NULL DEFAULT '0' COMMENT '出库时间'
  2181. ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4;
  2182. -- --------------------------------------------------------
  2183. --
  2184. -- 表的结构 `churen_shop_out_order_goods`
  2185. --
  2186. DROP TABLE IF EXISTS `churen_shop_out_order_goods`;
  2187. CREATE TABLE `churen_shop_out_order_goods` (
  2188. `id` int(11) UNSIGNED NOT NULL COMMENT 'ID',
  2189. `order_id` int(11) NOT NULL DEFAULT '0' COMMENT '订单表ID',
  2190. `goods_id` int(11) NOT NULL DEFAULT '0' COMMENT '商品名称',
  2191. `sku_id` int(11) NOT NULL DEFAULT '-1' COMMENT 'SKU_ID',
  2192. `price` varchar(50) DEFAULT NULL COMMENT '单价',
  2193. `num` int(11) NOT NULL DEFAULT '0' COMMENT '购买数量',
  2194. `status` int(11) NOT NULL DEFAULT '1' COMMENT '状态',
  2195. `state` tinyint(1) NOT NULL DEFAULT '1' COMMENT '状态',
  2196. `cdate` int(11) NOT NULL DEFAULT '0' COMMENT '创建时间'
  2197. ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4;
  2198. -- --------------------------------------------------------
  2199. --
  2200. -- 表的结构 `churen_shop_out_type`
  2201. --
  2202. DROP TABLE IF EXISTS `churen_shop_out_type`;
  2203. CREATE TABLE `churen_shop_out_type` (
  2204. `id` int(11) UNSIGNED NOT NULL COMMENT 'ID',
  2205. `name` varchar(200) DEFAULT NULL COMMENT '出库类型名称',
  2206. `type` int(11) NOT NULL DEFAULT '1' COMMENT '类型',
  2207. `state` tinyint(1) NOT NULL DEFAULT '1' COMMENT '状态',
  2208. `cdate` int(11) NOT NULL DEFAULT '0' COMMENT '创建时间'
  2209. ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4;
  2210. -- --------------------------------------------------------
  2211. --
  2212. -- 表的结构 `churen_shop_print`
  2213. --
  2214. DROP TABLE IF EXISTS `churen_shop_print`;
  2215. CREATE TABLE `churen_shop_print` (
  2216. `id` int(11) UNSIGNED NOT NULL COMMENT 'ID',
  2217. `shop_id` int(11) NOT NULL DEFAULT '0' COMMENT '所属门店',
  2218. `name` varchar(200) DEFAULT NULL COMMENT '设备名称',
  2219. `number` varchar(100) DEFAULT NULL COMMENT '打印机编号',
  2220. `status` int(11) NOT NULL DEFAULT '1' COMMENT '打印机状态',
  2221. `state` tinyint(1) NOT NULL DEFAULT '1' COMMENT '状态',
  2222. `cdate` int(11) NOT NULL DEFAULT '0' COMMENT '购买时间',
  2223. `key` varchar(100) NOT NULL COMMENT '打印机识别码',
  2224. `phonenum` varchar(100) NOT NULL COMMENT '流量卡号码'
  2225. ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4;
  2226. -- --------------------------------------------------------
  2227. --
  2228. -- 表的结构 `churen_shop_sell_order`
  2229. --
  2230. DROP TABLE IF EXISTS `churen_shop_sell_order`;
  2231. CREATE TABLE `churen_shop_sell_order` (
  2232. `id` int(11) UNSIGNED NOT NULL COMMENT 'ID',
  2233. `shop_id` int(11) NOT NULL DEFAULT '0' COMMENT '所属门店',
  2234. `uid` int(11) NOT NULL DEFAULT '0' COMMENT '购买人名称',
  2235. `mobile` varchar(300) DEFAULT NULL COMMENT '下单手机号',
  2236. `address_id` int(11) NOT NULL DEFAULT '0' COMMENT '送货地址',
  2237. `invoice_id` int(11) NOT NULL DEFAULT '0' COMMENT '发票信息',
  2238. `name` varchar(800) DEFAULT NULL COMMENT '订单名称',
  2239. `order_num` varchar(100) DEFAULT NULL COMMENT '订单号',
  2240. `price` varchar(50) DEFAULT NULL COMMENT '支付金额',
  2241. `num` int(11) NOT NULL DEFAULT '0' COMMENT '购买数量',
  2242. `refund_cash` varchar(50) DEFAULT NULL COMMENT '退款合计金额',
  2243. `refund_status` tinyint(1) NOT NULL DEFAULT '1' COMMENT '申请退款类型',
  2244. `kou_cash` varchar(50) DEFAULT NULL COMMENT '抹零金额',
  2245. `card_code_id` int(11) NOT NULL DEFAULT '0' COMMENT '礼品卡ID',
  2246. `coupon_id` int(11) NOT NULL DEFAULT '0' COMMENT '门店的优惠券ID',
  2247. `user_coupon_id` int(11) NOT NULL DEFAULT '0' COMMENT '用户的优惠券ID',
  2248. `coupon_cash` varchar(300) DEFAULT NULL COMMENT '优惠金额',
  2249. `method` int(11) NOT NULL DEFAULT '1' COMMENT '配送类型',
  2250. `code` varchar(100) DEFAULT NULL COMMENT '自提码或者核销码',
  2251. `pay_method` int(11) NOT NULL DEFAULT '1' COMMENT '支付类型',
  2252. `pay_type` int(11) NOT NULL DEFAULT '1' COMMENT '支付方式',
  2253. `info` varchar(300) DEFAULT NULL COMMENT '订单备注',
  2254. `status` tinyint(1) NOT NULL DEFAULT '1' COMMENT '状态',
  2255. `fdate` int(11) NOT NULL DEFAULT '0' COMMENT '完成时间',
  2256. `operdate` int(11) NOT NULL DEFAULT '0' COMMENT '操作时间',
  2257. `state` tinyint(1) NOT NULL DEFAULT '1' COMMENT '状态',
  2258. `cdate` int(11) NOT NULL DEFAULT '0' COMMENT '下单时间',
  2259. `ps_cash` varchar(50) NOT NULL DEFAULT '0' COMMENT '配送费',
  2260. `notice` tinyint(1) NOT NULL DEFAULT '1' COMMENT '是否发送通知',
  2261. `oprice` varchar(50) NOT NULL DEFAULT '0' COMMENT '原价',
  2262. `withdraw` tinyint(1) NOT NULL DEFAULT '1' COMMENT '是否提现',
  2263. `card_code_card` varchar(800) NOT NULL COMMENT '礼品卡卡号',
  2264. `card_code_cash` varchar(50) NOT NULL DEFAULT '0' COMMENT '礼品卡抵扣金额',
  2265. `wallet_cash` varchar(50) NOT NULL DEFAULT '0' COMMENT '钱包抵扣金额'
  2266. ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4;
  2267. -- --------------------------------------------------------
  2268. --
  2269. -- 表的结构 `churen_shop_sell_order_goods`
  2270. --
  2271. DROP TABLE IF EXISTS `churen_shop_sell_order_goods`;
  2272. CREATE TABLE `churen_shop_sell_order_goods` (
  2273. `id` int(11) UNSIGNED NOT NULL COMMENT 'ID',
  2274. `order_id` int(11) NOT NULL DEFAULT '0' COMMENT '订单表ID',
  2275. `goods_id` int(11) NOT NULL DEFAULT '0' COMMENT '商品名称',
  2276. `sku_id` int(11) NOT NULL DEFAULT '-1' COMMENT 'SKU_ID',
  2277. `price` varchar(50) DEFAULT NULL COMMENT '单价',
  2278. `num` int(11) NOT NULL DEFAULT '0' COMMENT '购买数量',
  2279. `coupon_id` int(11) NOT NULL DEFAULT '0' COMMENT '门店的优惠券ID',
  2280. `user_coupon_id` int(11) NOT NULL DEFAULT '0' COMMENT '用户的优惠券ID',
  2281. `coupon_cash` varchar(300) DEFAULT NULL COMMENT '优惠金额',
  2282. `status` int(11) NOT NULL DEFAULT '1' COMMENT '状态',
  2283. `state` tinyint(1) NOT NULL DEFAULT '1' COMMENT '状态',
  2284. `cdate` int(11) NOT NULL DEFAULT '0' COMMENT '创建时间'
  2285. ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4;
  2286. -- --------------------------------------------------------
  2287. --
  2288. -- 表的结构 `churen_shop_sell_order_ps`
  2289. --
  2290. DROP TABLE IF EXISTS `churen_shop_sell_order_ps`;
  2291. CREATE TABLE `churen_shop_sell_order_ps` (
  2292. `id` int(11) UNSIGNED NOT NULL COMMENT 'ID',
  2293. `order_id` int(11) NOT NULL DEFAULT '0' COMMENT '订单表ID',
  2294. `service_id` int(11) NOT NULL DEFAULT '-1' COMMENT '配送服务商',
  2295. `order_num` varchar(800) DEFAULT NULL COMMENT '快递单号-多个用换行隔开',
  2296. `num` int(11) NOT NULL DEFAULT '0' COMMENT '包裹数量',
  2297. `price` varchar(50) DEFAULT NULL COMMENT '快递费用',
  2298. `status` int(11) NOT NULL DEFAULT '1' COMMENT '状态',
  2299. `qu_date` int(11) NOT NULL DEFAULT '0' COMMENT '取件时间',
  2300. `qs_date` int(11) NOT NULL DEFAULT '0' COMMENT '签收时间',
  2301. `state` tinyint(1) NOT NULL DEFAULT '1' COMMENT '状态',
  2302. `cdate` int(11) NOT NULL DEFAULT '0' COMMENT '创建时间'
  2303. ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4;
  2304. -- --------------------------------------------------------
  2305. --
  2306. -- 表的结构 `churen_shop_sell_order_refund`
  2307. --
  2308. DROP TABLE IF EXISTS `churen_shop_sell_order_refund`;
  2309. CREATE TABLE `churen_shop_sell_order_refund` (
  2310. `id` int(11) UNSIGNED NOT NULL COMMENT 'ID',
  2311. `order_id` int(11) NOT NULL DEFAULT '0' COMMENT '订单表ID',
  2312. `order_goods_id` varchar(300) DEFAULT NULL COMMENT '订单商品表ID',
  2313. `cash` varchar(300) DEFAULT NULL COMMENT '退款金额',
  2314. `num` int(11) NOT NULL DEFAULT '0' COMMENT '退款数量',
  2315. `desc` varchar(300) DEFAULT NULL COMMENT '退款描述',
  2316. `pic` varchar(8000) DEFAULT NULL COMMENT '退款图片',
  2317. `type` int(11) NOT NULL DEFAULT '1' COMMENT '类型',
  2318. `status` int(11) NOT NULL DEFAULT '1' COMMENT '状态',
  2319. `process` int(11) NOT NULL DEFAULT '1' COMMENT '审核进度',
  2320. `state` tinyint(1) NOT NULL DEFAULT '1' COMMENT '状态',
  2321. `cdate` int(11) NOT NULL DEFAULT '0' COMMENT '创建时间'
  2322. ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4;
  2323. -- --------------------------------------------------------
  2324. --
  2325. -- 表的结构 `churen_shop_sell_stat`
  2326. --
  2327. DROP TABLE IF EXISTS `churen_shop_sell_stat`;
  2328. CREATE TABLE `churen_shop_sell_stat` (
  2329. `id` int(11) UNSIGNED NOT NULL COMMENT 'ID',
  2330. `day` int(11) NOT NULL DEFAULT '0' COMMENT '日期',
  2331. `shop_id` int(11) NOT NULL DEFAULT '0' COMMENT '所属门店',
  2332. `area` varchar(500) DEFAULT NULL COMMENT '选择地区',
  2333. `province` int(11) NOT NULL DEFAULT '0' COMMENT '省份',
  2334. `city` int(11) NOT NULL DEFAULT '0' COMMENT '城市',
  2335. `county` int(11) NOT NULL DEFAULT '0' COMMENT '县区',
  2336. `town` int(11) NOT NULL DEFAULT '0' COMMENT '街道',
  2337. `order` varchar(100) DEFAULT NULL COMMENT '订单量',
  2338. `goods` varchar(100) DEFAULT NULL COMMENT '商品数量',
  2339. `cash` varchar(100) DEFAULT NULL COMMENT '营业额',
  2340. `state` tinyint(1) NOT NULL DEFAULT '1' COMMENT '状态',
  2341. `cdate` int(11) NOT NULL DEFAULT '0' COMMENT '生成时间'
  2342. ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4;
  2343. -- --------------------------------------------------------
  2344. --
  2345. -- 表的结构 `churen_shop_sell_stat_month`
  2346. --
  2347. DROP TABLE IF EXISTS `churen_shop_sell_stat_month`;
  2348. CREATE TABLE `churen_shop_sell_stat_month` (
  2349. `id` int(11) UNSIGNED NOT NULL COMMENT 'ID',
  2350. `shop_id` int(11) NOT NULL DEFAULT '0' COMMENT '所属门店',
  2351. `month` int(11) NOT NULL DEFAULT '0' COMMENT '账单时间',
  2352. `order` varchar(100) DEFAULT NULL COMMENT '订单量',
  2353. `goods` varchar(100) DEFAULT NULL COMMENT '商品数',
  2354. `cash` varchar(100) DEFAULT NULL COMMENT '销售额',
  2355. `type` int(11) NOT NULL DEFAULT '1' COMMENT '是否已对账',
  2356. `state` tinyint(1) NOT NULL DEFAULT '1' COMMENT '状态',
  2357. `cdate` int(11) NOT NULL DEFAULT '0' COMMENT '生成时间'
  2358. ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4;
  2359. -- --------------------------------------------------------
  2360. --
  2361. -- 表的结构 `churen_shop_service`
  2362. --
  2363. DROP TABLE IF EXISTS `churen_shop_service`;
  2364. CREATE TABLE `churen_shop_service` (
  2365. `id` int(11) UNSIGNED NOT NULL COMMENT 'ID',
  2366. `name` varchar(200) DEFAULT NULL COMMENT '配送服务商名称',
  2367. `number` varchar(100) DEFAULT NULL COMMENT '服务商代号-用来根据接口获取物流信息',
  2368. `type` int(11) NOT NULL DEFAULT '1' COMMENT '服务商类型',
  2369. `state` tinyint(1) NOT NULL DEFAULT '1' COMMENT '状态',
  2370. `cdate` int(11) NOT NULL DEFAULT '0' COMMENT '创建时间'
  2371. ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4;
  2372. -- --------------------------------------------------------
  2373. --
  2374. -- 表的结构 `churen_shop_shop_cart`
  2375. --
  2376. DROP TABLE IF EXISTS `churen_shop_shop_cart`;
  2377. CREATE TABLE `churen_shop_shop_cart` (
  2378. `id` int(11) UNSIGNED NOT NULL COMMENT 'ID',
  2379. `shop_id` int(11) NOT NULL DEFAULT '0' COMMENT '所属门店',
  2380. `goods_id` int(11) NOT NULL DEFAULT '0' COMMENT '商品名称',
  2381. `sku_id` int(11) NOT NULL DEFAULT '0' COMMENT 'SKU',
  2382. `num` int(11) NOT NULL DEFAULT '0' COMMENT '购买数量',
  2383. `status` int(11) NOT NULL DEFAULT '1' COMMENT '状态',
  2384. `state` tinyint(1) NOT NULL DEFAULT '1' COMMENT '状态',
  2385. `cdate` int(11) NOT NULL DEFAULT '0' COMMENT '创建时间'
  2386. ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4;
  2387. -- --------------------------------------------------------
  2388. --
  2389. -- 表的结构 `churen_shop_store`
  2390. --
  2391. DROP TABLE IF EXISTS `churen_shop_store`;
  2392. CREATE TABLE `churen_shop_store` (
  2393. `id` int(11) UNSIGNED NOT NULL COMMENT 'ID',
  2394. `shop_id` int(11) NOT NULL DEFAULT '0' COMMENT '所属门店',
  2395. `store_id` int(11) NOT NULL DEFAULT '0' COMMENT '所属仓库',
  2396. `city` int(11) NOT NULL DEFAULT '0' COMMENT '城市',
  2397. `state` tinyint(1) NOT NULL DEFAULT '1' COMMENT '状态',
  2398. `cdate` int(11) NOT NULL DEFAULT '0' COMMENT '创建时间'
  2399. ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4;
  2400. -- --------------------------------------------------------
  2401. --
  2402. -- 表的结构 `churen_shop_store_stat_month`
  2403. --
  2404. DROP TABLE IF EXISTS `churen_shop_store_stat_month`;
  2405. CREATE TABLE `churen_shop_store_stat_month` (
  2406. `id` int(11) UNSIGNED NOT NULL COMMENT 'ID',
  2407. `store_id` int(11) NOT NULL DEFAULT '0' COMMENT '所属仓库',
  2408. `month` int(11) NOT NULL DEFAULT '0' COMMENT '账单时间',
  2409. `order` varchar(100) DEFAULT NULL COMMENT '订单量',
  2410. `goods` varchar(100) DEFAULT NULL COMMENT '商品数',
  2411. `cash` varchar(100) DEFAULT NULL COMMENT '销售额',
  2412. `type` int(11) NOT NULL DEFAULT '1' COMMENT '是否已对账',
  2413. `state` tinyint(1) NOT NULL DEFAULT '1' COMMENT '状态',
  2414. `cdate` int(11) NOT NULL DEFAULT '0' COMMENT '生成时间'
  2415. ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4;
  2416. -- --------------------------------------------------------
  2417. --
  2418. -- 表的结构 `churen_shop_user_coupon`
  2419. --
  2420. DROP TABLE IF EXISTS `churen_shop_user_coupon`;
  2421. CREATE TABLE `churen_shop_user_coupon` (
  2422. `id` int(11) UNSIGNED NOT NULL COMMENT 'ID',
  2423. `uid` int(11) NOT NULL DEFAULT '0' COMMENT '用户名',
  2424. `shop_id` int(11) NOT NULL DEFAULT '0' COMMENT '所属门店',
  2425. `coupon_id` int(11) NOT NULL DEFAULT '0' COMMENT '优惠券ID',
  2426. `shop_coupon_id` int(11) NOT NULL DEFAULT '0' COMMENT '优惠券ID',
  2427. `city` int(11) NOT NULL DEFAULT '0' COMMENT '城市',
  2428. `cash` varchar(100) DEFAULT NULL COMMENT '抵扣金额',
  2429. `status` int(11) NOT NULL DEFAULT '1' COMMENT '可用状态',
  2430. `edate` int(11) NOT NULL DEFAULT '0' COMMENT '失效时间',
  2431. `state` tinyint(1) NOT NULL DEFAULT '1' COMMENT '状态',
  2432. `cdate` int(11) NOT NULL DEFAULT '0' COMMENT '领取时间'
  2433. ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4;
  2434. -- --------------------------------------------------------
  2435. --
  2436. -- 表的结构 `churen_shop_user_share`
  2437. --
  2438. DROP TABLE IF EXISTS `churen_shop_user_share`;
  2439. CREATE TABLE `churen_shop_user_share` (
  2440. `id` int(11) UNSIGNED NOT NULL COMMENT 'ID',
  2441. `uid` int(11) NOT NULL DEFAULT '0' COMMENT '用户名',
  2442. `shop_id` int(11) NOT NULL DEFAULT '0' COMMENT '所属门店',
  2443. `act_id` int(11) NOT NULL DEFAULT '0' COMMENT '活动ID',
  2444. `path` varchar(100) DEFAULT NULL COMMENT '分享路径',
  2445. `status` int(11) NOT NULL DEFAULT '1' COMMENT '分享状态',
  2446. `edate` int(11) NOT NULL DEFAULT '0' COMMENT '失效时间',
  2447. `state` tinyint(1) NOT NULL DEFAULT '1' COMMENT '状态',
  2448. `cdate` int(11) NOT NULL DEFAULT '0' COMMENT '领取时间'
  2449. ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4;
  2450. -- --------------------------------------------------------
  2451. --
  2452. -- 表的结构 `churen_sms_code`
  2453. --
  2454. DROP TABLE IF EXISTS `churen_sms_code`;
  2455. CREATE TABLE `churen_sms_code` (
  2456. `id` int(11) UNSIGNED NOT NULL COMMENT 'ID',
  2457. `mobile` varchar(32) DEFAULT NULL COMMENT '手机号',
  2458. `code` varchar(32) DEFAULT NULL COMMENT '验证码',
  2459. `day` int(11) NOT NULL DEFAULT '0' COMMENT '申请天',
  2460. `result` text COMMENT '返回记录',
  2461. `status` tinyint(1) NOT NULL DEFAULT '1' COMMENT '状态',
  2462. `state` tinyint(1) NOT NULL DEFAULT '1' COMMENT '状态',
  2463. `cdate` int(11) NOT NULL DEFAULT '0' COMMENT '申请时间'
  2464. ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4;
  2465. -- --------------------------------------------------------
  2466. --
  2467. -- 表的结构 `churen_sms_config`
  2468. --
  2469. DROP TABLE IF EXISTS `churen_sms_config`;
  2470. CREATE TABLE `churen_sms_config` (
  2471. `id` int(11) UNSIGNED NOT NULL COMMENT 'ID',
  2472. `name` varchar(32) DEFAULT NULL COMMENT '配置名称',
  2473. `key` varchar(32) DEFAULT NULL COMMENT '短信标识-发送短信时,使用该标识来读取短信基本配置',
  2474. `sign` varchar(60) DEFAULT NULL COMMENT '短信签名',
  2475. `sdk` varchar(32) DEFAULT NULL COMMENT '是否调取SDK',
  2476. `appid` varchar(50) DEFAULT NULL COMMENT 'APPID',
  2477. `appsecret` varchar(80) DEFAULT NULL COMMENT 'APPSECRET',
  2478. `url` varchar(300) DEFAULT NULL COMMENT '接口地址',
  2479. `method` varchar(32) DEFAULT NULL COMMENT '请求方式',
  2480. `json` tinyint(1) NOT NULL DEFAULT '2' COMMENT '是否进行JSON编码',
  2481. `header` varchar(500) DEFAULT NULL COMMENT 'HEADER信息-如AUTHORIZATION:APPCODE E7183E44BA8E4CCAA3D690510923D3FA',
  2482. `body` varchar(500) DEFAULT NULL COMMENT 'BODY信息-如PARAM={CODE}&PHONE={MOBILE}&SIGN={SIGN}&SKIN={SKIN}',
  2483. `code_timeout` int(11) NOT NULL DEFAULT '600' COMMENT '验证码有效期-以秒为单位',
  2484. `code_length` int(11) NOT NULL DEFAULT '4' COMMENT '验证码长度',
  2485. `code_type` int(11) NOT NULL DEFAULT '4' COMMENT '验证码类型',
  2486. `code_total` int(11) NOT NULL DEFAULT '10' COMMENT '一天之内的最大发送次数',
  2487. `code_time` int(11) NOT NULL DEFAULT '60' COMMENT '不允许多久之内重复发送-以秒为单位',
  2488. `state` tinyint(1) NOT NULL DEFAULT '1' COMMENT '状态',
  2489. `cdate` int(11) NOT NULL DEFAULT '0' COMMENT '录入时间'
  2490. ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4;
  2491. -- --------------------------------------------------------
  2492. --
  2493. -- 表的结构 `churen_sms_info`
  2494. --
  2495. DROP TABLE IF EXISTS `churen_sms_info`;
  2496. CREATE TABLE `churen_sms_info` (
  2497. `id` int(11) UNSIGNED NOT NULL COMMENT 'ID',
  2498. `mobile` varchar(32) DEFAULT NULL COMMENT '手机号',
  2499. `param` text COMMENT '请求记录',
  2500. `result` text COMMENT '发送记录',
  2501. `state` tinyint(1) NOT NULL DEFAULT '1' COMMENT '状态',
  2502. `cdate` int(11) NOT NULL DEFAULT '0' COMMENT '申请时间'
  2503. ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4;
  2504. -- --------------------------------------------------------
  2505. --
  2506. -- 表的结构 `churen_sms_skin`
  2507. --
  2508. DROP TABLE IF EXISTS `churen_sms_skin`;
  2509. CREATE TABLE `churen_sms_skin` (
  2510. `id` int(11) UNSIGNED NOT NULL COMMENT 'ID',
  2511. `config_id` int(11) NOT NULL DEFAULT '1' COMMENT '所属配置',
  2512. `name` varchar(32) DEFAULT NULL COMMENT '模板名称',
  2513. `key` varchar(32) DEFAULT NULL COMMENT '模板标识',
  2514. `content` varchar(800) DEFAULT NULL COMMENT '模板内容-如果短信接口已提供模板,请在此输入模板ID',
  2515. `state` tinyint(1) NOT NULL DEFAULT '1' COMMENT '状态',
  2516. `cdate` int(11) NOT NULL DEFAULT '0' COMMENT '录入时间'
  2517. ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4;
  2518. -- --------------------------------------------------------
  2519. --
  2520. -- 表的结构 `churen_store_goods`
  2521. --
  2522. DROP TABLE IF EXISTS `churen_store_goods`;
  2523. CREATE TABLE `churen_store_goods` (
  2524. `id` int(11) UNSIGNED NOT NULL COMMENT 'ID',
  2525. `store_id` int(11) NOT NULL DEFAULT '0' COMMENT '所属仓库',
  2526. `goods_id` int(11) NOT NULL DEFAULT '0' COMMENT '商品名称',
  2527. `category_id` int(11) NOT NULL DEFAULT '0' COMMENT '分类ID',
  2528. `price_type` int(11) NOT NULL DEFAULT '1' COMMENT '价格类型',
  2529. `add_num` int(11) NOT NULL DEFAULT '0' COMMENT '新增库存-输入小于0的数字,则为减少库存',
  2530. `total_num` int(11) NOT NULL DEFAULT '0' COMMENT '总库存',
  2531. `sell_num` int(11) NOT NULL DEFAULT '0' COMMENT '销量',
  2532. `state` tinyint(1) NOT NULL DEFAULT '1' COMMENT '状态',
  2533. `cdate` int(11) NOT NULL DEFAULT '0' COMMENT '创建时间',
  2534. `status` tinyint(1) NOT NULL DEFAULT '2' COMMENT '状态'
  2535. ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4;
  2536. -- --------------------------------------------------------
  2537. --
  2538. -- 表的结构 `churen_store_goods_sku`
  2539. --
  2540. DROP TABLE IF EXISTS `churen_store_goods_sku`;
  2541. CREATE TABLE `churen_store_goods_sku` (
  2542. `id` int(11) UNSIGNED NOT NULL COMMENT 'ID',
  2543. `store_id` int(11) NOT NULL DEFAULT '0' COMMENT '所属仓库',
  2544. `goods_id` int(11) NOT NULL DEFAULT '0' COMMENT '商品名称',
  2545. `sku_id` int(11) NOT NULL DEFAULT '-1' COMMENT 'SKU_ID',
  2546. `add_num` int(11) NOT NULL DEFAULT '0' COMMENT '新增库存-输入小于0的数字,则为减少库存',
  2547. `total_num` int(11) NOT NULL DEFAULT '0' COMMENT '总库存',
  2548. `sell_num` int(11) NOT NULL DEFAULT '0' COMMENT '销量',
  2549. `reorder` int(11) NOT NULL DEFAULT '1' COMMENT '排序-数值越大越靠前,相当于置顶',
  2550. `state` tinyint(1) NOT NULL DEFAULT '1' COMMENT '数据状态',
  2551. `cdate` int(11) NOT NULL DEFAULT '0' COMMENT '发布时间'
  2552. ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4;
  2553. -- --------------------------------------------------------
  2554. --
  2555. -- 表的结构 `churen_store_info`
  2556. --
  2557. DROP TABLE IF EXISTS `churen_store_info`;
  2558. CREATE TABLE `churen_store_info` (
  2559. `id` int(11) UNSIGNED NOT NULL COMMENT 'ID',
  2560. `uid` int(11) NOT NULL DEFAULT '0' COMMENT '用户名',
  2561. `name` varchar(32) DEFAULT NULL COMMENT '仓库名称',
  2562. `truename` varchar(100) DEFAULT NULL COMMENT '联系人姓名',
  2563. `mobile` bigint(11) NOT NULL DEFAULT '0' COMMENT '联系人电话',
  2564. `area` varchar(500) DEFAULT NULL COMMENT '所在城市',
  2565. `province` int(11) NOT NULL DEFAULT '0' COMMENT '省份',
  2566. `city` int(11) NOT NULL DEFAULT '0' COMMENT '城市',
  2567. `map` varchar(300) DEFAULT NULL COMMENT '地理位置',
  2568. `lng` varchar(100) DEFAULT NULL COMMENT '经度',
  2569. `lat` varchar(100) DEFAULT NULL COMMENT '纬度',
  2570. `address` varchar(1000) DEFAULT NULL COMMENT '仓库地址',
  2571. `goods` text COMMENT '请先选择分类-选择分类,之后选择分类下的商品,点击商品名称可以设置库存',
  2572. `license` varchar(150) DEFAULT NULL COMMENT '营业执照',
  2573. `license_number` varchar(200) DEFAULT NULL COMMENT '营业执照号码',
  2574. `company_name` varchar(200) DEFAULT NULL COMMENT '公司名称',
  2575. `idcard_front` varchar(150) DEFAULT NULL COMMENT '身份证正面',
  2576. `idcard_back` varchar(150) DEFAULT NULL COMMENT '身份证背面',
  2577. `kh_license` varchar(150) DEFAULT NULL COMMENT '开户许可证',
  2578. `status` int(11) NOT NULL DEFAULT '1' COMMENT '认证状态',
  2579. `reorder` int(11) NOT NULL DEFAULT '1' COMMENT '排序(数值越大越靠前)',
  2580. `state` tinyint(1) NOT NULL DEFAULT '1' COMMENT '状态',
  2581. `cdate` int(11) NOT NULL DEFAULT '0' COMMENT '录入时间',
  2582. `stat_type` int(11) NOT NULL DEFAULT '1' COMMENT '对账周期-可以选择按月还是按周生成对账单',
  2583. `stat_day` int(11) NOT NULL DEFAULT '10' COMMENT '对账单生成日期-这里直接填写对账周期内的第几天即可,如按月对账,这里填写10,就是本月10号生成上一个月的对账单,如按周对账,这里填写2,就是本周二生成上一周的对账单'
  2584. ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4;
  2585. -- --------------------------------------------------------
  2586. --
  2587. -- 表的结构 `churen_store_member`
  2588. --
  2589. DROP TABLE IF EXISTS `churen_store_member`;
  2590. CREATE TABLE `churen_store_member` (
  2591. `id` int(11) UNSIGNED NOT NULL COMMENT 'ID',
  2592. `uid` int(11) NOT NULL DEFAULT '0' COMMENT '用户名',
  2593. `store_id` int(11) NOT NULL DEFAULT '0' COMMENT '所属仓库',
  2594. `role_id` varchar(60) DEFAULT NULL COMMENT '角色',
  2595. `name` varchar(32) DEFAULT NULL COMMENT '员工姓名',
  2596. `mobile` bigint(11) NOT NULL DEFAULT '0' COMMENT '员工手机号',
  2597. `avatar` varchar(150) DEFAULT NULL COMMENT '头像',
  2598. `state` tinyint(1) NOT NULL DEFAULT '1' COMMENT '状态',
  2599. `cdate` int(11) NOT NULL DEFAULT '0' COMMENT '创建时间'
  2600. ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4;
  2601. -- --------------------------------------------------------
  2602. --
  2603. -- 表的结构 `churen_store_order`
  2604. --
  2605. DROP TABLE IF EXISTS `churen_store_order`;
  2606. CREATE TABLE `churen_store_order` (
  2607. `id` int(11) UNSIGNED NOT NULL COMMENT 'ID',
  2608. `store_id` int(11) NOT NULL DEFAULT '0' COMMENT '所属仓库',
  2609. `shop_id` int(11) NOT NULL DEFAULT '0' COMMENT '所属门店',
  2610. `shop_order_id` int(11) NOT NULL DEFAULT '0' COMMENT '门店订单ID',
  2611. `name` varchar(80) DEFAULT NULL COMMENT '订单名称',
  2612. `order_num` varchar(100) DEFAULT NULL COMMENT '订单编号',
  2613. `price` varchar(50) DEFAULT NULL COMMENT '购买价格',
  2614. `num` int(11) NOT NULL DEFAULT '0' COMMENT '购买数量',
  2615. `pay_id` varchar(100) DEFAULT NULL COMMENT '支付订单ID',
  2616. `pay_status` tinyint(1) NOT NULL DEFAULT '1' COMMENT '支付状态',
  2617. `pay_price` varchar(50) DEFAULT NULL COMMENT '付款金额',
  2618. `info` varchar(300) DEFAULT NULL COMMENT '订单备注',
  2619. `note` tinyint(1) NOT NULL DEFAULT '1' COMMENT '是否发送状态提醒-1未发送,2已发送',
  2620. `notice` int(11) NOT NULL DEFAULT '0' COMMENT '模板消息提醒次数',
  2621. `tk_pic` varchar(150) DEFAULT NULL COMMENT '退款截图',
  2622. `tk_time` int(11) NOT NULL DEFAULT '0' COMMENT '退款时间',
  2623. `tk_admin` int(11) NOT NULL DEFAULT '1' COMMENT '退款审核人',
  2624. `tk_desc` varchar(300) DEFAULT NULL COMMENT '退款备注',
  2625. `state` tinyint(1) NOT NULL DEFAULT '1' COMMENT '状态',
  2626. `cdate` int(11) NOT NULL DEFAULT '0' COMMENT '下单时间'
  2627. ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4;
  2628. -- --------------------------------------------------------
  2629. --
  2630. -- 表的结构 `churen_token_log`
  2631. --
  2632. DROP TABLE IF EXISTS `churen_token_log`;
  2633. CREATE TABLE `churen_token_log` (
  2634. `id` int(11) UNSIGNED NOT NULL COMMENT 'ID',
  2635. `name` varchar(100) DEFAULT NULL COMMENT '请求名称',
  2636. `url` varchar(255) DEFAULT NULL COMMENT '请求地址',
  2637. `param` text COMMENT '请求信息',
  2638. `result` longtext COMMENT '微信返回信息',
  2639. `state` tinyint(1) NOT NULL DEFAULT '1' COMMENT '状态',
  2640. `cdate` int(11) NOT NULL DEFAULT '0' COMMENT '录入时间'
  2641. ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4;
  2642. -- --------------------------------------------------------
  2643. --
  2644. -- 表的结构 `churen_token_project`
  2645. --
  2646. DROP TABLE IF EXISTS `churen_token_project`;
  2647. CREATE TABLE `churen_token_project` (
  2648. `id` int(11) UNSIGNED NOT NULL COMMENT 'ID',
  2649. `name` varchar(60) DEFAULT NULL COMMENT '项目名称',
  2650. `type` tinyint(11) NOT NULL DEFAULT '1' COMMENT '项目类型',
  2651. `appid` varchar(150) DEFAULT NULL COMMENT 'APPID-一般为微信APPID、阿里的APPKEY',
  2652. `secret` varchar(150) DEFAULT NULL COMMENT 'SECRET',
  2653. `token` varchar(150) DEFAULT NULL COMMENT '通信TOKEN(注意不是ACCESS_TOKEN)',
  2654. `key` varchar(150) DEFAULT NULL COMMENT '消息加解密密钥',
  2655. `state` tinyint(1) NOT NULL DEFAULT '1' COMMENT '状态',
  2656. `cdate` int(11) NOT NULL DEFAULT '0' COMMENT '录入时间'
  2657. ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4;
  2658. -- --------------------------------------------------------
  2659. --
  2660. -- 表的结构 `churen_token_token`
  2661. --
  2662. DROP TABLE IF EXISTS `churen_token_token`;
  2663. CREATE TABLE `churen_token_token` (
  2664. `id` int(11) UNSIGNED NOT NULL COMMENT 'ID',
  2665. `project_id` int(11) NOT NULL DEFAULT '0' COMMENT '项目',
  2666. `value` varchar(255) DEFAULT NULL COMMENT 'TOKEN标识',
  2667. `expires` int(11) NOT NULL DEFAULT '0' COMMENT '过期时间',
  2668. `mdate` int(11) NOT NULL DEFAULT '0' COMMENT '更新时间',
  2669. `state` tinyint(1) NOT NULL DEFAULT '1' COMMENT '状态',
  2670. `cdate` int(11) NOT NULL DEFAULT '0' COMMENT '录入时间'
  2671. ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4;
  2672. -- --------------------------------------------------------
  2673. --
  2674. -- 表的结构 `churen_upload_cate`
  2675. --
  2676. DROP TABLE IF EXISTS `churen_upload_cate`;
  2677. CREATE TABLE `churen_upload_cate` (
  2678. `id` int(11) UNSIGNED NOT NULL COMMENT 'ID',
  2679. `name` varchar(300) DEFAULT NULL COMMENT '分类名称',
  2680. `state` tinyint(1) NOT NULL DEFAULT '1' COMMENT '状态',
  2681. `cdate` int(11) NOT NULL DEFAULT '0' COMMENT '创建时间'
  2682. ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4;
  2683. -- --------------------------------------------------------
  2684. --
  2685. -- 表的结构 `churen_upload_file`
  2686. --
  2687. DROP TABLE IF EXISTS `churen_upload_file`;
  2688. CREATE TABLE `churen_upload_file` (
  2689. `id` int(11) UNSIGNED NOT NULL COMMENT 'ID',
  2690. `name` varchar(32) DEFAULT NULL COMMENT '文件名',
  2691. `source_name` varchar(200) DEFAULT NULL COMMENT '原文件名',
  2692. `upload` int(11) NOT NULL DEFAULT '1' COMMENT '所属资源配置',
  2693. `cate` int(11) NOT NULL DEFAULT '1' COMMENT '所属分类',
  2694. `key` varchar(32) DEFAULT NULL COMMENT 'KEY',
  2695. `search` varchar(100) DEFAULT NULL COMMENT 'SEARCH',
  2696. `value` varchar(800) DEFAULT NULL COMMENT '附加值',
  2697. `ext` varchar(24) DEFAULT NULL COMMENT '后缀名',
  2698. `file` varchar(150) DEFAULT NULL COMMENT '访问路径',
  2699. `yunfile` varchar(150) DEFAULT NULL COMMENT '云端访问路径',
  2700. `pic` varchar(150) DEFAULT NULL COMMENT '封面图-一般为视频截图',
  2701. `pic_num` int(11) NOT NULL DEFAULT '0' COMMENT '视频截图的秒数',
  2702. `width` int(11) NOT NULL DEFAULT '0' COMMENT '宽度',
  2703. `height` int(11) NOT NULL DEFAULT '0' COMMENT '高度',
  2704. `size` varchar(100) NOT NULL COMMENT '文件大小',
  2705. `state` tinyint(1) NOT NULL DEFAULT '1' COMMENT '状态',
  2706. `cdate` int(11) NOT NULL DEFAULT '0' COMMENT '上传时间'
  2707. ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4;
  2708. -- --------------------------------------------------------
  2709. --
  2710. -- 表的结构 `churen_upload_pic_water`
  2711. --
  2712. DROP TABLE IF EXISTS `churen_upload_pic_water`;
  2713. CREATE TABLE `churen_upload_pic_water` (
  2714. `id` int(11) UNSIGNED NOT NULL COMMENT '配置ID',
  2715. `name` varchar(24) DEFAULT NULL COMMENT '配置名',
  2716. `water` varchar(150) DEFAULT NULL COMMENT '水印图',
  2717. `water_position` int(1) NOT NULL DEFAULT '1' COMMENT '水印图位置',
  2718. `state` tinyint(1) NOT NULL DEFAULT '1' COMMENT '状态',
  2719. `cdate` int(11) NOT NULL DEFAULT '0' COMMENT '录入时间',
  2720. `type` tinyint(1) NOT NULL DEFAULT '1' COMMENT '水印类型'
  2721. ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4;
  2722. -- --------------------------------------------------------
  2723. --
  2724. -- 表的结构 `churen_upload_upload`
  2725. --
  2726. DROP TABLE IF EXISTS `churen_upload_upload`;
  2727. CREATE TABLE `churen_upload_upload` (
  2728. `id` int(11) UNSIGNED NOT NULL COMMENT '配置ID',
  2729. `name` varchar(24) DEFAULT NULL COMMENT '配置名',
  2730. `width` int(11) NOT NULL DEFAULT '0' COMMENT '限制宽度-仅限图片类资源',
  2731. `height` int(11) NOT NULL DEFAULT '0' COMMENT '限制高度-仅限图片类资源',
  2732. `size` int(11) NOT NULL DEFAULT '2' COMMENT '限制大小(单位:M)',
  2733. `type` varchar(800) DEFAULT NULL COMMENT '限制文件后缀类型-多个用逗号隔开',
  2734. `alter` varchar(255) DEFAULT NULL COMMENT '默认的后续操作-T=1&C=1&W=1,其中T代表缩略图,1代表对应的ID,C代表裁剪图,W代表水印图,仅限图片类资源',
  2735. `cover` int(1) NOT NULL DEFAULT '1' COMMENT '是否覆盖-将根据上传时的文件名进行文件覆盖操作',
  2736. `save_type` int(1) NOT NULL DEFAULT '1' COMMENT '存储位置',
  2737. `yun` int(1) NOT NULL DEFAULT '1' COMMENT '选择云端',
  2738. `bucket` varchar(800) DEFAULT NULL COMMENT 'BUCKET名称',
  2739. `vod_convert` int(1) NOT NULL DEFAULT '1' COMMENT '是否进行视频转码',
  2740. `pipeline` varchar(800) DEFAULT NULL COMMENT '队列名称-多个用逗号隔开,将随机使用队列',
  2741. `state` tinyint(1) NOT NULL DEFAULT '1' COMMENT '状态',
  2742. `cdate` int(11) NOT NULL DEFAULT '0' COMMENT '录入时间',
  2743. `setwh` int(1) NOT NULL DEFAULT '1' COMMENT '宽高限制-仅限图片类资源'
  2744. ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4;
  2745. -- --------------------------------------------------------
  2746. --
  2747. -- 表的结构 `churen_upload_yun`
  2748. --
  2749. DROP TABLE IF EXISTS `churen_upload_yun`;
  2750. CREATE TABLE `churen_upload_yun` (
  2751. `id` int(11) UNSIGNED NOT NULL COMMENT '配置ID',
  2752. `name` varchar(24) DEFAULT NULL COMMENT '配置名',
  2753. `type` int(1) NOT NULL DEFAULT '2' COMMENT '存储类别-OSS建议申请STS保证安全性,参考HTTPS://HELP.ALIYUN.COM/DOCUMENT_DETAIL/100624.HTML',
  2754. `host` varchar(800) DEFAULT NULL COMMENT '域名',
  2755. `appkey` varchar(100) DEFAULT NULL COMMENT 'APPKEY',
  2756. `appsecret` varchar(200) DEFAULT NULL COMMENT 'APPSECRET',
  2757. `region_id` varchar(200) DEFAULT NULL COMMENT '区域ID-OSS直接填REGIONID即可,如BEIJING,七牛可填写Z1',
  2758. `role_arn` varchar(200) DEFAULT NULL COMMENT '权限策略ARN-OSS需要填写,如未填写,系统默认使用非STS形式上传至OSS,不能保证安全性',
  2759. `token` varchar(800) DEFAULT NULL COMMENT 'TOKEN',
  2760. `token_endtime` int(11) NOT NULL DEFAULT '0' COMMENT 'TOKEN失效时间',
  2761. `state` tinyint(1) NOT NULL DEFAULT '1' COMMENT '状态',
  2762. `cdate` int(11) NOT NULL DEFAULT '0' COMMENT '录入时间'
  2763. ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4;
  2764. -- --------------------------------------------------------
  2765. --
  2766. -- 表的结构 `churen_wechat_applet_msg`
  2767. --
  2768. DROP TABLE IF EXISTS `churen_wechat_applet_msg`;
  2769. CREATE TABLE `churen_wechat_applet_msg` (
  2770. `id` int(11) UNSIGNED NOT NULL COMMENT 'ID',
  2771. `project_id` int(11) NOT NULL DEFAULT '0' COMMENT '项目ID',
  2772. `name` varchar(120) DEFAULT NULL COMMENT '模板标题',
  2773. `key` varchar(20) DEFAULT NULL COMMENT '模板消息KEY-通过KEY值搜索数据',
  2774. `template_id` varchar(120) DEFAULT NULL COMMENT '模板ID',
  2775. `content` varchar(600) DEFAULT NULL COMMENT '模板内容',
  2776. `example` varchar(600) DEFAULT NULL COMMENT '模板样例',
  2777. `state` tinyint(1) NOT NULL DEFAULT '1' COMMENT '状态',
  2778. `cdate` int(11) NOT NULL DEFAULT '0' COMMENT '更新时间'
  2779. ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4;
  2780. -- --------------------------------------------------------
  2781. --
  2782. -- 表的结构 `churen_wechat_applet_msg_log`
  2783. --
  2784. DROP TABLE IF EXISTS `churen_wechat_applet_msg_log`;
  2785. CREATE TABLE `churen_wechat_applet_msg_log` (
  2786. `id` int(11) UNSIGNED NOT NULL COMMENT 'ID',
  2787. `project_id` int(11) NOT NULL DEFAULT '0' COMMENT '项目',
  2788. `msg_id` int(11) NOT NULL DEFAULT '0' COMMENT '消息ID',
  2789. `touser` varchar(120) DEFAULT NULL COMMENT '接收者',
  2790. `path` varchar(200) DEFAULT NULL COMMENT '跳转页面',
  2791. `data` text COMMENT '模板内容',
  2792. `form_id` varchar(300) DEFAULT NULL COMMENT '表单或者支付ID',
  2793. `emphasis_keyword` varchar(200) DEFAULT NULL COMMENT '模板需要放大的关键词',
  2794. `num` int(11) NOT NULL DEFAULT '0' COMMENT '发送次数',
  2795. `result` text COMMENT '微信返回信息',
  2796. `status` tinyint(1) NOT NULL DEFAULT '1' COMMENT '状态',
  2797. `state` tinyint(1) NOT NULL DEFAULT '1' COMMENT '状态',
  2798. `cdate` int(11) NOT NULL DEFAULT '0' COMMENT '更新时间'
  2799. ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4;
  2800. -- --------------------------------------------------------
  2801. --
  2802. -- 表的结构 `churen_wechat_applet_msg_send`
  2803. --
  2804. DROP TABLE IF EXISTS `churen_wechat_applet_msg_send`;
  2805. CREATE TABLE `churen_wechat_applet_msg_send` (
  2806. `id` int(11) UNSIGNED NOT NULL COMMENT 'ID',
  2807. `project_id` varchar(300) DEFAULT NULL COMMENT '选择项目',
  2808. `key` varchar(20) DEFAULT NULL COMMENT '模板消息KEY',
  2809. `page` varchar(200) DEFAULT NULL COMMENT '页面路径',
  2810. `content` text COMMENT '模板内容',
  2811. `state` tinyint(1) NOT NULL DEFAULT '1' COMMENT '状态',
  2812. `cdate` int(11) NOT NULL DEFAULT '0' COMMENT '更新时间'
  2813. ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4;
  2814. -- --------------------------------------------------------
  2815. --
  2816. -- 表的结构 `churen_wechat_applet_subscribe`
  2817. --
  2818. DROP TABLE IF EXISTS `churen_wechat_applet_subscribe`;
  2819. CREATE TABLE `churen_wechat_applet_subscribe` (
  2820. `id` int(11) UNSIGNED NOT NULL COMMENT 'ID',
  2821. `project_id` int(11) NOT NULL DEFAULT '0' COMMENT '项目ID',
  2822. `name` varchar(120) DEFAULT NULL COMMENT '模板标题',
  2823. `type` tinyint(1) NOT NULL DEFAULT '1' COMMENT '订阅类型',
  2824. `key` varchar(20) DEFAULT NULL COMMENT '模板消息KEY-通过KEY值搜索数据',
  2825. `template_id` varchar(120) DEFAULT NULL COMMENT '模板ID',
  2826. `content` varchar(600) DEFAULT NULL COMMENT '模板内容',
  2827. `example` varchar(600) DEFAULT NULL COMMENT '模板样例',
  2828. `state` tinyint(1) NOT NULL DEFAULT '1' COMMENT '状态',
  2829. `cdate` int(11) NOT NULL DEFAULT '0' COMMENT '更新时间'
  2830. ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4;
  2831. -- --------------------------------------------------------
  2832. --
  2833. -- 表的结构 `churen_wechat_applet_subscribe_log`
  2834. --
  2835. DROP TABLE IF EXISTS `churen_wechat_applet_subscribe_log`;
  2836. CREATE TABLE `churen_wechat_applet_subscribe_log` (
  2837. `id` int(11) UNSIGNED NOT NULL COMMENT 'ID',
  2838. `project_id` int(11) NOT NULL DEFAULT '0' COMMENT '项目',
  2839. `subscribe_id` int(11) NOT NULL DEFAULT '0' COMMENT '消息ID',
  2840. `touser` varchar(120) DEFAULT NULL COMMENT '接收者',
  2841. `path` varchar(200) DEFAULT NULL COMMENT '跳转页面',
  2842. `data` text COMMENT '模板内容',
  2843. `miniprogram_state` varchar(300) DEFAULT NULL COMMENT '跳转小程序类型',
  2844. `num` int(11) NOT NULL DEFAULT '0' COMMENT '发送次数',
  2845. `result` text COMMENT '微信返回信息',
  2846. `status` tinyint(1) NOT NULL DEFAULT '1' COMMENT '状态',
  2847. `state` tinyint(1) NOT NULL DEFAULT '1' COMMENT '状态',
  2848. `cdate` int(11) NOT NULL DEFAULT '0' COMMENT '更新时间'
  2849. ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4;
  2850. -- --------------------------------------------------------
  2851. --
  2852. -- 表的结构 `churen_wechat_applet_subscribe_send`
  2853. --
  2854. DROP TABLE IF EXISTS `churen_wechat_applet_subscribe_send`;
  2855. CREATE TABLE `churen_wechat_applet_subscribe_send` (
  2856. `id` int(11) UNSIGNED NOT NULL COMMENT 'ID',
  2857. `project_id` varchar(300) DEFAULT NULL COMMENT '选择项目',
  2858. `key` varchar(20) DEFAULT NULL COMMENT '消息KEY',
  2859. `page` varchar(200) DEFAULT NULL COMMENT '页面路径',
  2860. `miniprogram_state` varchar(300) DEFAULT NULL COMMENT '跳转小程序类型',
  2861. `content` text COMMENT '消息内容',
  2862. `state` tinyint(1) NOT NULL DEFAULT '1' COMMENT '状态',
  2863. `cdate` int(11) NOT NULL DEFAULT '0' COMMENT '更新时间'
  2864. ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4;
  2865. -- --------------------------------------------------------
  2866. --
  2867. -- 表的结构 `churen_wechat_applet_total_base`
  2868. --
  2869. DROP TABLE IF EXISTS `churen_wechat_applet_total_base`;
  2870. CREATE TABLE `churen_wechat_applet_total_base` (
  2871. `id` int(11) UNSIGNED NOT NULL COMMENT 'ID',
  2872. `project_id` int(11) NOT NULL DEFAULT '0' COMMENT '项目',
  2873. `day` varchar(60) DEFAULT NULL COMMENT '统计日期',
  2874. `daynum` int(11) NOT NULL DEFAULT '0' COMMENT '统计日期',
  2875. `session_cnt` int(11) NOT NULL DEFAULT '0' COMMENT '打开次数',
  2876. `visit_pv` int(11) NOT NULL DEFAULT '0' COMMENT '访问次数',
  2877. `visit_uv` int(11) NOT NULL DEFAULT '0' COMMENT '访问人数',
  2878. `visit_uv_new` int(11) NOT NULL DEFAULT '0' COMMENT '新用户数',
  2879. `stay_time_uv` varchar(30) DEFAULT NULL COMMENT '人均停留时长',
  2880. `stay_time_session` varchar(30) DEFAULT NULL COMMENT '次均停留时长',
  2881. `visit_depth` varchar(30) DEFAULT NULL COMMENT '平均访问深度',
  2882. `visit_total` int(11) NOT NULL DEFAULT '0' COMMENT '累计用户数',
  2883. `share_pv` int(11) NOT NULL DEFAULT '0' COMMENT '转发次数',
  2884. `share_uv` int(11) NOT NULL DEFAULT '0' COMMENT '转发人数',
  2885. `state` tinyint(1) NOT NULL DEFAULT '1' COMMENT '状态',
  2886. `cdate` int(11) NOT NULL DEFAULT '0' COMMENT '录入时间'
  2887. ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4;
  2888. --
  2889. -- 转储表的索引
  2890. --
  2891. --
  2892. -- 表的索引 `churen_act_info`
  2893. --
  2894. ALTER TABLE `churen_act_info`
  2895. ADD PRIMARY KEY (`id`);
  2896. --
  2897. -- 表的索引 `churen_area_city`
  2898. --
  2899. ALTER TABLE `churen_area_city`
  2900. ADD PRIMARY KEY (`id`);
  2901. --
  2902. -- 表的索引 `churen_area_county`
  2903. --
  2904. ALTER TABLE `churen_area_county`
  2905. ADD PRIMARY KEY (`id`);
  2906. --
  2907. -- 表的索引 `churen_area_province`
  2908. --
  2909. ALTER TABLE `churen_area_province`
  2910. ADD PRIMARY KEY (`id`);
  2911. --
  2912. -- 表的索引 `churen_area_town`
  2913. --
  2914. ALTER TABLE `churen_area_town`
  2915. ADD PRIMARY KEY (`id`);
  2916. --
  2917. -- 表的索引 `churen_area_village`
  2918. --
  2919. ALTER TABLE `churen_area_village`
  2920. ADD PRIMARY KEY (`id`);
  2921. --
  2922. -- 表的索引 `churen_attr_cate`
  2923. --
  2924. ALTER TABLE `churen_attr_cate`
  2925. ADD PRIMARY KEY (`id`);
  2926. --
  2927. -- 表的索引 `churen_attr_info`
  2928. --
  2929. ALTER TABLE `churen_attr_info`
  2930. ADD PRIMARY KEY (`id`);
  2931. --
  2932. -- 表的索引 `churen_attr_search`
  2933. --
  2934. ALTER TABLE `churen_attr_search`
  2935. ADD PRIMARY KEY (`id`);
  2936. --
  2937. -- 表的索引 `churen_attr_value`
  2938. --
  2939. ALTER TABLE `churen_attr_value`
  2940. ADD PRIMARY KEY (`id`);
  2941. --
  2942. -- 表的索引 `churen_card_add`
  2943. --
  2944. ALTER TABLE `churen_card_add`
  2945. ADD PRIMARY KEY (`id`);
  2946. --
  2947. -- 表的索引 `churen_card_code`
  2948. --
  2949. ALTER TABLE `churen_card_code`
  2950. ADD PRIMARY KEY (`id`),
  2951. ADD KEY `card` (`card`),
  2952. ADD KEY `uid` (`uid`),
  2953. ADD KEY `dh_uid` (`dh_uid`);
  2954. --
  2955. -- 表的索引 `churen_card_info`
  2956. --
  2957. ALTER TABLE `churen_card_info`
  2958. ADD PRIMARY KEY (`id`);
  2959. --
  2960. -- 表的索引 `churen_card_order`
  2961. --
  2962. ALTER TABLE `churen_card_order`
  2963. ADD PRIMARY KEY (`id`);
  2964. --
  2965. -- 表的索引 `churen_card_order_card`
  2966. --
  2967. ALTER TABLE `churen_card_order_card`
  2968. ADD PRIMARY KEY (`id`);
  2969. --
  2970. -- 表的索引 `churen_card_order_ps`
  2971. --
  2972. ALTER TABLE `churen_card_order_ps`
  2973. ADD PRIMARY KEY (`id`);
  2974. --
  2975. -- 表的索引 `churen_card_type`
  2976. --
  2977. ALTER TABLE `churen_card_type`
  2978. ADD PRIMARY KEY (`id`);
  2979. --
  2980. -- 表的索引 `churen_cash_factory`
  2981. --
  2982. ALTER TABLE `churen_cash_factory`
  2983. ADD PRIMARY KEY (`id`);
  2984. --
  2985. -- 表的索引 `churen_cash_order`
  2986. --
  2987. ALTER TABLE `churen_cash_order`
  2988. ADD PRIMARY KEY (`id`);
  2989. --
  2990. -- 表的索引 `churen_cash_shop`
  2991. --
  2992. ALTER TABLE `churen_cash_shop`
  2993. ADD PRIMARY KEY (`id`);
  2994. --
  2995. -- 表的索引 `churen_cash_store`
  2996. --
  2997. ALTER TABLE `churen_cash_store`
  2998. ADD PRIMARY KEY (`id`);
  2999. --
  3000. -- 表的索引 `churen_category_attr`
  3001. --
  3002. ALTER TABLE `churen_category_attr`
  3003. ADD PRIMARY KEY (`id`);
  3004. --
  3005. -- 表的索引 `churen_category_info`
  3006. --
  3007. ALTER TABLE `churen_category_info`
  3008. ADD PRIMARY KEY (`id`);
  3009. --
  3010. -- 表的索引 `churen_category_project`
  3011. --
  3012. ALTER TABLE `churen_category_project`
  3013. ADD PRIMARY KEY (`id`);
  3014. --
  3015. -- 表的索引 `churen_content_feature`
  3016. --
  3017. ALTER TABLE `churen_content_feature`
  3018. ADD PRIMARY KEY (`id`);
  3019. --
  3020. -- 表的索引 `churen_content_news`
  3021. --
  3022. ALTER TABLE `churen_content_news`
  3023. ADD PRIMARY KEY (`id`);
  3024. --
  3025. -- 表的索引 `churen_factory_goods`
  3026. --
  3027. ALTER TABLE `churen_factory_goods`
  3028. ADD PRIMARY KEY (`id`);
  3029. --
  3030. -- 表的索引 `churen_factory_goods_sku`
  3031. --
  3032. ALTER TABLE `churen_factory_goods_sku`
  3033. ADD PRIMARY KEY (`id`);
  3034. --
  3035. -- 表的索引 `churen_factory_info`
  3036. --
  3037. ALTER TABLE `churen_factory_info`
  3038. ADD PRIMARY KEY (`id`);
  3039. --
  3040. -- 表的索引 `churen_factory_member`
  3041. --
  3042. ALTER TABLE `churen_factory_member`
  3043. ADD PRIMARY KEY (`id`);
  3044. --
  3045. -- 表的索引 `churen_factory_order`
  3046. --
  3047. ALTER TABLE `churen_factory_order`
  3048. ADD PRIMARY KEY (`id`);
  3049. --
  3050. -- 表的索引 `churen_goods_add_card`
  3051. --
  3052. ALTER TABLE `churen_goods_add_card`
  3053. ADD PRIMARY KEY (`id`);
  3054. --
  3055. -- 表的索引 `churen_goods_card`
  3056. --
  3057. ALTER TABLE `churen_goods_card`
  3058. ADD PRIMARY KEY (`id`);
  3059. --
  3060. -- 表的索引 `churen_goods_card_code`
  3061. --
  3062. ALTER TABLE `churen_goods_card_code`
  3063. ADD PRIMARY KEY (`id`),
  3064. ADD KEY `card` (`card`,`pwd`);
  3065. --
  3066. -- 表的索引 `churen_goods_column`
  3067. --
  3068. ALTER TABLE `churen_goods_column`
  3069. ADD PRIMARY KEY (`id`);
  3070. --
  3071. -- 表的索引 `churen_goods_coupon`
  3072. --
  3073. ALTER TABLE `churen_goods_coupon`
  3074. ADD PRIMARY KEY (`id`);
  3075. --
  3076. -- 表的索引 `churen_goods_info`
  3077. --
  3078. ALTER TABLE `churen_goods_info`
  3079. ADD PRIMARY KEY (`id`),
  3080. ADD KEY `search` (`category`(191),`top_category_id`,`second_category_id`,`category_id`,`mode`,`area`);
  3081. --
  3082. -- 表的索引 `churen_goods_info_category`
  3083. --
  3084. ALTER TABLE `churen_goods_info_category`
  3085. ADD PRIMARY KEY (`id`);
  3086. --
  3087. -- 表的索引 `churen_goods_info_column`
  3088. --
  3089. ALTER TABLE `churen_goods_info_column`
  3090. ADD PRIMARY KEY (`id`);
  3091. --
  3092. -- 表的索引 `churen_goods_info_sku`
  3093. --
  3094. ALTER TABLE `churen_goods_info_sku`
  3095. ADD PRIMARY KEY (`id`);
  3096. --
  3097. -- 表的索引 `churen_goods_info_tag`
  3098. --
  3099. ALTER TABLE `churen_goods_info_tag`
  3100. ADD PRIMARY KEY (`id`);
  3101. --
  3102. -- 表的索引 `churen_goods_tag`
  3103. --
  3104. ALTER TABLE `churen_goods_tag`
  3105. ADD PRIMARY KEY (`id`);
  3106. --
  3107. -- 表的索引 `churen_main_cate`
  3108. --
  3109. ALTER TABLE `churen_main_cate`
  3110. ADD PRIMARY KEY (`id`);
  3111. --
  3112. -- 表的索引 `churen_main_config`
  3113. --
  3114. ALTER TABLE `churen_main_config`
  3115. ADD PRIMARY KEY (`id`);
  3116. --
  3117. -- 表的索引 `churen_main_factory_config`
  3118. --
  3119. ALTER TABLE `churen_main_factory_config`
  3120. ADD PRIMARY KEY (`id`);
  3121. --
  3122. -- 表的索引 `churen_main_group`
  3123. --
  3124. ALTER TABLE `churen_main_group`
  3125. ADD PRIMARY KEY (`id`);
  3126. --
  3127. -- 表的索引 `churen_main_help`
  3128. --
  3129. ALTER TABLE `churen_main_help`
  3130. ADD PRIMARY KEY (`id`);
  3131. --
  3132. -- 表的索引 `churen_main_info`
  3133. --
  3134. ALTER TABLE `churen_main_info`
  3135. ADD PRIMARY KEY (`id`),
  3136. ADD KEY `i1` (`cate_id`,`reorder`);
  3137. --
  3138. -- 表的索引 `churen_main_manage_config`
  3139. --
  3140. ALTER TABLE `churen_main_manage_config`
  3141. ADD PRIMARY KEY (`id`);
  3142. --
  3143. -- 表的索引 `churen_main_page`
  3144. --
  3145. ALTER TABLE `churen_main_page`
  3146. ADD PRIMARY KEY (`id`);
  3147. --
  3148. -- 表的索引 `churen_main_sell_config`
  3149. --
  3150. ALTER TABLE `churen_main_sell_config`
  3151. ADD PRIMARY KEY (`id`);
  3152. --
  3153. -- 表的索引 `churen_main_source`
  3154. --
  3155. ALTER TABLE `churen_main_source`
  3156. ADD PRIMARY KEY (`id`);
  3157. --
  3158. -- 表的索引 `churen_main_zhaopin`
  3159. --
  3160. ALTER TABLE `churen_main_zhaopin`
  3161. ADD PRIMARY KEY (`id`);
  3162. --
  3163. -- 表的索引 `churen_manage_admin`
  3164. --
  3165. ALTER TABLE `churen_manage_admin`
  3166. ADD PRIMARY KEY (`id`);
  3167. --
  3168. -- 表的索引 `churen_manage_admin_role`
  3169. --
  3170. ALTER TABLE `churen_manage_admin_role`
  3171. ADD PRIMARY KEY (`id`);
  3172. --
  3173. -- 表的索引 `churen_manage_api`
  3174. --
  3175. ALTER TABLE `churen_manage_api`
  3176. ADD PRIMARY KEY (`id`);
  3177. --
  3178. -- 表的索引 `churen_manage_api_request`
  3179. --
  3180. ALTER TABLE `churen_manage_api_request`
  3181. ADD PRIMARY KEY (`id`);
  3182. --
  3183. -- 表的索引 `churen_manage_api_response`
  3184. --
  3185. ALTER TABLE `churen_manage_api_response`
  3186. ADD PRIMARY KEY (`id`);
  3187. --
  3188. -- 表的索引 `churen_manage_auth`
  3189. --
  3190. ALTER TABLE `churen_manage_auth`
  3191. ADD PRIMARY KEY (`id`);
  3192. --
  3193. -- 表的索引 `churen_manage_config`
  3194. --
  3195. ALTER TABLE `churen_manage_config`
  3196. ADD PRIMARY KEY (`id`);
  3197. --
  3198. -- 表的索引 `churen_manage_cron`
  3199. --
  3200. ALTER TABLE `churen_manage_cron`
  3201. ADD PRIMARY KEY (`id`);
  3202. --
  3203. -- 表的索引 `churen_manage_group`
  3204. --
  3205. ALTER TABLE `churen_manage_group`
  3206. ADD PRIMARY KEY (`id`);
  3207. --
  3208. -- 表的索引 `churen_manage_help`
  3209. --
  3210. ALTER TABLE `churen_manage_help`
  3211. ADD PRIMARY KEY (`id`);
  3212. --
  3213. -- 表的索引 `churen_manage_log`
  3214. --
  3215. ALTER TABLE `churen_manage_log`
  3216. ADD PRIMARY KEY (`id`);
  3217. --
  3218. -- 表的索引 `churen_manage_menu`
  3219. --
  3220. ALTER TABLE `churen_manage_menu`
  3221. ADD PRIMARY KEY (`id`);
  3222. --
  3223. -- 表的索引 `churen_manage_menu_group`
  3224. --
  3225. ALTER TABLE `churen_manage_menu_group`
  3226. ADD PRIMARY KEY (`id`);
  3227. --
  3228. -- 表的索引 `churen_manage_notice`
  3229. --
  3230. ALTER TABLE `churen_manage_notice`
  3231. ADD PRIMARY KEY (`id`);
  3232. --
  3233. -- 表的索引 `churen_manage_opt`
  3234. --
  3235. ALTER TABLE `churen_manage_opt`
  3236. ADD PRIMARY KEY (`id`);
  3237. --
  3238. -- 表的索引 `churen_manage_role`
  3239. --
  3240. ALTER TABLE `churen_manage_role`
  3241. ADD PRIMARY KEY (`id`);
  3242. --
  3243. -- 表的索引 `churen_manage_top`
  3244. --
  3245. ALTER TABLE `churen_manage_top`
  3246. ADD PRIMARY KEY (`id`);
  3247. --
  3248. -- 表的索引 `churen_message_inbox`
  3249. --
  3250. ALTER TABLE `churen_message_inbox`
  3251. ADD PRIMARY KEY (`id`);
  3252. --
  3253. -- 表的索引 `churen_message_outbox`
  3254. --
  3255. ALTER TABLE `churen_message_outbox`
  3256. ADD PRIMARY KEY (`id`);
  3257. --
  3258. -- 表的索引 `churen_message_project`
  3259. --
  3260. ALTER TABLE `churen_message_project`
  3261. ADD PRIMARY KEY (`id`);
  3262. --
  3263. -- 表的索引 `churen_message_push`
  3264. --
  3265. ALTER TABLE `churen_message_push`
  3266. ADD PRIMARY KEY (`id`);
  3267. --
  3268. -- 表的索引 `churen_message_type`
  3269. --
  3270. ALTER TABLE `churen_message_type`
  3271. ADD PRIMARY KEY (`id`);
  3272. --
  3273. -- 表的索引 `churen_passport_address`
  3274. --
  3275. ALTER TABLE `churen_passport_address`
  3276. ADD PRIMARY KEY (`id`);
  3277. --
  3278. -- 表的索引 `churen_passport_avatar`
  3279. --
  3280. ALTER TABLE `churen_passport_avatar`
  3281. ADD PRIMARY KEY (`id`);
  3282. --
  3283. -- 表的索引 `churen_passport_code`
  3284. --
  3285. ALTER TABLE `churen_passport_code`
  3286. ADD PRIMARY KEY (`id`);
  3287. --
  3288. -- 表的索引 `churen_passport_invoice`
  3289. --
  3290. ALTER TABLE `churen_passport_invoice`
  3291. ADD PRIMARY KEY (`id`);
  3292. --
  3293. -- 表的索引 `churen_passport_profession`
  3294. --
  3295. ALTER TABLE `churen_passport_profession`
  3296. ADD PRIMARY KEY (`id`);
  3297. --
  3298. -- 表的索引 `churen_passport_stat`
  3299. --
  3300. ALTER TABLE `churen_passport_stat`
  3301. ADD PRIMARY KEY (`id`);
  3302. --
  3303. -- 表的索引 `churen_passport_system`
  3304. --
  3305. ALTER TABLE `churen_passport_system`
  3306. ADD PRIMARY KEY (`id`);
  3307. --
  3308. -- 表的索引 `churen_passport_user`
  3309. --
  3310. ALTER TABLE `churen_passport_user`
  3311. ADD PRIMARY KEY (`id`),
  3312. ADD KEY `mobile` (`mobile`);
  3313. --
  3314. -- 表的索引 `churen_passport_user_system`
  3315. --
  3316. ALTER TABLE `churen_passport_user_system`
  3317. ADD PRIMARY KEY (`id`);
  3318. --
  3319. -- 表的索引 `churen_passport_wechat`
  3320. --
  3321. ALTER TABLE `churen_passport_wechat`
  3322. ADD PRIMARY KEY (`id`),
  3323. ADD KEY `openid` (`uid`,`openid`,`unionid`);
  3324. --
  3325. -- 表的索引 `churen_pay_account`
  3326. --
  3327. ALTER TABLE `churen_pay_account`
  3328. ADD PRIMARY KEY (`id`);
  3329. --
  3330. -- 表的索引 `churen_pay_channel`
  3331. --
  3332. ALTER TABLE `churen_pay_channel`
  3333. ADD PRIMARY KEY (`id`);
  3334. --
  3335. -- 表的索引 `churen_pay_order`
  3336. --
  3337. ALTER TABLE `churen_pay_order`
  3338. ADD PRIMARY KEY (`id`);
  3339. --
  3340. -- 表的索引 `churen_pay_project`
  3341. --
  3342. ALTER TABLE `churen_pay_project`
  3343. ADD PRIMARY KEY (`id`);
  3344. --
  3345. -- 表的索引 `churen_poster_template`
  3346. --
  3347. ALTER TABLE `churen_poster_template`
  3348. ADD PRIMARY KEY (`id`);
  3349. --
  3350. -- 表的索引 `churen_push_col`
  3351. --
  3352. ALTER TABLE `churen_push_col`
  3353. ADD PRIMARY KEY (`id`);
  3354. --
  3355. -- 表的索引 `churen_push_data`
  3356. --
  3357. ALTER TABLE `churen_push_data`
  3358. ADD PRIMARY KEY (`id`);
  3359. --
  3360. -- 表的索引 `churen_push_func`
  3361. --
  3362. ALTER TABLE `churen_push_func`
  3363. ADD PRIMARY KEY (`id`);
  3364. --
  3365. -- 表的索引 `churen_push_info`
  3366. --
  3367. ALTER TABLE `churen_push_info`
  3368. ADD PRIMARY KEY (`id`);
  3369. --
  3370. -- 表的索引 `churen_score_action`
  3371. --
  3372. ALTER TABLE `churen_score_action`
  3373. ADD PRIMARY KEY (`id`);
  3374. --
  3375. -- 表的索引 `churen_score_action_log`
  3376. --
  3377. ALTER TABLE `churen_score_action_log`
  3378. ADD PRIMARY KEY (`id`),
  3379. ADD KEY `search` (`uid`,`action_id`,`cron_type`);
  3380. --
  3381. -- 表的索引 `churen_score_action_log_finish`
  3382. --
  3383. ALTER TABLE `churen_score_action_log_finish`
  3384. ADD PRIMARY KEY (`id`),
  3385. ADD KEY `search` (`uid`,`action_id`,`cron_type`);
  3386. --
  3387. -- 表的索引 `churen_score_config`
  3388. --
  3389. ALTER TABLE `churen_score_config`
  3390. ADD PRIMARY KEY (`id`);
  3391. --
  3392. -- 表的索引 `churen_score_level`
  3393. --
  3394. ALTER TABLE `churen_score_level`
  3395. ADD PRIMARY KEY (`id`),
  3396. ADD KEY `i1` (`level`);
  3397. --
  3398. -- 表的索引 `churen_score_level_type`
  3399. --
  3400. ALTER TABLE `churen_score_level_type`
  3401. ADD PRIMARY KEY (`id`),
  3402. ADD KEY `i1` (`reorder`);
  3403. --
  3404. -- 表的索引 `churen_score_rule`
  3405. --
  3406. ALTER TABLE `churen_score_rule`
  3407. ADD PRIMARY KEY (`id`);
  3408. --
  3409. -- 表的索引 `churen_score_user`
  3410. --
  3411. ALTER TABLE `churen_score_user`
  3412. ADD PRIMARY KEY (`id`),
  3413. ADD KEY `search` (`uid`,`config_id`);
  3414. --
  3415. -- 表的索引 `churen_shop_apply`
  3416. --
  3417. ALTER TABLE `churen_shop_apply`
  3418. ADD PRIMARY KEY (`id`);
  3419. --
  3420. -- 表的索引 `churen_shop_buy_order`
  3421. --
  3422. ALTER TABLE `churen_shop_buy_order`
  3423. ADD PRIMARY KEY (`id`);
  3424. --
  3425. -- 表的索引 `churen_shop_buy_order_goods`
  3426. --
  3427. ALTER TABLE `churen_shop_buy_order_goods`
  3428. ADD PRIMARY KEY (`id`);
  3429. --
  3430. -- 表的索引 `churen_shop_buy_order_ps`
  3431. --
  3432. ALTER TABLE `churen_shop_buy_order_ps`
  3433. ADD PRIMARY KEY (`id`);
  3434. --
  3435. -- 表的索引 `churen_shop_buy_order_refund`
  3436. --
  3437. ALTER TABLE `churen_shop_buy_order_refund`
  3438. ADD PRIMARY KEY (`id`);
  3439. --
  3440. -- 表的索引 `churen_shop_buy_stat`
  3441. --
  3442. ALTER TABLE `churen_shop_buy_stat`
  3443. ADD PRIMARY KEY (`id`);
  3444. --
  3445. -- 表的索引 `churen_shop_buy_stat_month`
  3446. --
  3447. ALTER TABLE `churen_shop_buy_stat_month`
  3448. ADD PRIMARY KEY (`id`);
  3449. --
  3450. -- 表的索引 `churen_shop_cart`
  3451. --
  3452. ALTER TABLE `churen_shop_cart`
  3453. ADD PRIMARY KEY (`id`),
  3454. ADD KEY `i1` (`uid`,`shop_id`,`goods_id`);
  3455. --
  3456. -- 表的索引 `churen_shop_coupon`
  3457. --
  3458. ALTER TABLE `churen_shop_coupon`
  3459. ADD PRIMARY KEY (`id`);
  3460. --
  3461. -- 表的索引 `churen_shop_coupon_act`
  3462. --
  3463. ALTER TABLE `churen_shop_coupon_act`
  3464. ADD PRIMARY KEY (`id`);
  3465. --
  3466. -- 表的索引 `churen_shop_coupon_act_1`
  3467. --
  3468. ALTER TABLE `churen_shop_coupon_act_1`
  3469. ADD PRIMARY KEY (`id`);
  3470. --
  3471. -- 表的索引 `churen_shop_factory`
  3472. --
  3473. ALTER TABLE `churen_shop_factory`
  3474. ADD PRIMARY KEY (`id`),
  3475. ADD KEY `i1` (`shop_id`);
  3476. --
  3477. -- 表的索引 `churen_shop_factory_stat_month`
  3478. --
  3479. ALTER TABLE `churen_shop_factory_stat_month`
  3480. ADD PRIMARY KEY (`id`);
  3481. --
  3482. -- 表的索引 `churen_shop_feedback`
  3483. --
  3484. ALTER TABLE `churen_shop_feedback`
  3485. ADD PRIMARY KEY (`id`);
  3486. --
  3487. -- 表的索引 `churen_shop_focus`
  3488. --
  3489. ALTER TABLE `churen_shop_focus`
  3490. ADD PRIMARY KEY (`id`);
  3491. --
  3492. -- 表的索引 `churen_shop_goods`
  3493. --
  3494. ALTER TABLE `churen_shop_goods`
  3495. ADD PRIMARY KEY (`id`);
  3496. --
  3497. -- 表的索引 `churen_shop_goods_sku`
  3498. --
  3499. ALTER TABLE `churen_shop_goods_sku`
  3500. ADD PRIMARY KEY (`id`);
  3501. --
  3502. -- 表的索引 `churen_shop_info`
  3503. --
  3504. ALTER TABLE `churen_shop_info`
  3505. ADD PRIMARY KEY (`id`);
  3506. --
  3507. -- 表的索引 `churen_shop_member`
  3508. --
  3509. ALTER TABLE `churen_shop_member`
  3510. ADD PRIMARY KEY (`id`);
  3511. --
  3512. -- 表的索引 `churen_shop_out_order`
  3513. --
  3514. ALTER TABLE `churen_shop_out_order`
  3515. ADD PRIMARY KEY (`id`);
  3516. --
  3517. -- 表的索引 `churen_shop_out_order_goods`
  3518. --
  3519. ALTER TABLE `churen_shop_out_order_goods`
  3520. ADD PRIMARY KEY (`id`);
  3521. --
  3522. -- 表的索引 `churen_shop_out_type`
  3523. --
  3524. ALTER TABLE `churen_shop_out_type`
  3525. ADD PRIMARY KEY (`id`);
  3526. --
  3527. -- 表的索引 `churen_shop_print`
  3528. --
  3529. ALTER TABLE `churen_shop_print`
  3530. ADD PRIMARY KEY (`id`);
  3531. --
  3532. -- 表的索引 `churen_shop_sell_order`
  3533. --
  3534. ALTER TABLE `churen_shop_sell_order`
  3535. ADD PRIMARY KEY (`id`);
  3536. --
  3537. -- 表的索引 `churen_shop_sell_order_goods`
  3538. --
  3539. ALTER TABLE `churen_shop_sell_order_goods`
  3540. ADD PRIMARY KEY (`id`);
  3541. --
  3542. -- 表的索引 `churen_shop_sell_order_ps`
  3543. --
  3544. ALTER TABLE `churen_shop_sell_order_ps`
  3545. ADD PRIMARY KEY (`id`);
  3546. --
  3547. -- 表的索引 `churen_shop_sell_order_refund`
  3548. --
  3549. ALTER TABLE `churen_shop_sell_order_refund`
  3550. ADD PRIMARY KEY (`id`);
  3551. --
  3552. -- 表的索引 `churen_shop_sell_stat`
  3553. --
  3554. ALTER TABLE `churen_shop_sell_stat`
  3555. ADD PRIMARY KEY (`id`);
  3556. --
  3557. -- 表的索引 `churen_shop_sell_stat_month`
  3558. --
  3559. ALTER TABLE `churen_shop_sell_stat_month`
  3560. ADD PRIMARY KEY (`id`);
  3561. --
  3562. -- 表的索引 `churen_shop_service`
  3563. --
  3564. ALTER TABLE `churen_shop_service`
  3565. ADD PRIMARY KEY (`id`);
  3566. --
  3567. -- 表的索引 `churen_shop_shop_cart`
  3568. --
  3569. ALTER TABLE `churen_shop_shop_cart`
  3570. ADD PRIMARY KEY (`id`);
  3571. --
  3572. -- 表的索引 `churen_shop_store`
  3573. --
  3574. ALTER TABLE `churen_shop_store`
  3575. ADD PRIMARY KEY (`id`),
  3576. ADD KEY `i1` (`shop_id`);
  3577. --
  3578. -- 表的索引 `churen_shop_store_stat_month`
  3579. --
  3580. ALTER TABLE `churen_shop_store_stat_month`
  3581. ADD PRIMARY KEY (`id`);
  3582. --
  3583. -- 表的索引 `churen_shop_user_coupon`
  3584. --
  3585. ALTER TABLE `churen_shop_user_coupon`
  3586. ADD PRIMARY KEY (`id`);
  3587. --
  3588. -- 表的索引 `churen_shop_user_share`
  3589. --
  3590. ALTER TABLE `churen_shop_user_share`
  3591. ADD PRIMARY KEY (`id`);
  3592. --
  3593. -- 表的索引 `churen_sms_code`
  3594. --
  3595. ALTER TABLE `churen_sms_code`
  3596. ADD PRIMARY KEY (`id`);
  3597. --
  3598. -- 表的索引 `churen_sms_config`
  3599. --
  3600. ALTER TABLE `churen_sms_config`
  3601. ADD PRIMARY KEY (`id`);
  3602. --
  3603. -- 表的索引 `churen_sms_info`
  3604. --
  3605. ALTER TABLE `churen_sms_info`
  3606. ADD PRIMARY KEY (`id`);
  3607. --
  3608. -- 表的索引 `churen_sms_skin`
  3609. --
  3610. ALTER TABLE `churen_sms_skin`
  3611. ADD PRIMARY KEY (`id`);
  3612. --
  3613. -- 表的索引 `churen_store_goods`
  3614. --
  3615. ALTER TABLE `churen_store_goods`
  3616. ADD PRIMARY KEY (`id`);
  3617. --
  3618. -- 表的索引 `churen_store_goods_sku`
  3619. --
  3620. ALTER TABLE `churen_store_goods_sku`
  3621. ADD PRIMARY KEY (`id`);
  3622. --
  3623. -- 表的索引 `churen_store_info`
  3624. --
  3625. ALTER TABLE `churen_store_info`
  3626. ADD PRIMARY KEY (`id`);
  3627. --
  3628. -- 表的索引 `churen_store_member`
  3629. --
  3630. ALTER TABLE `churen_store_member`
  3631. ADD PRIMARY KEY (`id`);
  3632. --
  3633. -- 表的索引 `churen_store_order`
  3634. --
  3635. ALTER TABLE `churen_store_order`
  3636. ADD PRIMARY KEY (`id`);
  3637. --
  3638. -- 表的索引 `churen_token_log`
  3639. --
  3640. ALTER TABLE `churen_token_log`
  3641. ADD PRIMARY KEY (`id`);
  3642. --
  3643. -- 表的索引 `churen_token_project`
  3644. --
  3645. ALTER TABLE `churen_token_project`
  3646. ADD PRIMARY KEY (`id`);
  3647. --
  3648. -- 表的索引 `churen_token_token`
  3649. --
  3650. ALTER TABLE `churen_token_token`
  3651. ADD PRIMARY KEY (`id`);
  3652. --
  3653. -- 表的索引 `churen_upload_cate`
  3654. --
  3655. ALTER TABLE `churen_upload_cate`
  3656. ADD PRIMARY KEY (`id`);
  3657. --
  3658. -- 表的索引 `churen_upload_file`
  3659. --
  3660. ALTER TABLE `churen_upload_file`
  3661. ADD PRIMARY KEY (`id`),
  3662. ADD KEY `search` (`key`,`cate`,`search`),
  3663. ADD KEY `name` (`name`,`upload`);
  3664. --
  3665. -- 表的索引 `churen_upload_pic_water`
  3666. --
  3667. ALTER TABLE `churen_upload_pic_water`
  3668. ADD PRIMARY KEY (`id`);
  3669. --
  3670. -- 表的索引 `churen_upload_upload`
  3671. --
  3672. ALTER TABLE `churen_upload_upload`
  3673. ADD PRIMARY KEY (`id`);
  3674. --
  3675. -- 表的索引 `churen_upload_yun`
  3676. --
  3677. ALTER TABLE `churen_upload_yun`
  3678. ADD PRIMARY KEY (`id`);
  3679. --
  3680. -- 表的索引 `churen_wechat_applet_msg`
  3681. --
  3682. ALTER TABLE `churen_wechat_applet_msg`
  3683. ADD PRIMARY KEY (`id`);
  3684. --
  3685. -- 表的索引 `churen_wechat_applet_msg_log`
  3686. --
  3687. ALTER TABLE `churen_wechat_applet_msg_log`
  3688. ADD PRIMARY KEY (`id`);
  3689. --
  3690. -- 表的索引 `churen_wechat_applet_msg_send`
  3691. --
  3692. ALTER TABLE `churen_wechat_applet_msg_send`
  3693. ADD PRIMARY KEY (`id`);
  3694. --
  3695. -- 表的索引 `churen_wechat_applet_subscribe`
  3696. --
  3697. ALTER TABLE `churen_wechat_applet_subscribe`
  3698. ADD PRIMARY KEY (`id`);
  3699. --
  3700. -- 表的索引 `churen_wechat_applet_subscribe_log`
  3701. --
  3702. ALTER TABLE `churen_wechat_applet_subscribe_log`
  3703. ADD PRIMARY KEY (`id`);
  3704. --
  3705. -- 表的索引 `churen_wechat_applet_subscribe_send`
  3706. --
  3707. ALTER TABLE `churen_wechat_applet_subscribe_send`
  3708. ADD PRIMARY KEY (`id`);
  3709. --
  3710. -- 表的索引 `churen_wechat_applet_total_base`
  3711. --
  3712. ALTER TABLE `churen_wechat_applet_total_base`
  3713. ADD PRIMARY KEY (`id`);
  3714. --
  3715. -- 在导出的表使用AUTO_INCREMENT
  3716. --
  3717. --
  3718. -- 使用表AUTO_INCREMENT `churen_act_info`
  3719. --
  3720. ALTER TABLE `churen_act_info`
  3721. MODIFY `id` int(11) UNSIGNED NOT NULL AUTO_INCREMENT COMMENT 'ID';
  3722. --
  3723. -- 使用表AUTO_INCREMENT `churen_area_city`
  3724. --
  3725. ALTER TABLE `churen_area_city`
  3726. MODIFY `id` int(11) UNSIGNED NOT NULL AUTO_INCREMENT COMMENT 'ID';
  3727. --
  3728. -- 使用表AUTO_INCREMENT `churen_area_county`
  3729. --
  3730. ALTER TABLE `churen_area_county`
  3731. MODIFY `id` int(11) UNSIGNED NOT NULL AUTO_INCREMENT COMMENT 'ID';
  3732. --
  3733. -- 使用表AUTO_INCREMENT `churen_area_province`
  3734. --
  3735. ALTER TABLE `churen_area_province`
  3736. MODIFY `id` int(11) UNSIGNED NOT NULL AUTO_INCREMENT COMMENT 'ID';
  3737. --
  3738. -- 使用表AUTO_INCREMENT `churen_area_town`
  3739. --
  3740. ALTER TABLE `churen_area_town`
  3741. MODIFY `id` bigint(11) UNSIGNED NOT NULL AUTO_INCREMENT COMMENT 'ID';
  3742. --
  3743. -- 使用表AUTO_INCREMENT `churen_area_village`
  3744. --
  3745. ALTER TABLE `churen_area_village`
  3746. MODIFY `id` bigint(11) UNSIGNED NOT NULL AUTO_INCREMENT COMMENT 'ID';
  3747. --
  3748. -- 使用表AUTO_INCREMENT `churen_attr_cate`
  3749. --
  3750. ALTER TABLE `churen_attr_cate`
  3751. MODIFY `id` int(11) UNSIGNED NOT NULL AUTO_INCREMENT COMMENT 'ID';
  3752. --
  3753. -- 使用表AUTO_INCREMENT `churen_attr_info`
  3754. --
  3755. ALTER TABLE `churen_attr_info`
  3756. MODIFY `id` int(11) UNSIGNED NOT NULL AUTO_INCREMENT COMMENT 'ID';
  3757. --
  3758. -- 使用表AUTO_INCREMENT `churen_attr_search`
  3759. --
  3760. ALTER TABLE `churen_attr_search`
  3761. MODIFY `id` int(11) UNSIGNED NOT NULL AUTO_INCREMENT COMMENT 'ID';
  3762. --
  3763. -- 使用表AUTO_INCREMENT `churen_attr_value`
  3764. --
  3765. ALTER TABLE `churen_attr_value`
  3766. MODIFY `id` int(11) UNSIGNED NOT NULL AUTO_INCREMENT COMMENT 'ID';
  3767. --
  3768. -- 使用表AUTO_INCREMENT `churen_card_add`
  3769. --
  3770. ALTER TABLE `churen_card_add`
  3771. MODIFY `id` int(11) UNSIGNED NOT NULL AUTO_INCREMENT COMMENT '系统ID';
  3772. --
  3773. -- 使用表AUTO_INCREMENT `churen_card_code`
  3774. --
  3775. ALTER TABLE `churen_card_code`
  3776. MODIFY `id` int(11) UNSIGNED NOT NULL AUTO_INCREMENT COMMENT 'ID';
  3777. --
  3778. -- 使用表AUTO_INCREMENT `churen_card_info`
  3779. --
  3780. ALTER TABLE `churen_card_info`
  3781. MODIFY `id` int(11) UNSIGNED NOT NULL AUTO_INCREMENT COMMENT 'ID';
  3782. --
  3783. -- 使用表AUTO_INCREMENT `churen_card_order`
  3784. --
  3785. ALTER TABLE `churen_card_order`
  3786. MODIFY `id` int(11) UNSIGNED NOT NULL AUTO_INCREMENT COMMENT 'ID';
  3787. --
  3788. -- 使用表AUTO_INCREMENT `churen_card_order_card`
  3789. --
  3790. ALTER TABLE `churen_card_order_card`
  3791. MODIFY `id` int(11) UNSIGNED NOT NULL AUTO_INCREMENT COMMENT 'ID';
  3792. --
  3793. -- 使用表AUTO_INCREMENT `churen_card_order_ps`
  3794. --
  3795. ALTER TABLE `churen_card_order_ps`
  3796. MODIFY `id` int(11) UNSIGNED NOT NULL AUTO_INCREMENT COMMENT 'ID';
  3797. --
  3798. -- 使用表AUTO_INCREMENT `churen_card_type`
  3799. --
  3800. ALTER TABLE `churen_card_type`
  3801. MODIFY `id` int(11) UNSIGNED NOT NULL AUTO_INCREMENT COMMENT 'ID';
  3802. --
  3803. -- 使用表AUTO_INCREMENT `churen_cash_factory`
  3804. --
  3805. ALTER TABLE `churen_cash_factory`
  3806. MODIFY `id` int(11) UNSIGNED NOT NULL AUTO_INCREMENT COMMENT 'ID';
  3807. --
  3808. -- 使用表AUTO_INCREMENT `churen_cash_order`
  3809. --
  3810. ALTER TABLE `churen_cash_order`
  3811. MODIFY `id` int(11) UNSIGNED NOT NULL AUTO_INCREMENT COMMENT 'ID';
  3812. --
  3813. -- 使用表AUTO_INCREMENT `churen_cash_shop`
  3814. --
  3815. ALTER TABLE `churen_cash_shop`
  3816. MODIFY `id` int(11) UNSIGNED NOT NULL AUTO_INCREMENT COMMENT 'ID';
  3817. --
  3818. -- 使用表AUTO_INCREMENT `churen_cash_store`
  3819. --
  3820. ALTER TABLE `churen_cash_store`
  3821. MODIFY `id` int(11) UNSIGNED NOT NULL AUTO_INCREMENT COMMENT 'ID';
  3822. --
  3823. -- 使用表AUTO_INCREMENT `churen_category_attr`
  3824. --
  3825. ALTER TABLE `churen_category_attr`
  3826. MODIFY `id` int(11) UNSIGNED NOT NULL AUTO_INCREMENT COMMENT 'ID';
  3827. --
  3828. -- 使用表AUTO_INCREMENT `churen_category_info`
  3829. --
  3830. ALTER TABLE `churen_category_info`
  3831. MODIFY `id` int(11) UNSIGNED NOT NULL AUTO_INCREMENT COMMENT 'ID';
  3832. --
  3833. -- 使用表AUTO_INCREMENT `churen_category_project`
  3834. --
  3835. ALTER TABLE `churen_category_project`
  3836. MODIFY `id` int(11) UNSIGNED NOT NULL AUTO_INCREMENT COMMENT 'ID';
  3837. --
  3838. -- 使用表AUTO_INCREMENT `churen_content_feature`
  3839. --
  3840. ALTER TABLE `churen_content_feature`
  3841. MODIFY `id` int(11) UNSIGNED NOT NULL AUTO_INCREMENT COMMENT 'ID';
  3842. --
  3843. -- 使用表AUTO_INCREMENT `churen_content_news`
  3844. --
  3845. ALTER TABLE `churen_content_news`
  3846. MODIFY `id` int(11) UNSIGNED NOT NULL AUTO_INCREMENT COMMENT 'ID';
  3847. --
  3848. -- 使用表AUTO_INCREMENT `churen_factory_goods`
  3849. --
  3850. ALTER TABLE `churen_factory_goods`
  3851. MODIFY `id` int(11) UNSIGNED NOT NULL AUTO_INCREMENT COMMENT 'ID';
  3852. --
  3853. -- 使用表AUTO_INCREMENT `churen_factory_goods_sku`
  3854. --
  3855. ALTER TABLE `churen_factory_goods_sku`
  3856. MODIFY `id` int(11) UNSIGNED NOT NULL AUTO_INCREMENT COMMENT 'ID';
  3857. --
  3858. -- 使用表AUTO_INCREMENT `churen_factory_info`
  3859. --
  3860. ALTER TABLE `churen_factory_info`
  3861. MODIFY `id` int(11) UNSIGNED NOT NULL AUTO_INCREMENT COMMENT 'ID';
  3862. --
  3863. -- 使用表AUTO_INCREMENT `churen_factory_member`
  3864. --
  3865. ALTER TABLE `churen_factory_member`
  3866. MODIFY `id` int(11) UNSIGNED NOT NULL AUTO_INCREMENT COMMENT 'ID';
  3867. --
  3868. -- 使用表AUTO_INCREMENT `churen_factory_order`
  3869. --
  3870. ALTER TABLE `churen_factory_order`
  3871. MODIFY `id` int(11) UNSIGNED NOT NULL AUTO_INCREMENT COMMENT 'ID';
  3872. --
  3873. -- 使用表AUTO_INCREMENT `churen_goods_add_card`
  3874. --
  3875. ALTER TABLE `churen_goods_add_card`
  3876. MODIFY `id` int(11) UNSIGNED NOT NULL AUTO_INCREMENT COMMENT '系统ID';
  3877. --
  3878. -- 使用表AUTO_INCREMENT `churen_goods_card`
  3879. --
  3880. ALTER TABLE `churen_goods_card`
  3881. MODIFY `id` int(11) UNSIGNED NOT NULL AUTO_INCREMENT COMMENT 'ID';
  3882. --
  3883. -- 使用表AUTO_INCREMENT `churen_goods_card_code`
  3884. --
  3885. ALTER TABLE `churen_goods_card_code`
  3886. MODIFY `id` int(11) UNSIGNED NOT NULL AUTO_INCREMENT COMMENT 'ID';
  3887. --
  3888. -- 使用表AUTO_INCREMENT `churen_goods_column`
  3889. --
  3890. ALTER TABLE `churen_goods_column`
  3891. MODIFY `id` int(11) UNSIGNED NOT NULL AUTO_INCREMENT COMMENT 'ID';
  3892. --
  3893. -- 使用表AUTO_INCREMENT `churen_goods_coupon`
  3894. --
  3895. ALTER TABLE `churen_goods_coupon`
  3896. MODIFY `id` int(11) UNSIGNED NOT NULL AUTO_INCREMENT COMMENT 'ID';
  3897. --
  3898. -- 使用表AUTO_INCREMENT `churen_goods_info`
  3899. --
  3900. ALTER TABLE `churen_goods_info`
  3901. MODIFY `id` int(11) UNSIGNED NOT NULL AUTO_INCREMENT COMMENT 'ID';
  3902. --
  3903. -- 使用表AUTO_INCREMENT `churen_goods_info_category`
  3904. --
  3905. ALTER TABLE `churen_goods_info_category`
  3906. MODIFY `id` int(11) UNSIGNED NOT NULL AUTO_INCREMENT COMMENT 'ID';
  3907. --
  3908. -- 使用表AUTO_INCREMENT `churen_goods_info_column`
  3909. --
  3910. ALTER TABLE `churen_goods_info_column`
  3911. MODIFY `id` int(11) UNSIGNED NOT NULL AUTO_INCREMENT COMMENT 'ID';
  3912. --
  3913. -- 使用表AUTO_INCREMENT `churen_goods_info_sku`
  3914. --
  3915. ALTER TABLE `churen_goods_info_sku`
  3916. MODIFY `id` int(11) UNSIGNED NOT NULL AUTO_INCREMENT COMMENT 'ID';
  3917. --
  3918. -- 使用表AUTO_INCREMENT `churen_goods_info_tag`
  3919. --
  3920. ALTER TABLE `churen_goods_info_tag`
  3921. MODIFY `id` int(11) UNSIGNED NOT NULL AUTO_INCREMENT COMMENT 'ID';
  3922. --
  3923. -- 使用表AUTO_INCREMENT `churen_goods_tag`
  3924. --
  3925. ALTER TABLE `churen_goods_tag`
  3926. MODIFY `id` int(11) UNSIGNED NOT NULL AUTO_INCREMENT COMMENT 'ID';
  3927. --
  3928. -- 使用表AUTO_INCREMENT `churen_main_cate`
  3929. --
  3930. ALTER TABLE `churen_main_cate`
  3931. MODIFY `id` int(11) UNSIGNED NOT NULL AUTO_INCREMENT COMMENT 'ID';
  3932. --
  3933. -- 使用表AUTO_INCREMENT `churen_main_config`
  3934. --
  3935. ALTER TABLE `churen_main_config`
  3936. MODIFY `id` int(11) UNSIGNED NOT NULL AUTO_INCREMENT COMMENT '平台ID';
  3937. --
  3938. -- 使用表AUTO_INCREMENT `churen_main_factory_config`
  3939. --
  3940. ALTER TABLE `churen_main_factory_config`
  3941. MODIFY `id` int(11) UNSIGNED NOT NULL AUTO_INCREMENT COMMENT '平台ID';
  3942. --
  3943. -- 使用表AUTO_INCREMENT `churen_main_group`
  3944. --
  3945. ALTER TABLE `churen_main_group`
  3946. MODIFY `id` int(11) UNSIGNED NOT NULL AUTO_INCREMENT COMMENT 'ID';
  3947. --
  3948. -- 使用表AUTO_INCREMENT `churen_main_help`
  3949. --
  3950. ALTER TABLE `churen_main_help`
  3951. MODIFY `id` int(11) UNSIGNED NOT NULL AUTO_INCREMENT COMMENT 'ID';
  3952. --
  3953. -- 使用表AUTO_INCREMENT `churen_main_info`
  3954. --
  3955. ALTER TABLE `churen_main_info`
  3956. MODIFY `id` int(11) UNSIGNED NOT NULL AUTO_INCREMENT COMMENT 'ID';
  3957. --
  3958. -- 使用表AUTO_INCREMENT `churen_main_manage_config`
  3959. --
  3960. ALTER TABLE `churen_main_manage_config`
  3961. MODIFY `id` int(11) UNSIGNED NOT NULL AUTO_INCREMENT COMMENT '平台ID';
  3962. --
  3963. -- 使用表AUTO_INCREMENT `churen_main_page`
  3964. --
  3965. ALTER TABLE `churen_main_page`
  3966. MODIFY `id` int(11) UNSIGNED NOT NULL AUTO_INCREMENT COMMENT 'ID';
  3967. --
  3968. -- 使用表AUTO_INCREMENT `churen_main_sell_config`
  3969. --
  3970. ALTER TABLE `churen_main_sell_config`
  3971. MODIFY `id` int(11) UNSIGNED NOT NULL AUTO_INCREMENT COMMENT '平台ID';
  3972. --
  3973. -- 使用表AUTO_INCREMENT `churen_main_source`
  3974. --
  3975. ALTER TABLE `churen_main_source`
  3976. MODIFY `id` int(11) UNSIGNED NOT NULL AUTO_INCREMENT COMMENT 'ID';
  3977. --
  3978. -- 使用表AUTO_INCREMENT `churen_main_zhaopin`
  3979. --
  3980. ALTER TABLE `churen_main_zhaopin`
  3981. MODIFY `id` int(11) UNSIGNED NOT NULL AUTO_INCREMENT COMMENT 'ID';
  3982. --
  3983. -- 使用表AUTO_INCREMENT `churen_manage_admin`
  3984. --
  3985. ALTER TABLE `churen_manage_admin`
  3986. MODIFY `id` int(11) UNSIGNED NOT NULL AUTO_INCREMENT COMMENT '管理员ID';
  3987. --
  3988. -- 使用表AUTO_INCREMENT `churen_manage_admin_role`
  3989. --
  3990. ALTER TABLE `churen_manage_admin_role`
  3991. MODIFY `id` int(11) UNSIGNED NOT NULL AUTO_INCREMENT COMMENT 'ID';
  3992. --
  3993. -- 使用表AUTO_INCREMENT `churen_manage_api`
  3994. --
  3995. ALTER TABLE `churen_manage_api`
  3996. MODIFY `id` int(11) UNSIGNED NOT NULL AUTO_INCREMENT COMMENT 'ID';
  3997. --
  3998. -- 使用表AUTO_INCREMENT `churen_manage_api_request`
  3999. --
  4000. ALTER TABLE `churen_manage_api_request`
  4001. MODIFY `id` int(11) UNSIGNED NOT NULL AUTO_INCREMENT COMMENT 'ID';
  4002. --
  4003. -- 使用表AUTO_INCREMENT `churen_manage_api_response`
  4004. --
  4005. ALTER TABLE `churen_manage_api_response`
  4006. MODIFY `id` int(11) UNSIGNED NOT NULL AUTO_INCREMENT COMMENT 'ID';
  4007. --
  4008. -- 使用表AUTO_INCREMENT `churen_manage_auth`
  4009. --
  4010. ALTER TABLE `churen_manage_auth`
  4011. MODIFY `id` int(11) UNSIGNED NOT NULL AUTO_INCREMENT COMMENT 'ID';
  4012. --
  4013. -- 使用表AUTO_INCREMENT `churen_manage_config`
  4014. --
  4015. ALTER TABLE `churen_manage_config`
  4016. MODIFY `id` int(11) UNSIGNED NOT NULL AUTO_INCREMENT COMMENT '配置ID';
  4017. --
  4018. -- 使用表AUTO_INCREMENT `churen_manage_cron`
  4019. --
  4020. ALTER TABLE `churen_manage_cron`
  4021. MODIFY `id` int(11) UNSIGNED NOT NULL AUTO_INCREMENT COMMENT 'ID';
  4022. --
  4023. -- 使用表AUTO_INCREMENT `churen_manage_group`
  4024. --
  4025. ALTER TABLE `churen_manage_group`
  4026. MODIFY `id` int(11) UNSIGNED NOT NULL AUTO_INCREMENT COMMENT '组ID';
  4027. --
  4028. -- 使用表AUTO_INCREMENT `churen_manage_help`
  4029. --
  4030. ALTER TABLE `churen_manage_help`
  4031. MODIFY `id` int(11) UNSIGNED NOT NULL AUTO_INCREMENT COMMENT 'ID';
  4032. --
  4033. -- 使用表AUTO_INCREMENT `churen_manage_log`
  4034. --
  4035. ALTER TABLE `churen_manage_log`
  4036. MODIFY `id` int(11) UNSIGNED NOT NULL AUTO_INCREMENT COMMENT 'ID';
  4037. --
  4038. -- 使用表AUTO_INCREMENT `churen_manage_menu`
  4039. --
  4040. ALTER TABLE `churen_manage_menu`
  4041. MODIFY `id` int(11) UNSIGNED NOT NULL AUTO_INCREMENT COMMENT '菜单ID';
  4042. --
  4043. -- 使用表AUTO_INCREMENT `churen_manage_menu_group`
  4044. --
  4045. ALTER TABLE `churen_manage_menu_group`
  4046. MODIFY `id` int(11) UNSIGNED NOT NULL AUTO_INCREMENT COMMENT '分组ID';
  4047. --
  4048. -- 使用表AUTO_INCREMENT `churen_manage_notice`
  4049. --
  4050. ALTER TABLE `churen_manage_notice`
  4051. MODIFY `id` int(11) UNSIGNED NOT NULL AUTO_INCREMENT COMMENT '公告ID';
  4052. --
  4053. -- 使用表AUTO_INCREMENT `churen_manage_opt`
  4054. --
  4055. ALTER TABLE `churen_manage_opt`
  4056. MODIFY `id` int(11) UNSIGNED NOT NULL AUTO_INCREMENT COMMENT 'ID';
  4057. --
  4058. -- 使用表AUTO_INCREMENT `churen_manage_role`
  4059. --
  4060. ALTER TABLE `churen_manage_role`
  4061. MODIFY `id` int(11) UNSIGNED NOT NULL AUTO_INCREMENT COMMENT '角色ID';
  4062. --
  4063. -- 使用表AUTO_INCREMENT `churen_manage_top`
  4064. --
  4065. ALTER TABLE `churen_manage_top`
  4066. MODIFY `id` int(11) UNSIGNED NOT NULL AUTO_INCREMENT COMMENT 'ID';
  4067. --
  4068. -- 使用表AUTO_INCREMENT `churen_message_inbox`
  4069. --
  4070. ALTER TABLE `churen_message_inbox`
  4071. MODIFY `id` int(11) UNSIGNED NOT NULL AUTO_INCREMENT COMMENT 'ID';
  4072. --
  4073. -- 使用表AUTO_INCREMENT `churen_message_outbox`
  4074. --
  4075. ALTER TABLE `churen_message_outbox`
  4076. MODIFY `id` int(11) UNSIGNED NOT NULL AUTO_INCREMENT COMMENT 'ID';
  4077. --
  4078. -- 使用表AUTO_INCREMENT `churen_message_project`
  4079. --
  4080. ALTER TABLE `churen_message_project`
  4081. MODIFY `id` int(11) UNSIGNED NOT NULL AUTO_INCREMENT COMMENT 'ID';
  4082. --
  4083. -- 使用表AUTO_INCREMENT `churen_message_push`
  4084. --
  4085. ALTER TABLE `churen_message_push`
  4086. MODIFY `id` int(11) UNSIGNED NOT NULL AUTO_INCREMENT COMMENT 'ID';
  4087. --
  4088. -- 使用表AUTO_INCREMENT `churen_message_type`
  4089. --
  4090. ALTER TABLE `churen_message_type`
  4091. MODIFY `id` int(11) UNSIGNED NOT NULL AUTO_INCREMENT COMMENT 'ID';
  4092. --
  4093. -- 使用表AUTO_INCREMENT `churen_passport_address`
  4094. --
  4095. ALTER TABLE `churen_passport_address`
  4096. MODIFY `id` int(11) UNSIGNED NOT NULL AUTO_INCREMENT COMMENT 'ID';
  4097. --
  4098. -- 使用表AUTO_INCREMENT `churen_passport_avatar`
  4099. --
  4100. ALTER TABLE `churen_passport_avatar`
  4101. MODIFY `id` int(11) UNSIGNED NOT NULL AUTO_INCREMENT COMMENT 'ID';
  4102. --
  4103. -- 使用表AUTO_INCREMENT `churen_passport_code`
  4104. --
  4105. ALTER TABLE `churen_passport_code`
  4106. MODIFY `id` int(11) UNSIGNED NOT NULL AUTO_INCREMENT COMMENT 'ID';
  4107. --
  4108. -- 使用表AUTO_INCREMENT `churen_passport_invoice`
  4109. --
  4110. ALTER TABLE `churen_passport_invoice`
  4111. MODIFY `id` int(11) UNSIGNED NOT NULL AUTO_INCREMENT COMMENT 'ID';
  4112. --
  4113. -- 使用表AUTO_INCREMENT `churen_passport_profession`
  4114. --
  4115. ALTER TABLE `churen_passport_profession`
  4116. MODIFY `id` int(11) UNSIGNED NOT NULL AUTO_INCREMENT COMMENT 'ID';
  4117. --
  4118. -- 使用表AUTO_INCREMENT `churen_passport_stat`
  4119. --
  4120. ALTER TABLE `churen_passport_stat`
  4121. MODIFY `id` int(11) UNSIGNED NOT NULL AUTO_INCREMENT COMMENT 'ID';
  4122. --
  4123. -- 使用表AUTO_INCREMENT `churen_passport_system`
  4124. --
  4125. ALTER TABLE `churen_passport_system`
  4126. MODIFY `id` int(11) UNSIGNED NOT NULL AUTO_INCREMENT COMMENT 'ID';
  4127. --
  4128. -- 使用表AUTO_INCREMENT `churen_passport_user`
  4129. --
  4130. ALTER TABLE `churen_passport_user`
  4131. MODIFY `id` int(11) UNSIGNED NOT NULL AUTO_INCREMENT COMMENT '用户ID';
  4132. --
  4133. -- 使用表AUTO_INCREMENT `churen_passport_user_system`
  4134. --
  4135. ALTER TABLE `churen_passport_user_system`
  4136. MODIFY `id` int(11) UNSIGNED NOT NULL AUTO_INCREMENT COMMENT '用户ID';
  4137. --
  4138. -- 使用表AUTO_INCREMENT `churen_passport_wechat`
  4139. --
  4140. ALTER TABLE `churen_passport_wechat`
  4141. MODIFY `id` int(11) UNSIGNED NOT NULL AUTO_INCREMENT COMMENT 'ID';
  4142. --
  4143. -- 使用表AUTO_INCREMENT `churen_pay_account`
  4144. --
  4145. ALTER TABLE `churen_pay_account`
  4146. MODIFY `id` int(11) UNSIGNED NOT NULL AUTO_INCREMENT COMMENT 'ID';
  4147. --
  4148. -- 使用表AUTO_INCREMENT `churen_pay_channel`
  4149. --
  4150. ALTER TABLE `churen_pay_channel`
  4151. MODIFY `id` int(11) UNSIGNED NOT NULL AUTO_INCREMENT COMMENT 'ID';
  4152. --
  4153. -- 使用表AUTO_INCREMENT `churen_pay_order`
  4154. --
  4155. ALTER TABLE `churen_pay_order`
  4156. MODIFY `id` int(11) UNSIGNED NOT NULL AUTO_INCREMENT COMMENT 'ID';
  4157. --
  4158. -- 使用表AUTO_INCREMENT `churen_pay_project`
  4159. --
  4160. ALTER TABLE `churen_pay_project`
  4161. MODIFY `id` int(11) UNSIGNED NOT NULL AUTO_INCREMENT COMMENT 'ID';
  4162. --
  4163. -- 使用表AUTO_INCREMENT `churen_poster_template`
  4164. --
  4165. ALTER TABLE `churen_poster_template`
  4166. MODIFY `id` int(11) UNSIGNED NOT NULL AUTO_INCREMENT COMMENT 'ID';
  4167. --
  4168. -- 使用表AUTO_INCREMENT `churen_push_col`
  4169. --
  4170. ALTER TABLE `churen_push_col`
  4171. MODIFY `id` int(11) UNSIGNED NOT NULL AUTO_INCREMENT COMMENT 'ID';
  4172. --
  4173. -- 使用表AUTO_INCREMENT `churen_push_data`
  4174. --
  4175. ALTER TABLE `churen_push_data`
  4176. MODIFY `id` int(11) UNSIGNED NOT NULL AUTO_INCREMENT COMMENT 'ID';
  4177. --
  4178. -- 使用表AUTO_INCREMENT `churen_push_func`
  4179. --
  4180. ALTER TABLE `churen_push_func`
  4181. MODIFY `id` int(11) UNSIGNED NOT NULL AUTO_INCREMENT COMMENT 'ID';
  4182. --
  4183. -- 使用表AUTO_INCREMENT `churen_push_info`
  4184. --
  4185. ALTER TABLE `churen_push_info`
  4186. MODIFY `id` int(11) UNSIGNED NOT NULL AUTO_INCREMENT COMMENT '推送位ID';
  4187. --
  4188. -- 使用表AUTO_INCREMENT `churen_score_action`
  4189. --
  4190. ALTER TABLE `churen_score_action`
  4191. MODIFY `id` int(11) UNSIGNED NOT NULL AUTO_INCREMENT COMMENT 'ID';
  4192. --
  4193. -- 使用表AUTO_INCREMENT `churen_score_action_log`
  4194. --
  4195. ALTER TABLE `churen_score_action_log`
  4196. MODIFY `id` int(11) UNSIGNED NOT NULL AUTO_INCREMENT COMMENT 'ID';
  4197. --
  4198. -- 使用表AUTO_INCREMENT `churen_score_action_log_finish`
  4199. --
  4200. ALTER TABLE `churen_score_action_log_finish`
  4201. MODIFY `id` int(11) UNSIGNED NOT NULL AUTO_INCREMENT COMMENT 'ID';
  4202. --
  4203. -- 使用表AUTO_INCREMENT `churen_score_config`
  4204. --
  4205. ALTER TABLE `churen_score_config`
  4206. MODIFY `id` int(11) UNSIGNED NOT NULL AUTO_INCREMENT COMMENT 'ID';
  4207. --
  4208. -- 使用表AUTO_INCREMENT `churen_score_level`
  4209. --
  4210. ALTER TABLE `churen_score_level`
  4211. MODIFY `id` int(11) UNSIGNED NOT NULL AUTO_INCREMENT COMMENT 'ID';
  4212. --
  4213. -- 使用表AUTO_INCREMENT `churen_score_level_type`
  4214. --
  4215. ALTER TABLE `churen_score_level_type`
  4216. MODIFY `id` int(11) UNSIGNED NOT NULL AUTO_INCREMENT COMMENT 'ID';
  4217. --
  4218. -- 使用表AUTO_INCREMENT `churen_score_rule`
  4219. --
  4220. ALTER TABLE `churen_score_rule`
  4221. MODIFY `id` int(11) UNSIGNED NOT NULL AUTO_INCREMENT COMMENT 'ID';
  4222. --
  4223. -- 使用表AUTO_INCREMENT `churen_score_user`
  4224. --
  4225. ALTER TABLE `churen_score_user`
  4226. MODIFY `id` int(11) UNSIGNED NOT NULL AUTO_INCREMENT COMMENT 'ID';
  4227. --
  4228. -- 使用表AUTO_INCREMENT `churen_shop_apply`
  4229. --
  4230. ALTER TABLE `churen_shop_apply`
  4231. MODIFY `id` int(11) UNSIGNED NOT NULL AUTO_INCREMENT COMMENT 'ID';
  4232. --
  4233. -- 使用表AUTO_INCREMENT `churen_shop_buy_order`
  4234. --
  4235. ALTER TABLE `churen_shop_buy_order`
  4236. MODIFY `id` int(11) UNSIGNED NOT NULL AUTO_INCREMENT COMMENT 'ID';
  4237. --
  4238. -- 使用表AUTO_INCREMENT `churen_shop_buy_order_goods`
  4239. --
  4240. ALTER TABLE `churen_shop_buy_order_goods`
  4241. MODIFY `id` int(11) UNSIGNED NOT NULL AUTO_INCREMENT COMMENT 'ID';
  4242. --
  4243. -- 使用表AUTO_INCREMENT `churen_shop_buy_order_ps`
  4244. --
  4245. ALTER TABLE `churen_shop_buy_order_ps`
  4246. MODIFY `id` int(11) UNSIGNED NOT NULL AUTO_INCREMENT COMMENT 'ID';
  4247. --
  4248. -- 使用表AUTO_INCREMENT `churen_shop_buy_order_refund`
  4249. --
  4250. ALTER TABLE `churen_shop_buy_order_refund`
  4251. MODIFY `id` int(11) UNSIGNED NOT NULL AUTO_INCREMENT COMMENT 'ID';
  4252. --
  4253. -- 使用表AUTO_INCREMENT `churen_shop_buy_stat`
  4254. --
  4255. ALTER TABLE `churen_shop_buy_stat`
  4256. MODIFY `id` int(11) UNSIGNED NOT NULL AUTO_INCREMENT COMMENT 'ID';
  4257. --
  4258. -- 使用表AUTO_INCREMENT `churen_shop_buy_stat_month`
  4259. --
  4260. ALTER TABLE `churen_shop_buy_stat_month`
  4261. MODIFY `id` int(11) UNSIGNED NOT NULL AUTO_INCREMENT COMMENT 'ID';
  4262. --
  4263. -- 使用表AUTO_INCREMENT `churen_shop_cart`
  4264. --
  4265. ALTER TABLE `churen_shop_cart`
  4266. MODIFY `id` int(11) UNSIGNED NOT NULL AUTO_INCREMENT COMMENT 'ID';
  4267. --
  4268. -- 使用表AUTO_INCREMENT `churen_shop_coupon`
  4269. --
  4270. ALTER TABLE `churen_shop_coupon`
  4271. MODIFY `id` int(11) UNSIGNED NOT NULL AUTO_INCREMENT COMMENT 'ID';
  4272. --
  4273. -- 使用表AUTO_INCREMENT `churen_shop_coupon_act`
  4274. --
  4275. ALTER TABLE `churen_shop_coupon_act`
  4276. MODIFY `id` int(11) UNSIGNED NOT NULL AUTO_INCREMENT COMMENT 'ID';
  4277. --
  4278. -- 使用表AUTO_INCREMENT `churen_shop_coupon_act_1`
  4279. --
  4280. ALTER TABLE `churen_shop_coupon_act_1`
  4281. MODIFY `id` int(11) UNSIGNED NOT NULL AUTO_INCREMENT COMMENT 'ID';
  4282. --
  4283. -- 使用表AUTO_INCREMENT `churen_shop_factory`
  4284. --
  4285. ALTER TABLE `churen_shop_factory`
  4286. MODIFY `id` int(11) UNSIGNED NOT NULL AUTO_INCREMENT COMMENT 'ID';
  4287. --
  4288. -- 使用表AUTO_INCREMENT `churen_shop_factory_stat_month`
  4289. --
  4290. ALTER TABLE `churen_shop_factory_stat_month`
  4291. MODIFY `id` int(11) UNSIGNED NOT NULL AUTO_INCREMENT COMMENT 'ID';
  4292. --
  4293. -- 使用表AUTO_INCREMENT `churen_shop_feedback`
  4294. --
  4295. ALTER TABLE `churen_shop_feedback`
  4296. MODIFY `id` int(11) UNSIGNED NOT NULL AUTO_INCREMENT COMMENT 'ID';
  4297. --
  4298. -- 使用表AUTO_INCREMENT `churen_shop_focus`
  4299. --
  4300. ALTER TABLE `churen_shop_focus`
  4301. MODIFY `id` int(11) UNSIGNED NOT NULL AUTO_INCREMENT COMMENT 'ID';
  4302. --
  4303. -- 使用表AUTO_INCREMENT `churen_shop_goods`
  4304. --
  4305. ALTER TABLE `churen_shop_goods`
  4306. MODIFY `id` int(11) UNSIGNED NOT NULL AUTO_INCREMENT COMMENT 'ID';
  4307. --
  4308. -- 使用表AUTO_INCREMENT `churen_shop_goods_sku`
  4309. --
  4310. ALTER TABLE `churen_shop_goods_sku`
  4311. MODIFY `id` int(11) UNSIGNED NOT NULL AUTO_INCREMENT COMMENT 'ID';
  4312. --
  4313. -- 使用表AUTO_INCREMENT `churen_shop_info`
  4314. --
  4315. ALTER TABLE `churen_shop_info`
  4316. MODIFY `id` int(11) UNSIGNED NOT NULL AUTO_INCREMENT COMMENT 'ID';
  4317. --
  4318. -- 使用表AUTO_INCREMENT `churen_shop_member`
  4319. --
  4320. ALTER TABLE `churen_shop_member`
  4321. MODIFY `id` int(11) UNSIGNED NOT NULL AUTO_INCREMENT COMMENT 'ID';
  4322. --
  4323. -- 使用表AUTO_INCREMENT `churen_shop_out_order`
  4324. --
  4325. ALTER TABLE `churen_shop_out_order`
  4326. MODIFY `id` int(11) UNSIGNED NOT NULL AUTO_INCREMENT COMMENT 'ID';
  4327. --
  4328. -- 使用表AUTO_INCREMENT `churen_shop_out_order_goods`
  4329. --
  4330. ALTER TABLE `churen_shop_out_order_goods`
  4331. MODIFY `id` int(11) UNSIGNED NOT NULL AUTO_INCREMENT COMMENT 'ID';
  4332. --
  4333. -- 使用表AUTO_INCREMENT `churen_shop_out_type`
  4334. --
  4335. ALTER TABLE `churen_shop_out_type`
  4336. MODIFY `id` int(11) UNSIGNED NOT NULL AUTO_INCREMENT COMMENT 'ID';
  4337. --
  4338. -- 使用表AUTO_INCREMENT `churen_shop_print`
  4339. --
  4340. ALTER TABLE `churen_shop_print`
  4341. MODIFY `id` int(11) UNSIGNED NOT NULL AUTO_INCREMENT COMMENT 'ID';
  4342. --
  4343. -- 使用表AUTO_INCREMENT `churen_shop_sell_order`
  4344. --
  4345. ALTER TABLE `churen_shop_sell_order`
  4346. MODIFY `id` int(11) UNSIGNED NOT NULL AUTO_INCREMENT COMMENT 'ID';
  4347. --
  4348. -- 使用表AUTO_INCREMENT `churen_shop_sell_order_goods`
  4349. --
  4350. ALTER TABLE `churen_shop_sell_order_goods`
  4351. MODIFY `id` int(11) UNSIGNED NOT NULL AUTO_INCREMENT COMMENT 'ID';
  4352. --
  4353. -- 使用表AUTO_INCREMENT `churen_shop_sell_order_ps`
  4354. --
  4355. ALTER TABLE `churen_shop_sell_order_ps`
  4356. MODIFY `id` int(11) UNSIGNED NOT NULL AUTO_INCREMENT COMMENT 'ID';
  4357. --
  4358. -- 使用表AUTO_INCREMENT `churen_shop_sell_order_refund`
  4359. --
  4360. ALTER TABLE `churen_shop_sell_order_refund`
  4361. MODIFY `id` int(11) UNSIGNED NOT NULL AUTO_INCREMENT COMMENT 'ID';
  4362. --
  4363. -- 使用表AUTO_INCREMENT `churen_shop_sell_stat`
  4364. --
  4365. ALTER TABLE `churen_shop_sell_stat`
  4366. MODIFY `id` int(11) UNSIGNED NOT NULL AUTO_INCREMENT COMMENT 'ID';
  4367. --
  4368. -- 使用表AUTO_INCREMENT `churen_shop_sell_stat_month`
  4369. --
  4370. ALTER TABLE `churen_shop_sell_stat_month`
  4371. MODIFY `id` int(11) UNSIGNED NOT NULL AUTO_INCREMENT COMMENT 'ID';
  4372. --
  4373. -- 使用表AUTO_INCREMENT `churen_shop_service`
  4374. --
  4375. ALTER TABLE `churen_shop_service`
  4376. MODIFY `id` int(11) UNSIGNED NOT NULL AUTO_INCREMENT COMMENT 'ID';
  4377. --
  4378. -- 使用表AUTO_INCREMENT `churen_shop_shop_cart`
  4379. --
  4380. ALTER TABLE `churen_shop_shop_cart`
  4381. MODIFY `id` int(11) UNSIGNED NOT NULL AUTO_INCREMENT COMMENT 'ID';
  4382. --
  4383. -- 使用表AUTO_INCREMENT `churen_shop_store`
  4384. --
  4385. ALTER TABLE `churen_shop_store`
  4386. MODIFY `id` int(11) UNSIGNED NOT NULL AUTO_INCREMENT COMMENT 'ID';
  4387. --
  4388. -- 使用表AUTO_INCREMENT `churen_shop_store_stat_month`
  4389. --
  4390. ALTER TABLE `churen_shop_store_stat_month`
  4391. MODIFY `id` int(11) UNSIGNED NOT NULL AUTO_INCREMENT COMMENT 'ID';
  4392. --
  4393. -- 使用表AUTO_INCREMENT `churen_shop_user_coupon`
  4394. --
  4395. ALTER TABLE `churen_shop_user_coupon`
  4396. MODIFY `id` int(11) UNSIGNED NOT NULL AUTO_INCREMENT COMMENT 'ID';
  4397. --
  4398. -- 使用表AUTO_INCREMENT `churen_shop_user_share`
  4399. --
  4400. ALTER TABLE `churen_shop_user_share`
  4401. MODIFY `id` int(11) UNSIGNED NOT NULL AUTO_INCREMENT COMMENT 'ID';
  4402. --
  4403. -- 使用表AUTO_INCREMENT `churen_sms_code`
  4404. --
  4405. ALTER TABLE `churen_sms_code`
  4406. MODIFY `id` int(11) UNSIGNED NOT NULL AUTO_INCREMENT COMMENT 'ID';
  4407. --
  4408. -- 使用表AUTO_INCREMENT `churen_sms_config`
  4409. --
  4410. ALTER TABLE `churen_sms_config`
  4411. MODIFY `id` int(11) UNSIGNED NOT NULL AUTO_INCREMENT COMMENT 'ID';
  4412. --
  4413. -- 使用表AUTO_INCREMENT `churen_sms_info`
  4414. --
  4415. ALTER TABLE `churen_sms_info`
  4416. MODIFY `id` int(11) UNSIGNED NOT NULL AUTO_INCREMENT COMMENT 'ID';
  4417. --
  4418. -- 使用表AUTO_INCREMENT `churen_sms_skin`
  4419. --
  4420. ALTER TABLE `churen_sms_skin`
  4421. MODIFY `id` int(11) UNSIGNED NOT NULL AUTO_INCREMENT COMMENT 'ID';
  4422. --
  4423. -- 使用表AUTO_INCREMENT `churen_store_goods`
  4424. --
  4425. ALTER TABLE `churen_store_goods`
  4426. MODIFY `id` int(11) UNSIGNED NOT NULL AUTO_INCREMENT COMMENT 'ID';
  4427. --
  4428. -- 使用表AUTO_INCREMENT `churen_store_goods_sku`
  4429. --
  4430. ALTER TABLE `churen_store_goods_sku`
  4431. MODIFY `id` int(11) UNSIGNED NOT NULL AUTO_INCREMENT COMMENT 'ID';
  4432. --
  4433. -- 使用表AUTO_INCREMENT `churen_store_info`
  4434. --
  4435. ALTER TABLE `churen_store_info`
  4436. MODIFY `id` int(11) UNSIGNED NOT NULL AUTO_INCREMENT COMMENT 'ID';
  4437. --
  4438. -- 使用表AUTO_INCREMENT `churen_store_member`
  4439. --
  4440. ALTER TABLE `churen_store_member`
  4441. MODIFY `id` int(11) UNSIGNED NOT NULL AUTO_INCREMENT COMMENT 'ID';
  4442. --
  4443. -- 使用表AUTO_INCREMENT `churen_store_order`
  4444. --
  4445. ALTER TABLE `churen_store_order`
  4446. MODIFY `id` int(11) UNSIGNED NOT NULL AUTO_INCREMENT COMMENT 'ID';
  4447. --
  4448. -- 使用表AUTO_INCREMENT `churen_token_log`
  4449. --
  4450. ALTER TABLE `churen_token_log`
  4451. MODIFY `id` int(11) UNSIGNED NOT NULL AUTO_INCREMENT COMMENT 'ID';
  4452. --
  4453. -- 使用表AUTO_INCREMENT `churen_token_project`
  4454. --
  4455. ALTER TABLE `churen_token_project`
  4456. MODIFY `id` int(11) UNSIGNED NOT NULL AUTO_INCREMENT COMMENT 'ID';
  4457. --
  4458. -- 使用表AUTO_INCREMENT `churen_token_token`
  4459. --
  4460. ALTER TABLE `churen_token_token`
  4461. MODIFY `id` int(11) UNSIGNED NOT NULL AUTO_INCREMENT COMMENT 'ID';
  4462. --
  4463. -- 使用表AUTO_INCREMENT `churen_upload_cate`
  4464. --
  4465. ALTER TABLE `churen_upload_cate`
  4466. MODIFY `id` int(11) UNSIGNED NOT NULL AUTO_INCREMENT COMMENT 'ID';
  4467. --
  4468. -- 使用表AUTO_INCREMENT `churen_upload_file`
  4469. --
  4470. ALTER TABLE `churen_upload_file`
  4471. MODIFY `id` int(11) UNSIGNED NOT NULL AUTO_INCREMENT COMMENT 'ID';
  4472. --
  4473. -- 使用表AUTO_INCREMENT `churen_upload_pic_water`
  4474. --
  4475. ALTER TABLE `churen_upload_pic_water`
  4476. MODIFY `id` int(11) UNSIGNED NOT NULL AUTO_INCREMENT COMMENT '配置ID';
  4477. --
  4478. -- 使用表AUTO_INCREMENT `churen_upload_upload`
  4479. --
  4480. ALTER TABLE `churen_upload_upload`
  4481. MODIFY `id` int(11) UNSIGNED NOT NULL AUTO_INCREMENT COMMENT '配置ID';
  4482. --
  4483. -- 使用表AUTO_INCREMENT `churen_upload_yun`
  4484. --
  4485. ALTER TABLE `churen_upload_yun`
  4486. MODIFY `id` int(11) UNSIGNED NOT NULL AUTO_INCREMENT COMMENT '配置ID';
  4487. --
  4488. -- 使用表AUTO_INCREMENT `churen_wechat_applet_msg`
  4489. --
  4490. ALTER TABLE `churen_wechat_applet_msg`
  4491. MODIFY `id` int(11) UNSIGNED NOT NULL AUTO_INCREMENT COMMENT 'ID';
  4492. --
  4493. -- 使用表AUTO_INCREMENT `churen_wechat_applet_msg_log`
  4494. --
  4495. ALTER TABLE `churen_wechat_applet_msg_log`
  4496. MODIFY `id` int(11) UNSIGNED NOT NULL AUTO_INCREMENT COMMENT 'ID';
  4497. --
  4498. -- 使用表AUTO_INCREMENT `churen_wechat_applet_msg_send`
  4499. --
  4500. ALTER TABLE `churen_wechat_applet_msg_send`
  4501. MODIFY `id` int(11) UNSIGNED NOT NULL AUTO_INCREMENT COMMENT 'ID';
  4502. --
  4503. -- 使用表AUTO_INCREMENT `churen_wechat_applet_subscribe`
  4504. --
  4505. ALTER TABLE `churen_wechat_applet_subscribe`
  4506. MODIFY `id` int(11) UNSIGNED NOT NULL AUTO_INCREMENT COMMENT 'ID';
  4507. --
  4508. -- 使用表AUTO_INCREMENT `churen_wechat_applet_subscribe_log`
  4509. --
  4510. ALTER TABLE `churen_wechat_applet_subscribe_log`
  4511. MODIFY `id` int(11) UNSIGNED NOT NULL AUTO_INCREMENT COMMENT 'ID';
  4512. --
  4513. -- 使用表AUTO_INCREMENT `churen_wechat_applet_subscribe_send`
  4514. --
  4515. ALTER TABLE `churen_wechat_applet_subscribe_send`
  4516. MODIFY `id` int(11) UNSIGNED NOT NULL AUTO_INCREMENT COMMENT 'ID';
  4517. --
  4518. -- 使用表AUTO_INCREMENT `churen_wechat_applet_total_base`
  4519. --
  4520. ALTER TABLE `churen_wechat_applet_total_base`
  4521. MODIFY `id` int(11) UNSIGNED NOT NULL AUTO_INCREMENT COMMENT 'ID';
  4522. COMMIT;
  4523. /*!40101 SET CHARACTER_SET_CLIENT=@OLD_CHARACTER_SET_CLIENT */;
  4524. /*!40101 SET CHARACTER_SET_RESULTS=@OLD_CHARACTER_SET_RESULTS */;
  4525. /*!40101 SET COLLATION_CONNECTION=@OLD_COLLATION_CONNECTION */;