123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123 |
- <?php
- //升级数据表
- pdo_query("CREATE TABLE IF NOT EXISTS `ims_zhtc_account` (
- `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
- `weid` int(10) unsigned NOT NULL DEFAULT '0' COMMENT '所属帐号',
- `storeid` varchar(1000) NOT NULL,
- `uid` int(10) unsigned NOT NULL DEFAULT '0',
- `from_user` varchar(100) NOT NULL DEFAULT '',
- `accountname` varchar(50) NOT NULL DEFAULT '',
- `password` varchar(200) NOT NULL DEFAULT '',
- `salt` varchar(10) NOT NULL DEFAULT '',
- `pwd` varchar(50) NOT NULL,
- `mobile` varchar(20) NOT NULL,
- `email` varchar(20) NOT NULL,
- `username` varchar(50) NOT NULL,
- `pay_account` varchar(200) NOT NULL,
- `displayorder` tinyint(3) unsigned NOT NULL DEFAULT '0' COMMENT '排序',
- `dateline` int(10) unsigned NOT NULL DEFAULT '0',
- `status` tinyint(1) unsigned NOT NULL DEFAULT '2' COMMENT '状态',
- `role` tinyint(1) unsigned NOT NULL DEFAULT '1' COMMENT '1:店长,2:店员',
- `lastvisit` int(10) unsigned NOT NULL DEFAULT '0',
- `lastip` varchar(15) NOT NULL,
- `areaid` int(10) NOT NULL DEFAULT '0' COMMENT '区域id',
- `is_admin_order` tinyint(1) unsigned NOT NULL DEFAULT '1',
- `is_notice_order` tinyint(1) unsigned NOT NULL DEFAULT '1',
- `is_notice_queue` tinyint(1) unsigned NOT NULL DEFAULT '1',
- `is_notice_service` tinyint(1) unsigned NOT NULL DEFAULT '1',
- `is_notice_boss` tinyint(1) NOT NULL DEFAULT '0',
- `remark` varchar(1000) NOT NULL DEFAULT '' COMMENT '备注',
- `lat` decimal(18,10) NOT NULL DEFAULT '0.0000000000' COMMENT '经度',
- `lng` decimal(18,10) NOT NULL DEFAULT '0.0000000000' COMMENT '纬度',
- `cityname` varchar(50) NOT NULL COMMENT '城市名称',
- `money` decimal(10,2) NOT NULL,
- `authority` text NOT NULL,
- `city_qx` text NOT NULL,
- PRIMARY KEY (`id`)
- ) ENGINE=InnoDB AUTO_INCREMENT=15 DEFAULT CHARSET=utf8;
- ");
- if(!pdo_fieldexists('zhtc_account','id')) {pdo_query("ALTER TABLE ".tablename('zhtc_account')." ADD
- `id` int(10) unsigned NOT NULL AUTO_INCREMENT");}
- if(!pdo_fieldexists('zhtc_account','weid')) {pdo_query("ALTER TABLE ".tablename('zhtc_account')." ADD `weid` int(10) unsigned NOT NULL DEFAULT '0' COMMENT '所属帐号'");}
- if(!pdo_fieldexists('zhtc_account','storeid')) {pdo_query("ALTER TABLE ".tablename('zhtc_account')." ADD `storeid` varchar(1000) NOT NULL");}
- if(!pdo_fieldexists('zhtc_account','uid')) {pdo_query("ALTER TABLE ".tablename('zhtc_account')." ADD `uid` int(10) unsigned NOT NULL DEFAULT '0'");}
- if(!pdo_fieldexists('zhtc_account','from_user')) {pdo_query("ALTER TABLE ".tablename('zhtc_account')." ADD `from_user` varchar(100) NOT NULL DEFAULT ''");}
- if(!pdo_fieldexists('zhtc_account','accountname')) {pdo_query("ALTER TABLE ".tablename('zhtc_account')." ADD `accountname` varchar(50) NOT NULL DEFAULT ''");}
- if(!pdo_fieldexists('zhtc_account','password')) {pdo_query("ALTER TABLE ".tablename('zhtc_account')." ADD `password` varchar(200) NOT NULL DEFAULT ''");}
- if(!pdo_fieldexists('zhtc_account','salt')) {pdo_query("ALTER TABLE ".tablename('zhtc_account')." ADD `salt` varchar(10) NOT NULL DEFAULT ''");}
- if(!pdo_fieldexists('zhtc_account','pwd')) {pdo_query("ALTER TABLE ".tablename('zhtc_account')." ADD `pwd` varchar(50) NOT NULL");}
- if(!pdo_fieldexists('zhtc_account','mobile')) {pdo_query("ALTER TABLE ".tablename('zhtc_account')." ADD `mobile` varchar(20) NOT NULL");}
- if(!pdo_fieldexists('zhtc_account','email')) {pdo_query("ALTER TABLE ".tablename('zhtc_account')." ADD `email` varchar(20) NOT NULL");}
- if(!pdo_fieldexists('zhtc_account','username')) {pdo_query("ALTER TABLE ".tablename('zhtc_account')." ADD `username` varchar(50) NOT NULL");}
- if(!pdo_fieldexists('zhtc_account','pay_account')) {pdo_query("ALTER TABLE ".tablename('zhtc_account')." ADD `pay_account` varchar(200) NOT NULL");}
- if(!pdo_fieldexists('zhtc_account','displayorder')) {pdo_query("ALTER TABLE ".tablename('zhtc_account')." ADD `displayorder` tinyint(3) unsigned NOT NULL DEFAULT '0' COMMENT '排序'");}
- if(!pdo_fieldexists('zhtc_account','dateline')) {pdo_query("ALTER TABLE ".tablename('zhtc_account')." ADD `dateline` int(10) unsigned NOT NULL DEFAULT '0'");}
- if(!pdo_fieldexists('zhtc_account','status')) {pdo_query("ALTER TABLE ".tablename('zhtc_account')." ADD `status` tinyint(1) unsigned NOT NULL DEFAULT '2' COMMENT '状态'");}
- if(!pdo_fieldexists('zhtc_account','role')) {pdo_query("ALTER TABLE ".tablename('zhtc_account')." ADD `role` tinyint(1) unsigned NOT NULL DEFAULT '1' COMMENT '1:店长,2:店员'");}
- if(!pdo_fieldexists('zhtc_account','lastvisit')) {pdo_query("ALTER TABLE ".tablename('zhtc_account')." ADD `lastvisit` int(10) unsigned NOT NULL DEFAULT '0'");}
- if(!pdo_fieldexists('zhtc_account','lastip')) {pdo_query("ALTER TABLE ".tablename('zhtc_account')." ADD `lastip` varchar(15) NOT NULL");}
- if(!pdo_fieldexists('zhtc_account','areaid')) {pdo_query("ALTER TABLE ".tablename('zhtc_account')." ADD `areaid` int(10) NOT NULL DEFAULT '0' COMMENT '区域id'");}
- if(!pdo_fieldexists('zhtc_account','is_admin_order')) {pdo_query("ALTER TABLE ".tablename('zhtc_account')." ADD `is_admin_order` tinyint(1) unsigned NOT NULL DEFAULT '1'");}
- if(!pdo_fieldexists('zhtc_account','is_notice_order')) {pdo_query("ALTER TABLE ".tablename('zhtc_account')." ADD `is_notice_order` tinyint(1) unsigned NOT NULL DEFAULT '1'");}
- if(!pdo_fieldexists('zhtc_account','is_notice_queue')) {pdo_query("ALTER TABLE ".tablename('zhtc_account')." ADD `is_notice_queue` tinyint(1) unsigned NOT NULL DEFAULT '1'");}
- if(!pdo_fieldexists('zhtc_account','is_notice_service')) {pdo_query("ALTER TABLE ".tablename('zhtc_account')." ADD `is_notice_service` tinyint(1) unsigned NOT NULL DEFAULT '1'");}
- if(!pdo_fieldexists('zhtc_account','is_notice_boss')) {pdo_query("ALTER TABLE ".tablename('zhtc_account')." ADD `is_notice_boss` tinyint(1) NOT NULL DEFAULT '0'");}
- if(!pdo_fieldexists('zhtc_account','remark')) {pdo_query("ALTER TABLE ".tablename('zhtc_account')." ADD `remark` varchar(1000) NOT NULL DEFAULT '' COMMENT '备注'");}
- if(!pdo_fieldexists('zhtc_account','lat')) {pdo_query("ALTER TABLE ".tablename('zhtc_account')." ADD `lat` decimal(18,10) NOT NULL DEFAULT '0.0000000000' COMMENT '经度'");}
- if(!pdo_fieldexists('zhtc_account','lng')) {pdo_query("ALTER TABLE ".tablename('zhtc_account')." ADD `lng` decimal(18,10) NOT NULL DEFAULT '0.0000000000' COMMENT '纬度'");}
- if(!pdo_fieldexists('zhtc_account','cityname')) {pdo_query("ALTER TABLE ".tablename('zhtc_account')." ADD `cityname` varchar(50) NOT NULL COMMENT '城市名称'");}
- if(!pdo_fieldexists('zhtc_account','money')) {pdo_query("ALTER TABLE ".tablename('zhtc_account')." ADD `money` decimal(10,2) NOT NULL");}
- if(!pdo_fieldexists('zhtc_account','authority')) {pdo_query("ALTER TABLE ".tablename('zhtc_account')." ADD `authority` text NOT NULL");}
- if(!pdo_fieldexists('zhtc_account','city_qx')) {pdo_query("ALTER TABLE ".tablename('zhtc_account')." ADD `city_qx` text NOT NULL");}
- pdo_query("CREATE TABLE IF NOT EXISTS `ims_zhtc_acthxlist` (
- `id` int(11) unsigned NOT NULL AUTO_INCREMENT,
- `user_id` int(11) NOT NULL,
- `act_id` int(11) NOT NULL,
- PRIMARY KEY (`id`)
- ) ENGINE=InnoDB AUTO_INCREMENT=4 DEFAULT CHARSET=utf8;
- ");
- if(!pdo_fieldexists('zhtc_acthxlist','id')) {pdo_query("ALTER TABLE ".tablename('zhtc_acthxlist')." ADD
- `id` int(11) unsigned NOT NULL AUTO_INCREMENT");}
- if(!pdo_fieldexists('zhtc_acthxlist','user_id')) {pdo_query("ALTER TABLE ".tablename('zhtc_acthxlist')." ADD `user_id` int(11) NOT NULL");}
- if(!pdo_fieldexists('zhtc_acthxlist','act_id')) {pdo_query("ALTER TABLE ".tablename('zhtc_acthxlist')." ADD `act_id` int(11) NOT NULL");}
- pdo_query("CREATE TABLE IF NOT EXISTS `ims_zhtc_activity` (
- `id` int(11) unsigned NOT NULL AUTO_INCREMENT,
- `title` varchar(50) NOT NULL COMMENT '活动标题',
- `logo` varchar(200) NOT NULL COMMENT '活动logo',
- `img` text NOT NULL COMMENT '活动轮播图',
- `details` text NOT NULL COMMENT '活动详情',
- `number` int(11) NOT NULL COMMENT '限制人数',
- `sign_num` int(11) NOT NULL COMMENT '限制人数',
- `time` varchar(20) NOT NULL COMMENT '发布时间',
- `start_time` varchar(20) NOT NULL COMMENT '开始时间',
- `end_time` varchar(20) NOT NULL COMMENT '结束时间',
- `uniacid` int(11) NOT NULL COMMENT '小程序id',
- `money` decimal(10,2) NOT NULL COMMENT '价格',
- `type_id` int(11) NOT NULL COMMENT '分类id',
- `tel` varchar(20) NOT NULL COMMENT '电话',
- `address` varchar(200) NOT NULL COMMENT '地址',
- `coordinate` varchar(50) NOT NULL COMMENT '坐标',
- `num` int(11) NOT NULL COMMENT '排序',
- `view` int(11) NOT NULL COMMENT '访问量',
- `is_bm` int(11) NOT NULL DEFAULT '1' COMMENT '1.开启2.关闭',
- `cityname` varchar(20) NOT NULL COMMENT '城市',
- PRIMARY KEY (`id`)
- ) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8;
- ");
- if(!pdo_fieldexists('zhtc_activity','id')) {pdo_query("ALTER TABLE ".tablename('zhtc_activity')." ADD
- `id` int(11) unsigned NOT NULL AUTO_INCREMENT");}
- if(!pdo_fieldexists('zhtc_activity','title')) {pdo_query("ALTER TABLE ".tablename('zhtc_activity')." ADD `title` varchar(50) NOT NULL COMMENT '活动标题'");}
- if(!pdo_fieldexists('zhtc_activity','logo')) {pdo_query("ALTER TABLE ".tablename('zhtc_activity')." ADD `logo` varchar(200) NOT NULL COMMENT '活动logo'");}
- if(!pdo_fieldexists('zhtc_activity','img')) {pdo_query("ALTER TABLE ".tablename('zhtc_activity')." ADD `img` text NOT NULL COMMENT '活动轮播图'");}
- if(!pdo_fieldexists('zhtc_activity','details')) {pdo_query("ALTER TABLE ".tablename('zhtc_activity')." ADD `details` text NOT NULL COMMENT '活动详情'");}
- if(!pdo_fieldexists('zhtc_activity','number')) {pdo_query("ALTER TABLE ".tablename('zhtc_activity')." ADD `number` int(11) NOT NULL COMMENT '限制人数'");}
- if(!pdo_fieldexists('zhtc_activity','sign_num')) {pdo_query("ALTER TABLE ".tablename('zhtc_activity')." ADD `sign_num` int(11) NOT NULL COMMENT '限制人数'");}
- if(!pdo_fieldexists('zhtc_activity','time')) {pdo_query("ALTER TABLE ".tablename('zhtc_activity')." ADD `time` varchar(20) NOT NULL COMMENT '发布时间'");}
- if(!pdo_fieldexists('zhtc_activity','start_time')) {pdo_query("ALTER TABLE ".tablename('zhtc_activity')." ADD `start_time` varchar(20) NOT NULL COMMENT '开始时间'");}
- if(!pdo_fieldexists('zhtc_activity','end_time')) {pdo_query("ALTER TABLE ".tablename('zhtc_activity')." ADD `end_time` varchar(20) NOT NULL COMMENT '结束时间'");}
- if(!pdo_fieldexists('zhtc_activity','uniacid')) {pdo_query("ALTER TABLE ".tablename('zhtc_activity')." ADD `uniacid` int(11) NOT NULL COMMENT '小程序id'");}
- if(!pdo_fieldexists('zhtc_activity','money')) {pdo_query("ALTER TABLE ".tablename('zhtc_activity')." ADD `money` decimal(10,2) NOT NULL COMMENT '价格'");}
- if(!pdo_fieldexists('zhtc_activity','type_id')) {pdo_query("ALTER TABLE ".tablename('zhtc_activity')." ADD `type_id` int(11) NOT NULL COMMENT '分类id'");}
- if(!pdo_fieldexists('zhtc_activity','tel')) {pdo_query("ALTER TABLE ".tablename('zhtc_activity')." ADD `tel` varchar(20) NOT NULL COMMENT '电话'");}
- if(!pdo_fieldexists('zhtc_activity','address')) {pdo_query("ALTER TABLE ".tablename('zhtc_activity')." ADD `address` varchar(200) NOT NULL COMMENT '地址'");}
- if(!pdo_fieldexists('zhtc_activity','coordinate')) {pdo_query("ALTER TABLE ".tablename('zhtc_activity')." ADD `coordinate` varchar(50) NOT NULL COMMENT '坐标'");}
- if(!pdo_fieldexists('zhtc_activity','num')) {pdo_query("ALTER TABLE ".tablename('zhtc_activity')." ADD `num` int(11) NOT NULL COMMENT '排序'");}
- if(!pdo_fieldexists('zhtc_activity','view')) {pdo_query("ALTER TABLE ".tablename('zhtc_activity')." ADD `view` int(11) NOT NULL COMMENT '访问量'");}
- if(!pdo_fieldexists('zhtc_activity','is_bm')) {pdo_query("ALTER TABLE ".tablename('zhtc_activity')." ADD `is_bm` int(11) NOT NULL DEFAULT '1' COMMENT '1.开启2.关闭'");}
- if(!pdo_fieldexists('zhtc_activity','cityname')) {pdo_query("ALTER TABLE ".tablename('zhtc_activity')." ADD `cityname` varchar(20) NOT NULL COMMENT '城市'");}
- pdo_query("CREATE TABLE IF NOT EXISTS `ims_zhtc_acttype` (
- `id` int(11) unsigned NOT NULL AUTO_INCREMENT,
- `type_name` varchar(20) NOT NULL,
- `num` int(11) NOT NULL,
- `uniacid` int(11) NOT NULL,
- `state` int(11) NOT NULL COMMENT '1.开启2.关闭',
- `img` varchar(500) NOT NULL,
- PRIMARY KEY (`id`)
- ) ENGINE=InnoDB AUTO_INCREMENT=3 DEFAULT CHARSET=utf8;
- ");
- if(!pdo_fieldexists('zhtc_acttype','id')) {pdo_query("ALTER TABLE ".tablename('zhtc_acttype')." ADD
- `id` int(11) unsigned NOT NULL AUTO_INCREMENT");}
- if(!pdo_fieldexists('zhtc_acttype','type_name')) {pdo_query("ALTER TABLE ".tablename('zhtc_acttype')." ADD `type_name` varchar(20) NOT NULL");}
- if(!pdo_fieldexists('zhtc_acttype','num')) {pdo_query("ALTER TABLE ".tablename('zhtc_acttype')." ADD `num` int(11) NOT NULL");}
- if(!pdo_fieldexists('zhtc_acttype','uniacid')) {pdo_query("ALTER TABLE ".tablename('zhtc_acttype')." ADD `uniacid` int(11) NOT NULL");}
- if(!pdo_fieldexists('zhtc_acttype','state')) {pdo_query("ALTER TABLE ".tablename('zhtc_acttype')." ADD `state` int(11) NOT NULL COMMENT '1.开启2.关闭'");}
- if(!pdo_fieldexists('zhtc_acttype','img')) {pdo_query("ALTER TABLE ".tablename('zhtc_acttype')." ADD `img` varchar(500) NOT NULL");}
- pdo_query("CREATE TABLE IF NOT EXISTS `ims_zhtc_ad` (
- `id` int(11) NOT NULL AUTO_INCREMENT,
- `title` varchar(50) NOT NULL COMMENT '轮播图标题',
- `logo` varchar(200) NOT NULL COMMENT '图片',
- `status` int(11) NOT NULL COMMENT '1.开启 2.关闭',
- `src` varchar(100) NOT NULL COMMENT '链接',
- `orderby` int(11) NOT NULL COMMENT '排序',
- `xcx_name` varchar(20) NOT NULL,
- `appid` varchar(20) NOT NULL,
- `uniacid` int(11) NOT NULL COMMENT '小程序id',
- `type` int(11) NOT NULL,
- `cityname` varchar(50) NOT NULL,
- `wb_src` varchar(300) NOT NULL,
- `state` int(4) NOT NULL DEFAULT '1',
- PRIMARY KEY (`id`)
- ) ENGINE=InnoDB AUTO_INCREMENT=57 DEFAULT CHARSET=utf8;
- ");
- if(!pdo_fieldexists('zhtc_ad','id')) {pdo_query("ALTER TABLE ".tablename('zhtc_ad')." ADD
- `id` int(11) NOT NULL AUTO_INCREMENT");}
- if(!pdo_fieldexists('zhtc_ad','title')) {pdo_query("ALTER TABLE ".tablename('zhtc_ad')." ADD `title` varchar(50) NOT NULL COMMENT '轮播图标题'");}
- if(!pdo_fieldexists('zhtc_ad','logo')) {pdo_query("ALTER TABLE ".tablename('zhtc_ad')." ADD `logo` varchar(200) NOT NULL COMMENT '图片'");}
- if(!pdo_fieldexists('zhtc_ad','status')) {pdo_query("ALTER TABLE ".tablename('zhtc_ad')." ADD `status` int(11) NOT NULL COMMENT '1.开启 2.关闭'");}
- if(!pdo_fieldexists('zhtc_ad','src')) {pdo_query("ALTER TABLE ".tablename('zhtc_ad')." ADD `src` varchar(100) NOT NULL COMMENT '链接'");}
- if(!pdo_fieldexists('zhtc_ad','orderby')) {pdo_query("ALTER TABLE ".tablename('zhtc_ad')." ADD `orderby` int(11) NOT NULL COMMENT '排序'");}
- if(!pdo_fieldexists('zhtc_ad','xcx_name')) {pdo_query("ALTER TABLE ".tablename('zhtc_ad')." ADD `xcx_name` varchar(20) NOT NULL");}
- if(!pdo_fieldexists('zhtc_ad','appid')) {pdo_query("ALTER TABLE ".tablename('zhtc_ad')." ADD `appid` varchar(20) NOT NULL");}
- if(!pdo_fieldexists('zhtc_ad','uniacid')) {pdo_query("ALTER TABLE ".tablename('zhtc_ad')." ADD `uniacid` int(11) NOT NULL COMMENT '小程序id'");}
- if(!pdo_fieldexists('zhtc_ad','type')) {pdo_query("ALTER TABLE ".tablename('zhtc_ad')." ADD `type` int(11) NOT NULL");}
- if(!pdo_fieldexists('zhtc_ad','cityname')) {pdo_query("ALTER TABLE ".tablename('zhtc_ad')." ADD `cityname` varchar(50) NOT NULL");}
- if(!pdo_fieldexists('zhtc_ad','wb_src')) {pdo_query("ALTER TABLE ".tablename('zhtc_ad')." ADD `wb_src` varchar(300) NOT NULL");}
- if(!pdo_fieldexists('zhtc_ad','state')) {pdo_query("ALTER TABLE ".tablename('zhtc_ad')." ADD `state` int(4) NOT NULL DEFAULT '1'");}
- pdo_query("CREATE TABLE IF NOT EXISTS `ims_zhtc_area` (
- `id` int(11) NOT NULL AUTO_INCREMENT,
- `area_name` varchar(50) NOT NULL COMMENT '区域名称',
- `num` int(11) NOT NULL COMMENT '排序',
- `uniacid` int(11) NOT NULL,
- PRIMARY KEY (`id`)
- ) ENGINE=InnoDB DEFAULT CHARSET=utf8;
- ");
- if(!pdo_fieldexists('zhtc_area','id')) {pdo_query("ALTER TABLE ".tablename('zhtc_area')." ADD
- `id` int(11) NOT NULL AUTO_INCREMENT");}
- if(!pdo_fieldexists('zhtc_area','area_name')) {pdo_query("ALTER TABLE ".tablename('zhtc_area')." ADD `area_name` varchar(50) NOT NULL COMMENT '区域名称'");}
- if(!pdo_fieldexists('zhtc_area','num')) {pdo_query("ALTER TABLE ".tablename('zhtc_area')." ADD `num` int(11) NOT NULL COMMENT '排序'");}
- if(!pdo_fieldexists('zhtc_area','uniacid')) {pdo_query("ALTER TABLE ".tablename('zhtc_area')." ADD `uniacid` int(11) NOT NULL");}
- pdo_query("CREATE TABLE IF NOT EXISTS `ims_zhtc_bottom` (
- `id` int(11) unsigned NOT NULL AUTO_INCREMENT,
- `title` varchar(20) NOT NULL COMMENT '标题',
- `title_color` varchar(20) NOT NULL COMMENT '标题选中颜色',
- `title_color2` varchar(20) NOT NULL COMMENT '标题未选中颜色',
- `logo` varchar(200) NOT NULL COMMENT '选中图片',
- `logo2` varchar(200) NOT NULL COMMENT '未选中图片',
- `url` varchar(200) NOT NULL COMMENT '跳转链接',
- `num` int(11) NOT NULL COMMENT '排序',
- `state` int(11) NOT NULL DEFAULT '1' COMMENT '1开启2关闭',
- `uniacid` int(11) NOT NULL,
- `xcx_name` varchar(50) NOT NULL COMMENT '小程序名称',
- `appid` varchar(30) NOT NULL COMMENT '跳转appid',
- `item` int(4) NOT NULL DEFAULT '1',
- `src2` varchar(255) NOT NULL,
- PRIMARY KEY (`id`)
- ) ENGINE=InnoDB DEFAULT CHARSET=utf8;
- ");
- if(!pdo_fieldexists('zhtc_bottom','id')) {pdo_query("ALTER TABLE ".tablename('zhtc_bottom')." ADD
- `id` int(11) unsigned NOT NULL AUTO_INCREMENT");}
- if(!pdo_fieldexists('zhtc_bottom','title')) {pdo_query("ALTER TABLE ".tablename('zhtc_bottom')." ADD `title` varchar(20) NOT NULL COMMENT '标题'");}
- if(!pdo_fieldexists('zhtc_bottom','title_color')) {pdo_query("ALTER TABLE ".tablename('zhtc_bottom')." ADD `title_color` varchar(20) NOT NULL COMMENT '标题选中颜色'");}
- if(!pdo_fieldexists('zhtc_bottom','title_color2')) {pdo_query("ALTER TABLE ".tablename('zhtc_bottom')." ADD `title_color2` varchar(20) NOT NULL COMMENT '标题未选中颜色'");}
- if(!pdo_fieldexists('zhtc_bottom','logo')) {pdo_query("ALTER TABLE ".tablename('zhtc_bottom')." ADD `logo` varchar(200) NOT NULL COMMENT '选中图片'");}
- if(!pdo_fieldexists('zhtc_bottom','logo2')) {pdo_query("ALTER TABLE ".tablename('zhtc_bottom')." ADD `logo2` varchar(200) NOT NULL COMMENT '未选中图片'");}
- if(!pdo_fieldexists('zhtc_bottom','url')) {pdo_query("ALTER TABLE ".tablename('zhtc_bottom')." ADD `url` varchar(200) NOT NULL COMMENT '跳转链接'");}
- if(!pdo_fieldexists('zhtc_bottom','num')) {pdo_query("ALTER TABLE ".tablename('zhtc_bottom')." ADD `num` int(11) NOT NULL COMMENT '排序'");}
- if(!pdo_fieldexists('zhtc_bottom','state')) {pdo_query("ALTER TABLE ".tablename('zhtc_bottom')." ADD `state` int(11) NOT NULL DEFAULT '1' COMMENT '1开启2关闭'");}
- if(!pdo_fieldexists('zhtc_bottom','uniacid')) {pdo_query("ALTER TABLE ".tablename('zhtc_bottom')." ADD `uniacid` int(11) NOT NULL");}
- if(!pdo_fieldexists('zhtc_bottom','xcx_name')) {pdo_query("ALTER TABLE ".tablename('zhtc_bottom')." ADD `xcx_name` varchar(50) NOT NULL COMMENT '小程序名称'");}
- if(!pdo_fieldexists('zhtc_bottom','appid')) {pdo_query("ALTER TABLE ".tablename('zhtc_bottom')." ADD `appid` varchar(30) NOT NULL COMMENT '跳转appid'");}
- if(!pdo_fieldexists('zhtc_bottom','item')) {pdo_query("ALTER TABLE ".tablename('zhtc_bottom')." ADD `item` int(4) NOT NULL DEFAULT '1'");}
- if(!pdo_fieldexists('zhtc_bottom','src2')) {pdo_query("ALTER TABLE ".tablename('zhtc_bottom')." ADD `src2` varchar(255) NOT NULL");}
- pdo_query("CREATE TABLE IF NOT EXISTS `ims_zhtc_call` (
- `id` int(11) unsigned NOT NULL AUTO_INCREMENT,
- `post_id` int(11) NOT NULL,
- `type` int(11) NOT NULL COMMENT '1帖子',
- `money` decimal(10,2) NOT NULL COMMENT '金额',
- `code` varchar(100) NOT NULL,
- `state` int(11) NOT NULL COMMENT '1待付款2已付款',
- `time` int(11) NOT NULL,
- `uniacid` int(11) NOT NULL,
- `user_id` int(11) NOT NULL,
- `userMoney` decimal(10,2) NOT NULL,
- PRIMARY KEY (`id`)
- ) ENGINE=InnoDB DEFAULT CHARSET=utf8;
- ");
- if(!pdo_fieldexists('zhtc_call','id')) {pdo_query("ALTER TABLE ".tablename('zhtc_call')." ADD
- `id` int(11) unsigned NOT NULL AUTO_INCREMENT");}
- if(!pdo_fieldexists('zhtc_call','post_id')) {pdo_query("ALTER TABLE ".tablename('zhtc_call')." ADD `post_id` int(11) NOT NULL");}
- if(!pdo_fieldexists('zhtc_call','type')) {pdo_query("ALTER TABLE ".tablename('zhtc_call')." ADD `type` int(11) NOT NULL COMMENT '1帖子'");}
- if(!pdo_fieldexists('zhtc_call','money')) {pdo_query("ALTER TABLE ".tablename('zhtc_call')." ADD `money` decimal(10,2) NOT NULL COMMENT '金额'");}
- if(!pdo_fieldexists('zhtc_call','code')) {pdo_query("ALTER TABLE ".tablename('zhtc_call')." ADD `code` varchar(100) NOT NULL");}
- if(!pdo_fieldexists('zhtc_call','state')) {pdo_query("ALTER TABLE ".tablename('zhtc_call')." ADD `state` int(11) NOT NULL COMMENT '1待付款2已付款'");}
- if(!pdo_fieldexists('zhtc_call','time')) {pdo_query("ALTER TABLE ".tablename('zhtc_call')." ADD `time` int(11) NOT NULL");}
- if(!pdo_fieldexists('zhtc_call','uniacid')) {pdo_query("ALTER TABLE ".tablename('zhtc_call')." ADD `uniacid` int(11) NOT NULL");}
- if(!pdo_fieldexists('zhtc_call','user_id')) {pdo_query("ALTER TABLE ".tablename('zhtc_call')." ADD `user_id` int(11) NOT NULL");}
- if(!pdo_fieldexists('zhtc_call','userMoney')) {pdo_query("ALTER TABLE ".tablename('zhtc_call')." ADD `userMoney` decimal(10,2) NOT NULL");}
- pdo_query("CREATE TABLE IF NOT EXISTS `ims_zhtc_car` (
- `id` int(11) NOT NULL AUTO_INCREMENT,
- `user_id` int(11) NOT NULL COMMENT '用户id',
- `start_place` varchar(100) NOT NULL COMMENT '出发地',
- `end_place` varchar(100) NOT NULL COMMENT '目的地',
- `start_time` varchar(30) NOT NULL COMMENT '出发时间',
- `num` int(4) NOT NULL COMMENT '乘车人数/可乘人数',
- `link_name` varchar(30) NOT NULL COMMENT '联系人',
- `link_tel` varchar(20) NOT NULL COMMENT '联系电话',
- `typename` varchar(30) NOT NULL COMMENT '分类名称',
- `other` varchar(300) NOT NULL COMMENT '补充',
- `time` int(11) NOT NULL COMMENT '发布时间',
- `sh_time` int(11) NOT NULL COMMENT '审核时间',
- `top_id` int(11) NOT NULL COMMENT '置顶ID',
- `top` int(4) NOT NULL COMMENT '是否置顶,1,是,2否',
- `uniacid` varchar(50) NOT NULL,
- `state` int(4) NOT NULL COMMENT '1待审核,2通过,3拒绝',
- `tj_place` varchar(300) NOT NULL COMMENT '途经地',
- `hw_wet` varchar(10) NOT NULL COMMENT '货物重量',
- `star_lat` varchar(20) NOT NULL COMMENT '出发地维度',
- `star_lng` varchar(20) NOT NULL COMMENT '出发地经度',
- `end_lat` varchar(20) NOT NULL COMMENT '目的地维度',
- `end_lng` varchar(20) NOT NULL COMMENT '目的地经度',
- `is_open` int(4) NOT NULL,
- `start_time2` int(11) NOT NULL,
- `cityname` varchar(50) NOT NULL,
- `is_delete` int(4) NOT NULL DEFAULT '2',
- PRIMARY KEY (`id`)
- ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='拼车';
- ");
- if(!pdo_fieldexists('zhtc_car','id')) {pdo_query("ALTER TABLE ".tablename('zhtc_car')." ADD
- `id` int(11) NOT NULL AUTO_INCREMENT");}
- if(!pdo_fieldexists('zhtc_car','user_id')) {pdo_query("ALTER TABLE ".tablename('zhtc_car')." ADD `user_id` int(11) NOT NULL COMMENT '用户id'");}
- if(!pdo_fieldexists('zhtc_car','start_place')) {pdo_query("ALTER TABLE ".tablename('zhtc_car')." ADD `start_place` varchar(100) NOT NULL COMMENT '出发地'");}
- if(!pdo_fieldexists('zhtc_car','end_place')) {pdo_query("ALTER TABLE ".tablename('zhtc_car')." ADD `end_place` varchar(100) NOT NULL COMMENT '目的地'");}
- if(!pdo_fieldexists('zhtc_car','start_time')) {pdo_query("ALTER TABLE ".tablename('zhtc_car')." ADD `start_time` varchar(30) NOT NULL COMMENT '出发时间'");}
- if(!pdo_fieldexists('zhtc_car','num')) {pdo_query("ALTER TABLE ".tablename('zhtc_car')." ADD `num` int(4) NOT NULL COMMENT '乘车人数/可乘人数'");}
- if(!pdo_fieldexists('zhtc_car','link_name')) {pdo_query("ALTER TABLE ".tablename('zhtc_car')." ADD `link_name` varchar(30) NOT NULL COMMENT '联系人'");}
- if(!pdo_fieldexists('zhtc_car','link_tel')) {pdo_query("ALTER TABLE ".tablename('zhtc_car')." ADD `link_tel` varchar(20) NOT NULL COMMENT '联系电话'");}
- if(!pdo_fieldexists('zhtc_car','typename')) {pdo_query("ALTER TABLE ".tablename('zhtc_car')." ADD `typename` varchar(30) NOT NULL COMMENT '分类名称'");}
- if(!pdo_fieldexists('zhtc_car','other')) {pdo_query("ALTER TABLE ".tablename('zhtc_car')." ADD `other` varchar(300) NOT NULL COMMENT '补充'");}
- if(!pdo_fieldexists('zhtc_car','time')) {pdo_query("ALTER TABLE ".tablename('zhtc_car')." ADD `time` int(11) NOT NULL COMMENT '发布时间'");}
- if(!pdo_fieldexists('zhtc_car','sh_time')) {pdo_query("ALTER TABLE ".tablename('zhtc_car')." ADD `sh_time` int(11) NOT NULL COMMENT '审核时间'");}
- if(!pdo_fieldexists('zhtc_car','top_id')) {pdo_query("ALTER TABLE ".tablename('zhtc_car')." ADD `top_id` int(11) NOT NULL COMMENT '置顶ID'");}
- if(!pdo_fieldexists('zhtc_car','top')) {pdo_query("ALTER TABLE ".tablename('zhtc_car')." ADD `top` int(4) NOT NULL COMMENT '是否置顶,1,是,2否'");}
- if(!pdo_fieldexists('zhtc_car','uniacid')) {pdo_query("ALTER TABLE ".tablename('zhtc_car')." ADD `uniacid` varchar(50) NOT NULL");}
- if(!pdo_fieldexists('zhtc_car','state')) {pdo_query("ALTER TABLE ".tablename('zhtc_car')." ADD `state` int(4) NOT NULL COMMENT '1待审核,2通过,3拒绝'");}
- if(!pdo_fieldexists('zhtc_car','tj_place')) {pdo_query("ALTER TABLE ".tablename('zhtc_car')." ADD `tj_place` varchar(300) NOT NULL COMMENT '途经地'");}
- if(!pdo_fieldexists('zhtc_car','hw_wet')) {pdo_query("ALTER TABLE ".tablename('zhtc_car')." ADD `hw_wet` varchar(10) NOT NULL COMMENT '货物重量'");}
- if(!pdo_fieldexists('zhtc_car','star_lat')) {pdo_query("ALTER TABLE ".tablename('zhtc_car')." ADD `star_lat` varchar(20) NOT NULL COMMENT '出发地维度'");}
- if(!pdo_fieldexists('zhtc_car','star_lng')) {pdo_query("ALTER TABLE ".tablename('zhtc_car')." ADD `star_lng` varchar(20) NOT NULL COMMENT '出发地经度'");}
- if(!pdo_fieldexists('zhtc_car','end_lat')) {pdo_query("ALTER TABLE ".tablename('zhtc_car')." ADD `end_lat` varchar(20) NOT NULL COMMENT '目的地维度'");}
- if(!pdo_fieldexists('zhtc_car','end_lng')) {pdo_query("ALTER TABLE ".tablename('zhtc_car')." ADD `end_lng` varchar(20) NOT NULL COMMENT '目的地经度'");}
- if(!pdo_fieldexists('zhtc_car','is_open')) {pdo_query("ALTER TABLE ".tablename('zhtc_car')." ADD `is_open` int(4) NOT NULL");}
- if(!pdo_fieldexists('zhtc_car','start_time2')) {pdo_query("ALTER TABLE ".tablename('zhtc_car')." ADD `start_time2` int(11) NOT NULL");}
- if(!pdo_fieldexists('zhtc_car','cityname')) {pdo_query("ALTER TABLE ".tablename('zhtc_car')." ADD `cityname` varchar(50) NOT NULL");}
- if(!pdo_fieldexists('zhtc_car','is_delete')) {pdo_query("ALTER TABLE ".tablename('zhtc_car')." ADD `is_delete` int(4) NOT NULL DEFAULT '2'");}
- pdo_query("CREATE TABLE IF NOT EXISTS `ims_zhtc_car_my_tag` (
- `id` int(11) NOT NULL AUTO_INCREMENT,
- `tag_id` int(11) NOT NULL COMMENT '标签id',
- `car_id` int(11) NOT NULL COMMENT '拼车ID',
- PRIMARY KEY (`id`)
- ) ENGINE=InnoDB DEFAULT CHARSET=utf8;
- ");
- if(!pdo_fieldexists('zhtc_car_my_tag','id')) {pdo_query("ALTER TABLE ".tablename('zhtc_car_my_tag')." ADD
- `id` int(11) NOT NULL AUTO_INCREMENT");}
- if(!pdo_fieldexists('zhtc_car_my_tag','tag_id')) {pdo_query("ALTER TABLE ".tablename('zhtc_car_my_tag')." ADD `tag_id` int(11) NOT NULL COMMENT '标签id'");}
- if(!pdo_fieldexists('zhtc_car_my_tag','car_id')) {pdo_query("ALTER TABLE ".tablename('zhtc_car_my_tag')." ADD `car_id` int(11) NOT NULL COMMENT '拼车ID'");}
- pdo_query("CREATE TABLE IF NOT EXISTS `ims_zhtc_car_tag` (
- `id` int(11) NOT NULL AUTO_INCREMENT,
- `typename` varchar(30) NOT NULL COMMENT '分类名称',
- `tagname` varchar(30) NOT NULL COMMENT '标签名称',
- `uniacid` varchar(11) NOT NULL COMMENT '50',
- PRIMARY KEY (`id`)
- ) ENGINE=InnoDB DEFAULT CHARSET=utf8;
- ");
- if(!pdo_fieldexists('zhtc_car_tag','id')) {pdo_query("ALTER TABLE ".tablename('zhtc_car_tag')." ADD
- `id` int(11) NOT NULL AUTO_INCREMENT");}
- if(!pdo_fieldexists('zhtc_car_tag','typename')) {pdo_query("ALTER TABLE ".tablename('zhtc_car_tag')." ADD `typename` varchar(30) NOT NULL COMMENT '分类名称'");}
- if(!pdo_fieldexists('zhtc_car_tag','tagname')) {pdo_query("ALTER TABLE ".tablename('zhtc_car_tag')." ADD `tagname` varchar(30) NOT NULL COMMENT '标签名称'");}
- if(!pdo_fieldexists('zhtc_car_tag','uniacid')) {pdo_query("ALTER TABLE ".tablename('zhtc_car_tag')." ADD `uniacid` varchar(11) NOT NULL COMMENT '50'");}
- pdo_query("CREATE TABLE IF NOT EXISTS `ims_zhtc_car_top` (
- `id` int(11) NOT NULL AUTO_INCREMENT,
- `type` int(11) NOT NULL COMMENT '1.一天2.一周3.一个月',
- `money` decimal(10,2) NOT NULL COMMENT '价格',
- `uniacid` int(11) NOT NULL,
- `num` int(11) NOT NULL,
- PRIMARY KEY (`id`)
- ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='拼车置顶';
- ");
- if(!pdo_fieldexists('zhtc_car_top','id')) {pdo_query("ALTER TABLE ".tablename('zhtc_car_top')." ADD
- `id` int(11) NOT NULL AUTO_INCREMENT");}
- if(!pdo_fieldexists('zhtc_car_top','type')) {pdo_query("ALTER TABLE ".tablename('zhtc_car_top')." ADD `type` int(11) NOT NULL COMMENT '1.一天2.一周3.一个月'");}
- if(!pdo_fieldexists('zhtc_car_top','money')) {pdo_query("ALTER TABLE ".tablename('zhtc_car_top')." ADD `money` decimal(10,2) NOT NULL COMMENT '价格'");}
- if(!pdo_fieldexists('zhtc_car_top','uniacid')) {pdo_query("ALTER TABLE ".tablename('zhtc_car_top')." ADD `uniacid` int(11) NOT NULL");}
- if(!pdo_fieldexists('zhtc_car_top','num')) {pdo_query("ALTER TABLE ".tablename('zhtc_car_top')." ADD `num` int(11) NOT NULL");}
- pdo_query("CREATE TABLE IF NOT EXISTS `ims_zhtc_carpaylog` (
- `id` int(11) NOT NULL AUTO_INCREMENT,
- `car_id` int(44) NOT NULL COMMENT '拼车id',
- `money` decimal(10,2) NOT NULL COMMENT '钱',
- `time` datetime NOT NULL,
- `uniacid` varchar(50) NOT NULL,
- PRIMARY KEY (`id`)
- ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='拼车支付记录表';
- ");
- if(!pdo_fieldexists('zhtc_carpaylog','id')) {pdo_query("ALTER TABLE ".tablename('zhtc_carpaylog')." ADD
- `id` int(11) NOT NULL AUTO_INCREMENT");}
- if(!pdo_fieldexists('zhtc_carpaylog','car_id')) {pdo_query("ALTER TABLE ".tablename('zhtc_carpaylog')." ADD `car_id` int(44) NOT NULL COMMENT '拼车id'");}
- if(!pdo_fieldexists('zhtc_carpaylog','money')) {pdo_query("ALTER TABLE ".tablename('zhtc_carpaylog')." ADD `money` decimal(10,2) NOT NULL COMMENT '钱'");}
- if(!pdo_fieldexists('zhtc_carpaylog','time')) {pdo_query("ALTER TABLE ".tablename('zhtc_carpaylog')." ADD `time` datetime NOT NULL");}
- if(!pdo_fieldexists('zhtc_carpaylog','uniacid')) {pdo_query("ALTER TABLE ".tablename('zhtc_carpaylog')." ADD `uniacid` varchar(50) NOT NULL");}
- pdo_query("CREATE TABLE IF NOT EXISTS `ims_zhtc_comments` (
- `id` int(11) NOT NULL AUTO_INCREMENT,
- `information_id` int(11) NOT NULL COMMENT '帖子id',
- `details` varchar(200) NOT NULL COMMENT '评论详情',
- `time` varchar(20) NOT NULL COMMENT '时间',
- `reply` varchar(200) NOT NULL COMMENT '回复详情',
- `hf_time` varchar(20) NOT NULL COMMENT '回复时间',
- `user_id` int(11) NOT NULL,
- `store_id` int(11) NOT NULL,
- `score` decimal(10,1) NOT NULL,
- `bid` int(11) NOT NULL,
- `hf_id` int(11) NOT NULL,
- `state` int(1) NOT NULL DEFAULT '2',
- PRIMARY KEY (`id`)
- ) ENGINE=InnoDB AUTO_INCREMENT=240 DEFAULT CHARSET=utf8;
- ");
- if(!pdo_fieldexists('zhtc_comments','id')) {pdo_query("ALTER TABLE ".tablename('zhtc_comments')." ADD
- `id` int(11) NOT NULL AUTO_INCREMENT");}
- if(!pdo_fieldexists('zhtc_comments','information_id')) {pdo_query("ALTER TABLE ".tablename('zhtc_comments')." ADD `information_id` int(11) NOT NULL COMMENT '帖子id'");}
- if(!pdo_fieldexists('zhtc_comments','details')) {pdo_query("ALTER TABLE ".tablename('zhtc_comments')." ADD `details` varchar(200) NOT NULL COMMENT '评论详情'");}
- if(!pdo_fieldexists('zhtc_comments','time')) {pdo_query("ALTER TABLE ".tablename('zhtc_comments')." ADD `time` varchar(20) NOT NULL COMMENT '时间'");}
- if(!pdo_fieldexists('zhtc_comments','reply')) {pdo_query("ALTER TABLE ".tablename('zhtc_comments')." ADD `reply` varchar(200) NOT NULL COMMENT '回复详情'");}
- if(!pdo_fieldexists('zhtc_comments','hf_time')) {pdo_query("ALTER TABLE ".tablename('zhtc_comments')." ADD `hf_time` varchar(20) NOT NULL COMMENT '回复时间'");}
- if(!pdo_fieldexists('zhtc_comments','user_id')) {pdo_query("ALTER TABLE ".tablename('zhtc_comments')." ADD `user_id` int(11) NOT NULL");}
- if(!pdo_fieldexists('zhtc_comments','store_id')) {pdo_query("ALTER TABLE ".tablename('zhtc_comments')." ADD `store_id` int(11) NOT NULL");}
- if(!pdo_fieldexists('zhtc_comments','score')) {pdo_query("ALTER TABLE ".tablename('zhtc_comments')." ADD `score` decimal(10,1) NOT NULL");}
- if(!pdo_fieldexists('zhtc_comments','bid')) {pdo_query("ALTER TABLE ".tablename('zhtc_comments')." ADD `bid` int(11) NOT NULL");}
- if(!pdo_fieldexists('zhtc_comments','hf_id')) {pdo_query("ALTER TABLE ".tablename('zhtc_comments')." ADD `hf_id` int(11) NOT NULL");}
- if(!pdo_fieldexists('zhtc_comments','state')) {pdo_query("ALTER TABLE ".tablename('zhtc_comments')." ADD `state` int(1) NOT NULL DEFAULT '2'");}
- pdo_query("CREATE TABLE IF NOT EXISTS `ims_zhtc_commission_withdrawal` (
- `id` int(11) NOT NULL AUTO_INCREMENT,
- `user_id` int(11) NOT NULL,
- `type` int(11) NOT NULL COMMENT '1.支付宝2.银行卡',
- `state` int(11) NOT NULL COMMENT '1.审核中2.通过3.拒绝',
- `time` int(11) NOT NULL COMMENT '申请时间',
- `sh_time` int(11) NOT NULL COMMENT '审核时间',
- `uniacid` int(11) NOT NULL,
- `user_name` varchar(20) NOT NULL,
- `account` varchar(100) NOT NULL,
- `tx_cost` decimal(10,2) NOT NULL COMMENT '提现金额',
- `sj_cost` decimal(10,2) NOT NULL COMMENT '实际到账金额',
- `bank` varchar(20) NOT NULL,
- PRIMARY KEY (`id`)
- ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='佣金提现';
- ");
- if(!pdo_fieldexists('zhtc_commission_withdrawal','id')) {pdo_query("ALTER TABLE ".tablename('zhtc_commission_withdrawal')." ADD
- `id` int(11) NOT NULL AUTO_INCREMENT");}
- if(!pdo_fieldexists('zhtc_commission_withdrawal','user_id')) {pdo_query("ALTER TABLE ".tablename('zhtc_commission_withdrawal')." ADD `user_id` int(11) NOT NULL");}
- if(!pdo_fieldexists('zhtc_commission_withdrawal','type')) {pdo_query("ALTER TABLE ".tablename('zhtc_commission_withdrawal')." ADD `type` int(11) NOT NULL COMMENT '1.支付宝2.银行卡'");}
- if(!pdo_fieldexists('zhtc_commission_withdrawal','state')) {pdo_query("ALTER TABLE ".tablename('zhtc_commission_withdrawal')." ADD `state` int(11) NOT NULL COMMENT '1.审核中2.通过3.拒绝'");}
- if(!pdo_fieldexists('zhtc_commission_withdrawal','time')) {pdo_query("ALTER TABLE ".tablename('zhtc_commission_withdrawal')." ADD `time` int(11) NOT NULL COMMENT '申请时间'");}
- if(!pdo_fieldexists('zhtc_commission_withdrawal','sh_time')) {pdo_query("ALTER TABLE ".tablename('zhtc_commission_withdrawal')." ADD `sh_time` int(11) NOT NULL COMMENT '审核时间'");}
- if(!pdo_fieldexists('zhtc_commission_withdrawal','uniacid')) {pdo_query("ALTER TABLE ".tablename('zhtc_commission_withdrawal')." ADD `uniacid` int(11) NOT NULL");}
- if(!pdo_fieldexists('zhtc_commission_withdrawal','user_name')) {pdo_query("ALTER TABLE ".tablename('zhtc_commission_withdrawal')." ADD `user_name` varchar(20) NOT NULL");}
- if(!pdo_fieldexists('zhtc_commission_withdrawal','account')) {pdo_query("ALTER TABLE ".tablename('zhtc_commission_withdrawal')." ADD `account` varchar(100) NOT NULL");}
- if(!pdo_fieldexists('zhtc_commission_withdrawal','tx_cost')) {pdo_query("ALTER TABLE ".tablename('zhtc_commission_withdrawal')." ADD `tx_cost` decimal(10,2) NOT NULL COMMENT '提现金额'");}
- if(!pdo_fieldexists('zhtc_commission_withdrawal','sj_cost')) {pdo_query("ALTER TABLE ".tablename('zhtc_commission_withdrawal')." ADD `sj_cost` decimal(10,2) NOT NULL COMMENT '实际到账金额'");}
- if(!pdo_fieldexists('zhtc_commission_withdrawal','bank')) {pdo_query("ALTER TABLE ".tablename('zhtc_commission_withdrawal')." ADD `bank` varchar(20) NOT NULL");}
- pdo_query("CREATE TABLE IF NOT EXISTS `ims_zhtc_continuous` (
- `id` int(11) unsigned NOT NULL AUTO_INCREMENT,
- `day` int(11) NOT NULL COMMENT '天数',
- `integral` int(11) NOT NULL COMMENT '积分',
- `uniacid` int(11) NOT NULL,
- PRIMARY KEY (`id`)
- ) ENGINE=InnoDB AUTO_INCREMENT=16 DEFAULT CHARSET=utf8;
- ");
- if(!pdo_fieldexists('zhtc_continuous','id')) {pdo_query("ALTER TABLE ".tablename('zhtc_continuous')." ADD
- `id` int(11) unsigned NOT NULL AUTO_INCREMENT");}
- if(!pdo_fieldexists('zhtc_continuous','day')) {pdo_query("ALTER TABLE ".tablename('zhtc_continuous')." ADD `day` int(11) NOT NULL COMMENT '天数'");}
- if(!pdo_fieldexists('zhtc_continuous','integral')) {pdo_query("ALTER TABLE ".tablename('zhtc_continuous')." ADD `integral` int(11) NOT NULL COMMENT '积分'");}
- if(!pdo_fieldexists('zhtc_continuous','uniacid')) {pdo_query("ALTER TABLE ".tablename('zhtc_continuous')." ADD `uniacid` int(11) NOT NULL");}
- pdo_query("CREATE TABLE IF NOT EXISTS `ims_zhtc_coupons` (
- `id` int(11) unsigned NOT NULL AUTO_INCREMENT,
- `name` varchar(20) NOT NULL,
- `number` int(11) NOT NULL,
- `full` varchar(20) NOT NULL,
- `reduce` decimal(10,1) NOT NULL COMMENT '减',
- `money` decimal(10,2) NOT NULL,
- `time` varchar(20) NOT NULL,
- `details` text NOT NULL COMMENT '使用说明',
- `surplus` int(11) NOT NULL COMMENT '剩余数量',
- `store_id` int(11) NOT NULL,
- `end_time` varchar(20) NOT NULL,
- `img` text NOT NULL,
- `is_show` int(11) NOT NULL DEFAULT '1',
- `state` int(11) NOT NULL DEFAULT '1',
- `del` int(11) NOT NULL DEFAULT '2',
- `type_id` int(11) NOT NULL DEFAULT '1',
- `is_pt` int(11) NOT NULL DEFAULT '1',
- `cityname` varchar(30) NOT NULL,
- PRIMARY KEY (`id`)
- ) ENGINE=InnoDB AUTO_INCREMENT=3 DEFAULT CHARSET=utf8;
- ");
- if(!pdo_fieldexists('zhtc_coupons','id')) {pdo_query("ALTER TABLE ".tablename('zhtc_coupons')." ADD
- `id` int(11) unsigned NOT NULL AUTO_INCREMENT");}
- if(!pdo_fieldexists('zhtc_coupons','name')) {pdo_query("ALTER TABLE ".tablename('zhtc_coupons')." ADD `name` varchar(20) NOT NULL");}
- if(!pdo_fieldexists('zhtc_coupons','number')) {pdo_query("ALTER TABLE ".tablename('zhtc_coupons')." ADD `number` int(11) NOT NULL");}
- if(!pdo_fieldexists('zhtc_coupons','full')) {pdo_query("ALTER TABLE ".tablename('zhtc_coupons')." ADD `full` varchar(20) NOT NULL");}
- if(!pdo_fieldexists('zhtc_coupons','reduce')) {pdo_query("ALTER TABLE ".tablename('zhtc_coupons')." ADD `reduce` decimal(10,1) NOT NULL COMMENT '减'");}
- if(!pdo_fieldexists('zhtc_coupons','money')) {pdo_query("ALTER TABLE ".tablename('zhtc_coupons')." ADD `money` decimal(10,2) NOT NULL");}
- if(!pdo_fieldexists('zhtc_coupons','time')) {pdo_query("ALTER TABLE ".tablename('zhtc_coupons')." ADD `time` varchar(20) NOT NULL");}
- if(!pdo_fieldexists('zhtc_coupons','details')) {pdo_query("ALTER TABLE ".tablename('zhtc_coupons')." ADD `details` text NOT NULL COMMENT '使用说明'");}
- if(!pdo_fieldexists('zhtc_coupons','surplus')) {pdo_query("ALTER TABLE ".tablename('zhtc_coupons')." ADD `surplus` int(11) NOT NULL COMMENT '剩余数量'");}
- if(!pdo_fieldexists('zhtc_coupons','store_id')) {pdo_query("ALTER TABLE ".tablename('zhtc_coupons')." ADD `store_id` int(11) NOT NULL");}
- if(!pdo_fieldexists('zhtc_coupons','end_time')) {pdo_query("ALTER TABLE ".tablename('zhtc_coupons')." ADD `end_time` varchar(20) NOT NULL");}
- if(!pdo_fieldexists('zhtc_coupons','img')) {pdo_query("ALTER TABLE ".tablename('zhtc_coupons')." ADD `img` text NOT NULL");}
- if(!pdo_fieldexists('zhtc_coupons','is_show')) {pdo_query("ALTER TABLE ".tablename('zhtc_coupons')." ADD `is_show` int(11) NOT NULL DEFAULT '1'");}
- if(!pdo_fieldexists('zhtc_coupons','state')) {pdo_query("ALTER TABLE ".tablename('zhtc_coupons')." ADD `state` int(11) NOT NULL DEFAULT '1'");}
- if(!pdo_fieldexists('zhtc_coupons','del')) {pdo_query("ALTER TABLE ".tablename('zhtc_coupons')." ADD `del` int(11) NOT NULL DEFAULT '2'");}
- if(!pdo_fieldexists('zhtc_coupons','type_id')) {pdo_query("ALTER TABLE ".tablename('zhtc_coupons')." ADD `type_id` int(11) NOT NULL DEFAULT '1'");}
- if(!pdo_fieldexists('zhtc_coupons','is_pt')) {pdo_query("ALTER TABLE ".tablename('zhtc_coupons')." ADD `is_pt` int(11) NOT NULL DEFAULT '1'");}
- if(!pdo_fieldexists('zhtc_coupons','cityname')) {pdo_query("ALTER TABLE ".tablename('zhtc_coupons')." ADD `cityname` varchar(30) NOT NULL");}
- pdo_query("CREATE TABLE IF NOT EXISTS `ims_zhtc_coupontype` (
- `id` int(11) unsigned NOT NULL AUTO_INCREMENT,
- `type_name` varchar(20) NOT NULL COMMENT '分类名称',
- `img` varchar(500) NOT NULL,
- `uniacid` int(11) NOT NULL COMMENT '小程序id',
- `num` int(11) NOT NULL,
- `state` int(4) NOT NULL DEFAULT '1',
- PRIMARY KEY (`id`)
- ) ENGINE=InnoDB AUTO_INCREMENT=3 DEFAULT CHARSET=utf8;
- ");
- if(!pdo_fieldexists('zhtc_coupontype','id')) {pdo_query("ALTER TABLE ".tablename('zhtc_coupontype')." ADD
- `id` int(11) unsigned NOT NULL AUTO_INCREMENT");}
- if(!pdo_fieldexists('zhtc_coupontype','type_name')) {pdo_query("ALTER TABLE ".tablename('zhtc_coupontype')." ADD `type_name` varchar(20) NOT NULL COMMENT '分类名称'");}
- if(!pdo_fieldexists('zhtc_coupontype','img')) {pdo_query("ALTER TABLE ".tablename('zhtc_coupontype')." ADD `img` varchar(500) NOT NULL");}
- if(!pdo_fieldexists('zhtc_coupontype','uniacid')) {pdo_query("ALTER TABLE ".tablename('zhtc_coupontype')." ADD `uniacid` int(11) NOT NULL COMMENT '小程序id'");}
- if(!pdo_fieldexists('zhtc_coupontype','num')) {pdo_query("ALTER TABLE ".tablename('zhtc_coupontype')." ADD `num` int(11) NOT NULL");}
- if(!pdo_fieldexists('zhtc_coupontype','state')) {pdo_query("ALTER TABLE ".tablename('zhtc_coupontype')." ADD `state` int(4) NOT NULL DEFAULT '1'");}
- pdo_query("CREATE TABLE IF NOT EXISTS `ims_zhtc_distribution` (
- `id` int(11) NOT NULL AUTO_INCREMENT,
- `user_id` int(11) NOT NULL,
- `time` int(11) NOT NULL,
- `user_name` varchar(20) NOT NULL,
- `user_tel` varchar(20) NOT NULL,
- `state` int(11) NOT NULL COMMENT '1.审核中2.通过3.拒绝',
- `uniacid` int(11) NOT NULL,
- `money` decimal(10,2) NOT NULL,
- `pay_state` int(11) NOT NULL,
- `code` varchar(50) NOT NULL,
- `level` int(11) NOT NULL,
- `cityname` varchar(20) NOT NULL,
- `is_log` int(11) NOT NULL DEFAULT '1',
- PRIMARY KEY (`id`)
- ) ENGINE=InnoDB AUTO_INCREMENT=7 DEFAULT CHARSET=utf8 COMMENT='分销申请';
- ");
- if(!pdo_fieldexists('zhtc_distribution','id')) {pdo_query("ALTER TABLE ".tablename('zhtc_distribution')." ADD
- `id` int(11) NOT NULL AUTO_INCREMENT");}
- if(!pdo_fieldexists('zhtc_distribution','user_id')) {pdo_query("ALTER TABLE ".tablename('zhtc_distribution')." ADD `user_id` int(11) NOT NULL");}
- if(!pdo_fieldexists('zhtc_distribution','time')) {pdo_query("ALTER TABLE ".tablename('zhtc_distribution')." ADD `time` int(11) NOT NULL");}
- if(!pdo_fieldexists('zhtc_distribution','user_name')) {pdo_query("ALTER TABLE ".tablename('zhtc_distribution')." ADD `user_name` varchar(20) NOT NULL");}
- if(!pdo_fieldexists('zhtc_distribution','user_tel')) {pdo_query("ALTER TABLE ".tablename('zhtc_distribution')." ADD `user_tel` varchar(20) NOT NULL");}
- if(!pdo_fieldexists('zhtc_distribution','state')) {pdo_query("ALTER TABLE ".tablename('zhtc_distribution')." ADD `state` int(11) NOT NULL COMMENT '1.审核中2.通过3.拒绝'");}
- if(!pdo_fieldexists('zhtc_distribution','uniacid')) {pdo_query("ALTER TABLE ".tablename('zhtc_distribution')." ADD `uniacid` int(11) NOT NULL");}
- if(!pdo_fieldexists('zhtc_distribution','money')) {pdo_query("ALTER TABLE ".tablename('zhtc_distribution')." ADD `money` decimal(10,2) NOT NULL");}
- if(!pdo_fieldexists('zhtc_distribution','pay_state')) {pdo_query("ALTER TABLE ".tablename('zhtc_distribution')." ADD `pay_state` int(11) NOT NULL");}
- if(!pdo_fieldexists('zhtc_distribution','code')) {pdo_query("ALTER TABLE ".tablename('zhtc_distribution')." ADD `code` varchar(50) NOT NULL");}
- if(!pdo_fieldexists('zhtc_distribution','level')) {pdo_query("ALTER TABLE ".tablename('zhtc_distribution')." ADD `level` int(11) NOT NULL");}
- if(!pdo_fieldexists('zhtc_distribution','cityname')) {pdo_query("ALTER TABLE ".tablename('zhtc_distribution')." ADD `cityname` varchar(20) NOT NULL");}
- if(!pdo_fieldexists('zhtc_distribution','is_log')) {pdo_query("ALTER TABLE ".tablename('zhtc_distribution')." ADD `is_log` int(11) NOT NULL DEFAULT '1'");}
- pdo_query("CREATE TABLE IF NOT EXISTS `ims_zhtc_dmorder` (
- `id` int(11) unsigned NOT NULL AUTO_INCREMENT,
- `user_id` int(11) NOT NULL,
- `money` decimal(10,2) NOT NULL,
- `store_id` int(11) NOT NULL,
- `code` varchar(100) NOT NULL,
- `state` int(11) NOT NULL,
- `time` varchar(20) NOT NULL,
- `uniacid` int(11) NOT NULL,
- PRIMARY KEY (`id`)
- ) ENGINE=InnoDB AUTO_INCREMENT=5 DEFAULT CHARSET=utf8;
- ");
- if(!pdo_fieldexists('zhtc_dmorder','id')) {pdo_query("ALTER TABLE ".tablename('zhtc_dmorder')." ADD
- `id` int(11) unsigned NOT NULL AUTO_INCREMENT");}
- if(!pdo_fieldexists('zhtc_dmorder','user_id')) {pdo_query("ALTER TABLE ".tablename('zhtc_dmorder')." ADD `user_id` int(11) NOT NULL");}
- if(!pdo_fieldexists('zhtc_dmorder','money')) {pdo_query("ALTER TABLE ".tablename('zhtc_dmorder')." ADD `money` decimal(10,2) NOT NULL");}
- if(!pdo_fieldexists('zhtc_dmorder','store_id')) {pdo_query("ALTER TABLE ".tablename('zhtc_dmorder')." ADD `store_id` int(11) NOT NULL");}
- if(!pdo_fieldexists('zhtc_dmorder','code')) {pdo_query("ALTER TABLE ".tablename('zhtc_dmorder')." ADD `code` varchar(100) NOT NULL");}
- if(!pdo_fieldexists('zhtc_dmorder','state')) {pdo_query("ALTER TABLE ".tablename('zhtc_dmorder')." ADD `state` int(11) NOT NULL");}
- if(!pdo_fieldexists('zhtc_dmorder','time')) {pdo_query("ALTER TABLE ".tablename('zhtc_dmorder')." ADD `time` varchar(20) NOT NULL");}
- if(!pdo_fieldexists('zhtc_dmorder','uniacid')) {pdo_query("ALTER TABLE ".tablename('zhtc_dmorder')." ADD `uniacid` int(11) NOT NULL");}
- pdo_query("CREATE TABLE IF NOT EXISTS `ims_zhtc_earnings` (
- `id` int(11) NOT NULL AUTO_INCREMENT,
- `user_id` int(11) NOT NULL,
- `son_id` int(11) NOT NULL COMMENT '下线',
- `money` decimal(10,2) NOT NULL,
- `time` int(11) NOT NULL,
- `uniacid` int(11) NOT NULL,
- PRIMARY KEY (`id`)
- ) ENGINE=InnoDB AUTO_INCREMENT=4 DEFAULT CHARSET=utf8 COMMENT='佣金收益表';
- ");
- if(!pdo_fieldexists('zhtc_earnings','id')) {pdo_query("ALTER TABLE ".tablename('zhtc_earnings')." ADD
- `id` int(11) NOT NULL AUTO_INCREMENT");}
- if(!pdo_fieldexists('zhtc_earnings','user_id')) {pdo_query("ALTER TABLE ".tablename('zhtc_earnings')." ADD `user_id` int(11) NOT NULL");}
- if(!pdo_fieldexists('zhtc_earnings','son_id')) {pdo_query("ALTER TABLE ".tablename('zhtc_earnings')." ADD `son_id` int(11) NOT NULL COMMENT '下线'");}
- if(!pdo_fieldexists('zhtc_earnings','money')) {pdo_query("ALTER TABLE ".tablename('zhtc_earnings')." ADD `money` decimal(10,2) NOT NULL");}
- if(!pdo_fieldexists('zhtc_earnings','time')) {pdo_query("ALTER TABLE ".tablename('zhtc_earnings')." ADD `time` int(11) NOT NULL");}
- if(!pdo_fieldexists('zhtc_earnings','uniacid')) {pdo_query("ALTER TABLE ".tablename('zhtc_earnings')." ADD `uniacid` int(11) NOT NULL");}
- pdo_query("CREATE TABLE IF NOT EXISTS `ims_zhtc_fx` (
- `id` int(11) NOT NULL AUTO_INCREMENT,
- `user_id` int(11) NOT NULL COMMENT '用户ID',
- `zf_user_id` int(11) NOT NULL COMMENT '转发人ID',
- `money` decimal(10,2) NOT NULL COMMENT '金额',
- `time` int(11) NOT NULL COMMENT '时间戳',
- `uniacid` varchar(50) NOT NULL,
- PRIMARY KEY (`id`)
- ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='分销表';
- ");
- if(!pdo_fieldexists('zhtc_fx','id')) {pdo_query("ALTER TABLE ".tablename('zhtc_fx')." ADD
- `id` int(11) NOT NULL AUTO_INCREMENT");}
- if(!pdo_fieldexists('zhtc_fx','user_id')) {pdo_query("ALTER TABLE ".tablename('zhtc_fx')." ADD `user_id` int(11) NOT NULL COMMENT '用户ID'");}
- if(!pdo_fieldexists('zhtc_fx','zf_user_id')) {pdo_query("ALTER TABLE ".tablename('zhtc_fx')." ADD `zf_user_id` int(11) NOT NULL COMMENT '转发人ID'");}
- if(!pdo_fieldexists('zhtc_fx','money')) {pdo_query("ALTER TABLE ".tablename('zhtc_fx')." ADD `money` decimal(10,2) NOT NULL COMMENT '金额'");}
- if(!pdo_fieldexists('zhtc_fx','time')) {pdo_query("ALTER TABLE ".tablename('zhtc_fx')." ADD `time` int(11) NOT NULL COMMENT '时间戳'");}
- if(!pdo_fieldexists('zhtc_fx','uniacid')) {pdo_query("ALTER TABLE ".tablename('zhtc_fx')." ADD `uniacid` varchar(50) NOT NULL");}
- pdo_query("CREATE TABLE IF NOT EXISTS `ims_zhtc_fxlevel` (
- `id` int(11) unsigned NOT NULL AUTO_INCREMENT,
- `money` decimal(10,2) NOT NULL,
- `name` varchar(20) NOT NULL,
- `num` int(11) NOT NULL,
- `uniacid` int(11) NOT NULL,
- `commission` int(11) NOT NULL COMMENT '1级佣金比例',
- `commission2` int(11) NOT NULL COMMENT '2级佣金比例',
- PRIMARY KEY (`id`)
- ) ENGINE=InnoDB AUTO_INCREMENT=8 DEFAULT CHARSET=utf8;
- ");
- if(!pdo_fieldexists('zhtc_fxlevel','id')) {pdo_query("ALTER TABLE ".tablename('zhtc_fxlevel')." ADD
- `id` int(11) unsigned NOT NULL AUTO_INCREMENT");}
- if(!pdo_fieldexists('zhtc_fxlevel','money')) {pdo_query("ALTER TABLE ".tablename('zhtc_fxlevel')." ADD `money` decimal(10,2) NOT NULL");}
- if(!pdo_fieldexists('zhtc_fxlevel','name')) {pdo_query("ALTER TABLE ".tablename('zhtc_fxlevel')." ADD `name` varchar(20) NOT NULL");}
- if(!pdo_fieldexists('zhtc_fxlevel','num')) {pdo_query("ALTER TABLE ".tablename('zhtc_fxlevel')." ADD `num` int(11) NOT NULL");}
- if(!pdo_fieldexists('zhtc_fxlevel','uniacid')) {pdo_query("ALTER TABLE ".tablename('zhtc_fxlevel')." ADD `uniacid` int(11) NOT NULL");}
- if(!pdo_fieldexists('zhtc_fxlevel','commission')) {pdo_query("ALTER TABLE ".tablename('zhtc_fxlevel')." ADD `commission` int(11) NOT NULL COMMENT '1级佣金比例'");}
- if(!pdo_fieldexists('zhtc_fxlevel','commission2')) {pdo_query("ALTER TABLE ".tablename('zhtc_fxlevel')." ADD `commission2` int(11) NOT NULL COMMENT '2级佣金比例'");}
- pdo_query("CREATE TABLE IF NOT EXISTS `ims_zhtc_fxlog` (
- `id` int(11) unsigned NOT NULL AUTO_INCREMENT,
- `user_id` int(11) NOT NULL,
- `money` decimal(10,2) NOT NULL,
- `time` varchar(20) NOT NULL,
- `code` varchar(100) NOT NULL,
- `level` int(11) NOT NULL,
- `note` varchar(20) NOT NULL,
- `uniacid` int(11) NOT NULL,
- `state` int(11) NOT NULL DEFAULT '1' COMMENT '1.待支付2.已支付',
- PRIMARY KEY (`id`)
- ) ENGINE=InnoDB AUTO_INCREMENT=3 DEFAULT CHARSET=utf8;
- ");
- if(!pdo_fieldexists('zhtc_fxlog','id')) {pdo_query("ALTER TABLE ".tablename('zhtc_fxlog')." ADD
- `id` int(11) unsigned NOT NULL AUTO_INCREMENT");}
- if(!pdo_fieldexists('zhtc_fxlog','user_id')) {pdo_query("ALTER TABLE ".tablename('zhtc_fxlog')." ADD `user_id` int(11) NOT NULL");}
- if(!pdo_fieldexists('zhtc_fxlog','money')) {pdo_query("ALTER TABLE ".tablename('zhtc_fxlog')." ADD `money` decimal(10,2) NOT NULL");}
- if(!pdo_fieldexists('zhtc_fxlog','time')) {pdo_query("ALTER TABLE ".tablename('zhtc_fxlog')." ADD `time` varchar(20) NOT NULL");}
- if(!pdo_fieldexists('zhtc_fxlog','code')) {pdo_query("ALTER TABLE ".tablename('zhtc_fxlog')." ADD `code` varchar(100) NOT NULL");}
- if(!pdo_fieldexists('zhtc_fxlog','level')) {pdo_query("ALTER TABLE ".tablename('zhtc_fxlog')." ADD `level` int(11) NOT NULL");}
- if(!pdo_fieldexists('zhtc_fxlog','note')) {pdo_query("ALTER TABLE ".tablename('zhtc_fxlog')." ADD `note` varchar(20) NOT NULL");}
- if(!pdo_fieldexists('zhtc_fxlog','uniacid')) {pdo_query("ALTER TABLE ".tablename('zhtc_fxlog')." ADD `uniacid` int(11) NOT NULL");}
- if(!pdo_fieldexists('zhtc_fxlog','state')) {pdo_query("ALTER TABLE ".tablename('zhtc_fxlog')." ADD `state` int(11) NOT NULL DEFAULT '1' COMMENT '1.待支付2.已支付'");}
- pdo_query("CREATE TABLE IF NOT EXISTS `ims_zhtc_fxset` (
- `id` int(11) NOT NULL AUTO_INCREMENT,
- `fx_details` text NOT NULL COMMENT '分销商申请协议',
- `tx_details` text NOT NULL COMMENT '佣金提现协议',
- `is_fx` int(11) NOT NULL COMMENT '1.开启分销审核2.不开启',
- `is_ej` int(11) NOT NULL COMMENT '是否开启二级分销1.是2.否',
- `tx_rate` int(11) NOT NULL COMMENT '提现手续费',
- `commission` varchar(10) NOT NULL COMMENT '一级佣金',
- `commission2` varchar(10) NOT NULL COMMENT '二级佣金',
- `tx_money` int(11) NOT NULL COMMENT '提现门槛',
- `img` varchar(100) NOT NULL COMMENT '分销中心图片',
- `img2` varchar(100) NOT NULL COMMENT '申请分销图片',
- `uniacid` int(11) NOT NULL,
- `is_open` int(11) NOT NULL DEFAULT '1' COMMENT '1.开启2关闭',
- `instructions` text NOT NULL COMMENT '分销商说明',
- PRIMARY KEY (`id`)
- ) ENGINE=InnoDB AUTO_INCREMENT=4 DEFAULT CHARSET=utf8;
- ");
- if(!pdo_fieldexists('zhtc_fxset','id')) {pdo_query("ALTER TABLE ".tablename('zhtc_fxset')." ADD
- `id` int(11) NOT NULL AUTO_INCREMENT");}
- if(!pdo_fieldexists('zhtc_fxset','fx_details')) {pdo_query("ALTER TABLE ".tablename('zhtc_fxset')." ADD `fx_details` text NOT NULL COMMENT '分销商申请协议'");}
- if(!pdo_fieldexists('zhtc_fxset','tx_details')) {pdo_query("ALTER TABLE ".tablename('zhtc_fxset')." ADD `tx_details` text NOT NULL COMMENT '佣金提现协议'");}
- if(!pdo_fieldexists('zhtc_fxset','is_fx')) {pdo_query("ALTER TABLE ".tablename('zhtc_fxset')." ADD `is_fx` int(11) NOT NULL COMMENT '1.开启分销审核2.不开启'");}
- if(!pdo_fieldexists('zhtc_fxset','is_ej')) {pdo_query("ALTER TABLE ".tablename('zhtc_fxset')." ADD `is_ej` int(11) NOT NULL COMMENT '是否开启二级分销1.是2.否'");}
- if(!pdo_fieldexists('zhtc_fxset','tx_rate')) {pdo_query("ALTER TABLE ".tablename('zhtc_fxset')." ADD `tx_rate` int(11) NOT NULL COMMENT '提现手续费'");}
- if(!pdo_fieldexists('zhtc_fxset','commission')) {pdo_query("ALTER TABLE ".tablename('zhtc_fxset')." ADD `commission` varchar(10) NOT NULL COMMENT '一级佣金'");}
- if(!pdo_fieldexists('zhtc_fxset','commission2')) {pdo_query("ALTER TABLE ".tablename('zhtc_fxset')." ADD `commission2` varchar(10) NOT NULL COMMENT '二级佣金'");}
- if(!pdo_fieldexists('zhtc_fxset','tx_money')) {pdo_query("ALTER TABLE ".tablename('zhtc_fxset')." ADD `tx_money` int(11) NOT NULL COMMENT '提现门槛'");}
- if(!pdo_fieldexists('zhtc_fxset','img')) {pdo_query("ALTER TABLE ".tablename('zhtc_fxset')." ADD `img` varchar(100) NOT NULL COMMENT '分销中心图片'");}
- if(!pdo_fieldexists('zhtc_fxset','img2')) {pdo_query("ALTER TABLE ".tablename('zhtc_fxset')." ADD `img2` varchar(100) NOT NULL COMMENT '申请分销图片'");}
- if(!pdo_fieldexists('zhtc_fxset','uniacid')) {pdo_query("ALTER TABLE ".tablename('zhtc_fxset')." ADD `uniacid` int(11) NOT NULL");}
- if(!pdo_fieldexists('zhtc_fxset','is_open')) {pdo_query("ALTER TABLE ".tablename('zhtc_fxset')." ADD `is_open` int(11) NOT NULL DEFAULT '1' COMMENT '1.开启2关闭'");}
- if(!pdo_fieldexists('zhtc_fxset','instructions')) {pdo_query("ALTER TABLE ".tablename('zhtc_fxset')." ADD `instructions` text NOT NULL COMMENT '分销商说明'");}
- pdo_query("CREATE TABLE IF NOT EXISTS `ims_zhtc_fxuser` (
- `id` int(11) NOT NULL AUTO_INCREMENT,
- `user_id` int(11) NOT NULL COMMENT '一级分销',
- `fx_user` int(11) NOT NULL COMMENT '二级分销',
- `time` int(11) NOT NULL,
- PRIMARY KEY (`id`)
- ) ENGINE=InnoDB AUTO_INCREMENT=6 DEFAULT CHARSET=utf8;
- ");
- if(!pdo_fieldexists('zhtc_fxuser','id')) {pdo_query("ALTER TABLE ".tablename('zhtc_fxuser')." ADD
- `id` int(11) NOT NULL AUTO_INCREMENT");}
- if(!pdo_fieldexists('zhtc_fxuser','user_id')) {pdo_query("ALTER TABLE ".tablename('zhtc_fxuser')." ADD `user_id` int(11) NOT NULL COMMENT '一级分销'");}
- if(!pdo_fieldexists('zhtc_fxuser','fx_user')) {pdo_query("ALTER TABLE ".tablename('zhtc_fxuser')." ADD `fx_user` int(11) NOT NULL COMMENT '二级分销'");}
- if(!pdo_fieldexists('zhtc_fxuser','time')) {pdo_query("ALTER TABLE ".tablename('zhtc_fxuser')." ADD `time` int(11) NOT NULL");}
- pdo_query("CREATE TABLE IF NOT EXISTS `ims_zhtc_goods` (
- `id` int(11) NOT NULL AUTO_INCREMENT,
- `store_id` int(11) NOT NULL COMMENT '商家ID',
- `spec_id` int(11) NOT NULL COMMENT '主规格ID',
- `goods_name` varchar(100) NOT NULL COMMENT '商品名称',
- `goods_num` int(11) NOT NULL COMMENT '商品数量',
- `goods_cost` decimal(10,2) NOT NULL,
- `freight` decimal(10,2) NOT NULL COMMENT '运费',
- `delivery` varchar(500) NOT NULL COMMENT '关于发货',
- `quality` int(4) NOT NULL COMMENT '正品1是,0否',
- `free` int(4) NOT NULL COMMENT '包邮1是,0否',
- `all_day` int(4) NOT NULL COMMENT '24小时发货1是,0否',
- `service` int(4) NOT NULL COMMENT '售后服务1是,0否',
- `refund` int(4) NOT NULL COMMENT '极速退款1是,0否',
- `weeks` int(4) NOT NULL COMMENT '7天包邮1是,0否',
- `lb_imgs` varchar(500) NOT NULL COMMENT '轮播图',
- `imgs` varchar(500) NOT NULL COMMENT '商品介绍图',
- `time` int(11) NOT NULL COMMENT '时间',
- `uniacid` varchar(50) NOT NULL,
- `goods_details` text NOT NULL COMMENT '商品详细',
- `state` int(4) NOT NULL COMMENT '1待审核,2通过,3拒绝',
- `sy_num` int(11) NOT NULL COMMENT '剩余数量',
- `is_show` int(11) NOT NULL DEFAULT '1',
- `sales` int(11) NOT NULL,
- `is_xs` int(11) NOT NULL DEFAULT '2',
- `end_time` varchar(20) NOT NULL,
- `vr` varchar(500) NOT NULL,
- PRIMARY KEY (`id`)
- ) ENGINE=InnoDB AUTO_INCREMENT=52 DEFAULT CHARSET=utf8 COMMENT='商品表';
- ");
- if(!pdo_fieldexists('zhtc_goods','id')) {pdo_query("ALTER TABLE ".tablename('zhtc_goods')." ADD
- `id` int(11) NOT NULL AUTO_INCREMENT");}
- if(!pdo_fieldexists('zhtc_goods','store_id')) {pdo_query("ALTER TABLE ".tablename('zhtc_goods')." ADD `store_id` int(11) NOT NULL COMMENT '商家ID'");}
- if(!pdo_fieldexists('zhtc_goods','spec_id')) {pdo_query("ALTER TABLE ".tablename('zhtc_goods')." ADD `spec_id` int(11) NOT NULL COMMENT '主规格ID'");}
- if(!pdo_fieldexists('zhtc_goods','goods_name')) {pdo_query("ALTER TABLE ".tablename('zhtc_goods')." ADD `goods_name` varchar(100) NOT NULL COMMENT '商品名称'");}
- if(!pdo_fieldexists('zhtc_goods','goods_num')) {pdo_query("ALTER TABLE ".tablename('zhtc_goods')." ADD `goods_num` int(11) NOT NULL COMMENT '商品数量'");}
- if(!pdo_fieldexists('zhtc_goods','goods_cost')) {pdo_query("ALTER TABLE ".tablename('zhtc_goods')." ADD `goods_cost` decimal(10,2) NOT NULL");}
- if(!pdo_fieldexists('zhtc_goods','freight')) {pdo_query("ALTER TABLE ".tablename('zhtc_goods')." ADD `freight` decimal(10,2) NOT NULL COMMENT '运费'");}
- if(!pdo_fieldexists('zhtc_goods','delivery')) {pdo_query("ALTER TABLE ".tablename('zhtc_goods')." ADD `delivery` varchar(500) NOT NULL COMMENT '关于发货'");}
- if(!pdo_fieldexists('zhtc_goods','quality')) {pdo_query("ALTER TABLE ".tablename('zhtc_goods')." ADD `quality` int(4) NOT NULL COMMENT '正品1是,0否'");}
- if(!pdo_fieldexists('zhtc_goods','free')) {pdo_query("ALTER TABLE ".tablename('zhtc_goods')." ADD `free` int(4) NOT NULL COMMENT '包邮1是,0否'");}
- if(!pdo_fieldexists('zhtc_goods','all_day')) {pdo_query("ALTER TABLE ".tablename('zhtc_goods')." ADD `all_day` int(4) NOT NULL COMMENT '24小时发货1是,0否'");}
- if(!pdo_fieldexists('zhtc_goods','service')) {pdo_query("ALTER TABLE ".tablename('zhtc_goods')." ADD `service` int(4) NOT NULL COMMENT '售后服务1是,0否'");}
- if(!pdo_fieldexists('zhtc_goods','refund')) {pdo_query("ALTER TABLE ".tablename('zhtc_goods')." ADD `refund` int(4) NOT NULL COMMENT '极速退款1是,0否'");}
- if(!pdo_fieldexists('zhtc_goods','weeks')) {pdo_query("ALTER TABLE ".tablename('zhtc_goods')." ADD `weeks` int(4) NOT NULL COMMENT '7天包邮1是,0否'");}
- if(!pdo_fieldexists('zhtc_goods','lb_imgs')) {pdo_query("ALTER TABLE ".tablename('zhtc_goods')." ADD `lb_imgs` varchar(500) NOT NULL COMMENT '轮播图'");}
- if(!pdo_fieldexists('zhtc_goods','imgs')) {pdo_query("ALTER TABLE ".tablename('zhtc_goods')." ADD `imgs` varchar(500) NOT NULL COMMENT '商品介绍图'");}
- if(!pdo_fieldexists('zhtc_goods','time')) {pdo_query("ALTER TABLE ".tablename('zhtc_goods')." ADD `time` int(11) NOT NULL COMMENT '时间'");}
- if(!pdo_fieldexists('zhtc_goods','uniacid')) {pdo_query("ALTER TABLE ".tablename('zhtc_goods')." ADD `uniacid` varchar(50) NOT NULL");}
- if(!pdo_fieldexists('zhtc_goods','goods_details')) {pdo_query("ALTER TABLE ".tablename('zhtc_goods')." ADD `goods_details` text NOT NULL COMMENT '商品详细'");}
- if(!pdo_fieldexists('zhtc_goods','state')) {pdo_query("ALTER TABLE ".tablename('zhtc_goods')." ADD `state` int(4) NOT NULL COMMENT '1待审核,2通过,3拒绝'");}
- if(!pdo_fieldexists('zhtc_goods','sy_num')) {pdo_query("ALTER TABLE ".tablename('zhtc_goods')." ADD `sy_num` int(11) NOT NULL COMMENT '剩余数量'");}
- if(!pdo_fieldexists('zhtc_goods','is_show')) {pdo_query("ALTER TABLE ".tablename('zhtc_goods')." ADD `is_show` int(11) NOT NULL DEFAULT '1'");}
- if(!pdo_fieldexists('zhtc_goods','sales')) {pdo_query("ALTER TABLE ".tablename('zhtc_goods')." ADD `sales` int(11) NOT NULL");}
- if(!pdo_fieldexists('zhtc_goods','is_xs')) {pdo_query("ALTER TABLE ".tablename('zhtc_goods')." ADD `is_xs` int(11) NOT NULL DEFAULT '2'");}
- if(!pdo_fieldexists('zhtc_goods','end_time')) {pdo_query("ALTER TABLE ".tablename('zhtc_goods')." ADD `end_time` varchar(20) NOT NULL");}
- if(!pdo_fieldexists('zhtc_goods','vr')) {pdo_query("ALTER TABLE ".tablename('zhtc_goods')." ADD `vr` varchar(500) NOT NULL");}
- pdo_query("CREATE TABLE IF NOT EXISTS `ims_zhtc_goods_spec` (
- `id` int(11) NOT NULL AUTO_INCREMENT,
- `spec_name` varchar(100) NOT NULL COMMENT '规格名称',
- `sort` int(4) NOT NULL COMMENT '排序',
- `uniacid` varchar(50) NOT NULL COMMENT '50',
- PRIMARY KEY (`id`)
- ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='商品规格表';
- ");
- if(!pdo_fieldexists('zhtc_goods_spec','id')) {pdo_query("ALTER TABLE ".tablename('zhtc_goods_spec')." ADD
- `id` int(11) NOT NULL AUTO_INCREMENT");}
- if(!pdo_fieldexists('zhtc_goods_spec','spec_name')) {pdo_query("ALTER TABLE ".tablename('zhtc_goods_spec')." ADD `spec_name` varchar(100) NOT NULL COMMENT '规格名称'");}
- if(!pdo_fieldexists('zhtc_goods_spec','sort')) {pdo_query("ALTER TABLE ".tablename('zhtc_goods_spec')." ADD `sort` int(4) NOT NULL COMMENT '排序'");}
- if(!pdo_fieldexists('zhtc_goods_spec','uniacid')) {pdo_query("ALTER TABLE ".tablename('zhtc_goods_spec')." ADD `uniacid` varchar(50) NOT NULL COMMENT '50'");}
- pdo_query("CREATE TABLE IF NOT EXISTS `ims_zhtc_group` (
- `id` int(11) unsigned NOT NULL AUTO_INCREMENT,
- `store_id` int(11) NOT NULL COMMENT '门店id',
- `goods_id` int(11) NOT NULL COMMENT '商品ID',
- `goods_logo` varchar(255) NOT NULL,
- `goods_name` varchar(255) NOT NULL COMMENT '商品名称',
- `kt_num` int(11) NOT NULL COMMENT '开团人数',
- `yg_num` int(11) NOT NULL COMMENT '已购数量',
- `kt_time` int(11) NOT NULL COMMENT '开团时间',
- `dq_time` int(11) NOT NULL COMMENT '到期时间',
- `state` int(4) NOT NULL COMMENT '1.拼团中2成功,3失败',
- `user_id` int(11) NOT NULL COMMENT '团长user_id',
- `uniacid` int(11) NOT NULL,
- PRIMARY KEY (`id`)
- ) ENGINE=InnoDB AUTO_INCREMENT=4 DEFAULT CHARSET=utf8;
- ");
- if(!pdo_fieldexists('zhtc_group','id')) {pdo_query("ALTER TABLE ".tablename('zhtc_group')." ADD
- `id` int(11) unsigned NOT NULL AUTO_INCREMENT");}
- if(!pdo_fieldexists('zhtc_group','store_id')) {pdo_query("ALTER TABLE ".tablename('zhtc_group')." ADD `store_id` int(11) NOT NULL COMMENT '门店id'");}
- if(!pdo_fieldexists('zhtc_group','goods_id')) {pdo_query("ALTER TABLE ".tablename('zhtc_group')." ADD `goods_id` int(11) NOT NULL COMMENT '商品ID'");}
- if(!pdo_fieldexists('zhtc_group','goods_logo')) {pdo_query("ALTER TABLE ".tablename('zhtc_group')." ADD `goods_logo` varchar(255) NOT NULL");}
- if(!pdo_fieldexists('zhtc_group','goods_name')) {pdo_query("ALTER TABLE ".tablename('zhtc_group')." ADD `goods_name` varchar(255) NOT NULL COMMENT '商品名称'");}
- if(!pdo_fieldexists('zhtc_group','kt_num')) {pdo_query("ALTER TABLE ".tablename('zhtc_group')." ADD `kt_num` int(11) NOT NULL COMMENT '开团人数'");}
- if(!pdo_fieldexists('zhtc_group','yg_num')) {pdo_query("ALTER TABLE ".tablename('zhtc_group')." ADD `yg_num` int(11) NOT NULL COMMENT '已购数量'");}
- if(!pdo_fieldexists('zhtc_group','kt_time')) {pdo_query("ALTER TABLE ".tablename('zhtc_group')." ADD `kt_time` int(11) NOT NULL COMMENT '开团时间'");}
- if(!pdo_fieldexists('zhtc_group','dq_time')) {pdo_query("ALTER TABLE ".tablename('zhtc_group')." ADD `dq_time` int(11) NOT NULL COMMENT '到期时间'");}
- if(!pdo_fieldexists('zhtc_group','state')) {pdo_query("ALTER TABLE ".tablename('zhtc_group')." ADD `state` int(4) NOT NULL COMMENT '1.拼团中2成功,3失败'");}
- if(!pdo_fieldexists('zhtc_group','user_id')) {pdo_query("ALTER TABLE ".tablename('zhtc_group')." ADD `user_id` int(11) NOT NULL COMMENT '团长user_id'");}
- if(!pdo_fieldexists('zhtc_group','uniacid')) {pdo_query("ALTER TABLE ".tablename('zhtc_group')." ADD `uniacid` int(11) NOT NULL");}
- pdo_query("CREATE TABLE IF NOT EXISTS `ims_zhtc_groupgoods` (
- `id` int(11) unsigned NOT NULL AUTO_INCREMENT,
- `store_id` int(11) NOT NULL COMMENT '门店id',
- `type_id` int(11) NOT NULL COMMENT '分类ID',
- `name` varchar(255) NOT NULL COMMENT '名称',
- `logo` varchar(255) NOT NULL COMMENT 'logo',
- `img` text NOT NULL COMMENT '多图',
- `inventory` int(11) NOT NULL COMMENT '库存',
- `pt_price` decimal(10,2) NOT NULL COMMENT '拼团价格',
- `y_price` decimal(10,2) NOT NULL COMMENT '原价',
- `dd_price` decimal(10,2) NOT NULL COMMENT '单独购买价格',
- `ycd_num` int(11) NOT NULL COMMENT '已成团数量',
- `ysc_num` int(11) NOT NULL COMMENT '已售出数量',
- `people` int(11) NOT NULL COMMENT '成团人数',
- `start_time` int(11) NOT NULL COMMENT '开始时间',
- `end_time` int(11) NOT NULL COMMENT '结束时间',
- `xf_time` int(11) NOT NULL COMMENT '消费截止时间',
- `is_shelves` int(4) NOT NULL DEFAULT '1' COMMENT '1上架,2下架',
- `details` text NOT NULL COMMENT '商品详情',
- `details_img` text NOT NULL COMMENT '详情多图',
- `num` int(11) NOT NULL COMMENT '排序',
- `state` int(4) NOT NULL DEFAULT '1' COMMENT '1待审核,2通过,3拒绝',
- `display` int(4) NOT NULL DEFAULT '1' COMMENT '1显示,2不显示',
- `uniacid` int(11) NOT NULL,
- `introduction` text NOT NULL,
- `time` int(11) NOT NULL COMMENT '发布时间',
- `cityname` varchar(30) NOT NULL,
- PRIMARY KEY (`id`)
- ) ENGINE=InnoDB AUTO_INCREMENT=4 DEFAULT CHARSET=utf8;
- ");
- if(!pdo_fieldexists('zhtc_groupgoods','id')) {pdo_query("ALTER TABLE ".tablename('zhtc_groupgoods')." ADD
- `id` int(11) unsigned NOT NULL AUTO_INCREMENT");}
- if(!pdo_fieldexists('zhtc_groupgoods','store_id')) {pdo_query("ALTER TABLE ".tablename('zhtc_groupgoods')." ADD `store_id` int(11) NOT NULL COMMENT '门店id'");}
- if(!pdo_fieldexists('zhtc_groupgoods','type_id')) {pdo_query("ALTER TABLE ".tablename('zhtc_groupgoods')." ADD `type_id` int(11) NOT NULL COMMENT '分类ID'");}
- if(!pdo_fieldexists('zhtc_groupgoods','name')) {pdo_query("ALTER TABLE ".tablename('zhtc_groupgoods')." ADD `name` varchar(255) NOT NULL COMMENT '名称'");}
- if(!pdo_fieldexists('zhtc_groupgoods','logo')) {pdo_query("ALTER TABLE ".tablename('zhtc_groupgoods')." ADD `logo` varchar(255) NOT NULL COMMENT 'logo'");}
- if(!pdo_fieldexists('zhtc_groupgoods','img')) {pdo_query("ALTER TABLE ".tablename('zhtc_groupgoods')." ADD `img` text NOT NULL COMMENT '多图'");}
- if(!pdo_fieldexists('zhtc_groupgoods','inventory')) {pdo_query("ALTER TABLE ".tablename('zhtc_groupgoods')." ADD `inventory` int(11) NOT NULL COMMENT '库存'");}
- if(!pdo_fieldexists('zhtc_groupgoods','pt_price')) {pdo_query("ALTER TABLE ".tablename('zhtc_groupgoods')." ADD `pt_price` decimal(10,2) NOT NULL COMMENT '拼团价格'");}
- if(!pdo_fieldexists('zhtc_groupgoods','y_price')) {pdo_query("ALTER TABLE ".tablename('zhtc_groupgoods')." ADD `y_price` decimal(10,2) NOT NULL COMMENT '原价'");}
- if(!pdo_fieldexists('zhtc_groupgoods','dd_price')) {pdo_query("ALTER TABLE ".tablename('zhtc_groupgoods')." ADD `dd_price` decimal(10,2) NOT NULL COMMENT '单独购买价格'");}
- if(!pdo_fieldexists('zhtc_groupgoods','ycd_num')) {pdo_query("ALTER TABLE ".tablename('zhtc_groupgoods')." ADD `ycd_num` int(11) NOT NULL COMMENT '已成团数量'");}
- if(!pdo_fieldexists('zhtc_groupgoods','ysc_num')) {pdo_query("ALTER TABLE ".tablename('zhtc_groupgoods')." ADD `ysc_num` int(11) NOT NULL COMMENT '已售出数量'");}
- if(!pdo_fieldexists('zhtc_groupgoods','people')) {pdo_query("ALTER TABLE ".tablename('zhtc_groupgoods')." ADD `people` int(11) NOT NULL COMMENT '成团人数'");}
- if(!pdo_fieldexists('zhtc_groupgoods','start_time')) {pdo_query("ALTER TABLE ".tablename('zhtc_groupgoods')." ADD `start_time` int(11) NOT NULL COMMENT '开始时间'");}
- if(!pdo_fieldexists('zhtc_groupgoods','end_time')) {pdo_query("ALTER TABLE ".tablename('zhtc_groupgoods')." ADD `end_time` int(11) NOT NULL COMMENT '结束时间'");}
- if(!pdo_fieldexists('zhtc_groupgoods','xf_time')) {pdo_query("ALTER TABLE ".tablename('zhtc_groupgoods')." ADD `xf_time` int(11) NOT NULL COMMENT '消费截止时间'");}
- if(!pdo_fieldexists('zhtc_groupgoods','is_shelves')) {pdo_query("ALTER TABLE ".tablename('zhtc_groupgoods')." ADD `is_shelves` int(4) NOT NULL DEFAULT '1' COMMENT '1上架,2下架'");}
- if(!pdo_fieldexists('zhtc_groupgoods','details')) {pdo_query("ALTER TABLE ".tablename('zhtc_groupgoods')." ADD `details` text NOT NULL COMMENT '商品详情'");}
- if(!pdo_fieldexists('zhtc_groupgoods','details_img')) {pdo_query("ALTER TABLE ".tablename('zhtc_groupgoods')." ADD `details_img` text NOT NULL COMMENT '详情多图'");}
- if(!pdo_fieldexists('zhtc_groupgoods','num')) {pdo_query("ALTER TABLE ".tablename('zhtc_groupgoods')." ADD `num` int(11) NOT NULL COMMENT '排序'");}
- if(!pdo_fieldexists('zhtc_groupgoods','state')) {pdo_query("ALTER TABLE ".tablename('zhtc_groupgoods')." ADD `state` int(4) NOT NULL DEFAULT '1' COMMENT '1待审核,2通过,3拒绝'");}
- if(!pdo_fieldexists('zhtc_groupgoods','display')) {pdo_query("ALTER TABLE ".tablename('zhtc_groupgoods')." ADD `display` int(4) NOT NULL DEFAULT '1' COMMENT '1显示,2不显示'");}
- if(!pdo_fieldexists('zhtc_groupgoods','uniacid')) {pdo_query("ALTER TABLE ".tablename('zhtc_groupgoods')." ADD `uniacid` int(11) NOT NULL");}
- if(!pdo_fieldexists('zhtc_groupgoods','introduction')) {pdo_query("ALTER TABLE ".tablename('zhtc_groupgoods')." ADD `introduction` text NOT NULL");}
- if(!pdo_fieldexists('zhtc_groupgoods','time')) {pdo_query("ALTER TABLE ".tablename('zhtc_groupgoods')." ADD `time` int(11) NOT NULL COMMENT '发布时间'");}
- if(!pdo_fieldexists('zhtc_groupgoods','cityname')) {pdo_query("ALTER TABLE ".tablename('zhtc_groupgoods')." ADD `cityname` varchar(30) NOT NULL");}
- pdo_query("CREATE TABLE IF NOT EXISTS `ims_zhtc_grouporder` (
- `id` int(11) unsigned NOT NULL AUTO_INCREMENT,
- `group_id` int(11) NOT NULL COMMENT '团id',
- `store_id` int(11) NOT NULL COMMENT '门店id',
- `goods_id` int(11) NOT NULL COMMENT '商品ID',
- `user_id` int(11) NOT NULL COMMENT '用户ID',
- `order_num` varchar(30) NOT NULL COMMENT '订单号',
- `logo` varchar(255) NOT NULL COMMENT '商品图片',
- `goods_name` varchar(255) NOT NULL COMMENT '商品名称',
- `goods_type` varchar(50) NOT NULL COMMENT '商品类型',
- `price` decimal(10,2) NOT NULL COMMENT '单价',
- `goods_num` int(11) NOT NULL COMMENT '商品数量',
- `money` decimal(10,2) NOT NULL COMMENT '订单金额',
- `pay_type` int(4) NOT NULL COMMENT '付款方式1微信,2余额',
- `receive_name` varchar(30) NOT NULL COMMENT '收货人',
- `receive_tel` varchar(20) NOT NULL COMMENT '收货人电话',
- `receive_address` varchar(100) NOT NULL COMMENT '收货人地址',
- `note` varchar(100) NOT NULL COMMENT '备注',
- `state` int(4) NOT NULL COMMENT '1未付款,2已付款,3已完成,4已关闭,5已失效',
- `xf_time` int(11) NOT NULL COMMENT '消费截止时间',
- `time` int(11) NOT NULL COMMENT '下单时间',
- `pay_time` int(11) NOT NULL COMMENT '付款时间',
- `cz_time` int(11) NOT NULL COMMENT '完成/关闭/失效时间',
- `code` varchar(30) NOT NULL COMMENT '支付商户号',
- `uniacid` int(11) NOT NULL,
- PRIMARY KEY (`id`)
- ) ENGINE=InnoDB DEFAULT CHARSET=utf8;
- ");
- if(!pdo_fieldexists('zhtc_grouporder','id')) {pdo_query("ALTER TABLE ".tablename('zhtc_grouporder')." ADD
- `id` int(11) unsigned NOT NULL AUTO_INCREMENT");}
- if(!pdo_fieldexists('zhtc_grouporder','group_id')) {pdo_query("ALTER TABLE ".tablename('zhtc_grouporder')." ADD `group_id` int(11) NOT NULL COMMENT '团id'");}
- if(!pdo_fieldexists('zhtc_grouporder','store_id')) {pdo_query("ALTER TABLE ".tablename('zhtc_grouporder')." ADD `store_id` int(11) NOT NULL COMMENT '门店id'");}
- if(!pdo_fieldexists('zhtc_grouporder','goods_id')) {pdo_query("ALTER TABLE ".tablename('zhtc_grouporder')." ADD `goods_id` int(11) NOT NULL COMMENT '商品ID'");}
- if(!pdo_fieldexists('zhtc_grouporder','user_id')) {pdo_query("ALTER TABLE ".tablename('zhtc_grouporder')." ADD `user_id` int(11) NOT NULL COMMENT '用户ID'");}
- if(!pdo_fieldexists('zhtc_grouporder','order_num')) {pdo_query("ALTER TABLE ".tablename('zhtc_grouporder')." ADD `order_num` varchar(30) NOT NULL COMMENT '订单号'");}
- if(!pdo_fieldexists('zhtc_grouporder','logo')) {pdo_query("ALTER TABLE ".tablename('zhtc_grouporder')." ADD `logo` varchar(255) NOT NULL COMMENT '商品图片'");}
- if(!pdo_fieldexists('zhtc_grouporder','goods_name')) {pdo_query("ALTER TABLE ".tablename('zhtc_grouporder')." ADD `goods_name` varchar(255) NOT NULL COMMENT '商品名称'");}
- if(!pdo_fieldexists('zhtc_grouporder','goods_type')) {pdo_query("ALTER TABLE ".tablename('zhtc_grouporder')." ADD `goods_type` varchar(50) NOT NULL COMMENT '商品类型'");}
- if(!pdo_fieldexists('zhtc_grouporder','price')) {pdo_query("ALTER TABLE ".tablename('zhtc_grouporder')." ADD `price` decimal(10,2) NOT NULL COMMENT '单价'");}
- if(!pdo_fieldexists('zhtc_grouporder','goods_num')) {pdo_query("ALTER TABLE ".tablename('zhtc_grouporder')." ADD `goods_num` int(11) NOT NULL COMMENT '商品数量'");}
- if(!pdo_fieldexists('zhtc_grouporder','money')) {pdo_query("ALTER TABLE ".tablename('zhtc_grouporder')." ADD `money` decimal(10,2) NOT NULL COMMENT '订单金额'");}
- if(!pdo_fieldexists('zhtc_grouporder','pay_type')) {pdo_query("ALTER TABLE ".tablename('zhtc_grouporder')." ADD `pay_type` int(4) NOT NULL COMMENT '付款方式1微信,2余额'");}
- if(!pdo_fieldexists('zhtc_grouporder','receive_name')) {pdo_query("ALTER TABLE ".tablename('zhtc_grouporder')." ADD `receive_name` varchar(30) NOT NULL COMMENT '收货人'");}
- if(!pdo_fieldexists('zhtc_grouporder','receive_tel')) {pdo_query("ALTER TABLE ".tablename('zhtc_grouporder')." ADD `receive_tel` varchar(20) NOT NULL COMMENT '收货人电话'");}
- if(!pdo_fieldexists('zhtc_grouporder','receive_address')) {pdo_query("ALTER TABLE ".tablename('zhtc_grouporder')." ADD `receive_address` varchar(100) NOT NULL COMMENT '收货人地址'");}
- if(!pdo_fieldexists('zhtc_grouporder','note')) {pdo_query("ALTER TABLE ".tablename('zhtc_grouporder')." ADD `note` varchar(100) NOT NULL COMMENT '备注'");}
- if(!pdo_fieldexists('zhtc_grouporder','state')) {pdo_query("ALTER TABLE ".tablename('zhtc_grouporder')." ADD `state` int(4) NOT NULL COMMENT '1未付款,2已付款,3已完成,4已关闭,5已失效'");}
- if(!pdo_fieldexists('zhtc_grouporder','xf_time')) {pdo_query("ALTER TABLE ".tablename('zhtc_grouporder')." ADD `xf_time` int(11) NOT NULL COMMENT '消费截止时间'");}
- if(!pdo_fieldexists('zhtc_grouporder','time')) {pdo_query("ALTER TABLE ".tablename('zhtc_grouporder')." ADD `time` int(11) NOT NULL COMMENT '下单时间'");}
- if(!pdo_fieldexists('zhtc_grouporder','pay_time')) {pdo_query("ALTER TABLE ".tablename('zhtc_grouporder')." ADD `pay_time` int(11) NOT NULL COMMENT '付款时间'");}
- if(!pdo_fieldexists('zhtc_grouporder','cz_time')) {pdo_query("ALTER TABLE ".tablename('zhtc_grouporder')." ADD `cz_time` int(11) NOT NULL COMMENT '完成/关闭/失效时间'");}
- if(!pdo_fieldexists('zhtc_grouporder','code')) {pdo_query("ALTER TABLE ".tablename('zhtc_grouporder')." ADD `code` varchar(30) NOT NULL COMMENT '支付商户号'");}
- if(!pdo_fieldexists('zhtc_grouporder','uniacid')) {pdo_query("ALTER TABLE ".tablename('zhtc_grouporder')." ADD `uniacid` int(11) NOT NULL");}
- pdo_query("CREATE TABLE IF NOT EXISTS `ims_zhtc_grouptype` (
- `id` int(11) unsigned NOT NULL AUTO_INCREMENT,
- `name` varchar(20) NOT NULL,
- `img` varchar(500) NOT NULL,
- `num` int(11) NOT NULL,
- `uniacid` int(11) NOT NULL,
- PRIMARY KEY (`id`)
- ) ENGINE=InnoDB AUTO_INCREMENT=3 DEFAULT CHARSET=utf8 COMMENT='拼团分类';
- ");
- if(!pdo_fieldexists('zhtc_grouptype','id')) {pdo_query("ALTER TABLE ".tablename('zhtc_grouptype')." ADD
- `id` int(11) unsigned NOT NULL AUTO_INCREMENT");}
- if(!pdo_fieldexists('zhtc_grouptype','name')) {pdo_query("ALTER TABLE ".tablename('zhtc_grouptype')." ADD `name` varchar(20) NOT NULL");}
- if(!pdo_fieldexists('zhtc_grouptype','img')) {pdo_query("ALTER TABLE ".tablename('zhtc_grouptype')." ADD `img` varchar(500) NOT NULL");}
- if(!pdo_fieldexists('zhtc_grouptype','num')) {pdo_query("ALTER TABLE ".tablename('zhtc_grouptype')." ADD `num` int(11) NOT NULL");}
- if(!pdo_fieldexists('zhtc_grouptype','uniacid')) {pdo_query("ALTER TABLE ".tablename('zhtc_grouptype')." ADD `uniacid` int(11) NOT NULL");}
- pdo_query("CREATE TABLE IF NOT EXISTS `ims_zhtc_hblq` (
- `id` int(11) NOT NULL AUTO_INCREMENT,
- `user_id` int(11) NOT NULL COMMENT '用户ID',
- `tz_id` int(11) NOT NULL COMMENT '帖子ID',
- `money` decimal(10,2) NOT NULL COMMENT '金额',
- `time` int(11) NOT NULL COMMENT '时间戳',
- `uniacid` varchar(50) NOT NULL,
- `type` int(1) NOT NULL DEFAULT '1',
- PRIMARY KEY (`id`)
- ) ENGINE=InnoDB AUTO_INCREMENT=35 DEFAULT CHARSET=utf8 COMMENT='分销表';
- ");
- if(!pdo_fieldexists('zhtc_hblq','id')) {pdo_query("ALTER TABLE ".tablename('zhtc_hblq')." ADD
- `id` int(11) NOT NULL AUTO_INCREMENT");}
- if(!pdo_fieldexists('zhtc_hblq','user_id')) {pdo_query("ALTER TABLE ".tablename('zhtc_hblq')." ADD `user_id` int(11) NOT NULL COMMENT '用户ID'");}
- if(!pdo_fieldexists('zhtc_hblq','tz_id')) {pdo_query("ALTER TABLE ".tablename('zhtc_hblq')." ADD `tz_id` int(11) NOT NULL COMMENT '帖子ID'");}
- if(!pdo_fieldexists('zhtc_hblq','money')) {pdo_query("ALTER TABLE ".tablename('zhtc_hblq')." ADD `money` decimal(10,2) NOT NULL COMMENT '金额'");}
- if(!pdo_fieldexists('zhtc_hblq','time')) {pdo_query("ALTER TABLE ".tablename('zhtc_hblq')." ADD `time` int(11) NOT NULL COMMENT '时间戳'");}
- if(!pdo_fieldexists('zhtc_hblq','uniacid')) {pdo_query("ALTER TABLE ".tablename('zhtc_hblq')." ADD `uniacid` varchar(50) NOT NULL");}
- if(!pdo_fieldexists('zhtc_hblq','type')) {pdo_query("ALTER TABLE ".tablename('zhtc_hblq')." ADD `type` int(1) NOT NULL DEFAULT '1'");}
- pdo_query("CREATE TABLE IF NOT EXISTS `ims_zhtc_help` (
- `id` int(11) NOT NULL AUTO_INCREMENT,
- `question` varchar(200) NOT NULL COMMENT '标题',
- `answer` text NOT NULL COMMENT '回答',
- `sort` int(4) NOT NULL COMMENT '排序',
- `uniacid` varchar(50) NOT NULL,
- `created_time` datetime NOT NULL,
- PRIMARY KEY (`id`)
- ) ENGINE=InnoDB AUTO_INCREMENT=7 DEFAULT CHARSET=utf8;
- ");
- if(!pdo_fieldexists('zhtc_help','id')) {pdo_query("ALTER TABLE ".tablename('zhtc_help')." ADD
- `id` int(11) NOT NULL AUTO_INCREMENT");}
- if(!pdo_fieldexists('zhtc_help','question')) {pdo_query("ALTER TABLE ".tablename('zhtc_help')." ADD `question` varchar(200) NOT NULL COMMENT '标题'");}
- if(!pdo_fieldexists('zhtc_help','answer')) {pdo_query("ALTER TABLE ".tablename('zhtc_help')." ADD `answer` text NOT NULL COMMENT '回答'");}
- if(!pdo_fieldexists('zhtc_help','sort')) {pdo_query("ALTER TABLE ".tablename('zhtc_help')." ADD `sort` int(4) NOT NULL COMMENT '排序'");}
- if(!pdo_fieldexists('zhtc_help','uniacid')) {pdo_query("ALTER TABLE ".tablename('zhtc_help')." ADD `uniacid` varchar(50) NOT NULL");}
- if(!pdo_fieldexists('zhtc_help','created_time')) {pdo_query("ALTER TABLE ".tablename('zhtc_help')." ADD `created_time` datetime NOT NULL");}
- pdo_query("CREATE TABLE IF NOT EXISTS `ims_zhtc_hotcity` (
- `id` int(11) NOT NULL AUTO_INCREMENT,
- `cityname` varchar(50) NOT NULL COMMENT '城市名称',
- `time` int(11) NOT NULL COMMENT '创建时间',
- `uniacid` varchar(50) NOT NULL,
- `user_id` int(11) NOT NULL,
- PRIMARY KEY (`id`)
- ) ENGINE=InnoDB AUTO_INCREMENT=4933 DEFAULT CHARSET=utf8;
- ");
- if(!pdo_fieldexists('zhtc_hotcity','id')) {pdo_query("ALTER TABLE ".tablename('zhtc_hotcity')." ADD
- `id` int(11) NOT NULL AUTO_INCREMENT");}
- if(!pdo_fieldexists('zhtc_hotcity','cityname')) {pdo_query("ALTER TABLE ".tablename('zhtc_hotcity')." ADD `cityname` varchar(50) NOT NULL COMMENT '城市名称'");}
- if(!pdo_fieldexists('zhtc_hotcity','time')) {pdo_query("ALTER TABLE ".tablename('zhtc_hotcity')." ADD `time` int(11) NOT NULL COMMENT '创建时间'");}
- if(!pdo_fieldexists('zhtc_hotcity','uniacid')) {pdo_query("ALTER TABLE ".tablename('zhtc_hotcity')." ADD `uniacid` varchar(50) NOT NULL");}
- if(!pdo_fieldexists('zhtc_hotcity','user_id')) {pdo_query("ALTER TABLE ".tablename('zhtc_hotcity')." ADD `user_id` int(11) NOT NULL");}
- pdo_query("CREATE TABLE IF NOT EXISTS `ims_zhtc_in` (
- `id` int(11) NOT NULL AUTO_INCREMENT,
- `type` int(11) NOT NULL COMMENT '1.一天2.半年3.一年',
- `money` decimal(10,2) NOT NULL,
- `num` int(11) NOT NULL,
- `uniacid` int(11) NOT NULL,
- `money2` decimal(10,2) NOT NULL,
- PRIMARY KEY (`id`)
- ) ENGINE=InnoDB AUTO_INCREMENT=10 DEFAULT CHARSET=utf8;
- ");
- if(!pdo_fieldexists('zhtc_in','id')) {pdo_query("ALTER TABLE ".tablename('zhtc_in')." ADD
- `id` int(11) NOT NULL AUTO_INCREMENT");}
- if(!pdo_fieldexists('zhtc_in','type')) {pdo_query("ALTER TABLE ".tablename('zhtc_in')." ADD `type` int(11) NOT NULL COMMENT '1.一天2.半年3.一年'");}
- if(!pdo_fieldexists('zhtc_in','money')) {pdo_query("ALTER TABLE ".tablename('zhtc_in')." ADD `money` decimal(10,2) NOT NULL");}
- if(!pdo_fieldexists('zhtc_in','num')) {pdo_query("ALTER TABLE ".tablename('zhtc_in')." ADD `num` int(11) NOT NULL");}
- if(!pdo_fieldexists('zhtc_in','uniacid')) {pdo_query("ALTER TABLE ".tablename('zhtc_in')." ADD `uniacid` int(11) NOT NULL");}
- if(!pdo_fieldexists('zhtc_in','money2')) {pdo_query("ALTER TABLE ".tablename('zhtc_in')." ADD `money2` decimal(10,2) NOT NULL");}
- pdo_query("CREATE TABLE IF NOT EXISTS `ims_zhtc_information` (
- `id` int(11) NOT NULL AUTO_INCREMENT,
- `details` text NOT NULL COMMENT '内容',
- `img` text NOT NULL COMMENT '图片',
- `user_id` int(11) NOT NULL COMMENT '用户id',
- `user_name` varchar(20) NOT NULL COMMENT '联系人',
- `user_tel` varchar(20) NOT NULL COMMENT '电话',
- `hot` int(11) NOT NULL COMMENT '1.热门 2.不热门',
- `top` int(11) NOT NULL COMMENT '1.置顶 2.不置顶',
- `givelike` int(11) NOT NULL COMMENT '点赞数',
- `views` int(11) NOT NULL COMMENT '浏览量',
- `uniacid` int(11) NOT NULL COMMENT '小程序id',
- `type2_id` int(11) NOT NULL COMMENT '分类二id',
- `type_id` int(11) NOT NULL,
- `state` int(11) NOT NULL COMMENT '1.待审核 2.通过3拒绝',
- `money` decimal(10,2) NOT NULL,
- `time` int(11) NOT NULL COMMENT '发布时间',
- `sh_time` int(11) NOT NULL,
- `top_type` int(11) NOT NULL,
- `address` varchar(500) NOT NULL,
- `hb_money` decimal(10,2) NOT NULL,
- `hb_num` int(11) NOT NULL,
- `hb_type` int(11) NOT NULL,
- `hb_keyword` varchar(20) NOT NULL,
- `hb_random` int(11) NOT NULL,
- `hong` text NOT NULL,
- `store_id` int(11) NOT NULL,
- `del` int(11) NOT NULL DEFAULT '2',
- `user_img2` varchar(200) NOT NULL,
- `dq_time` int(11) NOT NULL,
- `cityname` varchar(50) NOT NULL,
- `hbfx_num` int(11) NOT NULL,
- `is_jt` int(4) NOT NULL DEFAULT '2',
- `lat` varchar(20) NOT NULL,
- `lng` varchar(20) NOT NULL,
- `code` varchar(50) NOT NULL,
- PRIMARY KEY (`id`),
- KEY `uniacid` (`uniacid`),
- KEY `user_id` (`user_id`),
- KEY `type2_id` (`type2_id`),
- KEY `type_id` (`type_id`),
- KEY `state` (`state`),
- KEY `store_id` (`store_id`),
- KEY `uniacid_2` (`uniacid`),
- KEY `user_id_2` (`user_id`),
- KEY `type2_id_2` (`type2_id`),
- KEY `type_id_2` (`type_id`),
- KEY `state_2` (`state`),
- KEY `store_id_2` (`store_id`),
- KEY `uniacid_3` (`uniacid`),
- KEY `user_id_3` (`user_id`),
- KEY `type2_id_3` (`type2_id`),
- KEY `type_id_3` (`type_id`),
- KEY `state_3` (`state`),
- KEY `store_id_3` (`store_id`),
- KEY `uniacid_4` (`uniacid`),
- KEY `user_id_4` (`user_id`),
- KEY `type2_id_4` (`type2_id`),
- KEY `type_id_4` (`type_id`),
- KEY `state_4` (`state`),
- KEY `store_id_4` (`store_id`),
- KEY `uniacid_5` (`uniacid`),
- KEY `user_id_5` (`user_id`),
- KEY `type2_id_5` (`type2_id`),
- KEY `type_id_5` (`type_id`),
- KEY `state_5` (`state`),
- KEY `store_id_5` (`store_id`),
- KEY `uniacid_6` (`uniacid`),
- KEY `user_id_6` (`user_id`),
- KEY `type2_id_6` (`type2_id`),
- KEY `type_id_6` (`type_id`),
- KEY `state_6` (`state`),
- KEY `store_id_6` (`store_id`),
- KEY `uniacid_7` (`uniacid`),
- KEY `user_id_7` (`user_id`),
- KEY `type2_id_7` (`type2_id`),
- KEY `type_id_7` (`type_id`),
- KEY `state_7` (`state`),
- KEY `store_id_7` (`store_id`),
- KEY `uniacid_8` (`uniacid`),
- KEY `user_id_8` (`user_id`),
- KEY `type2_id_8` (`type2_id`),
- KEY `type_id_8` (`type_id`),
- KEY `state_8` (`state`),
- KEY `store_id_8` (`store_id`),
- KEY `uniacid_9` (`uniacid`),
- KEY `user_id_9` (`user_id`),
- KEY `type2_id_9` (`type2_id`),
- KEY `type_id_9` (`type_id`),
- KEY `state_9` (`state`),
- KEY `store_id_9` (`store_id`),
- KEY `uniacid_10` (`uniacid`),
- KEY `user_id_10` (`user_id`),
- KEY `type2_id_10` (`type2_id`),
- KEY `type_id_10` (`type_id`),
- KEY `state_10` (`state`),
- KEY `store_id_10` (`store_id`),
- KEY `uniacid_11` (`uniacid`),
- KEY `user_id_11` (`user_id`),
- KEY `type2_id_11` (`type2_id`)
- ) ENGINE=InnoDB AUTO_INCREMENT=717 DEFAULT CHARSET=utf8;
- ");
- if(!pdo_fieldexists('zhtc_information','id')) {pdo_query("ALTER TABLE ".tablename('zhtc_information')." ADD
- `id` int(11) NOT NULL AUTO_INCREMENT");}
- if(!pdo_fieldexists('zhtc_information','details')) {pdo_query("ALTER TABLE ".tablename('zhtc_information')." ADD `details` text NOT NULL COMMENT '内容'");}
- if(!pdo_fieldexists('zhtc_information','img')) {pdo_query("ALTER TABLE ".tablename('zhtc_information')." ADD `img` text NOT NULL COMMENT '图片'");}
- if(!pdo_fieldexists('zhtc_information','user_id')) {pdo_query("ALTER TABLE ".tablename('zhtc_information')." ADD `user_id` int(11) NOT NULL COMMENT '用户id'");}
- if(!pdo_fieldexists('zhtc_information','user_name')) {pdo_query("ALTER TABLE ".tablename('zhtc_information')." ADD `user_name` varchar(20) NOT NULL COMMENT '联系人'");}
- if(!pdo_fieldexists('zhtc_information','user_tel')) {pdo_query("ALTER TABLE ".tablename('zhtc_information')." ADD `user_tel` varchar(20) NOT NULL COMMENT '电话'");}
- if(!pdo_fieldexists('zhtc_information','hot')) {pdo_query("ALTER TABLE ".tablename('zhtc_information')." ADD `hot` int(11) NOT NULL COMMENT '1.热门 2.不热门'");}
- if(!pdo_fieldexists('zhtc_information','top')) {pdo_query("ALTER TABLE ".tablename('zhtc_information')." ADD `top` int(11) NOT NULL COMMENT '1.置顶 2.不置顶'");}
- if(!pdo_fieldexists('zhtc_information','givelike')) {pdo_query("ALTER TABLE ".tablename('zhtc_information')." ADD `givelike` int(11) NOT NULL COMMENT '点赞数'");}
- if(!pdo_fieldexists('zhtc_information','views')) {pdo_query("ALTER TABLE ".tablename('zhtc_information')." ADD `views` int(11) NOT NULL COMMENT '浏览量'");}
- if(!pdo_fieldexists('zhtc_information','uniacid')) {pdo_query("ALTER TABLE ".tablename('zhtc_information')." ADD `uniacid` int(11) NOT NULL COMMENT '小程序id'");}
- if(!pdo_fieldexists('zhtc_information','type2_id')) {pdo_query("ALTER TABLE ".tablename('zhtc_information')." ADD `type2_id` int(11) NOT NULL COMMENT '分类二id'");}
- if(!pdo_fieldexists('zhtc_information','type_id')) {pdo_query("ALTER TABLE ".tablename('zhtc_information')." ADD `type_id` int(11) NOT NULL");}
- if(!pdo_fieldexists('zhtc_information','state')) {pdo_query("ALTER TABLE ".tablename('zhtc_information')." ADD `state` int(11) NOT NULL COMMENT '1.待审核 2.通过3拒绝'");}
- if(!pdo_fieldexists('zhtc_information','money')) {pdo_query("ALTER TABLE ".tablename('zhtc_information')." ADD `money` decimal(10,2) NOT NULL");}
- if(!pdo_fieldexists('zhtc_information','time')) {pdo_query("ALTER TABLE ".tablename('zhtc_information')." ADD `time` int(11) NOT NULL COMMENT '发布时间'");}
- if(!pdo_fieldexists('zhtc_information','sh_time')) {pdo_query("ALTER TABLE ".tablename('zhtc_information')." ADD `sh_time` int(11) NOT NULL");}
- if(!pdo_fieldexists('zhtc_information','top_type')) {pdo_query("ALTER TABLE ".tablename('zhtc_information')." ADD `top_type` int(11) NOT NULL");}
- if(!pdo_fieldexists('zhtc_information','address')) {pdo_query("ALTER TABLE ".tablename('zhtc_information')." ADD `address` varchar(500) NOT NULL");}
- if(!pdo_fieldexists('zhtc_information','hb_money')) {pdo_query("ALTER TABLE ".tablename('zhtc_information')." ADD `hb_money` decimal(10,2) NOT NULL");}
- if(!pdo_fieldexists('zhtc_information','hb_num')) {pdo_query("ALTER TABLE ".tablename('zhtc_information')." ADD `hb_num` int(11) NOT NULL");}
- if(!pdo_fieldexists('zhtc_information','hb_type')) {pdo_query("ALTER TABLE ".tablename('zhtc_information')." ADD `hb_type` int(11) NOT NULL");}
- if(!pdo_fieldexists('zhtc_information','hb_keyword')) {pdo_query("ALTER TABLE ".tablename('zhtc_information')." ADD `hb_keyword` varchar(20) NOT NULL");}
- if(!pdo_fieldexists('zhtc_information','hb_random')) {pdo_query("ALTER TABLE ".tablename('zhtc_information')." ADD `hb_random` int(11) NOT NULL");}
- if(!pdo_fieldexists('zhtc_information','hong')) {pdo_query("ALTER TABLE ".tablename('zhtc_information')." ADD `hong` text NOT NULL");}
- if(!pdo_fieldexists('zhtc_information','store_id')) {pdo_query("ALTER TABLE ".tablename('zhtc_information')." ADD `store_id` int(11) NOT NULL");}
- if(!pdo_fieldexists('zhtc_information','del')) {pdo_query("ALTER TABLE ".tablename('zhtc_information')." ADD `del` int(11) NOT NULL DEFAULT '2'");}
- if(!pdo_fieldexists('zhtc_information','user_img2')) {pdo_query("ALTER TABLE ".tablename('zhtc_information')." ADD `user_img2` varchar(200) NOT NULL");}
- if(!pdo_fieldexists('zhtc_information','dq_time')) {pdo_query("ALTER TABLE ".tablename('zhtc_information')." ADD `dq_time` int(11) NOT NULL");}
- if(!pdo_fieldexists('zhtc_information','cityname')) {pdo_query("ALTER TABLE ".tablename('zhtc_information')." ADD `cityname` varchar(50) NOT NULL");}
- if(!pdo_fieldexists('zhtc_information','hbfx_num')) {pdo_query("ALTER TABLE ".tablename('zhtc_information')." ADD `hbfx_num` int(11) NOT NULL");}
- if(!pdo_fieldexists('zhtc_information','is_jt')) {pdo_query("ALTER TABLE ".tablename('zhtc_information')." ADD `is_jt` int(4) NOT NULL DEFAULT '2'");}
- if(!pdo_fieldexists('zhtc_information','lat')) {pdo_query("ALTER TABLE ".tablename('zhtc_information')." ADD `lat` varchar(20) NOT NULL");}
- if(!pdo_fieldexists('zhtc_information','lng')) {pdo_query("ALTER TABLE ".tablename('zhtc_information')." ADD `lng` varchar(20) NOT NULL");}
- if(!pdo_fieldexists('zhtc_information','code')) {pdo_query("ALTER TABLE ".tablename('zhtc_information')." ADD `code` varchar(50) NOT NULL");}
- if(!pdo_fieldexists('zhtc_information','id')) {pdo_query("ALTER TABLE ".tablename('zhtc_information')." ADD PRIMARY KEY (`id`)");}
- if(!pdo_fieldexists('zhtc_information','uniacid')) {pdo_query("ALTER TABLE ".tablename('zhtc_information')." ADD KEY `uniacid` (`uniacid`)");}
- if(!pdo_fieldexists('zhtc_information','user_id')) {pdo_query("ALTER TABLE ".tablename('zhtc_information')." ADD KEY `user_id` (`user_id`)");}
- if(!pdo_fieldexists('zhtc_information','type2_id')) {pdo_query("ALTER TABLE ".tablename('zhtc_information')." ADD KEY `type2_id` (`type2_id`)");}
- if(!pdo_fieldexists('zhtc_information','type_id')) {pdo_query("ALTER TABLE ".tablename('zhtc_information')." ADD KEY `type_id` (`type_id`)");}
- if(!pdo_fieldexists('zhtc_information','state')) {pdo_query("ALTER TABLE ".tablename('zhtc_information')." ADD KEY `state` (`state`)");}
- if(!pdo_fieldexists('zhtc_information','store_id')) {pdo_query("ALTER TABLE ".tablename('zhtc_information')." ADD KEY `store_id` (`store_id`)");}
- if(!pdo_fieldexists('zhtc_information','uniacid_2')) {pdo_query("ALTER TABLE ".tablename('zhtc_information')." ADD KEY `uniacid_2` (`uniacid`)");}
- if(!pdo_fieldexists('zhtc_information','user_id_2')) {pdo_query("ALTER TABLE ".tablename('zhtc_information')." ADD KEY `user_id_2` (`user_id`)");}
- if(!pdo_fieldexists('zhtc_information','type2_id_2')) {pdo_query("ALTER TABLE ".tablename('zhtc_information')." ADD KEY `type2_id_2` (`type2_id`)");}
- if(!pdo_fieldexists('zhtc_information','type_id_2')) {pdo_query("ALTER TABLE ".tablename('zhtc_information')." ADD KEY `type_id_2` (`type_id`)");}
- if(!pdo_fieldexists('zhtc_information','state_2')) {pdo_query("ALTER TABLE ".tablename('zhtc_information')." ADD KEY `state_2` (`state`)");}
- if(!pdo_fieldexists('zhtc_information','store_id_2')) {pdo_query("ALTER TABLE ".tablename('zhtc_information')." ADD KEY `store_id_2` (`store_id`)");}
- if(!pdo_fieldexists('zhtc_information','uniacid_3')) {pdo_query("ALTER TABLE ".tablename('zhtc_information')." ADD KEY `uniacid_3` (`uniacid`)");}
- if(!pdo_fieldexists('zhtc_information','user_id_3')) {pdo_query("ALTER TABLE ".tablename('zhtc_information')." ADD KEY `user_id_3` (`user_id`)");}
- if(!pdo_fieldexists('zhtc_information','type2_id_3')) {pdo_query("ALTER TABLE ".tablename('zhtc_information')." ADD KEY `type2_id_3` (`type2_id`)");}
- if(!pdo_fieldexists('zhtc_information','type_id_3')) {pdo_query("ALTER TABLE ".tablename('zhtc_information')." ADD KEY `type_id_3` (`type_id`)");}
- if(!pdo_fieldexists('zhtc_information','state_3')) {pdo_query("ALTER TABLE ".tablename('zhtc_information')." ADD KEY `state_3` (`state`)");}
- if(!pdo_fieldexists('zhtc_information','store_id_3')) {pdo_query("ALTER TABLE ".tablename('zhtc_information')." ADD KEY `store_id_3` (`store_id`)");}
- if(!pdo_fieldexists('zhtc_information','uniacid_4')) {pdo_query("ALTER TABLE ".tablename('zhtc_information')." ADD KEY `uniacid_4` (`uniacid`)");}
- if(!pdo_fieldexists('zhtc_information','user_id_4')) {pdo_query("ALTER TABLE ".tablename('zhtc_information')." ADD KEY `user_id_4` (`user_id`)");}
- if(!pdo_fieldexists('zhtc_information','type2_id_4')) {pdo_query("ALTER TABLE ".tablename('zhtc_information')." ADD KEY `type2_id_4` (`type2_id`)");}
- if(!pdo_fieldexists('zhtc_information','type_id_4')) {pdo_query("ALTER TABLE ".tablename('zhtc_information')." ADD KEY `type_id_4` (`type_id`)");}
- if(!pdo_fieldexists('zhtc_information','state_4')) {pdo_query("ALTER TABLE ".tablename('zhtc_information')." ADD KEY `state_4` (`state`)");}
- if(!pdo_fieldexists('zhtc_information','store_id_4')) {pdo_query("ALTER TABLE ".tablename('zhtc_information')." ADD KEY `store_id_4` (`store_id`)");}
- if(!pdo_fieldexists('zhtc_information','uniacid_5')) {pdo_query("ALTER TABLE ".tablename('zhtc_information')." ADD KEY `uniacid_5` (`uniacid`)");}
- if(!pdo_fieldexists('zhtc_information','user_id_5')) {pdo_query("ALTER TABLE ".tablename('zhtc_information')." ADD KEY `user_id_5` (`user_id`)");}
- if(!pdo_fieldexists('zhtc_information','type2_id_5')) {pdo_query("ALTER TABLE ".tablename('zhtc_information')." ADD KEY `type2_id_5` (`type2_id`)");}
- if(!pdo_fieldexists('zhtc_information','type_id_5')) {pdo_query("ALTER TABLE ".tablename('zhtc_information')." ADD KEY `type_id_5` (`type_id`)");}
- if(!pdo_fieldexists('zhtc_information','state_5')) {pdo_query("ALTER TABLE ".tablename('zhtc_information')." ADD KEY `state_5` (`state`)");}
- if(!pdo_fieldexists('zhtc_information','store_id_5')) {pdo_query("ALTER TABLE ".tablename('zhtc_information')." ADD KEY `store_id_5` (`store_id`)");}
- if(!pdo_fieldexists('zhtc_information','uniacid_6')) {pdo_query("ALTER TABLE ".tablename('zhtc_information')." ADD KEY `uniacid_6` (`uniacid`)");}
- if(!pdo_fieldexists('zhtc_information','user_id_6')) {pdo_query("ALTER TABLE ".tablename('zhtc_information')." ADD KEY `user_id_6` (`user_id`)");}
- if(!pdo_fieldexists('zhtc_information','type2_id_6')) {pdo_query("ALTER TABLE ".tablename('zhtc_information')." ADD KEY `type2_id_6` (`type2_id`)");}
- if(!pdo_fieldexists('zhtc_information','type_id_6')) {pdo_query("ALTER TABLE ".tablename('zhtc_information')." ADD KEY `type_id_6` (`type_id`)");}
- if(!pdo_fieldexists('zhtc_information','state_6')) {pdo_query("ALTER TABLE ".tablename('zhtc_information')." ADD KEY `state_6` (`state`)");}
- if(!pdo_fieldexists('zhtc_information','store_id_6')) {pdo_query("ALTER TABLE ".tablename('zhtc_information')." ADD KEY `store_id_6` (`store_id`)");}
- if(!pdo_fieldexists('zhtc_information','uniacid_7')) {pdo_query("ALTER TABLE ".tablename('zhtc_information')." ADD KEY `uniacid_7` (`uniacid`)");}
- if(!pdo_fieldexists('zhtc_information','user_id_7')) {pdo_query("ALTER TABLE ".tablename('zhtc_information')." ADD KEY `user_id_7` (`user_id`)");}
- if(!pdo_fieldexists('zhtc_information','type2_id_7')) {pdo_query("ALTER TABLE ".tablename('zhtc_information')." ADD KEY `type2_id_7` (`type2_id`)");}
- if(!pdo_fieldexists('zhtc_information','type_id_7')) {pdo_query("ALTER TABLE ".tablename('zhtc_information')." ADD KEY `type_id_7` (`type_id`)");}
- if(!pdo_fieldexists('zhtc_information','state_7')) {pdo_query("ALTER TABLE ".tablename('zhtc_information')." ADD KEY `state_7` (`state`)");}
- if(!pdo_fieldexists('zhtc_information','store_id_7')) {pdo_query("ALTER TABLE ".tablename('zhtc_information')." ADD KEY `store_id_7` (`store_id`)");}
- if(!pdo_fieldexists('zhtc_information','uniacid_8')) {pdo_query("ALTER TABLE ".tablename('zhtc_information')." ADD KEY `uniacid_8` (`uniacid`)");}
- if(!pdo_fieldexists('zhtc_information','user_id_8')) {pdo_query("ALTER TABLE ".tablename('zhtc_information')." ADD KEY `user_id_8` (`user_id`)");}
- if(!pdo_fieldexists('zhtc_information','type2_id_8')) {pdo_query("ALTER TABLE ".tablename('zhtc_information')." ADD KEY `type2_id_8` (`type2_id`)");}
- if(!pdo_fieldexists('zhtc_information','type_id_8')) {pdo_query("ALTER TABLE ".tablename('zhtc_information')." ADD KEY `type_id_8` (`type_id`)");}
- if(!pdo_fieldexists('zhtc_information','state_8')) {pdo_query("ALTER TABLE ".tablename('zhtc_information')." ADD KEY `state_8` (`state`)");}
- if(!pdo_fieldexists('zhtc_information','store_id_8')) {pdo_query("ALTER TABLE ".tablename('zhtc_information')." ADD KEY `store_id_8` (`store_id`)");}
- if(!pdo_fieldexists('zhtc_information','uniacid_9')) {pdo_query("ALTER TABLE ".tablename('zhtc_information')." ADD KEY `uniacid_9` (`uniacid`)");}
- if(!pdo_fieldexists('zhtc_information','user_id_9')) {pdo_query("ALTER TABLE ".tablename('zhtc_information')." ADD KEY `user_id_9` (`user_id`)");}
- if(!pdo_fieldexists('zhtc_information','type2_id_9')) {pdo_query("ALTER TABLE ".tablename('zhtc_information')." ADD KEY `type2_id_9` (`type2_id`)");}
- if(!pdo_fieldexists('zhtc_information','type_id_9')) {pdo_query("ALTER TABLE ".tablename('zhtc_information')." ADD KEY `type_id_9` (`type_id`)");}
- if(!pdo_fieldexists('zhtc_information','state_9')) {pdo_query("ALTER TABLE ".tablename('zhtc_information')." ADD KEY `state_9` (`state`)");}
- if(!pdo_fieldexists('zhtc_information','store_id_9')) {pdo_query("ALTER TABLE ".tablename('zhtc_information')." ADD KEY `store_id_9` (`store_id`)");}
- if(!pdo_fieldexists('zhtc_information','uniacid_10')) {pdo_query("ALTER TABLE ".tablename('zhtc_information')." ADD KEY `uniacid_10` (`uniacid`)");}
- if(!pdo_fieldexists('zhtc_information','user_id_10')) {pdo_query("ALTER TABLE ".tablename('zhtc_information')." ADD KEY `user_id_10` (`user_id`)");}
- if(!pdo_fieldexists('zhtc_information','type2_id_10')) {pdo_query("ALTER TABLE ".tablename('zhtc_information')." ADD KEY `type2_id_10` (`type2_id`)");}
- if(!pdo_fieldexists('zhtc_information','type_id_10')) {pdo_query("ALTER TABLE ".tablename('zhtc_information')." ADD KEY `type_id_10` (`type_id`)");}
- if(!pdo_fieldexists('zhtc_information','state_10')) {pdo_query("ALTER TABLE ".tablename('zhtc_information')." ADD KEY `state_10` (`state`)");}
- if(!pdo_fieldexists('zhtc_information','store_id_10')) {pdo_query("ALTER TABLE ".tablename('zhtc_information')." ADD KEY `store_id_10` (`store_id`)");}
- if(!pdo_fieldexists('zhtc_information','uniacid_11')) {pdo_query("ALTER TABLE ".tablename('zhtc_information')." ADD KEY `uniacid_11` (`uniacid`)");}
- if(!pdo_fieldexists('zhtc_information','user_id_11')) {pdo_query("ALTER TABLE ".tablename('zhtc_information')." ADD KEY `user_id_11` (`user_id`)");}
- pdo_query("CREATE TABLE IF NOT EXISTS `ims_zhtc_integral` (
- `id` int(11) unsigned NOT NULL AUTO_INCREMENT,
- `user_id` int(11) NOT NULL COMMENT '用户id',
- `score` int(11) NOT NULL COMMENT '分数',
- `type` int(4) NOT NULL COMMENT '1加,2减',
- `order_id` int(11) NOT NULL COMMENT '订单id',
- `cerated_time` datetime NOT NULL COMMENT '创建时间',
- `uniacid` varchar(50) NOT NULL,
- `note` varchar(20) NOT NULL COMMENT '备注',
- `tid` int(11) NOT NULL,
- PRIMARY KEY (`id`)
- ) ENGINE=InnoDB AUTO_INCREMENT=1992 DEFAULT CHARSET=utf8;
- ");
- if(!pdo_fieldexists('zhtc_integral','id')) {pdo_query("ALTER TABLE ".tablename('zhtc_integral')." ADD
- `id` int(11) unsigned NOT NULL AUTO_INCREMENT");}
- if(!pdo_fieldexists('zhtc_integral','user_id')) {pdo_query("ALTER TABLE ".tablename('zhtc_integral')." ADD `user_id` int(11) NOT NULL COMMENT '用户id'");}
- if(!pdo_fieldexists('zhtc_integral','score')) {pdo_query("ALTER TABLE ".tablename('zhtc_integral')." ADD `score` int(11) NOT NULL COMMENT '分数'");}
- if(!pdo_fieldexists('zhtc_integral','type')) {pdo_query("ALTER TABLE ".tablename('zhtc_integral')." ADD `type` int(4) NOT NULL COMMENT '1加,2减'");}
- if(!pdo_fieldexists('zhtc_integral','order_id')) {pdo_query("ALTER TABLE ".tablename('zhtc_integral')." ADD `order_id` int(11) NOT NULL COMMENT '订单id'");}
- if(!pdo_fieldexists('zhtc_integral','cerated_time')) {pdo_query("ALTER TABLE ".tablename('zhtc_integral')." ADD `cerated_time` datetime NOT NULL COMMENT '创建时间'");}
- if(!pdo_fieldexists('zhtc_integral','uniacid')) {pdo_query("ALTER TABLE ".tablename('zhtc_integral')." ADD `uniacid` varchar(50) NOT NULL");}
- if(!pdo_fieldexists('zhtc_integral','note')) {pdo_query("ALTER TABLE ".tablename('zhtc_integral')." ADD `note` varchar(20) NOT NULL COMMENT '备注'");}
- if(!pdo_fieldexists('zhtc_integral','tid')) {pdo_query("ALTER TABLE ".tablename('zhtc_integral')." ADD `tid` int(11) NOT NULL");}
- pdo_query("CREATE TABLE IF NOT EXISTS `ims_zhtc_jfgoods` (
- `id` int(11) unsigned NOT NULL AUTO_INCREMENT,
- `name` varchar(50) NOT NULL COMMENT '名称',
- `img` varchar(100) NOT NULL,
- `money` int(11) NOT NULL COMMENT '价格',
- `type_id` int(11) NOT NULL COMMENT '分类id',
- `goods_details` text NOT NULL,
- `process_details` text NOT NULL,
- `attention_details` text NOT NULL,
- `number` int(11) NOT NULL COMMENT '数量',
- `time` varchar(50) NOT NULL COMMENT '期限',
- `is_open` int(11) NOT NULL COMMENT '1.开启2关闭',
- `type` int(11) NOT NULL COMMENT '1.余额2.实物',
- `num` int(11) NOT NULL COMMENT '排序',
- `uniacid` int(11) NOT NULL,
- `hb_moeny` decimal(10,2) NOT NULL,
- PRIMARY KEY (`id`)
- ) ENGINE=InnoDB AUTO_INCREMENT=3 DEFAULT CHARSET=utf8;
- ");
- if(!pdo_fieldexists('zhtc_jfgoods','id')) {pdo_query("ALTER TABLE ".tablename('zhtc_jfgoods')." ADD
- `id` int(11) unsigned NOT NULL AUTO_INCREMENT");}
- if(!pdo_fieldexists('zhtc_jfgoods','name')) {pdo_query("ALTER TABLE ".tablename('zhtc_jfgoods')." ADD `name` varchar(50) NOT NULL COMMENT '名称'");}
- if(!pdo_fieldexists('zhtc_jfgoods','img')) {pdo_query("ALTER TABLE ".tablename('zhtc_jfgoods')." ADD `img` varchar(100) NOT NULL");}
- if(!pdo_fieldexists('zhtc_jfgoods','money')) {pdo_query("ALTER TABLE ".tablename('zhtc_jfgoods')." ADD `money` int(11) NOT NULL COMMENT '价格'");}
- if(!pdo_fieldexists('zhtc_jfgoods','type_id')) {pdo_query("ALTER TABLE ".tablename('zhtc_jfgoods')." ADD `type_id` int(11) NOT NULL COMMENT '分类id'");}
- if(!pdo_fieldexists('zhtc_jfgoods','goods_details')) {pdo_query("ALTER TABLE ".tablename('zhtc_jfgoods')." ADD `goods_details` text NOT NULL");}
- if(!pdo_fieldexists('zhtc_jfgoods','process_details')) {pdo_query("ALTER TABLE ".tablename('zhtc_jfgoods')." ADD `process_details` text NOT NULL");}
- if(!pdo_fieldexists('zhtc_jfgoods','attention_details')) {pdo_query("ALTER TABLE ".tablename('zhtc_jfgoods')." ADD `attention_details` text NOT NULL");}
- if(!pdo_fieldexists('zhtc_jfgoods','number')) {pdo_query("ALTER TABLE ".tablename('zhtc_jfgoods')." ADD `number` int(11) NOT NULL COMMENT '数量'");}
- if(!pdo_fieldexists('zhtc_jfgoods','time')) {pdo_query("ALTER TABLE ".tablename('zhtc_jfgoods')." ADD `time` varchar(50) NOT NULL COMMENT '期限'");}
- if(!pdo_fieldexists('zhtc_jfgoods','is_open')) {pdo_query("ALTER TABLE ".tablename('zhtc_jfgoods')." ADD `is_open` int(11) NOT NULL COMMENT '1.开启2关闭'");}
- if(!pdo_fieldexists('zhtc_jfgoods','type')) {pdo_query("ALTER TABLE ".tablename('zhtc_jfgoods')." ADD `type` int(11) NOT NULL COMMENT '1.余额2.实物'");}
- if(!pdo_fieldexists('zhtc_jfgoods','num')) {pdo_query("ALTER TABLE ".tablename('zhtc_jfgoods')." ADD `num` int(11) NOT NULL COMMENT '排序'");}
- if(!pdo_fieldexists('zhtc_jfgoods','uniacid')) {pdo_query("ALTER TABLE ".tablename('zhtc_jfgoods')." ADD `uniacid` int(11) NOT NULL");}
- if(!pdo_fieldexists('zhtc_jfgoods','hb_moeny')) {pdo_query("ALTER TABLE ".tablename('zhtc_jfgoods')." ADD `hb_moeny` decimal(10,2) NOT NULL");}
- pdo_query("CREATE TABLE IF NOT EXISTS `ims_zhtc_jfrecord` (
- `id` int(11) unsigned NOT NULL AUTO_INCREMENT,
- `user_id` int(11) NOT NULL COMMENT '用户id',
- `good_id` int(11) NOT NULL COMMENT '商品id',
- `time` varchar(20) NOT NULL COMMENT '兑换时间',
- `user_name` varchar(20) NOT NULL COMMENT '用户地址',
- `user_tel` varchar(20) NOT NULL COMMENT '用户电话',
- `address` varchar(200) NOT NULL COMMENT '地址',
- `note` varchar(20) NOT NULL,
- `integral` int(11) NOT NULL COMMENT '积分',
- `good_name` varchar(50) NOT NULL COMMENT '商品名称',
- `good_img` varchar(100) NOT NULL,
- `state` int(11) NOT NULL DEFAULT '1',
- PRIMARY KEY (`id`)
- ) ENGINE=InnoDB AUTO_INCREMENT=4 DEFAULT CHARSET=utf8;
- ");
- if(!pdo_fieldexists('zhtc_jfrecord','id')) {pdo_query("ALTER TABLE ".tablename('zhtc_jfrecord')." ADD
- `id` int(11) unsigned NOT NULL AUTO_INCREMENT");}
- if(!pdo_fieldexists('zhtc_jfrecord','user_id')) {pdo_query("ALTER TABLE ".tablename('zhtc_jfrecord')." ADD `user_id` int(11) NOT NULL COMMENT '用户id'");}
- if(!pdo_fieldexists('zhtc_jfrecord','good_id')) {pdo_query("ALTER TABLE ".tablename('zhtc_jfrecord')." ADD `good_id` int(11) NOT NULL COMMENT '商品id'");}
- if(!pdo_fieldexists('zhtc_jfrecord','time')) {pdo_query("ALTER TABLE ".tablename('zhtc_jfrecord')." ADD `time` varchar(20) NOT NULL COMMENT '兑换时间'");}
- if(!pdo_fieldexists('zhtc_jfrecord','user_name')) {pdo_query("ALTER TABLE ".tablename('zhtc_jfrecord')." ADD `user_name` varchar(20) NOT NULL COMMENT '用户地址'");}
- if(!pdo_fieldexists('zhtc_jfrecord','user_tel')) {pdo_query("ALTER TABLE ".tablename('zhtc_jfrecord')." ADD `user_tel` varchar(20) NOT NULL COMMENT '用户电话'");}
- if(!pdo_fieldexists('zhtc_jfrecord','address')) {pdo_query("ALTER TABLE ".tablename('zhtc_jfrecord')." ADD `address` varchar(200) NOT NULL COMMENT '地址'");}
- if(!pdo_fieldexists('zhtc_jfrecord','note')) {pdo_query("ALTER TABLE ".tablename('zhtc_jfrecord')." ADD `note` varchar(20) NOT NULL");}
- if(!pdo_fieldexists('zhtc_jfrecord','integral')) {pdo_query("ALTER TABLE ".tablename('zhtc_jfrecord')." ADD `integral` int(11) NOT NULL COMMENT '积分'");}
- if(!pdo_fieldexists('zhtc_jfrecord','good_name')) {pdo_query("ALTER TABLE ".tablename('zhtc_jfrecord')." ADD `good_name` varchar(50) NOT NULL COMMENT '商品名称'");}
- if(!pdo_fieldexists('zhtc_jfrecord','good_img')) {pdo_query("ALTER TABLE ".tablename('zhtc_jfrecord')." ADD `good_img` varchar(100) NOT NULL");}
- if(!pdo_fieldexists('zhtc_jfrecord','state')) {pdo_query("ALTER TABLE ".tablename('zhtc_jfrecord')." ADD `state` int(11) NOT NULL DEFAULT '1'");}
- pdo_query("CREATE TABLE IF NOT EXISTS `ims_zhtc_jftype` (
- `id` int(11) unsigned NOT NULL AUTO_INCREMENT,
- `name` varchar(20) NOT NULL,
- `img` varchar(100) NOT NULL,
- `num` int(11) NOT NULL,
- `uniacid` int(11) NOT NULL,
- PRIMARY KEY (`id`)
- ) ENGINE=InnoDB AUTO_INCREMENT=5 DEFAULT CHARSET=utf8;
- ");
- if(!pdo_fieldexists('zhtc_jftype','id')) {pdo_query("ALTER TABLE ".tablename('zhtc_jftype')." ADD
- `id` int(11) unsigned NOT NULL AUTO_INCREMENT");}
- if(!pdo_fieldexists('zhtc_jftype','name')) {pdo_query("ALTER TABLE ".tablename('zhtc_jftype')." ADD `name` varchar(20) NOT NULL");}
- if(!pdo_fieldexists('zhtc_jftype','img')) {pdo_query("ALTER TABLE ".tablename('zhtc_jftype')." ADD `img` varchar(100) NOT NULL");}
- if(!pdo_fieldexists('zhtc_jftype','num')) {pdo_query("ALTER TABLE ".tablename('zhtc_jftype')." ADD `num` int(11) NOT NULL");}
- if(!pdo_fieldexists('zhtc_jftype','uniacid')) {pdo_query("ALTER TABLE ".tablename('zhtc_jftype')." ADD `uniacid` int(11) NOT NULL");}
- pdo_query("CREATE TABLE IF NOT EXISTS `ims_zhtc_joinlist` (
- `id` int(11) unsigned NOT NULL AUTO_INCREMENT,
- `user_id` int(11) NOT NULL,
- `act_id` int(11) NOT NULL,
- `time` varchar(20) NOT NULL,
- `money` decimal(10,2) NOT NULL,
- `code` varchar(100) NOT NULL,
- `form_id` varchar(100) NOT NULL,
- `state` int(11) NOT NULL COMMENT '1.待支付2.已支付3.已通过4.已核销5.已拒绝',
- `uniacid` int(11) NOT NULL,
- `user_name` varchar(20) NOT NULL,
- `user_tel` varchar(20) NOT NULL,
- `hx_time` varchar(20) NOT NULL,
- PRIMARY KEY (`id`)
- ) ENGINE=InnoDB AUTO_INCREMENT=19 DEFAULT CHARSET=utf8;
- ");
- if(!pdo_fieldexists('zhtc_joinlist','id')) {pdo_query("ALTER TABLE ".tablename('zhtc_joinlist')." ADD
- `id` int(11) unsigned NOT NULL AUTO_INCREMENT");}
- if(!pdo_fieldexists('zhtc_joinlist','user_id')) {pdo_query("ALTER TABLE ".tablename('zhtc_joinlist')." ADD `user_id` int(11) NOT NULL");}
- if(!pdo_fieldexists('zhtc_joinlist','act_id')) {pdo_query("ALTER TABLE ".tablename('zhtc_joinlist')." ADD `act_id` int(11) NOT NULL");}
- if(!pdo_fieldexists('zhtc_joinlist','time')) {pdo_query("ALTER TABLE ".tablename('zhtc_joinlist')." ADD `time` varchar(20) NOT NULL");}
- if(!pdo_fieldexists('zhtc_joinlist','money')) {pdo_query("ALTER TABLE ".tablename('zhtc_joinlist')." ADD `money` decimal(10,2) NOT NULL");}
- if(!pdo_fieldexists('zhtc_joinlist','code')) {pdo_query("ALTER TABLE ".tablename('zhtc_joinlist')." ADD `code` varchar(100) NOT NULL");}
- if(!pdo_fieldexists('zhtc_joinlist','form_id')) {pdo_query("ALTER TABLE ".tablename('zhtc_joinlist')." ADD `form_id` varchar(100) NOT NULL");}
- if(!pdo_fieldexists('zhtc_joinlist','state')) {pdo_query("ALTER TABLE ".tablename('zhtc_joinlist')." ADD `state` int(11) NOT NULL COMMENT '1.待支付2.已支付3.已通过4.已核销5.已拒绝'");}
- if(!pdo_fieldexists('zhtc_joinlist','uniacid')) {pdo_query("ALTER TABLE ".tablename('zhtc_joinlist')." ADD `uniacid` int(11) NOT NULL");}
- if(!pdo_fieldexists('zhtc_joinlist','user_name')) {pdo_query("ALTER TABLE ".tablename('zhtc_joinlist')." ADD `user_name` varchar(20) NOT NULL");}
- if(!pdo_fieldexists('zhtc_joinlist','user_tel')) {pdo_query("ALTER TABLE ".tablename('zhtc_joinlist')." ADD `user_tel` varchar(20) NOT NULL");}
- if(!pdo_fieldexists('zhtc_joinlist','hx_time')) {pdo_query("ALTER TABLE ".tablename('zhtc_joinlist')." ADD `hx_time` varchar(20) NOT NULL");}
- pdo_query("CREATE TABLE IF NOT EXISTS `ims_zhtc_label` (
- `id` int(11) NOT NULL AUTO_INCREMENT,
- `label_name` varchar(20) NOT NULL,
- `type2_id` int(11) NOT NULL,
- PRIMARY KEY (`id`)
- ) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8;
- ");
- if(!pdo_fieldexists('zhtc_label','id')) {pdo_query("ALTER TABLE ".tablename('zhtc_label')." ADD
- `id` int(11) NOT NULL AUTO_INCREMENT");}
- if(!pdo_fieldexists('zhtc_label','label_name')) {pdo_query("ALTER TABLE ".tablename('zhtc_label')." ADD `label_name` varchar(20) NOT NULL");}
- if(!pdo_fieldexists('zhtc_label','type2_id')) {pdo_query("ALTER TABLE ".tablename('zhtc_label')." ADD `type2_id` int(11) NOT NULL");}
- pdo_query("CREATE TABLE IF NOT EXISTS `ims_zhtc_like` (
- `id` int(11) NOT NULL AUTO_INCREMENT,
- `information_id` int(11) NOT NULL COMMENT '帖子id',
- `user_id` int(11) NOT NULL COMMENT '用户id',
- `zx_id` int(11) NOT NULL,
- PRIMARY KEY (`id`)
- ) ENGINE=InnoDB AUTO_INCREMENT=501 DEFAULT CHARSET=utf8;
- ");
- if(!pdo_fieldexists('zhtc_like','id')) {pdo_query("ALTER TABLE ".tablename('zhtc_like')." ADD
- `id` int(11) NOT NULL AUTO_INCREMENT");}
- if(!pdo_fieldexists('zhtc_like','information_id')) {pdo_query("ALTER TABLE ".tablename('zhtc_like')." ADD `information_id` int(11) NOT NULL COMMENT '帖子id'");}
- if(!pdo_fieldexists('zhtc_like','user_id')) {pdo_query("ALTER TABLE ".tablename('zhtc_like')." ADD `user_id` int(11) NOT NULL COMMENT '用户id'");}
- if(!pdo_fieldexists('zhtc_like','zx_id')) {pdo_query("ALTER TABLE ".tablename('zhtc_like')." ADD `zx_id` int(11) NOT NULL");}
- pdo_query("CREATE TABLE IF NOT EXISTS `ims_zhtc_llz` (
- `id` int(11) unsigned NOT NULL AUTO_INCREMENT,
- `name` varchar(20) NOT NULL,
- `type` int(11) NOT NULL,
- `status` int(11) NOT NULL,
- `src` varchar(100) NOT NULL,
- `cityname` varchar(20) NOT NULL,
- `uniacid` int(11) NOT NULL,
- PRIMARY KEY (`id`)
- ) ENGINE=InnoDB AUTO_INCREMENT=5 DEFAULT CHARSET=utf8;
- ");
- if(!pdo_fieldexists('zhtc_llz','id')) {pdo_query("ALTER TABLE ".tablename('zhtc_llz')." ADD
- `id` int(11) unsigned NOT NULL AUTO_INCREMENT");}
- if(!pdo_fieldexists('zhtc_llz','name')) {pdo_query("ALTER TABLE ".tablename('zhtc_llz')." ADD `name` varchar(20) NOT NULL");}
- if(!pdo_fieldexists('zhtc_llz','type')) {pdo_query("ALTER TABLE ".tablename('zhtc_llz')." ADD `type` int(11) NOT NULL");}
- if(!pdo_fieldexists('zhtc_llz','status')) {pdo_query("ALTER TABLE ".tablename('zhtc_llz')." ADD `status` int(11) NOT NULL");}
- if(!pdo_fieldexists('zhtc_llz','src')) {pdo_query("ALTER TABLE ".tablename('zhtc_llz')." ADD `src` varchar(100) NOT NULL");}
- if(!pdo_fieldexists('zhtc_llz','cityname')) {pdo_query("ALTER TABLE ".tablename('zhtc_llz')." ADD `cityname` varchar(20) NOT NULL");}
- if(!pdo_fieldexists('zhtc_llz','uniacid')) {pdo_query("ALTER TABLE ".tablename('zhtc_llz')." ADD `uniacid` int(11) NOT NULL");}
- pdo_query("CREATE TABLE IF NOT EXISTS `ims_zhtc_message` (
- `id` int(11) unsigned NOT NULL AUTO_INCREMENT,
- `note` varchar(100) NOT NULL,
- `source` varchar(100) NOT NULL,
- `content` varchar(100) NOT NULL,
- `time` varchar(100) NOT NULL,
- `fs_time` varchar(20) NOT NULL,
- `uniacid` int(11) NOT NULL,
- `src` varchar(100) NOT NULL,
- PRIMARY KEY (`id`)
- ) ENGINE=InnoDB AUTO_INCREMENT=4 DEFAULT CHARSET=utf8;
- ");
- if(!pdo_fieldexists('zhtc_message','id')) {pdo_query("ALTER TABLE ".tablename('zhtc_message')." ADD
- `id` int(11) unsigned NOT NULL AUTO_INCREMENT");}
- if(!pdo_fieldexists('zhtc_message','note')) {pdo_query("ALTER TABLE ".tablename('zhtc_message')." ADD `note` varchar(100) NOT NULL");}
- if(!pdo_fieldexists('zhtc_message','source')) {pdo_query("ALTER TABLE ".tablename('zhtc_message')." ADD `source` varchar(100) NOT NULL");}
- if(!pdo_fieldexists('zhtc_message','content')) {pdo_query("ALTER TABLE ".tablename('zhtc_message')." ADD `content` varchar(100) NOT NULL");}
- if(!pdo_fieldexists('zhtc_message','time')) {pdo_query("ALTER TABLE ".tablename('zhtc_message')." ADD `time` varchar(100) NOT NULL");}
- if(!pdo_fieldexists('zhtc_message','fs_time')) {pdo_query("ALTER TABLE ".tablename('zhtc_message')." ADD `fs_time` varchar(20) NOT NULL");}
- if(!pdo_fieldexists('zhtc_message','uniacid')) {pdo_query("ALTER TABLE ".tablename('zhtc_message')." ADD `uniacid` int(11) NOT NULL");}
- if(!pdo_fieldexists('zhtc_message','src')) {pdo_query("ALTER TABLE ".tablename('zhtc_message')." ADD `src` varchar(100) NOT NULL");}
- pdo_query("CREATE TABLE IF NOT EXISTS `ims_zhtc_mylabel` (
- `id` int(11) NOT NULL AUTO_INCREMENT,
- `label_id` int(11) NOT NULL,
- `information_id` int(11) NOT NULL,
- PRIMARY KEY (`id`)
- ) ENGINE=InnoDB DEFAULT CHARSET=utf8;
- ");
- if(!pdo_fieldexists('zhtc_mylabel','id')) {pdo_query("ALTER TABLE ".tablename('zhtc_mylabel')." ADD
- `id` int(11) NOT NULL AUTO_INCREMENT");}
- if(!pdo_fieldexists('zhtc_mylabel','label_id')) {pdo_query("ALTER TABLE ".tablename('zhtc_mylabel')." ADD `label_id` int(11) NOT NULL");}
- if(!pdo_fieldexists('zhtc_mylabel','information_id')) {pdo_query("ALTER TABLE ".tablename('zhtc_mylabel')." ADD `information_id` int(11) NOT NULL");}
- pdo_query("CREATE TABLE IF NOT EXISTS `ims_zhtc_nav` (
- `id` int(11) NOT NULL AUTO_INCREMENT,
- `title` varchar(50) NOT NULL COMMENT '名称',
- `logo` varchar(200) NOT NULL COMMENT '图标',
- `status` int(11) NOT NULL COMMENT '1.开启 2.关闭',
- `src` varchar(100) NOT NULL COMMENT '内部链接',
- `orderby` int(11) NOT NULL COMMENT '排序',
- `xcx_name` varchar(20) NOT NULL COMMENT '小程序名称',
- `appid` varchar(20) NOT NULL COMMENT 'APPID',
- `uniacid` int(11) NOT NULL COMMENT '小程序id',
- `wb_src` varchar(300) NOT NULL COMMENT '外部链接',
- `state` int(4) NOT NULL DEFAULT '1' COMMENT '1内部,2外部,3跳转',
- PRIMARY KEY (`id`)
- ) ENGINE=InnoDB AUTO_INCREMENT=76 DEFAULT CHARSET=utf8;
- ");
- if(!pdo_fieldexists('zhtc_nav','id')) {pdo_query("ALTER TABLE ".tablename('zhtc_nav')." ADD
- `id` int(11) NOT NULL AUTO_INCREMENT");}
- if(!pdo_fieldexists('zhtc_nav','title')) {pdo_query("ALTER TABLE ".tablename('zhtc_nav')." ADD `title` varchar(50) NOT NULL COMMENT '名称'");}
- if(!pdo_fieldexists('zhtc_nav','logo')) {pdo_query("ALTER TABLE ".tablename('zhtc_nav')." ADD `logo` varchar(200) NOT NULL COMMENT '图标'");}
- if(!pdo_fieldexists('zhtc_nav','status')) {pdo_query("ALTER TABLE ".tablename('zhtc_nav')." ADD `status` int(11) NOT NULL COMMENT '1.开启 2.关闭'");}
- if(!pdo_fieldexists('zhtc_nav','src')) {pdo_query("ALTER TABLE ".tablename('zhtc_nav')." ADD `src` varchar(100) NOT NULL COMMENT '内部链接'");}
- if(!pdo_fieldexists('zhtc_nav','orderby')) {pdo_query("ALTER TABLE ".tablename('zhtc_nav')." ADD `orderby` int(11) NOT NULL COMMENT '排序'");}
- if(!pdo_fieldexists('zhtc_nav','xcx_name')) {pdo_query("ALTER TABLE ".tablename('zhtc_nav')." ADD `xcx_name` varchar(20) NOT NULL COMMENT '小程序名称'");}
- if(!pdo_fieldexists('zhtc_nav','appid')) {pdo_query("ALTER TABLE ".tablename('zhtc_nav')." ADD `appid` varchar(20) NOT NULL COMMENT 'APPID'");}
- if(!pdo_fieldexists('zhtc_nav','uniacid')) {pdo_query("ALTER TABLE ".tablename('zhtc_nav')." ADD `uniacid` int(11) NOT NULL COMMENT '小程序id'");}
- if(!pdo_fieldexists('zhtc_nav','wb_src')) {pdo_query("ALTER TABLE ".tablename('zhtc_nav')." ADD `wb_src` varchar(300) NOT NULL COMMENT '外部链接'");}
- if(!pdo_fieldexists('zhtc_nav','state')) {pdo_query("ALTER TABLE ".tablename('zhtc_nav')." ADD `state` int(4) NOT NULL DEFAULT '1' COMMENT '1内部,2外部,3跳转'");}
- pdo_query("CREATE TABLE IF NOT EXISTS `ims_zhtc_news` (
- `id` int(11) NOT NULL AUTO_INCREMENT,
- `title` varchar(50) NOT NULL COMMENT '公告标题',
- `details` text NOT NULL COMMENT '公告详情',
- `num` int(11) NOT NULL COMMENT '排序',
- `uniacid` int(11) NOT NULL,
- `time` int(11) NOT NULL,
- `img` varchar(100) NOT NULL,
- `state` int(11) NOT NULL,
- `type` int(11) NOT NULL,
- `cityname` varchar(50) NOT NULL,
- PRIMARY KEY (`id`)
- ) ENGINE=InnoDB AUTO_INCREMENT=18 DEFAULT CHARSET=utf8;
- ");
- if(!pdo_fieldexists('zhtc_news','id')) {pdo_query("ALTER TABLE ".tablename('zhtc_news')." ADD
- `id` int(11) NOT NULL AUTO_INCREMENT");}
- if(!pdo_fieldexists('zhtc_news','title')) {pdo_query("ALTER TABLE ".tablename('zhtc_news')." ADD `title` varchar(50) NOT NULL COMMENT '公告标题'");}
- if(!pdo_fieldexists('zhtc_news','details')) {pdo_query("ALTER TABLE ".tablename('zhtc_news')." ADD `details` text NOT NULL COMMENT '公告详情'");}
- if(!pdo_fieldexists('zhtc_news','num')) {pdo_query("ALTER TABLE ".tablename('zhtc_news')." ADD `num` int(11) NOT NULL COMMENT '排序'");}
- if(!pdo_fieldexists('zhtc_news','uniacid')) {pdo_query("ALTER TABLE ".tablename('zhtc_news')." ADD `uniacid` int(11) NOT NULL");}
- if(!pdo_fieldexists('zhtc_news','time')) {pdo_query("ALTER TABLE ".tablename('zhtc_news')." ADD `time` int(11) NOT NULL");}
- if(!pdo_fieldexists('zhtc_news','img')) {pdo_query("ALTER TABLE ".tablename('zhtc_news')." ADD `img` varchar(100) NOT NULL");}
- if(!pdo_fieldexists('zhtc_news','state')) {pdo_query("ALTER TABLE ".tablename('zhtc_news')." ADD `state` int(11) NOT NULL");}
- if(!pdo_fieldexists('zhtc_news','type')) {pdo_query("ALTER TABLE ".tablename('zhtc_news')." ADD `type` int(11) NOT NULL");}
- if(!pdo_fieldexists('zhtc_news','cityname')) {pdo_query("ALTER TABLE ".tablename('zhtc_news')." ADD `cityname` varchar(50) NOT NULL");}
- pdo_query("CREATE TABLE IF NOT EXISTS `ims_zhtc_order` (
- `id` int(11) NOT NULL AUTO_INCREMENT,
- `user_id` int(11) NOT NULL,
- `store_id` int(11) NOT NULL,
- `money` decimal(10,2) NOT NULL COMMENT '金额',
- `user_name` varchar(20) NOT NULL COMMENT '联系人',
- `address` varchar(200) NOT NULL COMMENT '联系地址',
- `tel` varchar(20) NOT NULL COMMENT '电话',
- `time` int(11) NOT NULL COMMENT '下单时间',
- `pay_time` int(11) NOT NULL,
- `complete_time` int(11) NOT NULL,
- `fh_time` int(11) NOT NULL COMMENT '发货时间',
- `state` int(11) NOT NULL COMMENT '1.待付款 2.待发货3.待确认4.已完成5.退款中6.已退款7.退款拒绝',
- `order_num` varchar(20) NOT NULL COMMENT '订单号',
- `good_id` int(11) NOT NULL,
- `good_name` varchar(100) NOT NULL,
- `good_img` varchar(100) NOT NULL,
- `good_money` decimal(10,2) NOT NULL,
- `out_trade_no` varchar(50) NOT NULL,
- `good_spec` varchar(200) NOT NULL COMMENT '商品规格',
- `del` int(11) NOT NULL COMMENT '用户删除1是 2否 ',
- `del2` int(11) NOT NULL COMMENT '商家删除1.是2.否',
- `uniacid` int(11) NOT NULL,
- `freight` decimal(10,2) NOT NULL,
- `note` varchar(100) NOT NULL,
- `good_num` int(11) NOT NULL,
- `is_zt` int(11) NOT NULL DEFAULT '2',
- `zt_time` varchar(20) NOT NULL,
- `kd_num` varchar(100) NOT NULL,
- `kd_name` varchar(20) NOT NULL,
- PRIMARY KEY (`id`)
- ) ENGINE=InnoDB AUTO_INCREMENT=30 DEFAULT CHARSET=utf8 COMMENT='订单表';
- ");
- if(!pdo_fieldexists('zhtc_order','id')) {pdo_query("ALTER TABLE ".tablename('zhtc_order')." ADD
- `id` int(11) NOT NULL AUTO_INCREMENT");}
- if(!pdo_fieldexists('zhtc_order','user_id')) {pdo_query("ALTER TABLE ".tablename('zhtc_order')." ADD `user_id` int(11) NOT NULL");}
- if(!pdo_fieldexists('zhtc_order','store_id')) {pdo_query("ALTER TABLE ".tablename('zhtc_order')." ADD `store_id` int(11) NOT NULL");}
- if(!pdo_fieldexists('zhtc_order','money')) {pdo_query("ALTER TABLE ".tablename('zhtc_order')." ADD `money` decimal(10,2) NOT NULL COMMENT '金额'");}
- if(!pdo_fieldexists('zhtc_order','user_name')) {pdo_query("ALTER TABLE ".tablename('zhtc_order')." ADD `user_name` varchar(20) NOT NULL COMMENT '联系人'");}
- if(!pdo_fieldexists('zhtc_order','address')) {pdo_query("ALTER TABLE ".tablename('zhtc_order')." ADD `address` varchar(200) NOT NULL COMMENT '联系地址'");}
- if(!pdo_fieldexists('zhtc_order','tel')) {pdo_query("ALTER TABLE ".tablename('zhtc_order')." ADD `tel` varchar(20) NOT NULL COMMENT '电话'");}
- if(!pdo_fieldexists('zhtc_order','time')) {pdo_query("ALTER TABLE ".tablename('zhtc_order')." ADD `time` int(11) NOT NULL COMMENT '下单时间'");}
- if(!pdo_fieldexists('zhtc_order','pay_time')) {pdo_query("ALTER TABLE ".tablename('zhtc_order')." ADD `pay_time` int(11) NOT NULL");}
- if(!pdo_fieldexists('zhtc_order','complete_time')) {pdo_query("ALTER TABLE ".tablename('zhtc_order')." ADD `complete_time` int(11) NOT NULL");}
- if(!pdo_fieldexists('zhtc_order','fh_time')) {pdo_query("ALTER TABLE ".tablename('zhtc_order')." ADD `fh_time` int(11) NOT NULL COMMENT '发货时间'");}
- if(!pdo_fieldexists('zhtc_order','state')) {pdo_query("ALTER TABLE ".tablename('zhtc_order')." ADD `state` int(11) NOT NULL COMMENT '1.待付款 2.待发货3.待确认4.已完成5.退款中6.已退款7.退款拒绝'");}
- if(!pdo_fieldexists('zhtc_order','order_num')) {pdo_query("ALTER TABLE ".tablename('zhtc_order')." ADD `order_num` varchar(20) NOT NULL COMMENT '订单号'");}
- if(!pdo_fieldexists('zhtc_order','good_id')) {pdo_query("ALTER TABLE ".tablename('zhtc_order')." ADD `good_id` int(11) NOT NULL");}
- if(!pdo_fieldexists('zhtc_order','good_name')) {pdo_query("ALTER TABLE ".tablename('zhtc_order')." ADD `good_name` varchar(100) NOT NULL");}
- if(!pdo_fieldexists('zhtc_order','good_img')) {pdo_query("ALTER TABLE ".tablename('zhtc_order')." ADD `good_img` varchar(100) NOT NULL");}
- if(!pdo_fieldexists('zhtc_order','good_money')) {pdo_query("ALTER TABLE ".tablename('zhtc_order')." ADD `good_money` decimal(10,2) NOT NULL");}
- if(!pdo_fieldexists('zhtc_order','out_trade_no')) {pdo_query("ALTER TABLE ".tablename('zhtc_order')." ADD `out_trade_no` varchar(50) NOT NULL");}
- if(!pdo_fieldexists('zhtc_order','good_spec')) {pdo_query("ALTER TABLE ".tablename('zhtc_order')." ADD `good_spec` varchar(200) NOT NULL COMMENT '商品规格'");}
- if(!pdo_fieldexists('zhtc_order','del')) {pdo_query("ALTER TABLE ".tablename('zhtc_order')." ADD `del` int(11) NOT NULL COMMENT '用户删除1是 2否 '");}
- if(!pdo_fieldexists('zhtc_order','del2')) {pdo_query("ALTER TABLE ".tablename('zhtc_order')." ADD `del2` int(11) NOT NULL COMMENT '商家删除1.是2.否'");}
- if(!pdo_fieldexists('zhtc_order','uniacid')) {pdo_query("ALTER TABLE ".tablename('zhtc_order')." ADD `uniacid` int(11) NOT NULL");}
- if(!pdo_fieldexists('zhtc_order','freight')) {pdo_query("ALTER TABLE ".tablename('zhtc_order')." ADD `freight` decimal(10,2) NOT NULL");}
- if(!pdo_fieldexists('zhtc_order','note')) {pdo_query("ALTER TABLE ".tablename('zhtc_order')." ADD `note` varchar(100) NOT NULL");}
- if(!pdo_fieldexists('zhtc_order','good_num')) {pdo_query("ALTER TABLE ".tablename('zhtc_order')." ADD `good_num` int(11) NOT NULL");}
- if(!pdo_fieldexists('zhtc_order','is_zt')) {pdo_query("ALTER TABLE ".tablename('zhtc_order')." ADD `is_zt` int(11) NOT NULL DEFAULT '2'");}
- if(!pdo_fieldexists('zhtc_order','zt_time')) {pdo_query("ALTER TABLE ".tablename('zhtc_order')." ADD `zt_time` varchar(20) NOT NULL");}
- if(!pdo_fieldexists('zhtc_order','kd_num')) {pdo_query("ALTER TABLE ".tablename('zhtc_order')." ADD `kd_num` varchar(100) NOT NULL");}
- if(!pdo_fieldexists('zhtc_order','kd_name')) {pdo_query("ALTER TABLE ".tablename('zhtc_order')." ADD `kd_name` varchar(20) NOT NULL");}
- pdo_query("CREATE TABLE IF NOT EXISTS `ims_zhtc_paylog` (
- `id` int(11) NOT NULL AUTO_INCREMENT,
- `fid` int(11) NOT NULL COMMENT '外键id(商家,帖子,黄页,拼车)',
- `money` decimal(10,2) NOT NULL COMMENT '钱',
- `time` datetime NOT NULL COMMENT '时间',
- `uniacid` varchar(50) NOT NULL COMMENT '50',
- `note` varchar(100) NOT NULL,
- PRIMARY KEY (`id`)
- ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='支付记录表';
- ");
- if(!pdo_fieldexists('zhtc_paylog','id')) {pdo_query("ALTER TABLE ".tablename('zhtc_paylog')." ADD
- `id` int(11) NOT NULL AUTO_INCREMENT");}
- if(!pdo_fieldexists('zhtc_paylog','fid')) {pdo_query("ALTER TABLE ".tablename('zhtc_paylog')." ADD `fid` int(11) NOT NULL COMMENT '外键id(商家,帖子,黄页,拼车)'");}
- if(!pdo_fieldexists('zhtc_paylog','money')) {pdo_query("ALTER TABLE ".tablename('zhtc_paylog')." ADD `money` decimal(10,2) NOT NULL COMMENT '钱'");}
- if(!pdo_fieldexists('zhtc_paylog','time')) {pdo_query("ALTER TABLE ".tablename('zhtc_paylog')." ADD `time` datetime NOT NULL COMMENT '时间'");}
- if(!pdo_fieldexists('zhtc_paylog','uniacid')) {pdo_query("ALTER TABLE ".tablename('zhtc_paylog')." ADD `uniacid` varchar(50) NOT NULL COMMENT '50'");}
- if(!pdo_fieldexists('zhtc_paylog','note')) {pdo_query("ALTER TABLE ".tablename('zhtc_paylog')." ADD `note` varchar(100) NOT NULL");}
- pdo_query("CREATE TABLE IF NOT EXISTS `ims_zhtc_plate` (
- `id` int(11) unsigned NOT NULL AUTO_INCREMENT,
- `type` int(4) NOT NULL,
- `name` varchar(50) COLLATE utf8_unicode_ci NOT NULL COMMENT '名称',
- `time` int(11) NOT NULL,
- `uniacid` int(11) NOT NULL,
- `sort` int(11) NOT NULL COMMENT '排序',
- PRIMARY KEY (`id`)
- ) ENGINE=InnoDB AUTO_INCREMENT=8 DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci COMMENT='首页板块导航';
- ");
- if(!pdo_fieldexists('zhtc_plate','id')) {pdo_query("ALTER TABLE ".tablename('zhtc_plate')." ADD
- `id` int(11) unsigned NOT NULL AUTO_INCREMENT");}
- if(!pdo_fieldexists('zhtc_plate','type')) {pdo_query("ALTER TABLE ".tablename('zhtc_plate')." ADD `type` int(4) NOT NULL");}
- if(!pdo_fieldexists('zhtc_plate','name')) {pdo_query("ALTER TABLE ".tablename('zhtc_plate')." ADD `name` varchar(50) COLLATE utf8_unicode_ci NOT NULL COMMENT '名称'");}
- if(!pdo_fieldexists('zhtc_plate','time')) {pdo_query("ALTER TABLE ".tablename('zhtc_plate')." ADD `time` int(11) NOT NULL");}
- if(!pdo_fieldexists('zhtc_plate','uniacid')) {pdo_query("ALTER TABLE ".tablename('zhtc_plate')." ADD `uniacid` int(11) NOT NULL");}
- if(!pdo_fieldexists('zhtc_plate','sort')) {pdo_query("ALTER TABLE ".tablename('zhtc_plate')." ADD `sort` int(11) NOT NULL COMMENT '排序'");}
- pdo_query("CREATE TABLE IF NOT EXISTS `ims_zhtc_qbmx` (
- `id` int(11) unsigned NOT NULL AUTO_INCREMENT,
- `money` decimal(10,2) NOT NULL,
- `type` int(11) NOT NULL,
- `note` varchar(20) NOT NULL,
- `time` varchar(20) NOT NULL,
- `user_id` int(11) NOT NULL,
- PRIMARY KEY (`id`)
- ) ENGINE=InnoDB AUTO_INCREMENT=20 DEFAULT CHARSET=utf8;
- ");
- if(!pdo_fieldexists('zhtc_qbmx','id')) {pdo_query("ALTER TABLE ".tablename('zhtc_qbmx')." ADD
- `id` int(11) unsigned NOT NULL AUTO_INCREMENT");}
- if(!pdo_fieldexists('zhtc_qbmx','money')) {pdo_query("ALTER TABLE ".tablename('zhtc_qbmx')." ADD `money` decimal(10,2) NOT NULL");}
- if(!pdo_fieldexists('zhtc_qbmx','type')) {pdo_query("ALTER TABLE ".tablename('zhtc_qbmx')." ADD `type` int(11) NOT NULL");}
- if(!pdo_fieldexists('zhtc_qbmx','note')) {pdo_query("ALTER TABLE ".tablename('zhtc_qbmx')." ADD `note` varchar(20) NOT NULL");}
- if(!pdo_fieldexists('zhtc_qbmx','time')) {pdo_query("ALTER TABLE ".tablename('zhtc_qbmx')." ADD `time` varchar(20) NOT NULL");}
- if(!pdo_fieldexists('zhtc_qbmx','user_id')) {pdo_query("ALTER TABLE ".tablename('zhtc_qbmx')." ADD `user_id` int(11) NOT NULL");}
- pdo_query("CREATE TABLE IF NOT EXISTS `ims_zhtc_qggoods` (
- `id` int(11) unsigned NOT NULL AUTO_INCREMENT,
- `name` varchar(20) NOT NULL,
- `logo` varchar(200) NOT NULL,
- `price` decimal(10,1) NOT NULL COMMENT '原价',
- `money` decimal(10,1) NOT NULL COMMENT '现价',
- `number` int(11) NOT NULL COMMENT '数量',
- `surplus` int(11) NOT NULL COMMENT '剩余',
- `start_time` varchar(20) NOT NULL COMMENT '开始时间',
- `end_time` varchar(20) NOT NULL COMMENT '结束时间',
- `consumption_time` int(11) NOT NULL COMMENT '消费截止时间',
- `details` text NOT NULL,
- `store_id` int(11) NOT NULL,
- `uniacid` int(11) NOT NULL,
- `state` int(11) NOT NULL DEFAULT '1' COMMENT '1.上架2.下架',
- `state2` int(11) NOT NULL DEFAULT '1',
- `is_tg` int(11) NOT NULL DEFAULT '1',
- `type_id` int(11) NOT NULL,
- `img` text NOT NULL,
- `num` int(11) NOT NULL,
- `hot` int(11) NOT NULL,
- `content` varchar(100) NOT NULL,
- `details_img` text NOT NULL,
- `time` varchar(20) NOT NULL,
- `cityname` varchar(20) NOT NULL,
- PRIMARY KEY (`id`)
- ) ENGINE=InnoDB DEFAULT CHARSET=utf8;
- ");
- if(!pdo_fieldexists('zhtc_qggoods','id')) {pdo_query("ALTER TABLE ".tablename('zhtc_qggoods')." ADD
- `id` int(11) unsigned NOT NULL AUTO_INCREMENT");}
- if(!pdo_fieldexists('zhtc_qggoods','name')) {pdo_query("ALTER TABLE ".tablename('zhtc_qggoods')." ADD `name` varchar(20) NOT NULL");}
- if(!pdo_fieldexists('zhtc_qggoods','logo')) {pdo_query("ALTER TABLE ".tablename('zhtc_qggoods')." ADD `logo` varchar(200) NOT NULL");}
- if(!pdo_fieldexists('zhtc_qggoods','price')) {pdo_query("ALTER TABLE ".tablename('zhtc_qggoods')." ADD `price` decimal(10,1) NOT NULL COMMENT '原价'");}
- if(!pdo_fieldexists('zhtc_qggoods','money')) {pdo_query("ALTER TABLE ".tablename('zhtc_qggoods')." ADD `money` decimal(10,1) NOT NULL COMMENT '现价'");}
- if(!pdo_fieldexists('zhtc_qggoods','number')) {pdo_query("ALTER TABLE ".tablename('zhtc_qggoods')." ADD `number` int(11) NOT NULL COMMENT '数量'");}
- if(!pdo_fieldexists('zhtc_qggoods','surplus')) {pdo_query("ALTER TABLE ".tablename('zhtc_qggoods')." ADD `surplus` int(11) NOT NULL COMMENT '剩余'");}
- if(!pdo_fieldexists('zhtc_qggoods','start_time')) {pdo_query("ALTER TABLE ".tablename('zhtc_qggoods')." ADD `start_time` varchar(20) NOT NULL COMMENT '开始时间'");}
- if(!pdo_fieldexists('zhtc_qggoods','end_time')) {pdo_query("ALTER TABLE ".tablename('zhtc_qggoods')." ADD `end_time` varchar(20) NOT NULL COMMENT '结束时间'");}
- if(!pdo_fieldexists('zhtc_qggoods','consumption_time')) {pdo_query("ALTER TABLE ".tablename('zhtc_qggoods')." ADD `consumption_time` int(11) NOT NULL COMMENT '消费截止时间'");}
- if(!pdo_fieldexists('zhtc_qggoods','details')) {pdo_query("ALTER TABLE ".tablename('zhtc_qggoods')." ADD `details` text NOT NULL");}
- if(!pdo_fieldexists('zhtc_qggoods','store_id')) {pdo_query("ALTER TABLE ".tablename('zhtc_qggoods')." ADD `store_id` int(11) NOT NULL");}
- if(!pdo_fieldexists('zhtc_qggoods','uniacid')) {pdo_query("ALTER TABLE ".tablename('zhtc_qggoods')." ADD `uniacid` int(11) NOT NULL");}
- if(!pdo_fieldexists('zhtc_qggoods','state')) {pdo_query("ALTER TABLE ".tablename('zhtc_qggoods')." ADD `state` int(11) NOT NULL DEFAULT '1' COMMENT '1.上架2.下架'");}
- if(!pdo_fieldexists('zhtc_qggoods','state2')) {pdo_query("ALTER TABLE ".tablename('zhtc_qggoods')." ADD `state2` int(11) NOT NULL DEFAULT '1'");}
- if(!pdo_fieldexists('zhtc_qggoods','is_tg')) {pdo_query("ALTER TABLE ".tablename('zhtc_qggoods')." ADD `is_tg` int(11) NOT NULL DEFAULT '1'");}
- if(!pdo_fieldexists('zhtc_qggoods','type_id')) {pdo_query("ALTER TABLE ".tablename('zhtc_qggoods')." ADD `type_id` int(11) NOT NULL");}
- if(!pdo_fieldexists('zhtc_qggoods','img')) {pdo_query("ALTER TABLE ".tablename('zhtc_qggoods')." ADD `img` text NOT NULL");}
- if(!pdo_fieldexists('zhtc_qggoods','num')) {pdo_query("ALTER TABLE ".tablename('zhtc_qggoods')." ADD `num` int(11) NOT NULL");}
- if(!pdo_fieldexists('zhtc_qggoods','hot')) {pdo_query("ALTER TABLE ".tablename('zhtc_qggoods')." ADD `hot` int(11) NOT NULL");}
- if(!pdo_fieldexists('zhtc_qggoods','content')) {pdo_query("ALTER TABLE ".tablename('zhtc_qggoods')." ADD `content` varchar(100) NOT NULL");}
- if(!pdo_fieldexists('zhtc_qggoods','details_img')) {pdo_query("ALTER TABLE ".tablename('zhtc_qggoods')." ADD `details_img` text NOT NULL");}
- if(!pdo_fieldexists('zhtc_qggoods','time')) {pdo_query("ALTER TABLE ".tablename('zhtc_qggoods')." ADD `time` varchar(20) NOT NULL");}
- if(!pdo_fieldexists('zhtc_qggoods','cityname')) {pdo_query("ALTER TABLE ".tablename('zhtc_qggoods')." ADD `cityname` varchar(20) NOT NULL");}
- pdo_query("CREATE TABLE IF NOT EXISTS `ims_zhtc_qgorder` (
- `id` int(11) unsigned NOT NULL AUTO_INCREMENT,
- `order_num` varchar(50) NOT NULL,
- `user_id` int(11) NOT NULL,
- `user_name` varchar(20) NOT NULL,
- `user_tel` varchar(20) NOT NULL,
- `store_id` int(11) NOT NULL,
- `money` decimal(10,2) NOT NULL,
- `good_id` int(11) NOT NULL,
- `pay_type` int(11) NOT NULL COMMENT '1.微信支付2.余额支付',
- `state` int(11) NOT NULL COMMENT '1.待支付2已支付3.已核销',
- `dq_time` varchar(20) NOT NULL COMMENT '到期时间',
- `uniacid` int(11) NOT NULL,
- `code` varchar(100) NOT NULL,
- `good_name` varchar(20) NOT NULL,
- `good_logo` varchar(200) NOT NULL,
- `pay_time` varchar(20) NOT NULL,
- `hx_time` varchar(20) NOT NULL,
- `del` int(11) NOT NULL DEFAULT '2' COMMENT '1删除2.未删除',
- `note` varchar(50) NOT NULL,
- PRIMARY KEY (`id`)
- ) ENGINE=InnoDB DEFAULT CHARSET=utf8;
- ");
- if(!pdo_fieldexists('zhtc_qgorder','id')) {pdo_query("ALTER TABLE ".tablename('zhtc_qgorder')." ADD
- `id` int(11) unsigned NOT NULL AUTO_INCREMENT");}
- if(!pdo_fieldexists('zhtc_qgorder','order_num')) {pdo_query("ALTER TABLE ".tablename('zhtc_qgorder')." ADD `order_num` varchar(50) NOT NULL");}
- if(!pdo_fieldexists('zhtc_qgorder','user_id')) {pdo_query("ALTER TABLE ".tablename('zhtc_qgorder')." ADD `user_id` int(11) NOT NULL");}
- if(!pdo_fieldexists('zhtc_qgorder','user_name')) {pdo_query("ALTER TABLE ".tablename('zhtc_qgorder')." ADD `user_name` varchar(20) NOT NULL");}
- if(!pdo_fieldexists('zhtc_qgorder','user_tel')) {pdo_query("ALTER TABLE ".tablename('zhtc_qgorder')." ADD `user_tel` varchar(20) NOT NULL");}
- if(!pdo_fieldexists('zhtc_qgorder','store_id')) {pdo_query("ALTER TABLE ".tablename('zhtc_qgorder')." ADD `store_id` int(11) NOT NULL");}
- if(!pdo_fieldexists('zhtc_qgorder','money')) {pdo_query("ALTER TABLE ".tablename('zhtc_qgorder')." ADD `money` decimal(10,2) NOT NULL");}
- if(!pdo_fieldexists('zhtc_qgorder','good_id')) {pdo_query("ALTER TABLE ".tablename('zhtc_qgorder')." ADD `good_id` int(11) NOT NULL");}
- if(!pdo_fieldexists('zhtc_qgorder','pay_type')) {pdo_query("ALTER TABLE ".tablename('zhtc_qgorder')." ADD `pay_type` int(11) NOT NULL COMMENT '1.微信支付2.余额支付'");}
- if(!pdo_fieldexists('zhtc_qgorder','state')) {pdo_query("ALTER TABLE ".tablename('zhtc_qgorder')." ADD `state` int(11) NOT NULL COMMENT '1.待支付2已支付3.已核销'");}
- if(!pdo_fieldexists('zhtc_qgorder','dq_time')) {pdo_query("ALTER TABLE ".tablename('zhtc_qgorder')." ADD `dq_time` varchar(20) NOT NULL COMMENT '到期时间'");}
- if(!pdo_fieldexists('zhtc_qgorder','uniacid')) {pdo_query("ALTER TABLE ".tablename('zhtc_qgorder')." ADD `uniacid` int(11) NOT NULL");}
- if(!pdo_fieldexists('zhtc_qgorder','code')) {pdo_query("ALTER TABLE ".tablename('zhtc_qgorder')." ADD `code` varchar(100) NOT NULL");}
- if(!pdo_fieldexists('zhtc_qgorder','good_name')) {pdo_query("ALTER TABLE ".tablename('zhtc_qgorder')." ADD `good_name` varchar(20) NOT NULL");}
- if(!pdo_fieldexists('zhtc_qgorder','good_logo')) {pdo_query("ALTER TABLE ".tablename('zhtc_qgorder')." ADD `good_logo` varchar(200) NOT NULL");}
- if(!pdo_fieldexists('zhtc_qgorder','pay_time')) {pdo_query("ALTER TABLE ".tablename('zhtc_qgorder')." ADD `pay_time` varchar(20) NOT NULL");}
- if(!pdo_fieldexists('zhtc_qgorder','hx_time')) {pdo_query("ALTER TABLE ".tablename('zhtc_qgorder')." ADD `hx_time` varchar(20) NOT NULL");}
- if(!pdo_fieldexists('zhtc_qgorder','del')) {pdo_query("ALTER TABLE ".tablename('zhtc_qgorder')." ADD `del` int(11) NOT NULL DEFAULT '2' COMMENT '1删除2.未删除'");}
- if(!pdo_fieldexists('zhtc_qgorder','note')) {pdo_query("ALTER TABLE ".tablename('zhtc_qgorder')." ADD `note` varchar(50) NOT NULL");}
- pdo_query("CREATE TABLE IF NOT EXISTS `ims_zhtc_qgtype` (
- `id` int(11) unsigned NOT NULL AUTO_INCREMENT,
- `name` varchar(20) NOT NULL,
- `num` int(11) NOT NULL,
- `uniacid` int(11) NOT NULL,
- `state` int(4) NOT NULL DEFAULT '1',
- `img` varchar(500) NOT NULL,
- PRIMARY KEY (`id`)
- ) ENGINE=InnoDB DEFAULT CHARSET=utf8;
- ");
- if(!pdo_fieldexists('zhtc_qgtype','id')) {pdo_query("ALTER TABLE ".tablename('zhtc_qgtype')." ADD
- `id` int(11) unsigned NOT NULL AUTO_INCREMENT");}
- if(!pdo_fieldexists('zhtc_qgtype','name')) {pdo_query("ALTER TABLE ".tablename('zhtc_qgtype')." ADD `name` varchar(20) NOT NULL");}
- if(!pdo_fieldexists('zhtc_qgtype','num')) {pdo_query("ALTER TABLE ".tablename('zhtc_qgtype')." ADD `num` int(11) NOT NULL");}
- if(!pdo_fieldexists('zhtc_qgtype','uniacid')) {pdo_query("ALTER TABLE ".tablename('zhtc_qgtype')." ADD `uniacid` int(11) NOT NULL");}
- if(!pdo_fieldexists('zhtc_qgtype','state')) {pdo_query("ALTER TABLE ".tablename('zhtc_qgtype')." ADD `state` int(4) NOT NULL DEFAULT '1'");}
- if(!pdo_fieldexists('zhtc_qgtype','img')) {pdo_query("ALTER TABLE ".tablename('zhtc_qgtype')." ADD `img` varchar(500) NOT NULL");}
- pdo_query("CREATE TABLE IF NOT EXISTS `ims_zhtc_sensitive` (
- `id` int(11) unsigned NOT NULL AUTO_INCREMENT,
- `content` text NOT NULL COMMENT '内容',
- `uniacid` int(11) NOT NULL COMMENT '11',
- PRIMARY KEY (`id`)
- ) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8 COMMENT='敏感词表';
- ");
- if(!pdo_fieldexists('zhtc_sensitive','id')) {pdo_query("ALTER TABLE ".tablename('zhtc_sensitive')." ADD
- `id` int(11) unsigned NOT NULL AUTO_INCREMENT");}
- if(!pdo_fieldexists('zhtc_sensitive','content')) {pdo_query("ALTER TABLE ".tablename('zhtc_sensitive')." ADD `content` text NOT NULL COMMENT '内容'");}
- if(!pdo_fieldexists('zhtc_sensitive','uniacid')) {pdo_query("ALTER TABLE ".tablename('zhtc_sensitive')." ADD `uniacid` int(11) NOT NULL COMMENT '11'");}
- pdo_query("CREATE TABLE IF NOT EXISTS `ims_zhtc_share` (
- `id` int(11) NOT NULL AUTO_INCREMENT,
- `information_id` int(11) NOT NULL COMMENT '帖子id',
- `user_id` int(11) NOT NULL COMMENT '用户id',
- `store_id` int(11) NOT NULL,
- PRIMARY KEY (`id`)
- ) ENGINE=InnoDB AUTO_INCREMENT=391 DEFAULT CHARSET=utf8;
- ");
- if(!pdo_fieldexists('zhtc_share','id')) {pdo_query("ALTER TABLE ".tablename('zhtc_share')." ADD
- `id` int(11) NOT NULL AUTO_INCREMENT");}
- if(!pdo_fieldexists('zhtc_share','information_id')) {pdo_query("ALTER TABLE ".tablename('zhtc_share')." ADD `information_id` int(11) NOT NULL COMMENT '帖子id'");}
- if(!pdo_fieldexists('zhtc_share','user_id')) {pdo_query("ALTER TABLE ".tablename('zhtc_share')." ADD `user_id` int(11) NOT NULL COMMENT '用户id'");}
- if(!pdo_fieldexists('zhtc_share','store_id')) {pdo_query("ALTER TABLE ".tablename('zhtc_share')." ADD `store_id` int(11) NOT NULL");}
- pdo_query("CREATE TABLE IF NOT EXISTS `ims_zhtc_signlist` (
- `id` int(11) unsigned NOT NULL AUTO_INCREMENT,
- `user_id` int(11) NOT NULL,
- `time` varchar(20) NOT NULL COMMENT '签到时间',
- `time2` int(11) NOT NULL,
- `integral` int(11) NOT NULL,
- `uniacid` int(11) NOT NULL,
- `time3` int(11) NOT NULL,
- PRIMARY KEY (`id`)
- ) ENGINE=InnoDB AUTO_INCREMENT=1356 DEFAULT CHARSET=utf8;
- ");
- if(!pdo_fieldexists('zhtc_signlist','id')) {pdo_query("ALTER TABLE ".tablename('zhtc_signlist')." ADD
- `id` int(11) unsigned NOT NULL AUTO_INCREMENT");}
- if(!pdo_fieldexists('zhtc_signlist','user_id')) {pdo_query("ALTER TABLE ".tablename('zhtc_signlist')." ADD `user_id` int(11) NOT NULL");}
- if(!pdo_fieldexists('zhtc_signlist','time')) {pdo_query("ALTER TABLE ".tablename('zhtc_signlist')." ADD `time` varchar(20) NOT NULL COMMENT '签到时间'");}
- if(!pdo_fieldexists('zhtc_signlist','time2')) {pdo_query("ALTER TABLE ".tablename('zhtc_signlist')." ADD `time2` int(11) NOT NULL");}
- if(!pdo_fieldexists('zhtc_signlist','integral')) {pdo_query("ALTER TABLE ".tablename('zhtc_signlist')." ADD `integral` int(11) NOT NULL");}
- if(!pdo_fieldexists('zhtc_signlist','uniacid')) {pdo_query("ALTER TABLE ".tablename('zhtc_signlist')." ADD `uniacid` int(11) NOT NULL");}
- if(!pdo_fieldexists('zhtc_signlist','time3')) {pdo_query("ALTER TABLE ".tablename('zhtc_signlist')." ADD `time3` int(11) NOT NULL");}
- pdo_query("CREATE TABLE IF NOT EXISTS `ims_zhtc_signset` (
- `id` int(11) unsigned NOT NULL AUTO_INCREMENT,
- `one` int(11) NOT NULL COMMENT '首次奖励积分',
- `integral` int(11) NOT NULL COMMENT '每天签到积分',
- `is_open` int(11) NOT NULL COMMENT '1.开启2.关闭 签到',
- `is_bq` int(11) NOT NULL COMMENT '1.开启2.关闭 补签',
- `bq_integral` int(11) NOT NULL COMMENT '补签扣除积分',
- `details` text NOT NULL COMMENT '签到说明',
- `uniacid` int(11) NOT NULL,
- `qd_img` varchar(200) NOT NULL,
- PRIMARY KEY (`id`)
- ) ENGINE=InnoDB AUTO_INCREMENT=4 DEFAULT CHARSET=utf8;
- ");
- if(!pdo_fieldexists('zhtc_signset','id')) {pdo_query("ALTER TABLE ".tablename('zhtc_signset')." ADD
- `id` int(11) unsigned NOT NULL AUTO_INCREMENT");}
- if(!pdo_fieldexists('zhtc_signset','one')) {pdo_query("ALTER TABLE ".tablename('zhtc_signset')." ADD `one` int(11) NOT NULL COMMENT '首次奖励积分'");}
- if(!pdo_fieldexists('zhtc_signset','integral')) {pdo_query("ALTER TABLE ".tablename('zhtc_signset')." ADD `integral` int(11) NOT NULL COMMENT '每天签到积分'");}
- if(!pdo_fieldexists('zhtc_signset','is_open')) {pdo_query("ALTER TABLE ".tablename('zhtc_signset')." ADD `is_open` int(11) NOT NULL COMMENT '1.开启2.关闭 签到'");}
- if(!pdo_fieldexists('zhtc_signset','is_bq')) {pdo_query("ALTER TABLE ".tablename('zhtc_signset')." ADD `is_bq` int(11) NOT NULL COMMENT '1.开启2.关闭 补签'");}
- if(!pdo_fieldexists('zhtc_signset','bq_integral')) {pdo_query("ALTER TABLE ".tablename('zhtc_signset')." ADD `bq_integral` int(11) NOT NULL COMMENT '补签扣除积分'");}
- if(!pdo_fieldexists('zhtc_signset','details')) {pdo_query("ALTER TABLE ".tablename('zhtc_signset')." ADD `details` text NOT NULL COMMENT '签到说明'");}
- if(!pdo_fieldexists('zhtc_signset','uniacid')) {pdo_query("ALTER TABLE ".tablename('zhtc_signset')." ADD `uniacid` int(11) NOT NULL");}
- if(!pdo_fieldexists('zhtc_signset','qd_img')) {pdo_query("ALTER TABLE ".tablename('zhtc_signset')." ADD `qd_img` varchar(200) NOT NULL");}
- pdo_query("CREATE TABLE IF NOT EXISTS `ims_zhtc_sms` (
- `id` int(11) NOT NULL AUTO_INCREMENT,
- `appkey` varchar(100) NOT NULL,
- `tpl_id` varchar(20) NOT NULL,
- `uniacid` int(11) NOT NULL,
- `is_open` int(11) NOT NULL DEFAULT '2',
- `tid1` varchar(50) NOT NULL,
- `tid2` varchar(50) NOT NULL,
- `tid3` varchar(50) NOT NULL,
- `tpl2_id` varchar(20) NOT NULL,
- `fh_tid` varchar(200) NOT NULL,
- `gm_tid` varchar(200) NOT NULL,
- `hp_tid` varchar(200) NOT NULL,
- `dz_tid` varchar(200) NOT NULL,
- `tg_tid` varchar(200) NOT NULL,
- `qf_tid` varchar(200) NOT NULL,
- `qg_tid` varchar(200) NOT NULL,
- `hd_tid` varchar(200) NOT NULL,
- `pt_tid` varchar(200) NOT NULL,
- `kq_tid` varchar(200) NOT NULL,
- `aliyun_appkey` varchar(100) NOT NULL,
- `aliyun_appsecret` varchar(50) NOT NULL,
- `aliyun_sign` varchar(20) NOT NULL,
- `item` int(4) NOT NULL DEFAULT '1',
- PRIMARY KEY (`id`)
- ) ENGINE=InnoDB AUTO_INCREMENT=6 DEFAULT CHARSET=utf8;
- ");
- if(!pdo_fieldexists('zhtc_sms','id')) {pdo_query("ALTER TABLE ".tablename('zhtc_sms')." ADD
- `id` int(11) NOT NULL AUTO_INCREMENT");}
- if(!pdo_fieldexists('zhtc_sms','appkey')) {pdo_query("ALTER TABLE ".tablename('zhtc_sms')." ADD `appkey` varchar(100) NOT NULL");}
- if(!pdo_fieldexists('zhtc_sms','tpl_id')) {pdo_query("ALTER TABLE ".tablename('zhtc_sms')." ADD `tpl_id` varchar(20) NOT NULL");}
- if(!pdo_fieldexists('zhtc_sms','uniacid')) {pdo_query("ALTER TABLE ".tablename('zhtc_sms')." ADD `uniacid` int(11) NOT NULL");}
- if(!pdo_fieldexists('zhtc_sms','is_open')) {pdo_query("ALTER TABLE ".tablename('zhtc_sms')." ADD `is_open` int(11) NOT NULL DEFAULT '2'");}
- if(!pdo_fieldexists('zhtc_sms','tid1')) {pdo_query("ALTER TABLE ".tablename('zhtc_sms')." ADD `tid1` varchar(50) NOT NULL");}
- if(!pdo_fieldexists('zhtc_sms','tid2')) {pdo_query("ALTER TABLE ".tablename('zhtc_sms')." ADD `tid2` varchar(50) NOT NULL");}
- if(!pdo_fieldexists('zhtc_sms','tid3')) {pdo_query("ALTER TABLE ".tablename('zhtc_sms')." ADD `tid3` varchar(50) NOT NULL");}
- if(!pdo_fieldexists('zhtc_sms','tpl2_id')) {pdo_query("ALTER TABLE ".tablename('zhtc_sms')." ADD `tpl2_id` varchar(20) NOT NULL");}
- if(!pdo_fieldexists('zhtc_sms','fh_tid')) {pdo_query("ALTER TABLE ".tablename('zhtc_sms')." ADD `fh_tid` varchar(200) NOT NULL");}
- if(!pdo_fieldexists('zhtc_sms','gm_tid')) {pdo_query("ALTER TABLE ".tablename('zhtc_sms')." ADD `gm_tid` varchar(200) NOT NULL");}
- if(!pdo_fieldexists('zhtc_sms','hp_tid')) {pdo_query("ALTER TABLE ".tablename('zhtc_sms')." ADD `hp_tid` varchar(200) NOT NULL");}
- if(!pdo_fieldexists('zhtc_sms','dz_tid')) {pdo_query("ALTER TABLE ".tablename('zhtc_sms')." ADD `dz_tid` varchar(200) NOT NULL");}
- if(!pdo_fieldexists('zhtc_sms','tg_tid')) {pdo_query("ALTER TABLE ".tablename('zhtc_sms')." ADD `tg_tid` varchar(200) NOT NULL");}
- if(!pdo_fieldexists('zhtc_sms','qf_tid')) {pdo_query("ALTER TABLE ".tablename('zhtc_sms')." ADD `qf_tid` varchar(200) NOT NULL");}
- if(!pdo_fieldexists('zhtc_sms','qg_tid')) {pdo_query("ALTER TABLE ".tablename('zhtc_sms')." ADD `qg_tid` varchar(200) NOT NULL");}
- if(!pdo_fieldexists('zhtc_sms','hd_tid')) {pdo_query("ALTER TABLE ".tablename('zhtc_sms')." ADD `hd_tid` varchar(200) NOT NULL");}
- if(!pdo_fieldexists('zhtc_sms','pt_tid')) {pdo_query("ALTER TABLE ".tablename('zhtc_sms')." ADD `pt_tid` varchar(200) NOT NULL");}
- if(!pdo_fieldexists('zhtc_sms','kq_tid')) {pdo_query("ALTER TABLE ".tablename('zhtc_sms')." ADD `kq_tid` varchar(200) NOT NULL");}
- if(!pdo_fieldexists('zhtc_sms','aliyun_appkey')) {pdo_query("ALTER TABLE ".tablename('zhtc_sms')." ADD `aliyun_appkey` varchar(100) NOT NULL");}
- if(!pdo_fieldexists('zhtc_sms','aliyun_appsecret')) {pdo_query("ALTER TABLE ".tablename('zhtc_sms')." ADD `aliyun_appsecret` varchar(50) NOT NULL");}
- if(!pdo_fieldexists('zhtc_sms','aliyun_sign')) {pdo_query("ALTER TABLE ".tablename('zhtc_sms')." ADD `aliyun_sign` varchar(20) NOT NULL");}
- if(!pdo_fieldexists('zhtc_sms','item')) {pdo_query("ALTER TABLE ".tablename('zhtc_sms')." ADD `item` int(4) NOT NULL DEFAULT '1'");}
- pdo_query("CREATE TABLE IF NOT EXISTS `ims_zhtc_spec_value` (
- `id` int(11) NOT NULL AUTO_INCREMENT,
- `goods_id` int(11) NOT NULL COMMENT '商品ID',
- `spec_id` int(11) NOT NULL,
- `money` decimal(10,2) NOT NULL COMMENT '价格',
- `name` varchar(50) NOT NULL COMMENT '名称',
- `num` int(11) NOT NULL COMMENT '数量',
- PRIMARY KEY (`id`)
- ) ENGINE=InnoDB DEFAULT CHARSET=utf8;
- ");
- if(!pdo_fieldexists('zhtc_spec_value','id')) {pdo_query("ALTER TABLE ".tablename('zhtc_spec_value')." ADD
- `id` int(11) NOT NULL AUTO_INCREMENT");}
- if(!pdo_fieldexists('zhtc_spec_value','goods_id')) {pdo_query("ALTER TABLE ".tablename('zhtc_spec_value')." ADD `goods_id` int(11) NOT NULL COMMENT '商品ID'");}
- if(!pdo_fieldexists('zhtc_spec_value','spec_id')) {pdo_query("ALTER TABLE ".tablename('zhtc_spec_value')." ADD `spec_id` int(11) NOT NULL");}
- if(!pdo_fieldexists('zhtc_spec_value','money')) {pdo_query("ALTER TABLE ".tablename('zhtc_spec_value')." ADD `money` decimal(10,2) NOT NULL COMMENT '价格'");}
- if(!pdo_fieldexists('zhtc_spec_value','name')) {pdo_query("ALTER TABLE ".tablename('zhtc_spec_value')." ADD `name` varchar(50) NOT NULL COMMENT '名称'");}
- if(!pdo_fieldexists('zhtc_spec_value','num')) {pdo_query("ALTER TABLE ".tablename('zhtc_spec_value')." ADD `num` int(11) NOT NULL COMMENT '数量'");}
- pdo_query("CREATE TABLE IF NOT EXISTS `ims_zhtc_special` (
- `id` int(11) unsigned NOT NULL AUTO_INCREMENT,
- `day` varchar(20) NOT NULL COMMENT '日期',
- `integral` int(11) NOT NULL COMMENT '积分',
- `title` varchar(20) NOT NULL COMMENT '标题说明',
- `color` varchar(20) NOT NULL COMMENT '颜色',
- `uniacid` int(11) NOT NULL,
- PRIMARY KEY (`id`)
- ) ENGINE=InnoDB AUTO_INCREMENT=4 DEFAULT CHARSET=utf8;
- ");
- if(!pdo_fieldexists('zhtc_special','id')) {pdo_query("ALTER TABLE ".tablename('zhtc_special')." ADD
- `id` int(11) unsigned NOT NULL AUTO_INCREMENT");}
- if(!pdo_fieldexists('zhtc_special','day')) {pdo_query("ALTER TABLE ".tablename('zhtc_special')." ADD `day` varchar(20) NOT NULL COMMENT '日期'");}
- if(!pdo_fieldexists('zhtc_special','integral')) {pdo_query("ALTER TABLE ".tablename('zhtc_special')." ADD `integral` int(11) NOT NULL COMMENT '积分'");}
- if(!pdo_fieldexists('zhtc_special','title')) {pdo_query("ALTER TABLE ".tablename('zhtc_special')." ADD `title` varchar(20) NOT NULL COMMENT '标题说明'");}
- if(!pdo_fieldexists('zhtc_special','color')) {pdo_query("ALTER TABLE ".tablename('zhtc_special')." ADD `color` varchar(20) NOT NULL COMMENT '颜色'");}
- if(!pdo_fieldexists('zhtc_special','uniacid')) {pdo_query("ALTER TABLE ".tablename('zhtc_special')." ADD `uniacid` int(11) NOT NULL");}
- pdo_query("CREATE TABLE IF NOT EXISTS `ims_zhtc_store` (
- `id` int(11) NOT NULL AUTO_INCREMENT,
- `user_id` int(11) NOT NULL COMMENT '用户id',
- `store_name` varchar(50) NOT NULL COMMENT '商家名称',
- `address` varchar(200) NOT NULL COMMENT '商家地址',
- `announcement` varchar(100) NOT NULL COMMENT '公告',
- `storetype_id` int(11) NOT NULL COMMENT '主行业分类id',
- `storetype2_id` int(11) NOT NULL COMMENT '商家子分类id',
- `area_id` int(11) NOT NULL COMMENT '区域id',
- `yy_time` varchar(50) NOT NULL COMMENT '营业时间',
- `keyword` varchar(50) NOT NULL COMMENT '关键字',
- `skzf` int(11) NOT NULL COMMENT '1.是 2否(刷卡支付)',
- `wifi` int(11) NOT NULL COMMENT '1.是 2否',
- `mftc` int(11) NOT NULL COMMENT '1.是 2否(免费停车)',
- `jzxy` int(11) NOT NULL COMMENT '1.是 2否(禁止吸烟)',
- `tgbj` int(11) NOT NULL COMMENT '1.是 2否(提供包间)',
- `sfxx` int(11) NOT NULL COMMENT '1.是 2否(沙发休闲)',
- `tel` varchar(20) NOT NULL COMMENT '手机号',
- `logo` varchar(100) NOT NULL,
- `weixin_logo` varchar(100) NOT NULL,
- `ad` text NOT NULL COMMENT '轮播图',
- `state` int(11) NOT NULL COMMENT '1.待审核2通过3拒绝',
- `money` decimal(10,2) NOT NULL COMMENT '金额',
- `password` varchar(100) NOT NULL COMMENT '核销密码',
- `details` text NOT NULL COMMENT '商家简介',
- `uniacid` int(11) NOT NULL,
- `coordinates` varchar(50) NOT NULL,
- `views` int(11) NOT NULL,
- `score` decimal(10,1) NOT NULL,
- `type` int(11) NOT NULL,
- `sh_time` int(11) NOT NULL,
- `time_over` int(11) NOT NULL,
- `img` text NOT NULL,
- `vr_link` text NOT NULL,
- `num` int(11) NOT NULL,
- `start_time` varchar(20) NOT NULL,
- `end_time` varchar(20) NOT NULL,
- `wallet` decimal(10,2) NOT NULL,
- `user_name` varchar(30) NOT NULL,
- `pwd` varchar(50) NOT NULL,
- `dq_time` int(11) NOT NULL,
- `cityname` varchar(50) NOT NULL,
- `time` datetime NOT NULL,
- `fx_num` int(11) NOT NULL,
- `ewm_logo` varchar(100) NOT NULL,
- `is_top` int(4) NOT NULL DEFAULT '2',
- `yyzz_img` varchar(100) NOT NULL,
- `sfz_img` varchar(100) NOT NULL,
- `is_rm` int(11) NOT NULL DEFAULT '2',
- `video` varchar(300) NOT NULL,
- `is_shop` int(1) NOT NULL DEFAULT '1',
- `is_pt` int(1) NOT NULL DEFAULT '1',
- `is_qg` int(1) NOT NULL DEFAULT '1',
- `is_yhq` int(1) NOT NULL DEFAULT '1',
- PRIMARY KEY (`id`),
- KEY `uniacid` (`uniacid`),
- KEY `user_id` (`user_id`),
- KEY `storetype2_id` (`storetype2_id`),
- KEY `storetype_id` (`storetype_id`),
- KEY `state` (`state`),
- KEY `uniacid_2` (`uniacid`),
- KEY `user_id_2` (`user_id`),
- KEY `storetype2_id_2` (`storetype2_id`),
- KEY `storetype_id_2` (`storetype_id`),
- KEY `state_2` (`state`),
- KEY `uniacid_3` (`uniacid`),
- KEY `user_id_3` (`user_id`),
- KEY `storetype2_id_3` (`storetype2_id`),
- KEY `storetype_id_3` (`storetype_id`),
- KEY `state_3` (`state`),
- KEY `uniacid_4` (`uniacid`),
- KEY `user_id_4` (`user_id`),
- KEY `storetype2_id_4` (`storetype2_id`),
- KEY `storetype_id_4` (`storetype_id`),
- KEY `state_4` (`state`),
- KEY `uniacid_5` (`uniacid`),
- KEY `user_id_5` (`user_id`),
- KEY `storetype2_id_5` (`storetype2_id`),
- KEY `storetype_id_5` (`storetype_id`),
- KEY `state_5` (`state`),
- KEY `uniacid_6` (`uniacid`),
- KEY `user_id_6` (`user_id`),
- KEY `storetype2_id_6` (`storetype2_id`),
- KEY `storetype_id_6` (`storetype_id`),
- KEY `state_6` (`state`),
- KEY `uniacid_7` (`uniacid`),
- KEY `user_id_7` (`user_id`),
- KEY `storetype2_id_7` (`storetype2_id`),
- KEY `storetype_id_7` (`storetype_id`),
- KEY `state_7` (`state`),
- KEY `uniacid_8` (`uniacid`),
- KEY `user_id_8` (`user_id`),
- KEY `storetype2_id_8` (`storetype2_id`),
- KEY `storetype_id_8` (`storetype_id`),
- KEY `state_8` (`state`),
- KEY `uniacid_9` (`uniacid`),
- KEY `user_id_9` (`user_id`),
- KEY `storetype2_id_9` (`storetype2_id`),
- KEY `storetype_id_9` (`storetype_id`),
- KEY `state_9` (`state`),
- KEY `uniacid_10` (`uniacid`),
- KEY `user_id_10` (`user_id`),
- KEY `storetype2_id_10` (`storetype2_id`),
- KEY `storetype_id_10` (`storetype_id`),
- KEY `state_10` (`state`),
- KEY `uniacid_11` (`uniacid`),
- KEY `user_id_11` (`user_id`),
- KEY `storetype2_id_11` (`storetype2_id`),
- KEY `storetype_id_11` (`storetype_id`),
- KEY `state_11` (`state`),
- KEY `uniacid_12` (`uniacid`),
- KEY `user_id_12` (`user_id`),
- KEY `storetype2_id_12` (`storetype2_id`),
- KEY `storetype_id_12` (`storetype_id`),
- KEY `state_12` (`state`)
- ) ENGINE=InnoDB AUTO_INCREMENT=195 DEFAULT CHARSET=utf8;
- ");
- if(!pdo_fieldexists('zhtc_store','id')) {pdo_query("ALTER TABLE ".tablename('zhtc_store')." ADD
- `id` int(11) NOT NULL AUTO_INCREMENT");}
- if(!pdo_fieldexists('zhtc_store','user_id')) {pdo_query("ALTER TABLE ".tablename('zhtc_store')." ADD `user_id` int(11) NOT NULL COMMENT '用户id'");}
- if(!pdo_fieldexists('zhtc_store','store_name')) {pdo_query("ALTER TABLE ".tablename('zhtc_store')." ADD `store_name` varchar(50) NOT NULL COMMENT '商家名称'");}
- if(!pdo_fieldexists('zhtc_store','address')) {pdo_query("ALTER TABLE ".tablename('zhtc_store')." ADD `address` varchar(200) NOT NULL COMMENT '商家地址'");}
- if(!pdo_fieldexists('zhtc_store','announcement')) {pdo_query("ALTER TABLE ".tablename('zhtc_store')." ADD `announcement` varchar(100) NOT NULL COMMENT '公告'");}
- if(!pdo_fieldexists('zhtc_store','storetype_id')) {pdo_query("ALTER TABLE ".tablename('zhtc_store')." ADD `storetype_id` int(11) NOT NULL COMMENT '主行业分类id'");}
- if(!pdo_fieldexists('zhtc_store','storetype2_id')) {pdo_query("ALTER TABLE ".tablename('zhtc_store')." ADD `storetype2_id` int(11) NOT NULL COMMENT '商家子分类id'");}
- if(!pdo_fieldexists('zhtc_store','area_id')) {pdo_query("ALTER TABLE ".tablename('zhtc_store')." ADD `area_id` int(11) NOT NULL COMMENT '区域id'");}
- if(!pdo_fieldexists('zhtc_store','yy_time')) {pdo_query("ALTER TABLE ".tablename('zhtc_store')." ADD `yy_time` varchar(50) NOT NULL COMMENT '营业时间'");}
- if(!pdo_fieldexists('zhtc_store','keyword')) {pdo_query("ALTER TABLE ".tablename('zhtc_store')." ADD `keyword` varchar(50) NOT NULL COMMENT '关键字'");}
- if(!pdo_fieldexists('zhtc_store','skzf')) {pdo_query("ALTER TABLE ".tablename('zhtc_store')." ADD `skzf` int(11) NOT NULL COMMENT '1.是 2否(刷卡支付)'");}
- if(!pdo_fieldexists('zhtc_store','wifi')) {pdo_query("ALTER TABLE ".tablename('zhtc_store')." ADD `wifi` int(11) NOT NULL COMMENT '1.是 2否'");}
- if(!pdo_fieldexists('zhtc_store','mftc')) {pdo_query("ALTER TABLE ".tablename('zhtc_store')." ADD `mftc` int(11) NOT NULL COMMENT '1.是 2否(免费停车)'");}
- if(!pdo_fieldexists('zhtc_store','jzxy')) {pdo_query("ALTER TABLE ".tablename('zhtc_store')." ADD `jzxy` int(11) NOT NULL COMMENT '1.是 2否(禁止吸烟)'");}
- if(!pdo_fieldexists('zhtc_store','tgbj')) {pdo_query("ALTER TABLE ".tablename('zhtc_store')." ADD `tgbj` int(11) NOT NULL COMMENT '1.是 2否(提供包间)'");}
- if(!pdo_fieldexists('zhtc_store','sfxx')) {pdo_query("ALTER TABLE ".tablename('zhtc_store')." ADD `sfxx` int(11) NOT NULL COMMENT '1.是 2否(沙发休闲)'");}
- if(!pdo_fieldexists('zhtc_store','tel')) {pdo_query("ALTER TABLE ".tablename('zhtc_store')." ADD `tel` varchar(20) NOT NULL COMMENT '手机号'");}
- if(!pdo_fieldexists('zhtc_store','logo')) {pdo_query("ALTER TABLE ".tablename('zhtc_store')." ADD `logo` varchar(100) NOT NULL");}
- if(!pdo_fieldexists('zhtc_store','weixin_logo')) {pdo_query("ALTER TABLE ".tablename('zhtc_store')." ADD `weixin_logo` varchar(100) NOT NULL");}
- if(!pdo_fieldexists('zhtc_store','ad')) {pdo_query("ALTER TABLE ".tablename('zhtc_store')." ADD `ad` text NOT NULL COMMENT '轮播图'");}
- if(!pdo_fieldexists('zhtc_store','state')) {pdo_query("ALTER TABLE ".tablename('zhtc_store')." ADD `state` int(11) NOT NULL COMMENT '1.待审核2通过3拒绝'");}
- if(!pdo_fieldexists('zhtc_store','money')) {pdo_query("ALTER TABLE ".tablename('zhtc_store')." ADD `money` decimal(10,2) NOT NULL COMMENT '金额'");}
- if(!pdo_fieldexists('zhtc_store','password')) {pdo_query("ALTER TABLE ".tablename('zhtc_store')." ADD `password` varchar(100) NOT NULL COMMENT '核销密码'");}
- if(!pdo_fieldexists('zhtc_store','details')) {pdo_query("ALTER TABLE ".tablename('zhtc_store')." ADD `details` text NOT NULL COMMENT '商家简介'");}
- if(!pdo_fieldexists('zhtc_store','uniacid')) {pdo_query("ALTER TABLE ".tablename('zhtc_store')." ADD `uniacid` int(11) NOT NULL");}
- if(!pdo_fieldexists('zhtc_store','coordinates')) {pdo_query("ALTER TABLE ".tablename('zhtc_store')." ADD `coordinates` varchar(50) NOT NULL");}
- if(!pdo_fieldexists('zhtc_store','views')) {pdo_query("ALTER TABLE ".tablename('zhtc_store')." ADD `views` int(11) NOT NULL");}
- if(!pdo_fieldexists('zhtc_store','score')) {pdo_query("ALTER TABLE ".tablename('zhtc_store')." ADD `score` decimal(10,1) NOT NULL");}
- if(!pdo_fieldexists('zhtc_store','type')) {pdo_query("ALTER TABLE ".tablename('zhtc_store')." ADD `type` int(11) NOT NULL");}
- if(!pdo_fieldexists('zhtc_store','sh_time')) {pdo_query("ALTER TABLE ".tablename('zhtc_store')." ADD `sh_time` int(11) NOT NULL");}
- if(!pdo_fieldexists('zhtc_store','time_over')) {pdo_query("ALTER TABLE ".tablename('zhtc_store')." ADD `time_over` int(11) NOT NULL");}
- if(!pdo_fieldexists('zhtc_store','img')) {pdo_query("ALTER TABLE ".tablename('zhtc_store')." ADD `img` text NOT NULL");}
- if(!pdo_fieldexists('zhtc_store','vr_link')) {pdo_query("ALTER TABLE ".tablename('zhtc_store')." ADD `vr_link` text NOT NULL");}
- if(!pdo_fieldexists('zhtc_store','num')) {pdo_query("ALTER TABLE ".tablename('zhtc_store')." ADD `num` int(11) NOT NULL");}
- if(!pdo_fieldexists('zhtc_store','start_time')) {pdo_query("ALTER TABLE ".tablename('zhtc_store')." ADD `start_time` varchar(20) NOT NULL");}
- if(!pdo_fieldexists('zhtc_store','end_time')) {pdo_query("ALTER TABLE ".tablename('zhtc_store')." ADD `end_time` varchar(20) NOT NULL");}
- if(!pdo_fieldexists('zhtc_store','wallet')) {pdo_query("ALTER TABLE ".tablename('zhtc_store')." ADD `wallet` decimal(10,2) NOT NULL");}
- if(!pdo_fieldexists('zhtc_store','user_name')) {pdo_query("ALTER TABLE ".tablename('zhtc_store')." ADD `user_name` varchar(30) NOT NULL");}
- if(!pdo_fieldexists('zhtc_store','pwd')) {pdo_query("ALTER TABLE ".tablename('zhtc_store')." ADD `pwd` varchar(50) NOT NULL");}
- if(!pdo_fieldexists('zhtc_store','dq_time')) {pdo_query("ALTER TABLE ".tablename('zhtc_store')." ADD `dq_time` int(11) NOT NULL");}
- if(!pdo_fieldexists('zhtc_store','cityname')) {pdo_query("ALTER TABLE ".tablename('zhtc_store')." ADD `cityname` varchar(50) NOT NULL");}
- if(!pdo_fieldexists('zhtc_store','time')) {pdo_query("ALTER TABLE ".tablename('zhtc_store')." ADD `time` datetime NOT NULL");}
- if(!pdo_fieldexists('zhtc_store','fx_num')) {pdo_query("ALTER TABLE ".tablename('zhtc_store')." ADD `fx_num` int(11) NOT NULL");}
- if(!pdo_fieldexists('zhtc_store','ewm_logo')) {pdo_query("ALTER TABLE ".tablename('zhtc_store')." ADD `ewm_logo` varchar(100) NOT NULL");}
- if(!pdo_fieldexists('zhtc_store','is_top')) {pdo_query("ALTER TABLE ".tablename('zhtc_store')." ADD `is_top` int(4) NOT NULL DEFAULT '2'");}
- if(!pdo_fieldexists('zhtc_store','yyzz_img')) {pdo_query("ALTER TABLE ".tablename('zhtc_store')." ADD `yyzz_img` varchar(100) NOT NULL");}
- if(!pdo_fieldexists('zhtc_store','sfz_img')) {pdo_query("ALTER TABLE ".tablename('zhtc_store')." ADD `sfz_img` varchar(100) NOT NULL");}
- if(!pdo_fieldexists('zhtc_store','is_rm')) {pdo_query("ALTER TABLE ".tablename('zhtc_store')." ADD `is_rm` int(11) NOT NULL DEFAULT '2'");}
- if(!pdo_fieldexists('zhtc_store','video')) {pdo_query("ALTER TABLE ".tablename('zhtc_store')." ADD `video` varchar(300) NOT NULL");}
- if(!pdo_fieldexists('zhtc_store','is_shop')) {pdo_query("ALTER TABLE ".tablename('zhtc_store')." ADD `is_shop` int(1) NOT NULL DEFAULT '1'");}
- if(!pdo_fieldexists('zhtc_store','is_pt')) {pdo_query("ALTER TABLE ".tablename('zhtc_store')." ADD `is_pt` int(1) NOT NULL DEFAULT '1'");}
- if(!pdo_fieldexists('zhtc_store','is_qg')) {pdo_query("ALTER TABLE ".tablename('zhtc_store')." ADD `is_qg` int(1) NOT NULL DEFAULT '1'");}
- if(!pdo_fieldexists('zhtc_store','is_yhq')) {pdo_query("ALTER TABLE ".tablename('zhtc_store')." ADD `is_yhq` int(1) NOT NULL DEFAULT '1'");}
- if(!pdo_fieldexists('zhtc_store','id')) {pdo_query("ALTER TABLE ".tablename('zhtc_store')." ADD PRIMARY KEY (`id`)");}
- if(!pdo_fieldexists('zhtc_store','uniacid')) {pdo_query("ALTER TABLE ".tablename('zhtc_store')." ADD KEY `uniacid` (`uniacid`)");}
- if(!pdo_fieldexists('zhtc_store','user_id')) {pdo_query("ALTER TABLE ".tablename('zhtc_store')." ADD KEY `user_id` (`user_id`)");}
- if(!pdo_fieldexists('zhtc_store','storetype2_id')) {pdo_query("ALTER TABLE ".tablename('zhtc_store')." ADD KEY `storetype2_id` (`storetype2_id`)");}
- if(!pdo_fieldexists('zhtc_store','storetype_id')) {pdo_query("ALTER TABLE ".tablename('zhtc_store')." ADD KEY `storetype_id` (`storetype_id`)");}
- if(!pdo_fieldexists('zhtc_store','state')) {pdo_query("ALTER TABLE ".tablename('zhtc_store')." ADD KEY `state` (`state`)");}
- if(!pdo_fieldexists('zhtc_store','uniacid_2')) {pdo_query("ALTER TABLE ".tablename('zhtc_store')." ADD KEY `uniacid_2` (`uniacid`)");}
- if(!pdo_fieldexists('zhtc_store','user_id_2')) {pdo_query("ALTER TABLE ".tablename('zhtc_store')." ADD KEY `user_id_2` (`user_id`)");}
- if(!pdo_fieldexists('zhtc_store','storetype2_id_2')) {pdo_query("ALTER TABLE ".tablename('zhtc_store')." ADD KEY `storetype2_id_2` (`storetype2_id`)");}
- if(!pdo_fieldexists('zhtc_store','storetype_id_2')) {pdo_query("ALTER TABLE ".tablename('zhtc_store')." ADD KEY `storetype_id_2` (`storetype_id`)");}
- if(!pdo_fieldexists('zhtc_store','state_2')) {pdo_query("ALTER TABLE ".tablename('zhtc_store')." ADD KEY `state_2` (`state`)");}
- if(!pdo_fieldexists('zhtc_store','uniacid_3')) {pdo_query("ALTER TABLE ".tablename('zhtc_store')." ADD KEY `uniacid_3` (`uniacid`)");}
- if(!pdo_fieldexists('zhtc_store','user_id_3')) {pdo_query("ALTER TABLE ".tablename('zhtc_store')." ADD KEY `user_id_3` (`user_id`)");}
- if(!pdo_fieldexists('zhtc_store','storetype2_id_3')) {pdo_query("ALTER TABLE ".tablename('zhtc_store')." ADD KEY `storetype2_id_3` (`storetype2_id`)");}
- if(!pdo_fieldexists('zhtc_store','storetype_id_3')) {pdo_query("ALTER TABLE ".tablename('zhtc_store')." ADD KEY `storetype_id_3` (`storetype_id`)");}
- if(!pdo_fieldexists('zhtc_store','state_3')) {pdo_query("ALTER TABLE ".tablename('zhtc_store')." ADD KEY `state_3` (`state`)");}
- if(!pdo_fieldexists('zhtc_store','uniacid_4')) {pdo_query("ALTER TABLE ".tablename('zhtc_store')." ADD KEY `uniacid_4` (`uniacid`)");}
- if(!pdo_fieldexists('zhtc_store','user_id_4')) {pdo_query("ALTER TABLE ".tablename('zhtc_store')." ADD KEY `user_id_4` (`user_id`)");}
- if(!pdo_fieldexists('zhtc_store','storetype2_id_4')) {pdo_query("ALTER TABLE ".tablename('zhtc_store')." ADD KEY `storetype2_id_4` (`storetype2_id`)");}
- if(!pdo_fieldexists('zhtc_store','storetype_id_4')) {pdo_query("ALTER TABLE ".tablename('zhtc_store')." ADD KEY `storetype_id_4` (`storetype_id`)");}
- if(!pdo_fieldexists('zhtc_store','state_4')) {pdo_query("ALTER TABLE ".tablename('zhtc_store')." ADD KEY `state_4` (`state`)");}
- if(!pdo_fieldexists('zhtc_store','uniacid_5')) {pdo_query("ALTER TABLE ".tablename('zhtc_store')." ADD KEY `uniacid_5` (`uniacid`)");}
- if(!pdo_fieldexists('zhtc_store','user_id_5')) {pdo_query("ALTER TABLE ".tablename('zhtc_store')." ADD KEY `user_id_5` (`user_id`)");}
- if(!pdo_fieldexists('zhtc_store','storetype2_id_5')) {pdo_query("ALTER TABLE ".tablename('zhtc_store')." ADD KEY `storetype2_id_5` (`storetype2_id`)");}
- if(!pdo_fieldexists('zhtc_store','storetype_id_5')) {pdo_query("ALTER TABLE ".tablename('zhtc_store')." ADD KEY `storetype_id_5` (`storetype_id`)");}
- if(!pdo_fieldexists('zhtc_store','state_5')) {pdo_query("ALTER TABLE ".tablename('zhtc_store')." ADD KEY `state_5` (`state`)");}
- if(!pdo_fieldexists('zhtc_store','uniacid_6')) {pdo_query("ALTER TABLE ".tablename('zhtc_store')." ADD KEY `uniacid_6` (`uniacid`)");}
- if(!pdo_fieldexists('zhtc_store','user_id_6')) {pdo_query("ALTER TABLE ".tablename('zhtc_store')." ADD KEY `user_id_6` (`user_id`)");}
- if(!pdo_fieldexists('zhtc_store','storetype2_id_6')) {pdo_query("ALTER TABLE ".tablename('zhtc_store')." ADD KEY `storetype2_id_6` (`storetype2_id`)");}
- if(!pdo_fieldexists('zhtc_store','storetype_id_6')) {pdo_query("ALTER TABLE ".tablename('zhtc_store')." ADD KEY `storetype_id_6` (`storetype_id`)");}
- if(!pdo_fieldexists('zhtc_store','state_6')) {pdo_query("ALTER TABLE ".tablename('zhtc_store')." ADD KEY `state_6` (`state`)");}
- if(!pdo_fieldexists('zhtc_store','uniacid_7')) {pdo_query("ALTER TABLE ".tablename('zhtc_store')." ADD KEY `uniacid_7` (`uniacid`)");}
- if(!pdo_fieldexists('zhtc_store','user_id_7')) {pdo_query("ALTER TABLE ".tablename('zhtc_store')." ADD KEY `user_id_7` (`user_id`)");}
- if(!pdo_fieldexists('zhtc_store','storetype2_id_7')) {pdo_query("ALTER TABLE ".tablename('zhtc_store')." ADD KEY `storetype2_id_7` (`storetype2_id`)");}
- if(!pdo_fieldexists('zhtc_store','storetype_id_7')) {pdo_query("ALTER TABLE ".tablename('zhtc_store')." ADD KEY `storetype_id_7` (`storetype_id`)");}
- if(!pdo_fieldexists('zhtc_store','state_7')) {pdo_query("ALTER TABLE ".tablename('zhtc_store')." ADD KEY `state_7` (`state`)");}
- if(!pdo_fieldexists('zhtc_store','uniacid_8')) {pdo_query("ALTER TABLE ".tablename('zhtc_store')." ADD KEY `uniacid_8` (`uniacid`)");}
- if(!pdo_fieldexists('zhtc_store','user_id_8')) {pdo_query("ALTER TABLE ".tablename('zhtc_store')." ADD KEY `user_id_8` (`user_id`)");}
- if(!pdo_fieldexists('zhtc_store','storetype2_id_8')) {pdo_query("ALTER TABLE ".tablename('zhtc_store')." ADD KEY `storetype2_id_8` (`storetype2_id`)");}
- if(!pdo_fieldexists('zhtc_store','storetype_id_8')) {pdo_query("ALTER TABLE ".tablename('zhtc_store')." ADD KEY `storetype_id_8` (`storetype_id`)");}
- if(!pdo_fieldexists('zhtc_store','state_8')) {pdo_query("ALTER TABLE ".tablename('zhtc_store')." ADD KEY `state_8` (`state`)");}
- if(!pdo_fieldexists('zhtc_store','uniacid_9')) {pdo_query("ALTER TABLE ".tablename('zhtc_store')." ADD KEY `uniacid_9` (`uniacid`)");}
- if(!pdo_fieldexists('zhtc_store','user_id_9')) {pdo_query("ALTER TABLE ".tablename('zhtc_store')." ADD KEY `user_id_9` (`user_id`)");}
- if(!pdo_fieldexists('zhtc_store','storetype2_id_9')) {pdo_query("ALTER TABLE ".tablename('zhtc_store')." ADD KEY `storetype2_id_9` (`storetype2_id`)");}
- if(!pdo_fieldexists('zhtc_store','storetype_id_9')) {pdo_query("ALTER TABLE ".tablename('zhtc_store')." ADD KEY `storetype_id_9` (`storetype_id`)");}
- if(!pdo_fieldexists('zhtc_store','state_9')) {pdo_query("ALTER TABLE ".tablename('zhtc_store')." ADD KEY `state_9` (`state`)");}
- if(!pdo_fieldexists('zhtc_store','uniacid_10')) {pdo_query("ALTER TABLE ".tablename('zhtc_store')." ADD KEY `uniacid_10` (`uniacid`)");}
- if(!pdo_fieldexists('zhtc_store','user_id_10')) {pdo_query("ALTER TABLE ".tablename('zhtc_store')." ADD KEY `user_id_10` (`user_id`)");}
- if(!pdo_fieldexists('zhtc_store','storetype2_id_10')) {pdo_query("ALTER TABLE ".tablename('zhtc_store')." ADD KEY `storetype2_id_10` (`storetype2_id`)");}
- if(!pdo_fieldexists('zhtc_store','storetype_id_10')) {pdo_query("ALTER TABLE ".tablename('zhtc_store')." ADD KEY `storetype_id_10` (`storetype_id`)");}
- if(!pdo_fieldexists('zhtc_store','state_10')) {pdo_query("ALTER TABLE ".tablename('zhtc_store')." ADD KEY `state_10` (`state`)");}
- if(!pdo_fieldexists('zhtc_store','uniacid_11')) {pdo_query("ALTER TABLE ".tablename('zhtc_store')." ADD KEY `uniacid_11` (`uniacid`)");}
- if(!pdo_fieldexists('zhtc_store','user_id_11')) {pdo_query("ALTER TABLE ".tablename('zhtc_store')." ADD KEY `user_id_11` (`user_id`)");}
- if(!pdo_fieldexists('zhtc_store','storetype2_id_11')) {pdo_query("ALTER TABLE ".tablename('zhtc_store')." ADD KEY `storetype2_id_11` (`storetype2_id`)");}
- if(!pdo_fieldexists('zhtc_store','storetype_id_11')) {pdo_query("ALTER TABLE ".tablename('zhtc_store')." ADD KEY `storetype_id_11` (`storetype_id`)");}
- if(!pdo_fieldexists('zhtc_store','state_11')) {pdo_query("ALTER TABLE ".tablename('zhtc_store')." ADD KEY `state_11` (`state`)");}
- if(!pdo_fieldexists('zhtc_store','uniacid_12')) {pdo_query("ALTER TABLE ".tablename('zhtc_store')." ADD KEY `uniacid_12` (`uniacid`)");}
- if(!pdo_fieldexists('zhtc_store','user_id_12')) {pdo_query("ALTER TABLE ".tablename('zhtc_store')." ADD KEY `user_id_12` (`user_id`)");}
- if(!pdo_fieldexists('zhtc_store','storetype2_id_12')) {pdo_query("ALTER TABLE ".tablename('zhtc_store')." ADD KEY `storetype2_id_12` (`storetype2_id`)");}
- if(!pdo_fieldexists('zhtc_store','storetype_id_12')) {pdo_query("ALTER TABLE ".tablename('zhtc_store')." ADD KEY `storetype_id_12` (`storetype_id`)");}
- pdo_query("CREATE TABLE IF NOT EXISTS `ims_zhtc_store_wallet` (
- `id` int(11) NOT NULL AUTO_INCREMENT,
- `store_id` int(11) NOT NULL,
- `money` decimal(10,2) NOT NULL,
- `note` varchar(20) NOT NULL,
- `type` int(11) NOT NULL COMMENT '1加2减',
- `time` varchar(20) NOT NULL,
- `tx_id` int(11) NOT NULL,
- PRIMARY KEY (`id`)
- ) ENGINE=InnoDB AUTO_INCREMENT=12 DEFAULT CHARSET=utf8 COMMENT='商家钱包明细';
- ");
- if(!pdo_fieldexists('zhtc_store_wallet','id')) {pdo_query("ALTER TABLE ".tablename('zhtc_store_wallet')." ADD
- `id` int(11) NOT NULL AUTO_INCREMENT");}
- if(!pdo_fieldexists('zhtc_store_wallet','store_id')) {pdo_query("ALTER TABLE ".tablename('zhtc_store_wallet')." ADD `store_id` int(11) NOT NULL");}
- if(!pdo_fieldexists('zhtc_store_wallet','money')) {pdo_query("ALTER TABLE ".tablename('zhtc_store_wallet')." ADD `money` decimal(10,2) NOT NULL");}
- if(!pdo_fieldexists('zhtc_store_wallet','note')) {pdo_query("ALTER TABLE ".tablename('zhtc_store_wallet')." ADD `note` varchar(20) NOT NULL");}
- if(!pdo_fieldexists('zhtc_store_wallet','type')) {pdo_query("ALTER TABLE ".tablename('zhtc_store_wallet')." ADD `type` int(11) NOT NULL COMMENT '1加2减'");}
- if(!pdo_fieldexists('zhtc_store_wallet','time')) {pdo_query("ALTER TABLE ".tablename('zhtc_store_wallet')." ADD `time` varchar(20) NOT NULL");}
- if(!pdo_fieldexists('zhtc_store_wallet','tx_id')) {pdo_query("ALTER TABLE ".tablename('zhtc_store_wallet')." ADD `tx_id` int(11) NOT NULL");}
- pdo_query("CREATE TABLE IF NOT EXISTS `ims_zhtc_storepaylog` (
- `id` int(11) NOT NULL AUTO_INCREMENT,
- `store_id` int(11) NOT NULL COMMENT '商家ID',
- `money` decimal(10,2) NOT NULL,
- `time` datetime NOT NULL,
- `uniacid` varchar(50) NOT NULL,
- `note` varchar(20) NOT NULL,
- PRIMARY KEY (`id`)
- ) ENGINE=InnoDB AUTO_INCREMENT=9 DEFAULT CHARSET=utf8 COMMENT='商家入驻支付记录表';
- ");
- if(!pdo_fieldexists('zhtc_storepaylog','id')) {pdo_query("ALTER TABLE ".tablename('zhtc_storepaylog')." ADD
- `id` int(11) NOT NULL AUTO_INCREMENT");}
- if(!pdo_fieldexists('zhtc_storepaylog','store_id')) {pdo_query("ALTER TABLE ".tablename('zhtc_storepaylog')." ADD `store_id` int(11) NOT NULL COMMENT '商家ID'");}
- if(!pdo_fieldexists('zhtc_storepaylog','money')) {pdo_query("ALTER TABLE ".tablename('zhtc_storepaylog')." ADD `money` decimal(10,2) NOT NULL");}
- if(!pdo_fieldexists('zhtc_storepaylog','time')) {pdo_query("ALTER TABLE ".tablename('zhtc_storepaylog')." ADD `time` datetime NOT NULL");}
- if(!pdo_fieldexists('zhtc_storepaylog','uniacid')) {pdo_query("ALTER TABLE ".tablename('zhtc_storepaylog')." ADD `uniacid` varchar(50) NOT NULL");}
- if(!pdo_fieldexists('zhtc_storepaylog','note')) {pdo_query("ALTER TABLE ".tablename('zhtc_storepaylog')." ADD `note` varchar(20) NOT NULL");}
- pdo_query("CREATE TABLE IF NOT EXISTS `ims_zhtc_storetype` (
- `id` int(11) NOT NULL AUTO_INCREMENT,
- `type_name` varchar(20) NOT NULL COMMENT '分类名称',
- `img` varchar(100) NOT NULL COMMENT '分类图片',
- `uniacid` int(11) NOT NULL,
- `num` int(11) NOT NULL COMMENT '排序',
- `money` decimal(10,2) NOT NULL,
- `state` int(4) NOT NULL DEFAULT '1',
- PRIMARY KEY (`id`)
- ) ENGINE=InnoDB AUTO_INCREMENT=72 DEFAULT CHARSET=utf8;
- ");
- if(!pdo_fieldexists('zhtc_storetype','id')) {pdo_query("ALTER TABLE ".tablename('zhtc_storetype')." ADD
- `id` int(11) NOT NULL AUTO_INCREMENT");}
- if(!pdo_fieldexists('zhtc_storetype','type_name')) {pdo_query("ALTER TABLE ".tablename('zhtc_storetype')." ADD `type_name` varchar(20) NOT NULL COMMENT '分类名称'");}
- if(!pdo_fieldexists('zhtc_storetype','img')) {pdo_query("ALTER TABLE ".tablename('zhtc_storetype')." ADD `img` varchar(100) NOT NULL COMMENT '分类图片'");}
- if(!pdo_fieldexists('zhtc_storetype','uniacid')) {pdo_query("ALTER TABLE ".tablename('zhtc_storetype')." ADD `uniacid` int(11) NOT NULL");}
- if(!pdo_fieldexists('zhtc_storetype','num')) {pdo_query("ALTER TABLE ".tablename('zhtc_storetype')." ADD `num` int(11) NOT NULL COMMENT '排序'");}
- if(!pdo_fieldexists('zhtc_storetype','money')) {pdo_query("ALTER TABLE ".tablename('zhtc_storetype')." ADD `money` decimal(10,2) NOT NULL");}
- if(!pdo_fieldexists('zhtc_storetype','state')) {pdo_query("ALTER TABLE ".tablename('zhtc_storetype')." ADD `state` int(4) NOT NULL DEFAULT '1'");}
- pdo_query("CREATE TABLE IF NOT EXISTS `ims_zhtc_storetype2` (
- `id` int(11) NOT NULL AUTO_INCREMENT,
- `name` varchar(20) NOT NULL,
- `type_id` int(11) NOT NULL COMMENT '主分类id',
- `num` int(11) NOT NULL COMMENT '排序',
- `uniacid` int(11) NOT NULL,
- `state` int(4) NOT NULL DEFAULT '1',
- PRIMARY KEY (`id`)
- ) ENGINE=InnoDB AUTO_INCREMENT=11 DEFAULT CHARSET=utf8;
- ");
- if(!pdo_fieldexists('zhtc_storetype2','id')) {pdo_query("ALTER TABLE ".tablename('zhtc_storetype2')." ADD
- `id` int(11) NOT NULL AUTO_INCREMENT");}
- if(!pdo_fieldexists('zhtc_storetype2','name')) {pdo_query("ALTER TABLE ".tablename('zhtc_storetype2')." ADD `name` varchar(20) NOT NULL");}
- if(!pdo_fieldexists('zhtc_storetype2','type_id')) {pdo_query("ALTER TABLE ".tablename('zhtc_storetype2')." ADD `type_id` int(11) NOT NULL COMMENT '主分类id'");}
- if(!pdo_fieldexists('zhtc_storetype2','num')) {pdo_query("ALTER TABLE ".tablename('zhtc_storetype2')." ADD `num` int(11) NOT NULL COMMENT '排序'");}
- if(!pdo_fieldexists('zhtc_storetype2','uniacid')) {pdo_query("ALTER TABLE ".tablename('zhtc_storetype2')." ADD `uniacid` int(11) NOT NULL");}
- if(!pdo_fieldexists('zhtc_storetype2','state')) {pdo_query("ALTER TABLE ".tablename('zhtc_storetype2')." ADD `state` int(4) NOT NULL DEFAULT '1'");}
- pdo_query("CREATE TABLE IF NOT EXISTS `ims_zhtc_storetypead` (
- `id` int(11) unsigned NOT NULL AUTO_INCREMENT,
- `title` varchar(50) NOT NULL COMMENT '轮播图标题',
- `logo` varchar(200) NOT NULL COMMENT '图片',
- `status` int(11) NOT NULL COMMENT '1.开启 2.关闭',
- `src` varchar(100) NOT NULL COMMENT '链接',
- `orderby` int(11) NOT NULL COMMENT '排序',
- `xcx_name` varchar(20) NOT NULL,
- `appid` varchar(20) NOT NULL,
- `type_id` int(11) NOT NULL,
- `type_id2` int(11) NOT NULL,
- `uniacid` int(11) NOT NULL COMMENT '小程序id',
- `cityname` varchar(50) NOT NULL COMMENT '城市名称',
- `wb_src` varchar(300) NOT NULL COMMENT '外部链接',
- `state` int(4) NOT NULL DEFAULT '1' COMMENT '1内部,2外部,3跳转',
- PRIMARY KEY (`id`)
- ) ENGINE=InnoDB AUTO_INCREMENT=7 DEFAULT CHARSET=utf8;
- ");
- if(!pdo_fieldexists('zhtc_storetypead','id')) {pdo_query("ALTER TABLE ".tablename('zhtc_storetypead')." ADD
- `id` int(11) unsigned NOT NULL AUTO_INCREMENT");}
- if(!pdo_fieldexists('zhtc_storetypead','title')) {pdo_query("ALTER TABLE ".tablename('zhtc_storetypead')." ADD `title` varchar(50) NOT NULL COMMENT '轮播图标题'");}
- if(!pdo_fieldexists('zhtc_storetypead','logo')) {pdo_query("ALTER TABLE ".tablename('zhtc_storetypead')." ADD `logo` varchar(200) NOT NULL COMMENT '图片'");}
- if(!pdo_fieldexists('zhtc_storetypead','status')) {pdo_query("ALTER TABLE ".tablename('zhtc_storetypead')." ADD `status` int(11) NOT NULL COMMENT '1.开启 2.关闭'");}
- if(!pdo_fieldexists('zhtc_storetypead','src')) {pdo_query("ALTER TABLE ".tablename('zhtc_storetypead')." ADD `src` varchar(100) NOT NULL COMMENT '链接'");}
- if(!pdo_fieldexists('zhtc_storetypead','orderby')) {pdo_query("ALTER TABLE ".tablename('zhtc_storetypead')." ADD `orderby` int(11) NOT NULL COMMENT '排序'");}
- if(!pdo_fieldexists('zhtc_storetypead','xcx_name')) {pdo_query("ALTER TABLE ".tablename('zhtc_storetypead')." ADD `xcx_name` varchar(20) NOT NULL");}
- if(!pdo_fieldexists('zhtc_storetypead','appid')) {pdo_query("ALTER TABLE ".tablename('zhtc_storetypead')." ADD `appid` varchar(20) NOT NULL");}
- if(!pdo_fieldexists('zhtc_storetypead','type_id')) {pdo_query("ALTER TABLE ".tablename('zhtc_storetypead')." ADD `type_id` int(11) NOT NULL");}
- if(!pdo_fieldexists('zhtc_storetypead','type_id2')) {pdo_query("ALTER TABLE ".tablename('zhtc_storetypead')." ADD `type_id2` int(11) NOT NULL");}
- if(!pdo_fieldexists('zhtc_storetypead','uniacid')) {pdo_query("ALTER TABLE ".tablename('zhtc_storetypead')." ADD `uniacid` int(11) NOT NULL COMMENT '小程序id'");}
- if(!pdo_fieldexists('zhtc_storetypead','cityname')) {pdo_query("ALTER TABLE ".tablename('zhtc_storetypead')." ADD `cityname` varchar(50) NOT NULL COMMENT '城市名称'");}
- if(!pdo_fieldexists('zhtc_storetypead','wb_src')) {pdo_query("ALTER TABLE ".tablename('zhtc_storetypead')." ADD `wb_src` varchar(300) NOT NULL COMMENT '外部链接'");}
- if(!pdo_fieldexists('zhtc_storetypead','state')) {pdo_query("ALTER TABLE ".tablename('zhtc_storetypead')." ADD `state` int(4) NOT NULL DEFAULT '1' COMMENT '1内部,2外部,3跳转'");}
- pdo_query("CREATE TABLE IF NOT EXISTS `ims_zhtc_system` (
- `id` int(11) NOT NULL AUTO_INCREMENT,
- `appid` varchar(100) NOT NULL COMMENT 'appid',
- `appsecret` varchar(200) NOT NULL COMMENT 'appsecret',
- `mchid` varchar(20) NOT NULL COMMENT '商户号',
- `wxkey` varchar(100) NOT NULL COMMENT '商户秘钥',
- `uniacid` varchar(50) NOT NULL,
- `url_name` varchar(20) NOT NULL COMMENT '网址名称',
- `details` text NOT NULL COMMENT '关于我们',
- `url_logo` varchar(100) NOT NULL COMMENT '网址logo',
- `bq_name` varchar(50) NOT NULL COMMENT '版权名称',
- `link_name` varchar(30) NOT NULL COMMENT '网站名称',
- `link_logo` varchar(100) NOT NULL COMMENT '网站logo',
- `support` varchar(20) NOT NULL COMMENT '技术支持',
- `bq_logo` varchar(100) NOT NULL,
- `color` varchar(20) NOT NULL,
- `tz_appid` varchar(30) NOT NULL,
- `tz_name` varchar(30) NOT NULL,
- `pt_name` varchar(30) NOT NULL COMMENT '平台名称',
- `tz_audit` int(11) NOT NULL COMMENT '帖子审核1.是 2否',
- `sj_audit` int(11) NOT NULL COMMENT '商家审核1.是 2否',
- `mapkey` varchar(200) NOT NULL,
- `tel` varchar(20) NOT NULL,
- `gd_key` varchar(100) NOT NULL,
- `rz_xuz` text NOT NULL,
- `ft_xuz` text NOT NULL,
- `fx_money` decimal(10,2) NOT NULL,
- `hb_sxf` int(11) NOT NULL,
- `tx_money` decimal(10,2) NOT NULL,
- `tx_sxf` int(11) NOT NULL,
- `tx_details` text NOT NULL,
- `is_hhr` int(4) NOT NULL DEFAULT '2',
- `is_hbfl` int(4) NOT NULL DEFAULT '2',
- `is_zx` int(4) NOT NULL DEFAULT '2',
- `is_car` int(4) NOT NULL,
- `pc_xuz` text NOT NULL,
- `pc_money` decimal(10,2) NOT NULL,
- `is_sjrz` int(4) NOT NULL,
- `is_pcfw` int(4) NOT NULL,
- `total_num` int(11) NOT NULL,
- `is_goods` int(4) NOT NULL,
- `apiclient_cert` text NOT NULL,
- `apiclient_key` text NOT NULL,
- `is_openzx` int(4) NOT NULL,
- `is_hyset` int(4) NOT NULL,
- `is_tzopen` int(4) NOT NULL,
- `is_pageopen` int(4) NOT NULL,
- `cityname` varchar(50) NOT NULL,
- `is_tel` int(4) NOT NULL DEFAULT '1',
- `tx_mode` int(4) NOT NULL DEFAULT '1',
- `many_city` int(4) NOT NULL DEFAULT '2',
- `tx_type` int(4) NOT NULL DEFAULT '2',
- `is_hbzf` int(4) NOT NULL DEFAULT '1',
- `hb_img` varchar(100) NOT NULL,
- `tz_num` int(11) NOT NULL,
- `client_ip` varchar(30) NOT NULL,
- `hb_content` varchar(100) NOT NULL,
- `is_tzhb` int(4) NOT NULL DEFAULT '1',
- `sj_max` varchar(1) NOT NULL,
- `zfwl_max` varchar(1) NOT NULL,
- `zfwl_open` int(4) NOT NULL DEFAULT '1',
- `zx_type` int(4) NOT NULL DEFAULT '1',
- `ft_num` int(11) NOT NULL,
- `is_img` int(11) NOT NULL DEFAULT '2',
- `is_sjhb` int(11) NOT NULL DEFAULT '1',
- `is_tzdz` int(11) NOT NULL DEFAULT '1',
- `is_rz` int(11) NOT NULL DEFAULT '1',
- `integral` int(11) NOT NULL,
- `integral2` int(11) NOT NULL,
- `is_jf` int(11) NOT NULL DEFAULT '1',
- `is_kf` int(11) NOT NULL DEFAULT '1',
- `dw_more` int(11) NOT NULL DEFAULT '2',
- `is_zxrz` int(11) NOT NULL DEFAULT '1',
- `tzmc` varchar(20) NOT NULL DEFAULT '帖子',
- `is_dnss` int(11) NOT NULL DEFAULT '1',
- `is_vr` int(11) NOT NULL DEFAULT '1',
- `is_yysj` int(11) NOT NULL DEFAULT '1',
- `tc_img` varchar(100) NOT NULL,
- `tc_gg` varchar(100) NOT NULL,
- `hbbj_img` varchar(200) NOT NULL,
- `gs_img` text NOT NULL,
- `gs_details` text NOT NULL,
- `gs_tel` varchar(20) NOT NULL,
- `gs_time` varchar(50) NOT NULL,
- `gs_add` varchar(200) NOT NULL,
- `gs_zb` varchar(50) NOT NULL,
- `model` int(4) NOT NULL DEFAULT '1',
- `is_bm` int(11) NOT NULL DEFAULT '2',
- `zf_title` varchar(50) NOT NULL,
- `sh_time` int(11) NOT NULL,
- `is_qgb` int(11) NOT NULL DEFAULT '2',
- `is_qgb2` int(11) NOT NULL DEFAULT '2',
- `is_coupon` int(11) NOT NULL DEFAULT '2',
- `is_sy` int(11) NOT NULL DEFAULT '2',
- `coupon_img` varchar(500) NOT NULL,
- `kp_img` varchar(500) NOT NULL,
- `kp_time` int(11) NOT NULL DEFAULT '3',
- `is_hd` int(11) NOT NULL DEFAULT '2',
- `sj_max2` int(11) NOT NULL,
- `is_pcqx` int(11) NOT NULL DEFAULT '1',
- `is_hyqx` int(11) NOT NULL DEFAULT '1',
- `is_yhqqx` int(11) NOT NULL DEFAULT '1',
- `is_syqx` int(11) NOT NULL DEFAULT '1',
- `is_hdqx` int(11) NOT NULL DEFAULT '1',
- `is_hbqx` int(11) NOT NULL DEFAULT '1',
- `is_hhrqx` int(11) NOT NULL DEFAULT '1',
- `is_dcsqx` int(11) NOT NULL DEFAULT '1',
- `is_jfqx` int(11) NOT NULL DEFAULT '1',
- `is_spqx` int(11) NOT NULL DEFAULT '1',
- `is_sp` int(11) NOT NULL DEFAULT '1',
- `sygg_name` varchar(20) NOT NULL DEFAULT '同城头条',
- `sjgg_name` varchar(20) NOT NULL DEFAULT '信息头条',
- `flgg_name` varchar(20) NOT NULL DEFAULT '商家快报',
- `is_zf` int(11) NOT NULL DEFAULT '1',
- `is_yhqsh` int(11) NOT NULL DEFAULT '1',
- `hb_name` varchar(20) NOT NULL DEFAULT '红包',
- `fl_name` varchar(20) NOT NULL DEFAULT '福利',
- `is_pzsj` int(11) NOT NULL DEFAULT '1',
- `ggoods_set` int(4) NOT NULL DEFAULT '1',
- `is_xsqg` int(4) NOT NULL DEFAULT '2',
- `xgsh` int(4) NOT NULL DEFAULT '1',
- `is_qgqx` int(4) NOT NULL DEFAULT '2',
- `g_open` int(4) NOT NULL DEFAULT '2',
- `g_qx` int(4) NOT NULL DEFAULT '1',
- `fx_jf` int(11) NOT NULL,
- `good_jf` int(11) NOT NULL,
- `is_city` int(11) NOT NULL DEFAULT '1',
- `hy_title` varchar(20) NOT NULL DEFAULT '黄页114',
- `kp_url` varchar(300) NOT NULL,
- `is_message` int(4) NOT NULL DEFAULT '1',
- `is_bdtel` int(4) NOT NULL DEFAULT '1',
- `is_ff` int(4) NOT NULL DEFAULT '2',
- `is_pgzf` int(4) NOT NULL DEFAULT '2',
- `is_video` int(4) NOT NULL DEFAULT '1',
- `fj_tz` int(4) NOT NULL DEFAULT '2',
- `cz_password` varchar(20) NOT NULL,
- `is_style` int(1) NOT NULL DEFAULT '1',
- `is_pl` int(1) NOT NULL DEFAULT '1',
- `is_plsh` int(1) NOT NULL DEFAULT '2',
- `callProportion` int(11) NOT NULL,
- `is_zxplsh` int(1) NOT NULL DEFAULT '2',
- PRIMARY KEY (`id`)
- ) ENGINE=InnoDB AUTO_INCREMENT=21 DEFAULT CHARSET=utf8;
- ");
- if(!pdo_fieldexists('zhtc_system','id')) {pdo_query("ALTER TABLE ".tablename('zhtc_system')." ADD
- `id` int(11) NOT NULL AUTO_INCREMENT");}
- if(!pdo_fieldexists('zhtc_system','appid')) {pdo_query("ALTER TABLE ".tablename('zhtc_system')." ADD `appid` varchar(100) NOT NULL COMMENT 'appid'");}
- if(!pdo_fieldexists('zhtc_system','appsecret')) {pdo_query("ALTER TABLE ".tablename('zhtc_system')." ADD `appsecret` varchar(200) NOT NULL COMMENT 'appsecret'");}
- if(!pdo_fieldexists('zhtc_system','mchid')) {pdo_query("ALTER TABLE ".tablename('zhtc_system')." ADD `mchid` varchar(20) NOT NULL COMMENT '商户号'");}
- if(!pdo_fieldexists('zhtc_system','wxkey')) {pdo_query("ALTER TABLE ".tablename('zhtc_system')." ADD `wxkey` varchar(100) NOT NULL COMMENT '商户秘钥'");}
- if(!pdo_fieldexists('zhtc_system','uniacid')) {pdo_query("ALTER TABLE ".tablename('zhtc_system')." ADD `uniacid` varchar(50) NOT NULL");}
- if(!pdo_fieldexists('zhtc_system','url_name')) {pdo_query("ALTER TABLE ".tablename('zhtc_system')." ADD `url_name` varchar(20) NOT NULL COMMENT '网址名称'");}
- if(!pdo_fieldexists('zhtc_system','details')) {pdo_query("ALTER TABLE ".tablename('zhtc_system')." ADD `details` text NOT NULL COMMENT '关于我们'");}
- if(!pdo_fieldexists('zhtc_system','url_logo')) {pdo_query("ALTER TABLE ".tablename('zhtc_system')." ADD `url_logo` varchar(100) NOT NULL COMMENT '网址logo'");}
- if(!pdo_fieldexists('zhtc_system','bq_name')) {pdo_query("ALTER TABLE ".tablename('zhtc_system')." ADD `bq_name` varchar(50) NOT NULL COMMENT '版权名称'");}
- if(!pdo_fieldexists('zhtc_system','link_name')) {pdo_query("ALTER TABLE ".tablename('zhtc_system')." ADD `link_name` varchar(30) NOT NULL COMMENT '网站名称'");}
- if(!pdo_fieldexists('zhtc_system','link_logo')) {pdo_query("ALTER TABLE ".tablename('zhtc_system')." ADD `link_logo` varchar(100) NOT NULL COMMENT '网站logo'");}
- if(!pdo_fieldexists('zhtc_system','support')) {pdo_query("ALTER TABLE ".tablename('zhtc_system')." ADD `support` varchar(20) NOT NULL COMMENT '技术支持'");}
- if(!pdo_fieldexists('zhtc_system','bq_logo')) {pdo_query("ALTER TABLE ".tablename('zhtc_system')." ADD `bq_logo` varchar(100) NOT NULL");}
- if(!pdo_fieldexists('zhtc_system','color')) {pdo_query("ALTER TABLE ".tablename('zhtc_system')." ADD `color` varchar(20) NOT NULL");}
- if(!pdo_fieldexists('zhtc_system','tz_appid')) {pdo_query("ALTER TABLE ".tablename('zhtc_system')." ADD `tz_appid` varchar(30) NOT NULL");}
- if(!pdo_fieldexists('zhtc_system','tz_name')) {pdo_query("ALTER TABLE ".tablename('zhtc_system')." ADD `tz_name` varchar(30) NOT NULL");}
- if(!pdo_fieldexists('zhtc_system','pt_name')) {pdo_query("ALTER TABLE ".tablename('zhtc_system')." ADD `pt_name` varchar(30) NOT NULL COMMENT '平台名称'");}
- if(!pdo_fieldexists('zhtc_system','tz_audit')) {pdo_query("ALTER TABLE ".tablename('zhtc_system')." ADD `tz_audit` int(11) NOT NULL COMMENT '帖子审核1.是 2否'");}
- if(!pdo_fieldexists('zhtc_system','sj_audit')) {pdo_query("ALTER TABLE ".tablename('zhtc_system')." ADD `sj_audit` int(11) NOT NULL COMMENT '商家审核1.是 2否'");}
- if(!pdo_fieldexists('zhtc_system','mapkey')) {pdo_query("ALTER TABLE ".tablename('zhtc_system')." ADD `mapkey` varchar(200) NOT NULL");}
- if(!pdo_fieldexists('zhtc_system','tel')) {pdo_query("ALTER TABLE ".tablename('zhtc_system')." ADD `tel` varchar(20) NOT NULL");}
- if(!pdo_fieldexists('zhtc_system','gd_key')) {pdo_query("ALTER TABLE ".tablename('zhtc_system')." ADD `gd_key` varchar(100) NOT NULL");}
- if(!pdo_fieldexists('zhtc_system','rz_xuz')) {pdo_query("ALTER TABLE ".tablename('zhtc_system')." ADD `rz_xuz` text NOT NULL");}
- if(!pdo_fieldexists('zhtc_system','ft_xuz')) {pdo_query("ALTER TABLE ".tablename('zhtc_system')." ADD `ft_xuz` text NOT NULL");}
- if(!pdo_fieldexists('zhtc_system','fx_money')) {pdo_query("ALTER TABLE ".tablename('zhtc_system')." ADD `fx_money` decimal(10,2) NOT NULL");}
- if(!pdo_fieldexists('zhtc_system','hb_sxf')) {pdo_query("ALTER TABLE ".tablename('zhtc_system')." ADD `hb_sxf` int(11) NOT NULL");}
- if(!pdo_fieldexists('zhtc_system','tx_money')) {pdo_query("ALTER TABLE ".tablename('zhtc_system')." ADD `tx_money` decimal(10,2) NOT NULL");}
- if(!pdo_fieldexists('zhtc_system','tx_sxf')) {pdo_query("ALTER TABLE ".tablename('zhtc_system')." ADD `tx_sxf` int(11) NOT NULL");}
- if(!pdo_fieldexists('zhtc_system','tx_details')) {pdo_query("ALTER TABLE ".tablename('zhtc_system')." ADD `tx_details` text NOT NULL");}
- if(!pdo_fieldexists('zhtc_system','is_hhr')) {pdo_query("ALTER TABLE ".tablename('zhtc_system')." ADD `is_hhr` int(4) NOT NULL DEFAULT '2'");}
- if(!pdo_fieldexists('zhtc_system','is_hbfl')) {pdo_query("ALTER TABLE ".tablename('zhtc_system')." ADD `is_hbfl` int(4) NOT NULL DEFAULT '2'");}
- if(!pdo_fieldexists('zhtc_system','is_zx')) {pdo_query("ALTER TABLE ".tablename('zhtc_system')." ADD `is_zx` int(4) NOT NULL DEFAULT '2'");}
- if(!pdo_fieldexists('zhtc_system','is_car')) {pdo_query("ALTER TABLE ".tablename('zhtc_system')." ADD `is_car` int(4) NOT NULL");}
- if(!pdo_fieldexists('zhtc_system','pc_xuz')) {pdo_query("ALTER TABLE ".tablename('zhtc_system')." ADD `pc_xuz` text NOT NULL");}
- if(!pdo_fieldexists('zhtc_system','pc_money')) {pdo_query("ALTER TABLE ".tablename('zhtc_system')." ADD `pc_money` decimal(10,2) NOT NULL");}
- if(!pdo_fieldexists('zhtc_system','is_sjrz')) {pdo_query("ALTER TABLE ".tablename('zhtc_system')." ADD `is_sjrz` int(4) NOT NULL");}
- if(!pdo_fieldexists('zhtc_system','is_pcfw')) {pdo_query("ALTER TABLE ".tablename('zhtc_system')." ADD `is_pcfw` int(4) NOT NULL");}
- if(!pdo_fieldexists('zhtc_system','total_num')) {pdo_query("ALTER TABLE ".tablename('zhtc_system')." ADD `total_num` int(11) NOT NULL");}
- if(!pdo_fieldexists('zhtc_system','is_goods')) {pdo_query("ALTER TABLE ".tablename('zhtc_system')." ADD `is_goods` int(4) NOT NULL");}
- if(!pdo_fieldexists('zhtc_system','apiclient_cert')) {pdo_query("ALTER TABLE ".tablename('zhtc_system')." ADD `apiclient_cert` text NOT NULL");}
- if(!pdo_fieldexists('zhtc_system','apiclient_key')) {pdo_query("ALTER TABLE ".tablename('zhtc_system')." ADD `apiclient_key` text NOT NULL");}
- if(!pdo_fieldexists('zhtc_system','is_openzx')) {pdo_query("ALTER TABLE ".tablename('zhtc_system')." ADD `is_openzx` int(4) NOT NULL");}
- if(!pdo_fieldexists('zhtc_system','is_hyset')) {pdo_query("ALTER TABLE ".tablename('zhtc_system')." ADD `is_hyset` int(4) NOT NULL");}
- if(!pdo_fieldexists('zhtc_system','is_tzopen')) {pdo_query("ALTER TABLE ".tablename('zhtc_system')." ADD `is_tzopen` int(4) NOT NULL");}
- if(!pdo_fieldexists('zhtc_system','is_pageopen')) {pdo_query("ALTER TABLE ".tablename('zhtc_system')." ADD `is_pageopen` int(4) NOT NULL");}
- if(!pdo_fieldexists('zhtc_system','cityname')) {pdo_query("ALTER TABLE ".tablename('zhtc_system')." ADD `cityname` varchar(50) NOT NULL");}
- if(!pdo_fieldexists('zhtc_system','is_tel')) {pdo_query("ALTER TABLE ".tablename('zhtc_system')." ADD `is_tel` int(4) NOT NULL DEFAULT '1'");}
- if(!pdo_fieldexists('zhtc_system','tx_mode')) {pdo_query("ALTER TABLE ".tablename('zhtc_system')." ADD `tx_mode` int(4) NOT NULL DEFAULT '1'");}
- if(!pdo_fieldexists('zhtc_system','many_city')) {pdo_query("ALTER TABLE ".tablename('zhtc_system')." ADD `many_city` int(4) NOT NULL DEFAULT '2'");}
- if(!pdo_fieldexists('zhtc_system','tx_type')) {pdo_query("ALTER TABLE ".tablename('zhtc_system')." ADD `tx_type` int(4) NOT NULL DEFAULT '2'");}
- if(!pdo_fieldexists('zhtc_system','is_hbzf')) {pdo_query("ALTER TABLE ".tablename('zhtc_system')." ADD `is_hbzf` int(4) NOT NULL DEFAULT '1'");}
- if(!pdo_fieldexists('zhtc_system','hb_img')) {pdo_query("ALTER TABLE ".tablename('zhtc_system')." ADD `hb_img` varchar(100) NOT NULL");}
- if(!pdo_fieldexists('zhtc_system','tz_num')) {pdo_query("ALTER TABLE ".tablename('zhtc_system')." ADD `tz_num` int(11) NOT NULL");}
- if(!pdo_fieldexists('zhtc_system','client_ip')) {pdo_query("ALTER TABLE ".tablename('zhtc_system')." ADD `client_ip` varchar(30) NOT NULL");}
- if(!pdo_fieldexists('zhtc_system','hb_content')) {pdo_query("ALTER TABLE ".tablename('zhtc_system')." ADD `hb_content` varchar(100) NOT NULL");}
- if(!pdo_fieldexists('zhtc_system','is_tzhb')) {pdo_query("ALTER TABLE ".tablename('zhtc_system')." ADD `is_tzhb` int(4) NOT NULL DEFAULT '1'");}
- if(!pdo_fieldexists('zhtc_system','sj_max')) {pdo_query("ALTER TABLE ".tablename('zhtc_system')." ADD `sj_max` varchar(1) NOT NULL");}
- if(!pdo_fieldexists('zhtc_system','zfwl_max')) {pdo_query("ALTER TABLE ".tablename('zhtc_system')." ADD `zfwl_max` varchar(1) NOT NULL");}
- if(!pdo_fieldexists('zhtc_system','zfwl_open')) {pdo_query("ALTER TABLE ".tablename('zhtc_system')." ADD `zfwl_open` int(4) NOT NULL DEFAULT '1'");}
- if(!pdo_fieldexists('zhtc_system','zx_type')) {pdo_query("ALTER TABLE ".tablename('zhtc_system')." ADD `zx_type` int(4) NOT NULL DEFAULT '1'");}
- if(!pdo_fieldexists('zhtc_system','ft_num')) {pdo_query("ALTER TABLE ".tablename('zhtc_system')." ADD `ft_num` int(11) NOT NULL");}
- if(!pdo_fieldexists('zhtc_system','is_img')) {pdo_query("ALTER TABLE ".tablename('zhtc_system')." ADD `is_img` int(11) NOT NULL DEFAULT '2'");}
- if(!pdo_fieldexists('zhtc_system','is_sjhb')) {pdo_query("ALTER TABLE ".tablename('zhtc_system')." ADD `is_sjhb` int(11) NOT NULL DEFAULT '1'");}
- if(!pdo_fieldexists('zhtc_system','is_tzdz')) {pdo_query("ALTER TABLE ".tablename('zhtc_system')." ADD `is_tzdz` int(11) NOT NULL DEFAULT '1'");}
- if(!pdo_fieldexists('zhtc_system','is_rz')) {pdo_query("ALTER TABLE ".tablename('zhtc_system')." ADD `is_rz` int(11) NOT NULL DEFAULT '1'");}
- if(!pdo_fieldexists('zhtc_system','integral')) {pdo_query("ALTER TABLE ".tablename('zhtc_system')." ADD `integral` int(11) NOT NULL");}
- if(!pdo_fieldexists('zhtc_system','integral2')) {pdo_query("ALTER TABLE ".tablename('zhtc_system')." ADD `integral2` int(11) NOT NULL");}
- if(!pdo_fieldexists('zhtc_system','is_jf')) {pdo_query("ALTER TABLE ".tablename('zhtc_system')." ADD `is_jf` int(11) NOT NULL DEFAULT '1'");}
- if(!pdo_fieldexists('zhtc_system','is_kf')) {pdo_query("ALTER TABLE ".tablename('zhtc_system')." ADD `is_kf` int(11) NOT NULL DEFAULT '1'");}
- if(!pdo_fieldexists('zhtc_system','dw_more')) {pdo_query("ALTER TABLE ".tablename('zhtc_system')." ADD `dw_more` int(11) NOT NULL DEFAULT '2'");}
- if(!pdo_fieldexists('zhtc_system','is_zxrz')) {pdo_query("ALTER TABLE ".tablename('zhtc_system')." ADD `is_zxrz` int(11) NOT NULL DEFAULT '1'");}
- if(!pdo_fieldexists('zhtc_system','tzmc')) {pdo_query("ALTER TABLE ".tablename('zhtc_system')." ADD `tzmc` varchar(20) NOT NULL DEFAULT '帖子'");}
- if(!pdo_fieldexists('zhtc_system','is_dnss')) {pdo_query("ALTER TABLE ".tablename('zhtc_system')." ADD `is_dnss` int(11) NOT NULL DEFAULT '1'");}
- if(!pdo_fieldexists('zhtc_system','is_vr')) {pdo_query("ALTER TABLE ".tablename('zhtc_system')." ADD `is_vr` int(11) NOT NULL DEFAULT '1'");}
- if(!pdo_fieldexists('zhtc_system','is_yysj')) {pdo_query("ALTER TABLE ".tablename('zhtc_system')." ADD `is_yysj` int(11) NOT NULL DEFAULT '1'");}
- if(!pdo_fieldexists('zhtc_system','tc_img')) {pdo_query("ALTER TABLE ".tablename('zhtc_system')." ADD `tc_img` varchar(100) NOT NULL");}
- if(!pdo_fieldexists('zhtc_system','tc_gg')) {pdo_query("ALTER TABLE ".tablename('zhtc_system')." ADD `tc_gg` varchar(100) NOT NULL");}
- if(!pdo_fieldexists('zhtc_system','hbbj_img')) {pdo_query("ALTER TABLE ".tablename('zhtc_system')." ADD `hbbj_img` varchar(200) NOT NULL");}
- if(!pdo_fieldexists('zhtc_system','gs_img')) {pdo_query("ALTER TABLE ".tablename('zhtc_system')." ADD `gs_img` text NOT NULL");}
- if(!pdo_fieldexists('zhtc_system','gs_details')) {pdo_query("ALTER TABLE ".tablename('zhtc_system')." ADD `gs_details` text NOT NULL");}
- if(!pdo_fieldexists('zhtc_system','gs_tel')) {pdo_query("ALTER TABLE ".tablename('zhtc_system')." ADD `gs_tel` varchar(20) NOT NULL");}
- if(!pdo_fieldexists('zhtc_system','gs_time')) {pdo_query("ALTER TABLE ".tablename('zhtc_system')." ADD `gs_time` varchar(50) NOT NULL");}
- if(!pdo_fieldexists('zhtc_system','gs_add')) {pdo_query("ALTER TABLE ".tablename('zhtc_system')." ADD `gs_add` varchar(200) NOT NULL");}
- if(!pdo_fieldexists('zhtc_system','gs_zb')) {pdo_query("ALTER TABLE ".tablename('zhtc_system')." ADD `gs_zb` varchar(50) NOT NULL");}
- if(!pdo_fieldexists('zhtc_system','model')) {pdo_query("ALTER TABLE ".tablename('zhtc_system')." ADD `model` int(4) NOT NULL DEFAULT '1'");}
- if(!pdo_fieldexists('zhtc_system','is_bm')) {pdo_query("ALTER TABLE ".tablename('zhtc_system')." ADD `is_bm` int(11) NOT NULL DEFAULT '2'");}
- if(!pdo_fieldexists('zhtc_system','zf_title')) {pdo_query("ALTER TABLE ".tablename('zhtc_system')." ADD `zf_title` varchar(50) NOT NULL");}
- if(!pdo_fieldexists('zhtc_system','sh_time')) {pdo_query("ALTER TABLE ".tablename('zhtc_system')." ADD `sh_time` int(11) NOT NULL");}
- if(!pdo_fieldexists('zhtc_system','is_qgb')) {pdo_query("ALTER TABLE ".tablename('zhtc_system')." ADD `is_qgb` int(11) NOT NULL DEFAULT '2'");}
- if(!pdo_fieldexists('zhtc_system','is_qgb2')) {pdo_query("ALTER TABLE ".tablename('zhtc_system')." ADD `is_qgb2` int(11) NOT NULL DEFAULT '2'");}
- if(!pdo_fieldexists('zhtc_system','is_coupon')) {pdo_query("ALTER TABLE ".tablename('zhtc_system')." ADD `is_coupon` int(11) NOT NULL DEFAULT '2'");}
- if(!pdo_fieldexists('zhtc_system','is_sy')) {pdo_query("ALTER TABLE ".tablename('zhtc_system')." ADD `is_sy` int(11) NOT NULL DEFAULT '2'");}
- if(!pdo_fieldexists('zhtc_system','coupon_img')) {pdo_query("ALTER TABLE ".tablename('zhtc_system')." ADD `coupon_img` varchar(500) NOT NULL");}
- if(!pdo_fieldexists('zhtc_system','kp_img')) {pdo_query("ALTER TABLE ".tablename('zhtc_system')." ADD `kp_img` varchar(500) NOT NULL");}
- if(!pdo_fieldexists('zhtc_system','kp_time')) {pdo_query("ALTER TABLE ".tablename('zhtc_system')." ADD `kp_time` int(11) NOT NULL DEFAULT '3'");}
- if(!pdo_fieldexists('zhtc_system','is_hd')) {pdo_query("ALTER TABLE ".tablename('zhtc_system')." ADD `is_hd` int(11) NOT NULL DEFAULT '2'");}
- if(!pdo_fieldexists('zhtc_system','sj_max2')) {pdo_query("ALTER TABLE ".tablename('zhtc_system')." ADD `sj_max2` int(11) NOT NULL");}
- if(!pdo_fieldexists('zhtc_system','is_pcqx')) {pdo_query("ALTER TABLE ".tablename('zhtc_system')." ADD `is_pcqx` int(11) NOT NULL DEFAULT '1'");}
- if(!pdo_fieldexists('zhtc_system','is_hyqx')) {pdo_query("ALTER TABLE ".tablename('zhtc_system')." ADD `is_hyqx` int(11) NOT NULL DEFAULT '1'");}
- if(!pdo_fieldexists('zhtc_system','is_yhqqx')) {pdo_query("ALTER TABLE ".tablename('zhtc_system')." ADD `is_yhqqx` int(11) NOT NULL DEFAULT '1'");}
- if(!pdo_fieldexists('zhtc_system','is_syqx')) {pdo_query("ALTER TABLE ".tablename('zhtc_system')." ADD `is_syqx` int(11) NOT NULL DEFAULT '1'");}
- if(!pdo_fieldexists('zhtc_system','is_hdqx')) {pdo_query("ALTER TABLE ".tablename('zhtc_system')." ADD `is_hdqx` int(11) NOT NULL DEFAULT '1'");}
- if(!pdo_fieldexists('zhtc_system','is_hbqx')) {pdo_query("ALTER TABLE ".tablename('zhtc_system')." ADD `is_hbqx` int(11) NOT NULL DEFAULT '1'");}
- if(!pdo_fieldexists('zhtc_system','is_hhrqx')) {pdo_query("ALTER TABLE ".tablename('zhtc_system')." ADD `is_hhrqx` int(11) NOT NULL DEFAULT '1'");}
- if(!pdo_fieldexists('zhtc_system','is_dcsqx')) {pdo_query("ALTER TABLE ".tablename('zhtc_system')." ADD `is_dcsqx` int(11) NOT NULL DEFAULT '1'");}
- if(!pdo_fieldexists('zhtc_system','is_jfqx')) {pdo_query("ALTER TABLE ".tablename('zhtc_system')." ADD `is_jfqx` int(11) NOT NULL DEFAULT '1'");}
- if(!pdo_fieldexists('zhtc_system','is_spqx')) {pdo_query("ALTER TABLE ".tablename('zhtc_system')." ADD `is_spqx` int(11) NOT NULL DEFAULT '1'");}
- if(!pdo_fieldexists('zhtc_system','is_sp')) {pdo_query("ALTER TABLE ".tablename('zhtc_system')." ADD `is_sp` int(11) NOT NULL DEFAULT '1'");}
- if(!pdo_fieldexists('zhtc_system','sygg_name')) {pdo_query("ALTER TABLE ".tablename('zhtc_system')." ADD `sygg_name` varchar(20) NOT NULL DEFAULT '同城头条'");}
- if(!pdo_fieldexists('zhtc_system','sjgg_name')) {pdo_query("ALTER TABLE ".tablename('zhtc_system')." ADD `sjgg_name` varchar(20) NOT NULL DEFAULT '信息头条'");}
- if(!pdo_fieldexists('zhtc_system','flgg_name')) {pdo_query("ALTER TABLE ".tablename('zhtc_system')." ADD `flgg_name` varchar(20) NOT NULL DEFAULT '商家快报'");}
- if(!pdo_fieldexists('zhtc_system','is_zf')) {pdo_query("ALTER TABLE ".tablename('zhtc_system')." ADD `is_zf` int(11) NOT NULL DEFAULT '1'");}
- if(!pdo_fieldexists('zhtc_system','is_yhqsh')) {pdo_query("ALTER TABLE ".tablename('zhtc_system')." ADD `is_yhqsh` int(11) NOT NULL DEFAULT '1'");}
- if(!pdo_fieldexists('zhtc_system','hb_name')) {pdo_query("ALTER TABLE ".tablename('zhtc_system')." ADD `hb_name` varchar(20) NOT NULL DEFAULT '红包'");}
- if(!pdo_fieldexists('zhtc_system','fl_name')) {pdo_query("ALTER TABLE ".tablename('zhtc_system')." ADD `fl_name` varchar(20) NOT NULL DEFAULT '福利'");}
- if(!pdo_fieldexists('zhtc_system','is_pzsj')) {pdo_query("ALTER TABLE ".tablename('zhtc_system')." ADD `is_pzsj` int(11) NOT NULL DEFAULT '1'");}
- if(!pdo_fieldexists('zhtc_system','ggoods_set')) {pdo_query("ALTER TABLE ".tablename('zhtc_system')." ADD `ggoods_set` int(4) NOT NULL DEFAULT '1'");}
- if(!pdo_fieldexists('zhtc_system','is_xsqg')) {pdo_query("ALTER TABLE ".tablename('zhtc_system')." ADD `is_xsqg` int(4) NOT NULL DEFAULT '2'");}
- if(!pdo_fieldexists('zhtc_system','xgsh')) {pdo_query("ALTER TABLE ".tablename('zhtc_system')." ADD `xgsh` int(4) NOT NULL DEFAULT '1'");}
- if(!pdo_fieldexists('zhtc_system','is_qgqx')) {pdo_query("ALTER TABLE ".tablename('zhtc_system')." ADD `is_qgqx` int(4) NOT NULL DEFAULT '2'");}
- if(!pdo_fieldexists('zhtc_system','g_open')) {pdo_query("ALTER TABLE ".tablename('zhtc_system')." ADD `g_open` int(4) NOT NULL DEFAULT '2'");}
- if(!pdo_fieldexists('zhtc_system','g_qx')) {pdo_query("ALTER TABLE ".tablename('zhtc_system')." ADD `g_qx` int(4) NOT NULL DEFAULT '1'");}
- if(!pdo_fieldexists('zhtc_system','fx_jf')) {pdo_query("ALTER TABLE ".tablename('zhtc_system')." ADD `fx_jf` int(11) NOT NULL");}
- if(!pdo_fieldexists('zhtc_system','good_jf')) {pdo_query("ALTER TABLE ".tablename('zhtc_system')." ADD `good_jf` int(11) NOT NULL");}
- if(!pdo_fieldexists('zhtc_system','is_city')) {pdo_query("ALTER TABLE ".tablename('zhtc_system')." ADD `is_city` int(11) NOT NULL DEFAULT '1'");}
- if(!pdo_fieldexists('zhtc_system','hy_title')) {pdo_query("ALTER TABLE ".tablename('zhtc_system')." ADD `hy_title` varchar(20) NOT NULL DEFAULT '黄页114'");}
- if(!pdo_fieldexists('zhtc_system','kp_url')) {pdo_query("ALTER TABLE ".tablename('zhtc_system')." ADD `kp_url` varchar(300) NOT NULL");}
- if(!pdo_fieldexists('zhtc_system','is_message')) {pdo_query("ALTER TABLE ".tablename('zhtc_system')." ADD `is_message` int(4) NOT NULL DEFAULT '1'");}
- if(!pdo_fieldexists('zhtc_system','is_bdtel')) {pdo_query("ALTER TABLE ".tablename('zhtc_system')." ADD `is_bdtel` int(4) NOT NULL DEFAULT '1'");}
- if(!pdo_fieldexists('zhtc_system','is_ff')) {pdo_query("ALTER TABLE ".tablename('zhtc_system')." ADD `is_ff` int(4) NOT NULL DEFAULT '2'");}
- if(!pdo_fieldexists('zhtc_system','is_pgzf')) {pdo_query("ALTER TABLE ".tablename('zhtc_system')." ADD `is_pgzf` int(4) NOT NULL DEFAULT '2'");}
- if(!pdo_fieldexists('zhtc_system','is_video')) {pdo_query("ALTER TABLE ".tablename('zhtc_system')." ADD `is_video` int(4) NOT NULL DEFAULT '1'");}
- if(!pdo_fieldexists('zhtc_system','fj_tz')) {pdo_query("ALTER TABLE ".tablename('zhtc_system')." ADD `fj_tz` int(4) NOT NULL DEFAULT '2'");}
- if(!pdo_fieldexists('zhtc_system','cz_password')) {pdo_query("ALTER TABLE ".tablename('zhtc_system')." ADD `cz_password` varchar(20) NOT NULL");}
- if(!pdo_fieldexists('zhtc_system','is_style')) {pdo_query("ALTER TABLE ".tablename('zhtc_system')." ADD `is_style` int(1) NOT NULL DEFAULT '1'");}
- if(!pdo_fieldexists('zhtc_system','is_pl')) {pdo_query("ALTER TABLE ".tablename('zhtc_system')." ADD `is_pl` int(1) NOT NULL DEFAULT '1'");}
- if(!pdo_fieldexists('zhtc_system','is_plsh')) {pdo_query("ALTER TABLE ".tablename('zhtc_system')." ADD `is_plsh` int(1) NOT NULL DEFAULT '2'");}
- if(!pdo_fieldexists('zhtc_system','callProportion')) {pdo_query("ALTER TABLE ".tablename('zhtc_system')." ADD `callProportion` int(11) NOT NULL");}
- if(!pdo_fieldexists('zhtc_system','is_zxplsh')) {pdo_query("ALTER TABLE ".tablename('zhtc_system')." ADD `is_zxplsh` int(1) NOT NULL DEFAULT '2'");}
- pdo_query("CREATE TABLE IF NOT EXISTS `ims_zhtc_top` (
- `id` int(11) NOT NULL AUTO_INCREMENT,
- `type` int(11) NOT NULL COMMENT '1.一天2.一周3.一个月',
- `money` decimal(10,2) NOT NULL COMMENT '价格',
- `uniacid` int(11) NOT NULL,
- `num` int(11) NOT NULL,
- `money2` decimal(10,2) NOT NULL,
- PRIMARY KEY (`id`)
- ) ENGINE=InnoDB AUTO_INCREMENT=5 DEFAULT CHARSET=utf8;
- ");
- if(!pdo_fieldexists('zhtc_top','id')) {pdo_query("ALTER TABLE ".tablename('zhtc_top')." ADD
- `id` int(11) NOT NULL AUTO_INCREMENT");}
- if(!pdo_fieldexists('zhtc_top','type')) {pdo_query("ALTER TABLE ".tablename('zhtc_top')." ADD `type` int(11) NOT NULL COMMENT '1.一天2.一周3.一个月'");}
- if(!pdo_fieldexists('zhtc_top','money')) {pdo_query("ALTER TABLE ".tablename('zhtc_top')." ADD `money` decimal(10,2) NOT NULL COMMENT '价格'");}
- if(!pdo_fieldexists('zhtc_top','uniacid')) {pdo_query("ALTER TABLE ".tablename('zhtc_top')." ADD `uniacid` int(11) NOT NULL");}
- if(!pdo_fieldexists('zhtc_top','num')) {pdo_query("ALTER TABLE ".tablename('zhtc_top')." ADD `num` int(11) NOT NULL");}
- if(!pdo_fieldexists('zhtc_top','money2')) {pdo_query("ALTER TABLE ".tablename('zhtc_top')." ADD `money2` decimal(10,2) NOT NULL");}
- pdo_query("CREATE TABLE IF NOT EXISTS `ims_zhtc_type` (
- `id` int(11) NOT NULL AUTO_INCREMENT,
- `type_name` varchar(20) NOT NULL COMMENT '分类名称',
- `img` varchar(100) NOT NULL COMMENT '分类图片',
- `uniacid` int(11) NOT NULL COMMENT '小程序id',
- `num` int(11) NOT NULL,
- `money` decimal(10,2) NOT NULL,
- `state` int(4) NOT NULL DEFAULT '1',
- `sx_money` decimal(10,2) NOT NULL,
- `money2` decimal(10,2) NOT NULL,
- `tel_money` decimal(10,2) NOT NULL,
- PRIMARY KEY (`id`)
- ) ENGINE=InnoDB AUTO_INCREMENT=56 DEFAULT CHARSET=utf8;
- ");
- if(!pdo_fieldexists('zhtc_type','id')) {pdo_query("ALTER TABLE ".tablename('zhtc_type')." ADD
- `id` int(11) NOT NULL AUTO_INCREMENT");}
- if(!pdo_fieldexists('zhtc_type','type_name')) {pdo_query("ALTER TABLE ".tablename('zhtc_type')." ADD `type_name` varchar(20) NOT NULL COMMENT '分类名称'");}
- if(!pdo_fieldexists('zhtc_type','img')) {pdo_query("ALTER TABLE ".tablename('zhtc_type')." ADD `img` varchar(100) NOT NULL COMMENT '分类图片'");}
- if(!pdo_fieldexists('zhtc_type','uniacid')) {pdo_query("ALTER TABLE ".tablename('zhtc_type')." ADD `uniacid` int(11) NOT NULL COMMENT '小程序id'");}
- if(!pdo_fieldexists('zhtc_type','num')) {pdo_query("ALTER TABLE ".tablename('zhtc_type')." ADD `num` int(11) NOT NULL");}
- if(!pdo_fieldexists('zhtc_type','money')) {pdo_query("ALTER TABLE ".tablename('zhtc_type')." ADD `money` decimal(10,2) NOT NULL");}
- if(!pdo_fieldexists('zhtc_type','state')) {pdo_query("ALTER TABLE ".tablename('zhtc_type')." ADD `state` int(4) NOT NULL DEFAULT '1'");}
- if(!pdo_fieldexists('zhtc_type','sx_money')) {pdo_query("ALTER TABLE ".tablename('zhtc_type')." ADD `sx_money` decimal(10,2) NOT NULL");}
- if(!pdo_fieldexists('zhtc_type','money2')) {pdo_query("ALTER TABLE ".tablename('zhtc_type')." ADD `money2` decimal(10,2) NOT NULL");}
- if(!pdo_fieldexists('zhtc_type','tel_money')) {pdo_query("ALTER TABLE ".tablename('zhtc_type')." ADD `tel_money` decimal(10,2) NOT NULL");}
- pdo_query("CREATE TABLE IF NOT EXISTS `ims_zhtc_type2` (
- `id` int(11) NOT NULL AUTO_INCREMENT,
- `name` varchar(20) NOT NULL COMMENT '分类名称',
- `type_id` int(11) NOT NULL COMMENT '主分类id',
- `num` int(11) NOT NULL,
- `uniacid` int(11) NOT NULL,
- `state` int(4) NOT NULL DEFAULT '1',
- `tel_money` decimal(10,2) NOT NULL,
- PRIMARY KEY (`id`)
- ) ENGINE=InnoDB AUTO_INCREMENT=73 DEFAULT CHARSET=utf8;
- ");
- if(!pdo_fieldexists('zhtc_type2','id')) {pdo_query("ALTER TABLE ".tablename('zhtc_type2')." ADD
- `id` int(11) NOT NULL AUTO_INCREMENT");}
- if(!pdo_fieldexists('zhtc_type2','name')) {pdo_query("ALTER TABLE ".tablename('zhtc_type2')." ADD `name` varchar(20) NOT NULL COMMENT '分类名称'");}
- if(!pdo_fieldexists('zhtc_type2','type_id')) {pdo_query("ALTER TABLE ".tablename('zhtc_type2')." ADD `type_id` int(11) NOT NULL COMMENT '主分类id'");}
- if(!pdo_fieldexists('zhtc_type2','num')) {pdo_query("ALTER TABLE ".tablename('zhtc_type2')." ADD `num` int(11) NOT NULL");}
- if(!pdo_fieldexists('zhtc_type2','uniacid')) {pdo_query("ALTER TABLE ".tablename('zhtc_type2')." ADD `uniacid` int(11) NOT NULL");}
- if(!pdo_fieldexists('zhtc_type2','state')) {pdo_query("ALTER TABLE ".tablename('zhtc_type2')." ADD `state` int(4) NOT NULL DEFAULT '1'");}
- if(!pdo_fieldexists('zhtc_type2','tel_money')) {pdo_query("ALTER TABLE ".tablename('zhtc_type2')." ADD `tel_money` decimal(10,2) NOT NULL");}
- pdo_query("CREATE TABLE IF NOT EXISTS `ims_zhtc_tzpaylog` (
- `id` int(11) NOT NULL AUTO_INCREMENT,
- `tz_id` int(11) NOT NULL,
- `money` decimal(10,2) NOT NULL,
- `time` datetime NOT NULL,
- `uniacid` varchar(50) NOT NULL,
- `note` varchar(20) NOT NULL,
- PRIMARY KEY (`id`)
- ) ENGINE=InnoDB AUTO_INCREMENT=33 DEFAULT CHARSET=utf8 COMMENT='帖子支付记录表';
- ");
- if(!pdo_fieldexists('zhtc_tzpaylog','id')) {pdo_query("ALTER TABLE ".tablename('zhtc_tzpaylog')." ADD
- `id` int(11) NOT NULL AUTO_INCREMENT");}
- if(!pdo_fieldexists('zhtc_tzpaylog','tz_id')) {pdo_query("ALTER TABLE ".tablename('zhtc_tzpaylog')." ADD `tz_id` int(11) NOT NULL");}
- if(!pdo_fieldexists('zhtc_tzpaylog','money')) {pdo_query("ALTER TABLE ".tablename('zhtc_tzpaylog')." ADD `money` decimal(10,2) NOT NULL");}
- if(!pdo_fieldexists('zhtc_tzpaylog','time')) {pdo_query("ALTER TABLE ".tablename('zhtc_tzpaylog')." ADD `time` datetime NOT NULL");}
- if(!pdo_fieldexists('zhtc_tzpaylog','uniacid')) {pdo_query("ALTER TABLE ".tablename('zhtc_tzpaylog')." ADD `uniacid` varchar(50) NOT NULL");}
- if(!pdo_fieldexists('zhtc_tzpaylog','note')) {pdo_query("ALTER TABLE ".tablename('zhtc_tzpaylog')." ADD `note` varchar(20) NOT NULL");}
- pdo_query("CREATE TABLE IF NOT EXISTS `ims_zhtc_user` (
- `id` int(11) NOT NULL AUTO_INCREMENT,
- `openid` varchar(100) NOT NULL COMMENT 'openid',
- `img` varchar(200) NOT NULL COMMENT '头像',
- `time` varchar(20) NOT NULL COMMENT '注册时间',
- `name` varchar(20) NOT NULL,
- `uniacid` int(11) NOT NULL,
- `money` decimal(10,2) NOT NULL,
- `user_name` varchar(20) NOT NULL,
- `user_tel` varchar(20) NOT NULL,
- `user_address` varchar(200) NOT NULL,
- `commission` decimal(10,2) NOT NULL,
- `state` int(4) NOT NULL DEFAULT '1',
- `total_score` int(11) NOT NULL,
- `day` int(11) NOT NULL,
- PRIMARY KEY (`id`)
- ) ENGINE=InnoDB AUTO_INCREMENT=12230 DEFAULT CHARSET=utf8;
- ");
- if(!pdo_fieldexists('zhtc_user','id')) {pdo_query("ALTER TABLE ".tablename('zhtc_user')." ADD
- `id` int(11) NOT NULL AUTO_INCREMENT");}
- if(!pdo_fieldexists('zhtc_user','openid')) {pdo_query("ALTER TABLE ".tablename('zhtc_user')." ADD `openid` varchar(100) NOT NULL COMMENT 'openid'");}
- if(!pdo_fieldexists('zhtc_user','img')) {pdo_query("ALTER TABLE ".tablename('zhtc_user')." ADD `img` varchar(200) NOT NULL COMMENT '头像'");}
- if(!pdo_fieldexists('zhtc_user','time')) {pdo_query("ALTER TABLE ".tablename('zhtc_user')." ADD `time` varchar(20) NOT NULL COMMENT '注册时间'");}
- if(!pdo_fieldexists('zhtc_user','name')) {pdo_query("ALTER TABLE ".tablename('zhtc_user')." ADD `name` varchar(20) NOT NULL");}
- if(!pdo_fieldexists('zhtc_user','uniacid')) {pdo_query("ALTER TABLE ".tablename('zhtc_user')." ADD `uniacid` int(11) NOT NULL");}
- if(!pdo_fieldexists('zhtc_user','money')) {pdo_query("ALTER TABLE ".tablename('zhtc_user')." ADD `money` decimal(10,2) NOT NULL");}
- if(!pdo_fieldexists('zhtc_user','user_name')) {pdo_query("ALTER TABLE ".tablename('zhtc_user')." ADD `user_name` varchar(20) NOT NULL");}
- if(!pdo_fieldexists('zhtc_user','user_tel')) {pdo_query("ALTER TABLE ".tablename('zhtc_user')." ADD `user_tel` varchar(20) NOT NULL");}
- if(!pdo_fieldexists('zhtc_user','user_address')) {pdo_query("ALTER TABLE ".tablename('zhtc_user')." ADD `user_address` varchar(200) NOT NULL");}
- if(!pdo_fieldexists('zhtc_user','commission')) {pdo_query("ALTER TABLE ".tablename('zhtc_user')." ADD `commission` decimal(10,2) NOT NULL");}
- if(!pdo_fieldexists('zhtc_user','state')) {pdo_query("ALTER TABLE ".tablename('zhtc_user')." ADD `state` int(4) NOT NULL DEFAULT '1'");}
- if(!pdo_fieldexists('zhtc_user','total_score')) {pdo_query("ALTER TABLE ".tablename('zhtc_user')." ADD `total_score` int(11) NOT NULL");}
- if(!pdo_fieldexists('zhtc_user','day')) {pdo_query("ALTER TABLE ".tablename('zhtc_user')." ADD `day` int(11) NOT NULL");}
- pdo_query("CREATE TABLE IF NOT EXISTS `ims_zhtc_usercoupons` (
- `id` int(11) unsigned NOT NULL AUTO_INCREMENT,
- `coupons_id` int(11) NOT NULL,
- `user_id` int(11) NOT NULL,
- `state` int(11) NOT NULL DEFAULT '2' COMMENT '1.使用2.未使用',
- `time` varchar(20) NOT NULL,
- `pay_type` int(11) NOT NULL,
- `code` varchar(100) NOT NULL,
- `lq_money` decimal(10,2) NOT NULL,
- `del` int(11) NOT NULL DEFAULT '2',
- `hx_time` varchar(20) NOT NULL,
- PRIMARY KEY (`id`)
- ) ENGINE=InnoDB AUTO_INCREMENT=7 DEFAULT CHARSET=utf8;
- ");
- if(!pdo_fieldexists('zhtc_usercoupons','id')) {pdo_query("ALTER TABLE ".tablename('zhtc_usercoupons')." ADD
- `id` int(11) unsigned NOT NULL AUTO_INCREMENT");}
- if(!pdo_fieldexists('zhtc_usercoupons','coupons_id')) {pdo_query("ALTER TABLE ".tablename('zhtc_usercoupons')." ADD `coupons_id` int(11) NOT NULL");}
- if(!pdo_fieldexists('zhtc_usercoupons','user_id')) {pdo_query("ALTER TABLE ".tablename('zhtc_usercoupons')." ADD `user_id` int(11) NOT NULL");}
- if(!pdo_fieldexists('zhtc_usercoupons','state')) {pdo_query("ALTER TABLE ".tablename('zhtc_usercoupons')." ADD `state` int(11) NOT NULL DEFAULT '2' COMMENT '1.使用2.未使用'");}
- if(!pdo_fieldexists('zhtc_usercoupons','time')) {pdo_query("ALTER TABLE ".tablename('zhtc_usercoupons')." ADD `time` varchar(20) NOT NULL");}
- if(!pdo_fieldexists('zhtc_usercoupons','pay_type')) {pdo_query("ALTER TABLE ".tablename('zhtc_usercoupons')." ADD `pay_type` int(11) NOT NULL");}
- if(!pdo_fieldexists('zhtc_usercoupons','code')) {pdo_query("ALTER TABLE ".tablename('zhtc_usercoupons')." ADD `code` varchar(100) NOT NULL");}
- if(!pdo_fieldexists('zhtc_usercoupons','lq_money')) {pdo_query("ALTER TABLE ".tablename('zhtc_usercoupons')." ADD `lq_money` decimal(10,2) NOT NULL");}
- if(!pdo_fieldexists('zhtc_usercoupons','del')) {pdo_query("ALTER TABLE ".tablename('zhtc_usercoupons')." ADD `del` int(11) NOT NULL DEFAULT '2'");}
- if(!pdo_fieldexists('zhtc_usercoupons','hx_time')) {pdo_query("ALTER TABLE ".tablename('zhtc_usercoupons')." ADD `hx_time` varchar(20) NOT NULL");}
- pdo_query("CREATE TABLE IF NOT EXISTS `ims_zhtc_userformid` (
- `id` int(11) NOT NULL AUTO_INCREMENT,
- `user_id` int(11) NOT NULL COMMENT '用户id',
- `form_id` varchar(50) NOT NULL COMMENT 'form_id',
- `time` datetime NOT NULL,
- `uniacid` varchar(50) NOT NULL,
- `openid` varchar(50) NOT NULL COMMENT 'openid',
- PRIMARY KEY (`id`)
- ) ENGINE=InnoDB AUTO_INCREMENT=12424 DEFAULT CHARSET=utf8 COMMENT='formid表';
- ");
- if(!pdo_fieldexists('zhtc_userformid','id')) {pdo_query("ALTER TABLE ".tablename('zhtc_userformid')." ADD
- `id` int(11) NOT NULL AUTO_INCREMENT");}
- if(!pdo_fieldexists('zhtc_userformid','user_id')) {pdo_query("ALTER TABLE ".tablename('zhtc_userformid')." ADD `user_id` int(11) NOT NULL COMMENT '用户id'");}
- if(!pdo_fieldexists('zhtc_userformid','form_id')) {pdo_query("ALTER TABLE ".tablename('zhtc_userformid')." ADD `form_id` varchar(50) NOT NULL COMMENT 'form_id'");}
- if(!pdo_fieldexists('zhtc_userformid','time')) {pdo_query("ALTER TABLE ".tablename('zhtc_userformid')." ADD `time` datetime NOT NULL");}
- if(!pdo_fieldexists('zhtc_userformid','uniacid')) {pdo_query("ALTER TABLE ".tablename('zhtc_userformid')." ADD `uniacid` varchar(50) NOT NULL");}
- if(!pdo_fieldexists('zhtc_userformid','openid')) {pdo_query("ALTER TABLE ".tablename('zhtc_userformid')." ADD `openid` varchar(50) NOT NULL COMMENT 'openid'");}
- pdo_query("CREATE TABLE IF NOT EXISTS `ims_zhtc_video` (
- `id` int(11) NOT NULL AUTO_INCREMENT,
- `type_id` int(11) NOT NULL COMMENT '分类ID',
- `title` varchar(200) NOT NULL COMMENT '标题',
- `time` datetime NOT NULL,
- `yd_num` int(11) NOT NULL COMMENT '阅读数量',
- `pl_num` int(11) NOT NULL COMMENT '评论数量',
- `dz_num` int(11) NOT NULL COMMENT '点赞数量',
- `uniacid` varchar(50) NOT NULL,
- `url` varchar(500) NOT NULL COMMENT '视频链接',
- `logo` varchar(200) NOT NULL COMMENT '发布人logo',
- `nick_name` varchar(30) NOT NULL COMMENT '昵称',
- `cityname` varchar(50) NOT NULL COMMENT '城市名称',
- `num` int(11) NOT NULL COMMENT '排序',
- `fm_logo` varchar(200) NOT NULL,
- PRIMARY KEY (`id`)
- ) ENGINE=InnoDB AUTO_INCREMENT=13 DEFAULT CHARSET=utf8;
- ");
- if(!pdo_fieldexists('zhtc_video','id')) {pdo_query("ALTER TABLE ".tablename('zhtc_video')." ADD
- `id` int(11) NOT NULL AUTO_INCREMENT");}
- if(!pdo_fieldexists('zhtc_video','type_id')) {pdo_query("ALTER TABLE ".tablename('zhtc_video')." ADD `type_id` int(11) NOT NULL COMMENT '分类ID'");}
- if(!pdo_fieldexists('zhtc_video','title')) {pdo_query("ALTER TABLE ".tablename('zhtc_video')." ADD `title` varchar(200) NOT NULL COMMENT '标题'");}
- if(!pdo_fieldexists('zhtc_video','time')) {pdo_query("ALTER TABLE ".tablename('zhtc_video')." ADD `time` datetime NOT NULL");}
- if(!pdo_fieldexists('zhtc_video','yd_num')) {pdo_query("ALTER TABLE ".tablename('zhtc_video')." ADD `yd_num` int(11) NOT NULL COMMENT '阅读数量'");}
- if(!pdo_fieldexists('zhtc_video','pl_num')) {pdo_query("ALTER TABLE ".tablename('zhtc_video')." ADD `pl_num` int(11) NOT NULL COMMENT '评论数量'");}
- if(!pdo_fieldexists('zhtc_video','dz_num')) {pdo_query("ALTER TABLE ".tablename('zhtc_video')." ADD `dz_num` int(11) NOT NULL COMMENT '点赞数量'");}
- if(!pdo_fieldexists('zhtc_video','uniacid')) {pdo_query("ALTER TABLE ".tablename('zhtc_video')." ADD `uniacid` varchar(50) NOT NULL");}
- if(!pdo_fieldexists('zhtc_video','url')) {pdo_query("ALTER TABLE ".tablename('zhtc_video')." ADD `url` varchar(500) NOT NULL COMMENT '视频链接'");}
- if(!pdo_fieldexists('zhtc_video','logo')) {pdo_query("ALTER TABLE ".tablename('zhtc_video')." ADD `logo` varchar(200) NOT NULL COMMENT '发布人logo'");}
- if(!pdo_fieldexists('zhtc_video','nick_name')) {pdo_query("ALTER TABLE ".tablename('zhtc_video')." ADD `nick_name` varchar(30) NOT NULL COMMENT '昵称'");}
- if(!pdo_fieldexists('zhtc_video','cityname')) {pdo_query("ALTER TABLE ".tablename('zhtc_video')." ADD `cityname` varchar(50) NOT NULL COMMENT '城市名称'");}
- if(!pdo_fieldexists('zhtc_video','num')) {pdo_query("ALTER TABLE ".tablename('zhtc_video')." ADD `num` int(11) NOT NULL COMMENT '排序'");}
- if(!pdo_fieldexists('zhtc_video','fm_logo')) {pdo_query("ALTER TABLE ".tablename('zhtc_video')." ADD `fm_logo` varchar(200) NOT NULL");}
- pdo_query("CREATE TABLE IF NOT EXISTS `ims_zhtc_videodz` (
- `id` int(11) NOT NULL AUTO_INCREMENT,
- `user_id` int(11) NOT NULL,
- `video_id` int(11) NOT NULL,
- PRIMARY KEY (`id`)
- ) ENGINE=InnoDB AUTO_INCREMENT=148 DEFAULT CHARSET=utf8;
- ");
- if(!pdo_fieldexists('zhtc_videodz','id')) {pdo_query("ALTER TABLE ".tablename('zhtc_videodz')." ADD
- `id` int(11) NOT NULL AUTO_INCREMENT");}
- if(!pdo_fieldexists('zhtc_videodz','user_id')) {pdo_query("ALTER TABLE ".tablename('zhtc_videodz')." ADD `user_id` int(11) NOT NULL");}
- if(!pdo_fieldexists('zhtc_videodz','video_id')) {pdo_query("ALTER TABLE ".tablename('zhtc_videodz')." ADD `video_id` int(11) NOT NULL");}
- pdo_query("CREATE TABLE IF NOT EXISTS `ims_zhtc_videopl` (
- `id` int(11) NOT NULL AUTO_INCREMENT,
- `user_id` int(11) NOT NULL,
- `content` varchar(500) NOT NULL,
- `video_id` int(11) NOT NULL,
- `time` varchar(20) NOT NULL,
- PRIMARY KEY (`id`)
- ) ENGINE=InnoDB AUTO_INCREMENT=10 DEFAULT CHARSET=utf8;
- ");
- if(!pdo_fieldexists('zhtc_videopl','id')) {pdo_query("ALTER TABLE ".tablename('zhtc_videopl')." ADD
- `id` int(11) NOT NULL AUTO_INCREMENT");}
- if(!pdo_fieldexists('zhtc_videopl','user_id')) {pdo_query("ALTER TABLE ".tablename('zhtc_videopl')." ADD `user_id` int(11) NOT NULL");}
- if(!pdo_fieldexists('zhtc_videopl','content')) {pdo_query("ALTER TABLE ".tablename('zhtc_videopl')." ADD `content` varchar(500) NOT NULL");}
- if(!pdo_fieldexists('zhtc_videopl','video_id')) {pdo_query("ALTER TABLE ".tablename('zhtc_videopl')." ADD `video_id` int(11) NOT NULL");}
- if(!pdo_fieldexists('zhtc_videopl','time')) {pdo_query("ALTER TABLE ".tablename('zhtc_videopl')." ADD `time` varchar(20) NOT NULL");}
- pdo_query("CREATE TABLE IF NOT EXISTS `ims_zhtc_videotype` (
- `id` int(11) NOT NULL AUTO_INCREMENT,
- `type_name` varchar(20) NOT NULL COMMENT '分类名称',
- `img` varchar(100) NOT NULL COMMENT '分类图片',
- `uniacid` int(11) NOT NULL COMMENT '小程序id',
- `num` int(11) NOT NULL,
- `state` int(4) NOT NULL DEFAULT '1',
- PRIMARY KEY (`id`)
- ) ENGINE=InnoDB AUTO_INCREMENT=27 DEFAULT CHARSET=utf8;
- ");
- if(!pdo_fieldexists('zhtc_videotype','id')) {pdo_query("ALTER TABLE ".tablename('zhtc_videotype')." ADD
- `id` int(11) NOT NULL AUTO_INCREMENT");}
- if(!pdo_fieldexists('zhtc_videotype','type_name')) {pdo_query("ALTER TABLE ".tablename('zhtc_videotype')." ADD `type_name` varchar(20) NOT NULL COMMENT '分类名称'");}
- if(!pdo_fieldexists('zhtc_videotype','img')) {pdo_query("ALTER TABLE ".tablename('zhtc_videotype')." ADD `img` varchar(100) NOT NULL COMMENT '分类图片'");}
- if(!pdo_fieldexists('zhtc_videotype','uniacid')) {pdo_query("ALTER TABLE ".tablename('zhtc_videotype')." ADD `uniacid` int(11) NOT NULL COMMENT '小程序id'");}
- if(!pdo_fieldexists('zhtc_videotype','num')) {pdo_query("ALTER TABLE ".tablename('zhtc_videotype')." ADD `num` int(11) NOT NULL");}
- if(!pdo_fieldexists('zhtc_videotype','state')) {pdo_query("ALTER TABLE ".tablename('zhtc_videotype')." ADD `state` int(4) NOT NULL DEFAULT '1'");}
- pdo_query("CREATE TABLE IF NOT EXISTS `ims_zhtc_withdrawal` (
- `id` int(11) NOT NULL AUTO_INCREMENT,
- `name` varchar(10) NOT NULL COMMENT '真实姓名',
- `username` varchar(100) NOT NULL COMMENT '账号',
- `type` int(11) NOT NULL COMMENT '1支付宝 2.微信 3.银行',
- `time` int(11) NOT NULL COMMENT '申请时间',
- `sh_time` int(11) NOT NULL COMMENT '审核时间',
- `state` int(11) NOT NULL COMMENT '1.待审核 2.通过 3.拒绝',
- `tx_cost` decimal(10,2) NOT NULL COMMENT '提现金额',
- `sj_cost` decimal(10,2) NOT NULL COMMENT '实际金额',
- `user_id` int(11) NOT NULL COMMENT '用户id',
- `uniacid` int(11) NOT NULL,
- `method` int(11) NOT NULL,
- `store_id` int(11) NOT NULL,
- `bank` varchar(20) NOT NULL,
- PRIMARY KEY (`id`)
- ) ENGINE=InnoDB AUTO_INCREMENT=5 DEFAULT CHARSET=utf8;
- ");
- if(!pdo_fieldexists('zhtc_withdrawal','id')) {pdo_query("ALTER TABLE ".tablename('zhtc_withdrawal')." ADD
- `id` int(11) NOT NULL AUTO_INCREMENT");}
- if(!pdo_fieldexists('zhtc_withdrawal','name')) {pdo_query("ALTER TABLE ".tablename('zhtc_withdrawal')." ADD `name` varchar(10) NOT NULL COMMENT '真实姓名'");}
- if(!pdo_fieldexists('zhtc_withdrawal','username')) {pdo_query("ALTER TABLE ".tablename('zhtc_withdrawal')." ADD `username` varchar(100) NOT NULL COMMENT '账号'");}
- if(!pdo_fieldexists('zhtc_withdrawal','type')) {pdo_query("ALTER TABLE ".tablename('zhtc_withdrawal')." ADD `type` int(11) NOT NULL COMMENT '1支付宝 2.微信 3.银行'");}
- if(!pdo_fieldexists('zhtc_withdrawal','time')) {pdo_query("ALTER TABLE ".tablename('zhtc_withdrawal')." ADD `time` int(11) NOT NULL COMMENT '申请时间'");}
- if(!pdo_fieldexists('zhtc_withdrawal','sh_time')) {pdo_query("ALTER TABLE ".tablename('zhtc_withdrawal')." ADD `sh_time` int(11) NOT NULL COMMENT '审核时间'");}
- if(!pdo_fieldexists('zhtc_withdrawal','state')) {pdo_query("ALTER TABLE ".tablename('zhtc_withdrawal')." ADD `state` int(11) NOT NULL COMMENT '1.待审核 2.通过 3.拒绝'");}
- if(!pdo_fieldexists('zhtc_withdrawal','tx_cost')) {pdo_query("ALTER TABLE ".tablename('zhtc_withdrawal')." ADD `tx_cost` decimal(10,2) NOT NULL COMMENT '提现金额'");}
- if(!pdo_fieldexists('zhtc_withdrawal','sj_cost')) {pdo_query("ALTER TABLE ".tablename('zhtc_withdrawal')." ADD `sj_cost` decimal(10,2) NOT NULL COMMENT '实际金额'");}
- if(!pdo_fieldexists('zhtc_withdrawal','user_id')) {pdo_query("ALTER TABLE ".tablename('zhtc_withdrawal')." ADD `user_id` int(11) NOT NULL COMMENT '用户id'");}
- if(!pdo_fieldexists('zhtc_withdrawal','uniacid')) {pdo_query("ALTER TABLE ".tablename('zhtc_withdrawal')." ADD `uniacid` int(11) NOT NULL");}
- if(!pdo_fieldexists('zhtc_withdrawal','method')) {pdo_query("ALTER TABLE ".tablename('zhtc_withdrawal')." ADD `method` int(11) NOT NULL");}
- if(!pdo_fieldexists('zhtc_withdrawal','store_id')) {pdo_query("ALTER TABLE ".tablename('zhtc_withdrawal')." ADD `store_id` int(11) NOT NULL");}
- if(!pdo_fieldexists('zhtc_withdrawal','bank')) {pdo_query("ALTER TABLE ".tablename('zhtc_withdrawal')." ADD `bank` varchar(20) NOT NULL");}
- pdo_query("CREATE TABLE IF NOT EXISTS `ims_zhtc_yellowpaylog` (
- `id` int(11) NOT NULL AUTO_INCREMENT,
- `hy_id` int(11) NOT NULL,
- `money` decimal(10,2) NOT NULL,
- `time` datetime NOT NULL,
- `uniacid` varchar(50) NOT NULL,
- PRIMARY KEY (`id`)
- ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='黄页支付记录表';
- ");
- if(!pdo_fieldexists('zhtc_yellowpaylog','id')) {pdo_query("ALTER TABLE ".tablename('zhtc_yellowpaylog')." ADD
- `id` int(11) NOT NULL AUTO_INCREMENT");}
- if(!pdo_fieldexists('zhtc_yellowpaylog','hy_id')) {pdo_query("ALTER TABLE ".tablename('zhtc_yellowpaylog')." ADD `hy_id` int(11) NOT NULL");}
- if(!pdo_fieldexists('zhtc_yellowpaylog','money')) {pdo_query("ALTER TABLE ".tablename('zhtc_yellowpaylog')." ADD `money` decimal(10,2) NOT NULL");}
- if(!pdo_fieldexists('zhtc_yellowpaylog','time')) {pdo_query("ALTER TABLE ".tablename('zhtc_yellowpaylog')." ADD `time` datetime NOT NULL");}
- if(!pdo_fieldexists('zhtc_yellowpaylog','uniacid')) {pdo_query("ALTER TABLE ".tablename('zhtc_yellowpaylog')." ADD `uniacid` varchar(50) NOT NULL");}
- pdo_query("CREATE TABLE IF NOT EXISTS `ims_zhtc_yellowset` (
- `id` int(11) NOT NULL AUTO_INCREMENT,
- `days` int(11) NOT NULL COMMENT '入住天数',
- `money` decimal(10,2) NOT NULL,
- `num` int(11) NOT NULL,
- `uniacid` int(11) NOT NULL,
- PRIMARY KEY (`id`)
- ) ENGINE=InnoDB AUTO_INCREMENT=6 DEFAULT CHARSET=utf8 COMMENT='黄页设置表';
- ");
- if(!pdo_fieldexists('zhtc_yellowset','id')) {pdo_query("ALTER TABLE ".tablename('zhtc_yellowset')." ADD
- `id` int(11) NOT NULL AUTO_INCREMENT");}
- if(!pdo_fieldexists('zhtc_yellowset','days')) {pdo_query("ALTER TABLE ".tablename('zhtc_yellowset')." ADD `days` int(11) NOT NULL COMMENT '入住天数'");}
- if(!pdo_fieldexists('zhtc_yellowset','money')) {pdo_query("ALTER TABLE ".tablename('zhtc_yellowset')." ADD `money` decimal(10,2) NOT NULL");}
- if(!pdo_fieldexists('zhtc_yellowset','num')) {pdo_query("ALTER TABLE ".tablename('zhtc_yellowset')." ADD `num` int(11) NOT NULL");}
- if(!pdo_fieldexists('zhtc_yellowset','uniacid')) {pdo_query("ALTER TABLE ".tablename('zhtc_yellowset')." ADD `uniacid` int(11) NOT NULL");}
- pdo_query("CREATE TABLE IF NOT EXISTS `ims_zhtc_yellowstore` (
- `id` int(11) NOT NULL AUTO_INCREMENT,
- `user_id` int(11) NOT NULL,
- `logo` varchar(200) NOT NULL COMMENT 'logo图片',
- `company_name` varchar(100) NOT NULL COMMENT '公司名称',
- `company_address` varchar(200) NOT NULL COMMENT '公司地址',
- `type_id` int(11) NOT NULL COMMENT '二级分类',
- `link_tel` varchar(20) NOT NULL COMMENT '联系电话',
- `sort` int(11) NOT NULL COMMENT '排序',
- `rz_time` int(11) NOT NULL COMMENT '入住时间',
- `sh_time` int(11) NOT NULL COMMENT '审核时间',
- `state` int(4) NOT NULL COMMENT '1待,2通过,3拒绝',
- `rz_type` int(4) NOT NULL COMMENT '入驻类型',
- `time_over` int(4) NOT NULL COMMENT '1到期,2没到期',
- `uniacid` varchar(50) NOT NULL,
- `coordinates` varchar(50) NOT NULL COMMENT '坐标',
- `content` text NOT NULL COMMENT '简介',
- `imgs` varchar(500) NOT NULL COMMENT '多图',
- `views` int(11) NOT NULL,
- `tel2` varchar(20) NOT NULL,
- `cityname` varchar(50) NOT NULL,
- `dq_time` int(11) NOT NULL,
- `type2_id` int(11) NOT NULL,
- `is_delete` int(4) NOT NULL DEFAULT '2',
- PRIMARY KEY (`id`)
- ) ENGINE=InnoDB AUTO_INCREMENT=100 DEFAULT CHARSET=utf8;
- ");
- if(!pdo_fieldexists('zhtc_yellowstore','id')) {pdo_query("ALTER TABLE ".tablename('zhtc_yellowstore')." ADD
- `id` int(11) NOT NULL AUTO_INCREMENT");}
- if(!pdo_fieldexists('zhtc_yellowstore','user_id')) {pdo_query("ALTER TABLE ".tablename('zhtc_yellowstore')." ADD `user_id` int(11) NOT NULL");}
- if(!pdo_fieldexists('zhtc_yellowstore','logo')) {pdo_query("ALTER TABLE ".tablename('zhtc_yellowstore')." ADD `logo` varchar(200) NOT NULL COMMENT 'logo图片'");}
- if(!pdo_fieldexists('zhtc_yellowstore','company_name')) {pdo_query("ALTER TABLE ".tablename('zhtc_yellowstore')." ADD `company_name` varchar(100) NOT NULL COMMENT '公司名称'");}
- if(!pdo_fieldexists('zhtc_yellowstore','company_address')) {pdo_query("ALTER TABLE ".tablename('zhtc_yellowstore')." ADD `company_address` varchar(200) NOT NULL COMMENT '公司地址'");}
- if(!pdo_fieldexists('zhtc_yellowstore','type_id')) {pdo_query("ALTER TABLE ".tablename('zhtc_yellowstore')." ADD `type_id` int(11) NOT NULL COMMENT '二级分类'");}
- if(!pdo_fieldexists('zhtc_yellowstore','link_tel')) {pdo_query("ALTER TABLE ".tablename('zhtc_yellowstore')." ADD `link_tel` varchar(20) NOT NULL COMMENT '联系电话'");}
- if(!pdo_fieldexists('zhtc_yellowstore','sort')) {pdo_query("ALTER TABLE ".tablename('zhtc_yellowstore')." ADD `sort` int(11) NOT NULL COMMENT '排序'");}
- if(!pdo_fieldexists('zhtc_yellowstore','rz_time')) {pdo_query("ALTER TABLE ".tablename('zhtc_yellowstore')." ADD `rz_time` int(11) NOT NULL COMMENT '入住时间'");}
- if(!pdo_fieldexists('zhtc_yellowstore','sh_time')) {pdo_query("ALTER TABLE ".tablename('zhtc_yellowstore')." ADD `sh_time` int(11) NOT NULL COMMENT '审核时间'");}
- if(!pdo_fieldexists('zhtc_yellowstore','state')) {pdo_query("ALTER TABLE ".tablename('zhtc_yellowstore')." ADD `state` int(4) NOT NULL COMMENT '1待,2通过,3拒绝'");}
- if(!pdo_fieldexists('zhtc_yellowstore','rz_type')) {pdo_query("ALTER TABLE ".tablename('zhtc_yellowstore')." ADD `rz_type` int(4) NOT NULL COMMENT '入驻类型'");}
- if(!pdo_fieldexists('zhtc_yellowstore','time_over')) {pdo_query("ALTER TABLE ".tablename('zhtc_yellowstore')." ADD `time_over` int(4) NOT NULL COMMENT '1到期,2没到期'");}
- if(!pdo_fieldexists('zhtc_yellowstore','uniacid')) {pdo_query("ALTER TABLE ".tablename('zhtc_yellowstore')." ADD `uniacid` varchar(50) NOT NULL");}
- if(!pdo_fieldexists('zhtc_yellowstore','coordinates')) {pdo_query("ALTER TABLE ".tablename('zhtc_yellowstore')." ADD `coordinates` varchar(50) NOT NULL COMMENT '坐标'");}
- if(!pdo_fieldexists('zhtc_yellowstore','content')) {pdo_query("ALTER TABLE ".tablename('zhtc_yellowstore')." ADD `content` text NOT NULL COMMENT '简介'");}
- if(!pdo_fieldexists('zhtc_yellowstore','imgs')) {pdo_query("ALTER TABLE ".tablename('zhtc_yellowstore')." ADD `imgs` varchar(500) NOT NULL COMMENT '多图'");}
- if(!pdo_fieldexists('zhtc_yellowstore','views')) {pdo_query("ALTER TABLE ".tablename('zhtc_yellowstore')." ADD `views` int(11) NOT NULL");}
- if(!pdo_fieldexists('zhtc_yellowstore','tel2')) {pdo_query("ALTER TABLE ".tablename('zhtc_yellowstore')." ADD `tel2` varchar(20) NOT NULL");}
- if(!pdo_fieldexists('zhtc_yellowstore','cityname')) {pdo_query("ALTER TABLE ".tablename('zhtc_yellowstore')." ADD `cityname` varchar(50) NOT NULL");}
- if(!pdo_fieldexists('zhtc_yellowstore','dq_time')) {pdo_query("ALTER TABLE ".tablename('zhtc_yellowstore')." ADD `dq_time` int(11) NOT NULL");}
- if(!pdo_fieldexists('zhtc_yellowstore','type2_id')) {pdo_query("ALTER TABLE ".tablename('zhtc_yellowstore')." ADD `type2_id` int(11) NOT NULL");}
- if(!pdo_fieldexists('zhtc_yellowstore','is_delete')) {pdo_query("ALTER TABLE ".tablename('zhtc_yellowstore')." ADD `is_delete` int(4) NOT NULL DEFAULT '2'");}
- pdo_query("CREATE TABLE IF NOT EXISTS `ims_zhtc_yellowtype` (
- `id` int(11) unsigned NOT NULL AUTO_INCREMENT,
- `type_name` varchar(20) NOT NULL COMMENT '分类名称',
- `img` varchar(100) NOT NULL COMMENT '分类图片',
- `uniacid` int(11) NOT NULL COMMENT '小程序id',
- `num` int(11) NOT NULL,
- `money` decimal(10,2) NOT NULL,
- `state` int(4) NOT NULL DEFAULT '1' COMMENT '1启用,2禁用',
- PRIMARY KEY (`id`)
- ) ENGINE=InnoDB AUTO_INCREMENT=21 DEFAULT CHARSET=utf8;
- ");
- if(!pdo_fieldexists('zhtc_yellowtype','id')) {pdo_query("ALTER TABLE ".tablename('zhtc_yellowtype')." ADD
- `id` int(11) unsigned NOT NULL AUTO_INCREMENT");}
- if(!pdo_fieldexists('zhtc_yellowtype','type_name')) {pdo_query("ALTER TABLE ".tablename('zhtc_yellowtype')." ADD `type_name` varchar(20) NOT NULL COMMENT '分类名称'");}
- if(!pdo_fieldexists('zhtc_yellowtype','img')) {pdo_query("ALTER TABLE ".tablename('zhtc_yellowtype')." ADD `img` varchar(100) NOT NULL COMMENT '分类图片'");}
- if(!pdo_fieldexists('zhtc_yellowtype','uniacid')) {pdo_query("ALTER TABLE ".tablename('zhtc_yellowtype')." ADD `uniacid` int(11) NOT NULL COMMENT '小程序id'");}
- if(!pdo_fieldexists('zhtc_yellowtype','num')) {pdo_query("ALTER TABLE ".tablename('zhtc_yellowtype')." ADD `num` int(11) NOT NULL");}
- if(!pdo_fieldexists('zhtc_yellowtype','money')) {pdo_query("ALTER TABLE ".tablename('zhtc_yellowtype')." ADD `money` decimal(10,2) NOT NULL");}
- if(!pdo_fieldexists('zhtc_yellowtype','state')) {pdo_query("ALTER TABLE ".tablename('zhtc_yellowtype')." ADD `state` int(4) NOT NULL DEFAULT '1' COMMENT '1启用,2禁用'");}
- pdo_query("CREATE TABLE IF NOT EXISTS `ims_zhtc_yellowtype2` (
- `id` int(11) unsigned NOT NULL AUTO_INCREMENT,
- `name` varchar(20) NOT NULL COMMENT '分类名称',
- `type_id` int(11) NOT NULL COMMENT '主分类id',
- `num` int(11) NOT NULL,
- `uniacid` int(11) NOT NULL,
- `state` int(4) NOT NULL DEFAULT '1' COMMENT '1启用,2禁用',
- PRIMARY KEY (`id`)
- ) ENGINE=InnoDB AUTO_INCREMENT=11 DEFAULT CHARSET=utf8;
- ");
- if(!pdo_fieldexists('zhtc_yellowtype2','id')) {pdo_query("ALTER TABLE ".tablename('zhtc_yellowtype2')." ADD
- `id` int(11) unsigned NOT NULL AUTO_INCREMENT");}
- if(!pdo_fieldexists('zhtc_yellowtype2','name')) {pdo_query("ALTER TABLE ".tablename('zhtc_yellowtype2')." ADD `name` varchar(20) NOT NULL COMMENT '分类名称'");}
- if(!pdo_fieldexists('zhtc_yellowtype2','type_id')) {pdo_query("ALTER TABLE ".tablename('zhtc_yellowtype2')." ADD `type_id` int(11) NOT NULL COMMENT '主分类id'");}
- if(!pdo_fieldexists('zhtc_yellowtype2','num')) {pdo_query("ALTER TABLE ".tablename('zhtc_yellowtype2')." ADD `num` int(11) NOT NULL");}
- if(!pdo_fieldexists('zhtc_yellowtype2','uniacid')) {pdo_query("ALTER TABLE ".tablename('zhtc_yellowtype2')." ADD `uniacid` int(11) NOT NULL");}
- if(!pdo_fieldexists('zhtc_yellowtype2','state')) {pdo_query("ALTER TABLE ".tablename('zhtc_yellowtype2')." ADD `state` int(4) NOT NULL DEFAULT '1' COMMENT '1启用,2禁用'");}
- pdo_query("CREATE TABLE IF NOT EXISTS `ims_zhtc_yjset` (
- `id` int(11) NOT NULL AUTO_INCREMENT,
- `type` int(4) NOT NULL DEFAULT '1' COMMENT '1统一模式,2分开模式',
- `typer` varchar(10) NOT NULL COMMENT '统一比例',
- `sjper` varchar(10) NOT NULL COMMENT '商家比例',
- `hyper` varchar(10) NOT NULL COMMENT '黄页比例',
- `pcper` varchar(10) NOT NULL COMMENT '拼车比例',
- `tzper` varchar(10) NOT NULL COMMENT '帖子比例',
- `uniacid` varchar(50) NOT NULL,
- PRIMARY KEY (`id`)
- ) ENGINE=InnoDB AUTO_INCREMENT=4 DEFAULT CHARSET=utf8 COMMENT='佣金比例表';
- ");
- if(!pdo_fieldexists('zhtc_yjset','id')) {pdo_query("ALTER TABLE ".tablename('zhtc_yjset')." ADD
- `id` int(11) NOT NULL AUTO_INCREMENT");}
- if(!pdo_fieldexists('zhtc_yjset','type')) {pdo_query("ALTER TABLE ".tablename('zhtc_yjset')." ADD `type` int(4) NOT NULL DEFAULT '1' COMMENT '1统一模式,2分开模式'");}
- if(!pdo_fieldexists('zhtc_yjset','typer')) {pdo_query("ALTER TABLE ".tablename('zhtc_yjset')." ADD `typer` varchar(10) NOT NULL COMMENT '统一比例'");}
- if(!pdo_fieldexists('zhtc_yjset','sjper')) {pdo_query("ALTER TABLE ".tablename('zhtc_yjset')." ADD `sjper` varchar(10) NOT NULL COMMENT '商家比例'");}
- if(!pdo_fieldexists('zhtc_yjset','hyper')) {pdo_query("ALTER TABLE ".tablename('zhtc_yjset')." ADD `hyper` varchar(10) NOT NULL COMMENT '黄页比例'");}
- if(!pdo_fieldexists('zhtc_yjset','pcper')) {pdo_query("ALTER TABLE ".tablename('zhtc_yjset')." ADD `pcper` varchar(10) NOT NULL COMMENT '拼车比例'");}
- if(!pdo_fieldexists('zhtc_yjset','tzper')) {pdo_query("ALTER TABLE ".tablename('zhtc_yjset')." ADD `tzper` varchar(10) NOT NULL COMMENT '帖子比例'");}
- if(!pdo_fieldexists('zhtc_yjset','uniacid')) {pdo_query("ALTER TABLE ".tablename('zhtc_yjset')." ADD `uniacid` varchar(50) NOT NULL");}
- pdo_query("CREATE TABLE IF NOT EXISTS `ims_zhtc_yjtx` (
- `id` int(11) NOT NULL AUTO_INCREMENT,
- `account_id` int(11) NOT NULL COMMENT '账号id',
- `tx_type` int(4) NOT NULL COMMENT '提现方式 1,支付宝,2微信,3银联',
- `tx_cost` decimal(10,2) NOT NULL COMMENT '提现金额',
- `status` int(4) NOT NULL COMMENT '状态 1申请,2通过,3拒绝',
- `uniacid` varchar(50) NOT NULL,
- `cerated_time` datetime NOT NULL COMMENT '日期',
- `sj_cost` decimal(10,2) NOT NULL COMMENT '实际金额',
- `account` varchar(30) NOT NULL COMMENT '账户',
- `name` varchar(30) NOT NULL COMMENT '姓名',
- `sx_cost` decimal(10,2) NOT NULL COMMENT '手续费',
- `time` datetime NOT NULL COMMENT '审核时间',
- `is_del` int(4) NOT NULL DEFAULT '1' COMMENT '1正常,2删除',
- PRIMARY KEY (`id`)
- ) ENGINE=InnoDB DEFAULT CHARSET=utf8;
- ");
- if(!pdo_fieldexists('zhtc_yjtx','id')) {pdo_query("ALTER TABLE ".tablename('zhtc_yjtx')." ADD
- `id` int(11) NOT NULL AUTO_INCREMENT");}
- if(!pdo_fieldexists('zhtc_yjtx','account_id')) {pdo_query("ALTER TABLE ".tablename('zhtc_yjtx')." ADD `account_id` int(11) NOT NULL COMMENT '账号id'");}
- if(!pdo_fieldexists('zhtc_yjtx','tx_type')) {pdo_query("ALTER TABLE ".tablename('zhtc_yjtx')." ADD `tx_type` int(4) NOT NULL COMMENT '提现方式 1,支付宝,2微信,3银联'");}
- if(!pdo_fieldexists('zhtc_yjtx','tx_cost')) {pdo_query("ALTER TABLE ".tablename('zhtc_yjtx')." ADD `tx_cost` decimal(10,2) NOT NULL COMMENT '提现金额'");}
- if(!pdo_fieldexists('zhtc_yjtx','status')) {pdo_query("ALTER TABLE ".tablename('zhtc_yjtx')." ADD `status` int(4) NOT NULL COMMENT '状态 1申请,2通过,3拒绝'");}
- if(!pdo_fieldexists('zhtc_yjtx','uniacid')) {pdo_query("ALTER TABLE ".tablename('zhtc_yjtx')." ADD `uniacid` varchar(50) NOT NULL");}
- if(!pdo_fieldexists('zhtc_yjtx','cerated_time')) {pdo_query("ALTER TABLE ".tablename('zhtc_yjtx')." ADD `cerated_time` datetime NOT NULL COMMENT '日期'");}
- if(!pdo_fieldexists('zhtc_yjtx','sj_cost')) {pdo_query("ALTER TABLE ".tablename('zhtc_yjtx')." ADD `sj_cost` decimal(10,2) NOT NULL COMMENT '实际金额'");}
- if(!pdo_fieldexists('zhtc_yjtx','account')) {pdo_query("ALTER TABLE ".tablename('zhtc_yjtx')." ADD `account` varchar(30) NOT NULL COMMENT '账户'");}
- if(!pdo_fieldexists('zhtc_yjtx','name')) {pdo_query("ALTER TABLE ".tablename('zhtc_yjtx')." ADD `name` varchar(30) NOT NULL COMMENT '姓名'");}
- if(!pdo_fieldexists('zhtc_yjtx','sx_cost')) {pdo_query("ALTER TABLE ".tablename('zhtc_yjtx')." ADD `sx_cost` decimal(10,2) NOT NULL COMMENT '手续费'");}
- if(!pdo_fieldexists('zhtc_yjtx','time')) {pdo_query("ALTER TABLE ".tablename('zhtc_yjtx')." ADD `time` datetime NOT NULL COMMENT '审核时间'");}
- if(!pdo_fieldexists('zhtc_yjtx','is_del')) {pdo_query("ALTER TABLE ".tablename('zhtc_yjtx')." ADD `is_del` int(4) NOT NULL DEFAULT '1' COMMENT '1正常,2删除'");}
- pdo_query("CREATE TABLE IF NOT EXISTS `ims_zhtc_zx` (
- `id` int(11) NOT NULL AUTO_INCREMENT,
- `type_id` int(11) NOT NULL COMMENT '分类ID',
- `user_id` int(11) NOT NULL COMMENT '发布人ID',
- `title` varchar(200) NOT NULL COMMENT '标题',
- `content` text NOT NULL COMMENT '内容',
- `time` datetime NOT NULL,
- `yd_num` int(11) NOT NULL COMMENT '阅读数量',
- `pl_num` int(11) NOT NULL COMMENT '评论数量',
- `uniacid` varchar(50) NOT NULL,
- `imgs` text NOT NULL COMMENT '图片',
- `state` int(4) NOT NULL,
- `sh_time` datetime NOT NULL,
- `type` int(4) NOT NULL,
- `cityname` varchar(50) NOT NULL,
- `video` varchar(300) NOT NULL,
- PRIMARY KEY (`id`)
- ) ENGINE=InnoDB AUTO_INCREMENT=44 DEFAULT CHARSET=utf8;
- ");
- if(!pdo_fieldexists('zhtc_zx','id')) {pdo_query("ALTER TABLE ".tablename('zhtc_zx')." ADD
- `id` int(11) NOT NULL AUTO_INCREMENT");}
- if(!pdo_fieldexists('zhtc_zx','type_id')) {pdo_query("ALTER TABLE ".tablename('zhtc_zx')." ADD `type_id` int(11) NOT NULL COMMENT '分类ID'");}
- if(!pdo_fieldexists('zhtc_zx','user_id')) {pdo_query("ALTER TABLE ".tablename('zhtc_zx')." ADD `user_id` int(11) NOT NULL COMMENT '发布人ID'");}
- if(!pdo_fieldexists('zhtc_zx','title')) {pdo_query("ALTER TABLE ".tablename('zhtc_zx')." ADD `title` varchar(200) NOT NULL COMMENT '标题'");}
- if(!pdo_fieldexists('zhtc_zx','content')) {pdo_query("ALTER TABLE ".tablename('zhtc_zx')." ADD `content` text NOT NULL COMMENT '内容'");}
- if(!pdo_fieldexists('zhtc_zx','time')) {pdo_query("ALTER TABLE ".tablename('zhtc_zx')." ADD `time` datetime NOT NULL");}
- if(!pdo_fieldexists('zhtc_zx','yd_num')) {pdo_query("ALTER TABLE ".tablename('zhtc_zx')." ADD `yd_num` int(11) NOT NULL COMMENT '阅读数量'");}
- if(!pdo_fieldexists('zhtc_zx','pl_num')) {pdo_query("ALTER TABLE ".tablename('zhtc_zx')." ADD `pl_num` int(11) NOT NULL COMMENT '评论数量'");}
- if(!pdo_fieldexists('zhtc_zx','uniacid')) {pdo_query("ALTER TABLE ".tablename('zhtc_zx')." ADD `uniacid` varchar(50) NOT NULL");}
- if(!pdo_fieldexists('zhtc_zx','imgs')) {pdo_query("ALTER TABLE ".tablename('zhtc_zx')." ADD `imgs` text NOT NULL COMMENT '图片'");}
- if(!pdo_fieldexists('zhtc_zx','state')) {pdo_query("ALTER TABLE ".tablename('zhtc_zx')." ADD `state` int(4) NOT NULL");}
- if(!pdo_fieldexists('zhtc_zx','sh_time')) {pdo_query("ALTER TABLE ".tablename('zhtc_zx')." ADD `sh_time` datetime NOT NULL");}
- if(!pdo_fieldexists('zhtc_zx','type')) {pdo_query("ALTER TABLE ".tablename('zhtc_zx')." ADD `type` int(4) NOT NULL");}
- if(!pdo_fieldexists('zhtc_zx','cityname')) {pdo_query("ALTER TABLE ".tablename('zhtc_zx')." ADD `cityname` varchar(50) NOT NULL");}
- if(!pdo_fieldexists('zhtc_zx','video')) {pdo_query("ALTER TABLE ".tablename('zhtc_zx')." ADD `video` varchar(300) NOT NULL");}
- pdo_query("CREATE TABLE IF NOT EXISTS `ims_zhtc_zx_assess` (
- `id` int(11) NOT NULL AUTO_INCREMENT,
- `zx_id` int(4) NOT NULL,
- `score` int(11) NOT NULL,
- `content` text NOT NULL,
- `img` varchar(500) NOT NULL,
- `cerated_time` datetime NOT NULL,
- `user_id` int(11) NOT NULL,
- `uniacid` varchar(50) NOT NULL,
- `status` int(4) NOT NULL,
- `reply` text NOT NULL,
- `reply_time` datetime NOT NULL,
- `state` int(1) NOT NULL DEFAULT '2',
- PRIMARY KEY (`id`)
- ) ENGINE=InnoDB AUTO_INCREMENT=9 DEFAULT CHARSET=utf8;
- ");
- if(!pdo_fieldexists('zhtc_zx_assess','id')) {pdo_query("ALTER TABLE ".tablename('zhtc_zx_assess')." ADD
- `id` int(11) NOT NULL AUTO_INCREMENT");}
- if(!pdo_fieldexists('zhtc_zx_assess','zx_id')) {pdo_query("ALTER TABLE ".tablename('zhtc_zx_assess')." ADD `zx_id` int(4) NOT NULL");}
- if(!pdo_fieldexists('zhtc_zx_assess','score')) {pdo_query("ALTER TABLE ".tablename('zhtc_zx_assess')." ADD `score` int(11) NOT NULL");}
- if(!pdo_fieldexists('zhtc_zx_assess','content')) {pdo_query("ALTER TABLE ".tablename('zhtc_zx_assess')." ADD `content` text NOT NULL");}
- if(!pdo_fieldexists('zhtc_zx_assess','img')) {pdo_query("ALTER TABLE ".tablename('zhtc_zx_assess')." ADD `img` varchar(500) NOT NULL");}
- if(!pdo_fieldexists('zhtc_zx_assess','cerated_time')) {pdo_query("ALTER TABLE ".tablename('zhtc_zx_assess')." ADD `cerated_time` datetime NOT NULL");}
- if(!pdo_fieldexists('zhtc_zx_assess','user_id')) {pdo_query("ALTER TABLE ".tablename('zhtc_zx_assess')." ADD `user_id` int(11) NOT NULL");}
- if(!pdo_fieldexists('zhtc_zx_assess','uniacid')) {pdo_query("ALTER TABLE ".tablename('zhtc_zx_assess')." ADD `uniacid` varchar(50) NOT NULL");}
- if(!pdo_fieldexists('zhtc_zx_assess','status')) {pdo_query("ALTER TABLE ".tablename('zhtc_zx_assess')." ADD `status` int(4) NOT NULL");}
- if(!pdo_fieldexists('zhtc_zx_assess','reply')) {pdo_query("ALTER TABLE ".tablename('zhtc_zx_assess')." ADD `reply` text NOT NULL");}
- if(!pdo_fieldexists('zhtc_zx_assess','reply_time')) {pdo_query("ALTER TABLE ".tablename('zhtc_zx_assess')." ADD `reply_time` datetime NOT NULL");}
- if(!pdo_fieldexists('zhtc_zx_assess','state')) {pdo_query("ALTER TABLE ".tablename('zhtc_zx_assess')." ADD `state` int(1) NOT NULL DEFAULT '2'");}
- pdo_query("CREATE TABLE IF NOT EXISTS `ims_zhtc_zx_type` (
- `id` int(11) NOT NULL AUTO_INCREMENT,
- `type_name` varchar(100) NOT NULL COMMENT '分类名称',
- `icon` varchar(100) NOT NULL COMMENT '图标',
- `sort` int(4) NOT NULL COMMENT '排序',
- `time` datetime NOT NULL COMMENT '时间',
- `uniacid` varchar(50) NOT NULL,
- PRIMARY KEY (`id`)
- ) ENGINE=InnoDB AUTO_INCREMENT=22 DEFAULT CHARSET=utf8;
- ");
- if(!pdo_fieldexists('zhtc_zx_type','id')) {pdo_query("ALTER TABLE ".tablename('zhtc_zx_type')." ADD
- `id` int(11) NOT NULL AUTO_INCREMENT");}
- if(!pdo_fieldexists('zhtc_zx_type','type_name')) {pdo_query("ALTER TABLE ".tablename('zhtc_zx_type')." ADD `type_name` varchar(100) NOT NULL COMMENT '分类名称'");}
- if(!pdo_fieldexists('zhtc_zx_type','icon')) {pdo_query("ALTER TABLE ".tablename('zhtc_zx_type')." ADD `icon` varchar(100) NOT NULL COMMENT '图标'");}
- if(!pdo_fieldexists('zhtc_zx_type','sort')) {pdo_query("ALTER TABLE ".tablename('zhtc_zx_type')." ADD `sort` int(4) NOT NULL COMMENT '排序'");}
- if(!pdo_fieldexists('zhtc_zx_type','time')) {pdo_query("ALTER TABLE ".tablename('zhtc_zx_type')." ADD `time` datetime NOT NULL COMMENT '时间'");}
- if(!pdo_fieldexists('zhtc_zx_type','uniacid')) {pdo_query("ALTER TABLE ".tablename('zhtc_zx_type')." ADD `uniacid` varchar(50) NOT NULL");}
- pdo_query("CREATE TABLE IF NOT EXISTS `ims_zhtc_zx_zj` (
- `id` int(11) NOT NULL AUTO_INCREMENT,
- `zx_id` int(11) NOT NULL COMMENT '资讯ID',
- `user_id` int(11) NOT NULL COMMENT '用户ID',
- `uniacid` varchar(50) NOT NULL,
- `time` int(11) NOT NULL,
- PRIMARY KEY (`id`)
- ) ENGINE=InnoDB AUTO_INCREMENT=1021 DEFAULT CHARSET=utf8 COMMENT='资讯足迹';
- ");
- if(!pdo_fieldexists('zhtc_zx_zj','id')) {pdo_query("ALTER TABLE ".tablename('zhtc_zx_zj')." ADD
- `id` int(11) NOT NULL AUTO_INCREMENT");}
- if(!pdo_fieldexists('zhtc_zx_zj','zx_id')) {pdo_query("ALTER TABLE ".tablename('zhtc_zx_zj')." ADD `zx_id` int(11) NOT NULL COMMENT '资讯ID'");}
- if(!pdo_fieldexists('zhtc_zx_zj','user_id')) {pdo_query("ALTER TABLE ".tablename('zhtc_zx_zj')." ADD `user_id` int(11) NOT NULL COMMENT '用户ID'");}
- if(!pdo_fieldexists('zhtc_zx_zj','uniacid')) {pdo_query("ALTER TABLE ".tablename('zhtc_zx_zj')." ADD `uniacid` varchar(50) NOT NULL");}
- if(!pdo_fieldexists('zhtc_zx_zj','time')) {pdo_query("ALTER TABLE ".tablename('zhtc_zx_zj')." ADD `time` int(11) NOT NULL");}
|