123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441 |
- CREATE TABLE gen_table (
- table_id bigint NOT NULL,
- table_name nvarchar(200) DEFAULT '' NULL,
- table_comment nvarchar(500) DEFAULT '' NULL,
- class_name nvarchar(100) DEFAULT '' NULL,
- tpl_category nvarchar(200) DEFAULT ('crud') NULL,
- package_name nvarchar(100) DEFAULT NULL NULL,
- module_name nvarchar(30) DEFAULT NULL NULL,
- business_name nvarchar(30) DEFAULT NULL NULL,
- function_name nvarchar(50) DEFAULT NULL NULL,
- function_author nvarchar(50) DEFAULT NULL NULL,
- options nvarchar(1000) DEFAULT NULL NULL,
- create_by nvarchar(64) DEFAULT '' NULL,
- create_time datetime(6) DEFAULT NULL NULL,
- update_by nvarchar(64) DEFAULT '' NULL,
- update_time datetime(6) DEFAULT NULL NULL,
- remark nvarchar(500) DEFAULT NULL NULL,
- sub_table_name varchar(64) DEFAULT NULL NULL,
- sub_table_fk_name varchar(64) DEFAULT NULL NULL,
- gen_type char(1) DEFAULT ('0') NULL,
- gen_path varchar(200) DEFAULT ('/') NULL
- )
- ;
- INSERT INTO gen_table (table_id, table_name, table_comment, class_name, tpl_category, package_name, module_name, business_name, function_name, function_author, options, create_by, create_time, update_by, update_time, remark, sub_table_name, sub_table_fk_name, gen_type, gen_path) VALUES (N'19', N'sys_role_dept', N'角色和部门关联表', N'SysRoleDept', N'crud', N'com.ruoyi.system', N'system', N'dept', N'角色和部门关联', N'ruoyi', NULL, N'admin', N'2020-07-20 17:14:09.5533333', N'', NULL, NULL, NULL, NULL, N'0', N'/')
- ;
- INSERT INTO gen_table (table_id, table_name, table_comment, class_name, tpl_category, package_name, module_name, business_name, function_name, function_author, options, create_by, create_time, update_by, update_time, remark, sub_table_name, sub_table_fk_name, gen_type, gen_path) VALUES (N'20', N'sys_notice', N'通知公告表', N'SysNotice', N'crud', N'com.ruoyi.system', N'system', N'notice', N'通知公告', N'ruoyi', NULL, N'admin', N'2020-07-20 17:14:10.3166667', N'', NULL, NULL, NULL, NULL, N'0', N'/')
- ;
- INSERT INTO gen_table (table_id, table_name, table_comment, class_name, tpl_category, package_name, module_name, business_name, function_name, function_author, options, create_by, create_time, update_by, update_time, remark, sub_table_name, sub_table_fk_name, gen_type, gen_path) VALUES (N'21', N'sys_post', N'岗位信息表', N'SysPost', N'crud', N'com.ruoyi.system', N'system', N'post', N'岗位信息', N'ruoyi', N'{"parentMenuId":"","treeName":"","treeParentCode":"","parentMenuName":"","treeCode":""}', N'admin', N'2020-07-20 17:14:10.9266667', N'', N'2020-07-20 17:14:30.6966667', N'', NULL, NULL, N'0', N'/')
- ;
- INSERT INTO gen_table (table_id, table_name, table_comment, class_name, tpl_category, package_name, module_name, business_name, function_name, function_author, options, create_by, create_time, update_by, update_time, remark, sub_table_name, sub_table_fk_name, gen_type, gen_path) VALUES (N'53', N'JT_CAR_BIND_INFO', N'绑定运输工具信息表', N'JtCarBindInfo', N'crud', N'com.ruoyi.system', N'system', N'INFO', N'绑定运输工具信息', N'ruoyi', NULL, N'admin', N'2022-02-16 01:37:06.2066667', N'', NULL, NULL, NULL, NULL, N'0', N'/')
- ;
- INSERT INTO gen_table (table_id, table_name, table_comment, class_name, tpl_category, package_name, module_name, business_name, function_name, function_author, options, create_by, create_time, update_by, update_time, remark, sub_table_name, sub_table_fk_name, gen_type, gen_path) VALUES (N'24', N'JT_TRAJECTORY', N'轨迹表', N'JtTrajectory', N'crud', N'com.ruoyi.web', N'web', N'trajectory', N'轨迹查询', N'wuk', N'{"parentMenuId":"2045","treeName":"","treeParentCode":"","parentMenuName":"在途管理","treeCode":""}', N'admin', N'2021-05-26 08:42:55.0200000', N'', N'2021-05-27 02:35:12.9170000', N'', NULL, NULL, N'0', N'/')
- ;
- INSERT INTO gen_table (table_id, table_name, table_comment, class_name, tpl_category, package_name, module_name, business_name, function_name, function_author, options, create_by, create_time, update_by, update_time, remark, sub_table_name, sub_table_fk_name, gen_type, gen_path) VALUES (N'54', N'JT_IC_CODE', N'IC卡基础表', N'JtIcCode', N'crud', N'com.ruoyi.web', N'web', N'CODE', N'IC卡基础', N'ruoyi', N'{"parentMenuId":"2045","treeName":"","treeParentCode":"","parentMenuName":"途中监管功能","treeCode":""}', N'admin', N'2022-02-22 01:28:32.5000000', N'', N'2022-02-22 02:09:46.5633333', N'', NULL, NULL, N'0', N'/')
- ;
- INSERT INTO gen_table (table_id, table_name, table_comment, class_name, tpl_category, package_name, module_name, business_name, function_name, function_author, options, create_by, create_time, update_by, update_time, remark, sub_table_name, sub_table_fk_name, gen_type, gen_path) VALUES (N'56', N'JT_ALARM', N'报警表', N'JtAlarm', N'crud', N'com.ruoyi.system', N'system', N'ALARM', N'报警', N'ruoyi', NULL, N'admin', N'2022-03-09 07:21:19.5933333', N'', NULL, NULL, NULL, NULL, N'0', N'/')
- ;
- INSERT INTO gen_table (table_id, table_name, table_comment, class_name, tpl_category, package_name, module_name, business_name, function_name, function_author, options, create_by, create_time, update_by, update_time, remark, sub_table_name, sub_table_fk_name, gen_type, gen_path) VALUES (N'31', N'JT_WORKFLOW', N'工作流表', N'JtWorkflow', N'crud', N'com.ruoyi.web', N'web', N'WORKFLOW', N'工作流', N'ruoyi', N'{"parentMenuId":"2045","treeName":"","treeParentCode":"","parentMenuName":"在途管理","treeCode":""}', N'admin', N'2021-05-27 06:34:13.0270000', N'', N'2021-05-27 06:39:21.8770000', N'', NULL, NULL, N'0', N'/')
- ;
- INSERT INTO gen_table (table_id, table_name, table_comment, class_name, tpl_category, package_name, module_name, business_name, function_name, function_author, options, create_by, create_time, update_by, update_time, remark, sub_table_name, sub_table_fk_name, gen_type, gen_path) VALUES (N'32', N'JT_EARLYWARN_SETTINGS', N'预警设置表', N'JtEarlywarnSettings', N'crud', N'com.ruoyi.web', N'web', N'SETTINGS', N'预警设置', N'ruoyi', N'{"parentMenuId":"2045","treeName":"","treeParentCode":"","parentMenuName":"在途管理","treeCode":""}', N'admin', N'2021-05-27 06:34:18.6930000', N'', N'2021-05-27 06:43:15.8700000', N'', NULL, NULL, N'0', N'/')
- ;
- INSERT INTO gen_table (table_id, table_name, table_comment, class_name, tpl_category, package_name, module_name, business_name, function_name, function_author, options, create_by, create_time, update_by, update_time, remark, sub_table_name, sub_table_fk_name, gen_type, gen_path) VALUES (N'48', N'JT_LOCK_STATUS', N'状态表', N'JtLockStatus', N'crud', N'com.ruoyi.system', N'system', N'STATUS', N'状态', N'ruoyi', NULL, N'admin', N'2022-01-14 09:37:13.2733333', N'', NULL, NULL, NULL, NULL, N'0', N'/')
- ;
- INSERT INTO gen_table (table_id, table_name, table_comment, class_name, tpl_category, package_name, module_name, business_name, function_name, function_author, options, create_by, create_time, update_by, update_time, remark, sub_table_name, sub_table_fk_name, gen_type, gen_path) VALUES (N'36', N'JT_GROUP', N'组名表', N'JtGroup', N'crud', N'com.ruoyi.web', N'web', N'GROUP', N'组名', N'ruoyi', N'{"parentMenuId":"2045","treeName":"","treeParentCode":"","parentMenuName":"在途管理","treeCode":""}', N'admin', N'2021-05-31 07:10:11.2630000', N'', N'2021-05-31 08:49:34.3600000', N'', NULL, NULL, N'0', N'/')
- ;
- INSERT INTO gen_table (table_id, table_name, table_comment, class_name, tpl_category, package_name, module_name, business_name, function_name, function_author, options, create_by, create_time, update_by, update_time, remark, sub_table_name, sub_table_fk_name, gen_type, gen_path) VALUES (N'37', N'JT_LOCK_GROUP', N'关锁组名对应表', N'JtLockGroup', N'crud', N'com.ruoyi.web', N'web', N'LOCK_GROUP', N'关锁组名对应', N'ruoyi', N'{"parentMenuId":"2045","treeName":"","treeParentCode":"","parentMenuName":"在途管理","treeCode":""}', N'admin', N'2021-05-31 07:10:11.7030000', N'', N'2021-05-31 08:49:47.8900000', N'', NULL, NULL, N'0', N'/')
- ;
- INSERT INTO gen_table (table_id, table_name, table_comment, class_name, tpl_category, package_name, module_name, business_name, function_name, function_author, options, create_by, create_time, update_by, update_time, remark, sub_table_name, sub_table_fk_name, gen_type, gen_path) VALUES (N'38', N'sys_user', N'用户信息表', N'SysUser', N'crud', N'com.ruoyi.system', N'system', N'user', N'用户信息', N'ruoyi', NULL, N'admin', N'2021-06-01 09:52:53.9500000', N'', NULL, NULL, NULL, NULL, N'0', N'/')
- ;
- INSERT INTO gen_table (table_id, table_name, table_comment, class_name, tpl_category, package_name, module_name, business_name, function_name, function_author, options, create_by, create_time, update_by, update_time, remark, sub_table_name, sub_table_fk_name, gen_type, gen_path) VALUES (N'39', N'JT_LOCATION_INFO', N'位置信息表', N'JtLocationInfo', N'crud', N'com.ruoyi.web', N'web', N'locationInfo', N'位置信息', N'wuk', N'{"parentMenuId":"2045","treeName":"","treeParentCode":"","parentMenuName":"在途管理","treeCode":""}', N'admin', N'2021-06-04 13:13:06.6970000', N'', N'2021-06-04 13:24:13.1430000', N'', NULL, NULL, N'0', N'/')
- ;
- INSERT INTO gen_table (table_id, table_name, table_comment, class_name, tpl_category, package_name, module_name, business_name, function_name, function_author, options, create_by, create_time, update_by, update_time, remark, sub_table_name, sub_table_fk_name, gen_type, gen_path) VALUES (N'40', N'JT_BASE_STATION_LOCATION_INFO', N'基站位置信息表', N'JtBaseStationLocationInfo', N'crud', N'com.ruoyi.web', N'web', N'baseStationLocationInfo', N'基站位置信息', N'wuk', N'{"parentMenuId":"2045","treeName":"","treeParentCode":"","parentMenuName":"在途管理","treeCode":""}', N'admin', N'2021-06-04 13:13:06.8170000', N'', N'2021-06-04 13:22:46.4900000', N'', NULL, NULL, N'0', N'/')
- ;
- INSERT INTO gen_table (table_id, table_name, table_comment, class_name, tpl_category, package_name, module_name, business_name, function_name, function_author, options, create_by, create_time, update_by, update_time, remark, sub_table_name, sub_table_fk_name, gen_type, gen_path) VALUES (N'47', N'JT_EXTRA_INFO_DESC', N'附加信息描述表', N'JtExtraInfoDesc', N'crud', N'com.ruoyi.system', N'system', N'DESC', N'附加信息描述', N'ruoyi', NULL, N'admin', N'2022-01-11 02:45:22.2666667', N'', NULL, NULL, NULL, NULL, N'0', N'/')
- ;
- INSERT INTO gen_table (table_id, table_name, table_comment, class_name, tpl_category, package_name, module_name, business_name, function_name, function_author, options, create_by, create_time, update_by, update_time, remark, sub_table_name, sub_table_fk_name, gen_type, gen_path) VALUES (N'49', N'JT_ELECTRONIC_FENCE', N'电子围栏基础信息表', N'JtElectronicFence', N'crud', N'com.ruoyi.web', N'web', N'FENCE', N'电子围栏基础信息', N'ruoyi', N'{"parentMenuId":"2045","treeName":"","treeParentCode":"","parentMenuName":"途中监管功能","treeCode":""}', N'admin', N'2022-01-17 08:19:03.5400000', N'', N'2022-01-17 08:38:38.1066667', N'', NULL, NULL, N'0', N'/')
- ;
- INSERT INTO gen_table (table_id, table_name, table_comment, class_name, tpl_category, package_name, module_name, business_name, function_name, function_author, options, create_by, create_time, update_by, update_time, remark, sub_table_name, sub_table_fk_name, gen_type, gen_path) VALUES (N'43', N'S_ConfigInfo', N'shezhi', N'SConfiginfo', N'crud', N'com.ruoyi.system', N'system', N'ConfigInfo', N'shezhi', N'ruoyi', NULL, N'admin', N'2021-10-09 10:18:14.0270000', N'', NULL, NULL, NULL, NULL, N'0', N'/')
- ;
- INSERT INTO gen_table (table_id, table_name, table_comment, class_name, tpl_category, package_name, module_name, business_name, function_name, function_author, options, create_by, create_time, update_by, update_time, remark, sub_table_name, sub_table_fk_name, gen_type, gen_path) VALUES (N'46', N'JT_GPS_LOCATION', N'GPS位置信息', N'JtGpsLocation', N'crud', N'com.ruoyi.system', N'system', N'LOCATION', N'GPS位置信息', N'ruoyi', NULL, N'admin', N'2022-01-11 02:40:46.2233333', N'', NULL, NULL, NULL, NULL, N'0', N'/')
- ;
- INSERT INTO gen_table (table_id, table_name, table_comment, class_name, tpl_category, package_name, module_name, business_name, function_name, function_author, options, create_by, create_time, update_by, update_time, remark, sub_table_name, sub_table_fk_name, gen_type, gen_path) VALUES (N'50', N'JT_SEAL_INFO', N'关锁基本信息表', N'JtSealInfo', N'crud', N'com.ruoyi.system', N'system', N'INFO', N'关锁基本信息', N'ruoyi', NULL, N'admin', N'2022-01-18 01:57:48.3566667', N'', NULL, NULL, NULL, NULL, N'0', N'/')
- ;
- INSERT INTO gen_table (table_id, table_name, table_comment, class_name, tpl_category, package_name, module_name, business_name, function_name, function_author, options, create_by, create_time, update_by, update_time, remark, sub_table_name, sub_table_fk_name, gen_type, gen_path) VALUES (N'55', N'JT_IC_CODE_USER', N'IC卡用户关联表', N'JtIcCodeUser', N'crud', N'com.ruoyi.web', N'web', N'ic_uesr', N'IC卡用户关联', N'ruoyi', N'{"parentMenuId":"","treeName":"","treeParentCode":"","parentMenuName":"","treeCode":""}', N'admin', N'2022-02-28 06:11:25.8200000', N'', N'2022-02-28 06:13:57.1033333', N'', NULL, NULL, N'0', N'/')
- ;
- CREATE TABLE gen_table_column (
- column_id bigint NOT NULL,
- table_id nvarchar(64) DEFAULT NULL NULL,
- column_name nvarchar(200) DEFAULT NULL NULL,
- column_comment nvarchar(500) DEFAULT NULL NULL,
- column_type nvarchar(100) DEFAULT NULL NULL,
- java_type nvarchar(500) DEFAULT NULL NULL,
- java_field nvarchar(200) DEFAULT NULL NULL,
- is_pk nchar(1) DEFAULT NULL NULL,
- is_increment nchar(1) DEFAULT NULL NULL,
- is_required nchar(1) DEFAULT NULL NULL,
- is_insert nchar(1) DEFAULT NULL NULL,
- is_edit nchar(1) DEFAULT NULL NULL,
- is_list nchar(1) DEFAULT NULL NULL,
- is_query nchar(1) DEFAULT NULL NULL,
- query_type nvarchar(200) DEFAULT ('EQ') NULL,
- html_type nvarchar(200) DEFAULT NULL NULL,
- dict_type nvarchar(200) DEFAULT '' NULL,
- sort int DEFAULT NULL NULL,
- create_by nvarchar(64) DEFAULT '' NULL,
- create_time datetime(6) DEFAULT NULL NULL,
- update_by nvarchar(64) DEFAULT '' NULL,
- update_time datetime(6) DEFAULT NULL NULL
- )
- ;
- INSERT INTO gen_table_column (column_id, table_id, column_name, column_comment, column_type, java_type, java_field, is_pk, is_increment, is_required, is_insert, is_edit, is_list, is_query, query_type, html_type, dict_type, sort, create_by, create_time, update_by, update_time) VALUES (N'136', N'19', N'role_id', N'角色ID', N'int', N'Long', N'roleId', NULL, NULL, NULL, N'1', N'1', N'1', N'1', N'EQ', N'input', N'', N'1', N'admin', N'2020-07-20 17:14:10.2233333', N'', NULL)
- ;
- INSERT INTO gen_table_column (column_id, table_id, column_name, column_comment, column_type, java_type, java_field, is_pk, is_increment, is_required, is_insert, is_edit, is_list, is_query, query_type, html_type, dict_type, sort, create_by, create_time, update_by, update_time) VALUES (N'137', N'19', N'dept_id', N'部门ID', N'int', N'Long', N'deptId', NULL, NULL, NULL, N'1', N'1', N'1', N'1', N'EQ', N'input', N'', N'2', N'admin', N'2020-07-20 17:14:10.2700000', N'', NULL)
- ;
- INSERT INTO gen_table_column (column_id, table_id, column_name, column_comment, column_type, java_type, java_field, is_pk, is_increment, is_required, is_insert, is_edit, is_list, is_query, query_type, html_type, dict_type, sort, create_by, create_time, update_by, update_time) VALUES (N'138', N'20', N'notice_id', N'公告ID', N'int', N'Long', N'noticeId', NULL, NULL, NULL, N'1', N'1', N'1', N'1', N'EQ', N'input', N'', N'1', N'admin', N'2020-07-20 17:14:10.5066667', N'', NULL)
- ;
- INSERT INTO gen_table_column (column_id, table_id, column_name, column_comment, column_type, java_type, java_field, is_pk, is_increment, is_required, is_insert, is_edit, is_list, is_query, query_type, html_type, dict_type, sort, create_by, create_time, update_by, update_time) VALUES (N'139', N'20', N'notice_title', N'公告标题', N'nvarchar', NULL, N'noticeTitle', NULL, NULL, NULL, N'1', N'1', N'1', N'1', N'EQ', NULL, N'', N'2', N'admin', N'2020-07-20 17:14:10.5533333', N'', NULL)
- ;
- INSERT INTO gen_table_column (column_id, table_id, column_name, column_comment, column_type, java_type, java_field, is_pk, is_increment, is_required, is_insert, is_edit, is_list, is_query, query_type, html_type, dict_type, sort, create_by, create_time, update_by, update_time) VALUES (N'140', N'20', N'notice_type', N'公告类型(1通知 2公告)', N'nchar', NULL, N'noticeType', NULL, NULL, NULL, N'1', N'1', N'1', N'1', N'EQ', N'select', N'', N'3', N'admin', N'2020-07-20 17:14:10.6000000', N'', NULL)
- ;
- INSERT INTO gen_table_column (column_id, table_id, column_name, column_comment, column_type, java_type, java_field, is_pk, is_increment, is_required, is_insert, is_edit, is_list, is_query, query_type, html_type, dict_type, sort, create_by, create_time, update_by, update_time) VALUES (N'141', N'20', N'notice_content', N'公告内容', N'nvarchar', NULL, N'noticeContent', NULL, NULL, NULL, N'1', N'1', N'1', N'1', N'EQ', NULL, N'', N'4', N'admin', N'2020-07-20 17:14:10.6300000', N'', NULL)
- ;
- INSERT INTO gen_table_column (column_id, table_id, column_name, column_comment, column_type, java_type, java_field, is_pk, is_increment, is_required, is_insert, is_edit, is_list, is_query, query_type, html_type, dict_type, sort, create_by, create_time, update_by, update_time) VALUES (N'142', N'20', N'status', N'公告状态(0正常 1关闭)', N'nchar', NULL, N'status', NULL, NULL, NULL, N'1', N'1', N'1', N'1', N'EQ', N'radio', N'', N'5', N'admin', N'2020-07-20 17:14:10.6766667', N'', NULL)
- ;
- INSERT INTO gen_table_column (column_id, table_id, column_name, column_comment, column_type, java_type, java_field, is_pk, is_increment, is_required, is_insert, is_edit, is_list, is_query, query_type, html_type, dict_type, sort, create_by, create_time, update_by, update_time) VALUES (N'143', N'20', N'create_by', N'创建者', N'nvarchar', NULL, N'createBy', NULL, NULL, NULL, N'1', NULL, NULL, NULL, N'EQ', NULL, N'', N'6', N'admin', N'2020-07-20 17:14:10.7233333', N'', NULL)
- ;
- INSERT INTO gen_table_column (column_id, table_id, column_name, column_comment, column_type, java_type, java_field, is_pk, is_increment, is_required, is_insert, is_edit, is_list, is_query, query_type, html_type, dict_type, sort, create_by, create_time, update_by, update_time) VALUES (N'144', N'20', N'create_time', N'创建时间', N'datetime', NULL, N'createTime', NULL, NULL, NULL, N'1', NULL, NULL, NULL, N'EQ', NULL, N'', N'7', N'admin', N'2020-07-20 17:14:10.7566667', N'', NULL)
- ;
- INSERT INTO gen_table_column (column_id, table_id, column_name, column_comment, column_type, java_type, java_field, is_pk, is_increment, is_required, is_insert, is_edit, is_list, is_query, query_type, html_type, dict_type, sort, create_by, create_time, update_by, update_time) VALUES (N'145', N'20', N'update_by', N'更新者', N'nvarchar', NULL, N'updateBy', NULL, NULL, NULL, N'1', N'1', NULL, NULL, N'EQ', NULL, N'', N'8', N'admin', N'2020-07-20 17:14:10.8033333', N'', NULL)
- ;
- INSERT INTO gen_table_column (column_id, table_id, column_name, column_comment, column_type, java_type, java_field, is_pk, is_increment, is_required, is_insert, is_edit, is_list, is_query, query_type, html_type, dict_type, sort, create_by, create_time, update_by, update_time) VALUES (N'146', N'20', N'update_time', N'更新时间', N'datetime', NULL, N'updateTime', NULL, NULL, NULL, N'1', N'1', NULL, NULL, N'EQ', NULL, N'', N'9', N'admin', N'2020-07-20 17:14:10.8333333', N'', NULL)
- ;
- INSERT INTO gen_table_column (column_id, table_id, column_name, column_comment, column_type, java_type, java_field, is_pk, is_increment, is_required, is_insert, is_edit, is_list, is_query, query_type, html_type, dict_type, sort, create_by, create_time, update_by, update_time) VALUES (N'147', N'20', N'remark', N'备注', N'nvarchar', NULL, N'remark', NULL, NULL, NULL, N'1', N'1', N'1', NULL, N'EQ', NULL, N'', N'10', N'admin', N'2020-07-20 17:14:10.8800000', N'', NULL)
- ;
- INSERT INTO gen_table_column (column_id, table_id, column_name, column_comment, column_type, java_type, java_field, is_pk, is_increment, is_required, is_insert, is_edit, is_list, is_query, query_type, html_type, dict_type, sort, create_by, create_time, update_by, update_time) VALUES (N'148', N'21', N'post_id', N'岗位ID', N'int', N'Long', N'postId', NULL, NULL, NULL, N'1', N'1', N'1', N'1', N'EQ', N'input', N'', N'1', N'admin', N'2020-07-20 17:14:11.1466667', NULL, N'2020-07-20 17:14:30.7266667')
- ;
- INSERT INTO gen_table_column (column_id, table_id, column_name, column_comment, column_type, java_type, java_field, is_pk, is_increment, is_required, is_insert, is_edit, is_list, is_query, query_type, html_type, dict_type, sort, create_by, create_time, update_by, update_time) VALUES (N'149', N'21', N'post_code', N'岗位编码', N'nvarchar', N'Long', N'postCode', NULL, NULL, NULL, N'1', N'1', N'1', N'1', N'EQ', N'input', N'', N'2', N'admin', N'2020-07-20 17:14:11.1766667', NULL, N'2020-07-20 17:14:30.7900000')
- ;
- INSERT INTO gen_table_column (column_id, table_id, column_name, column_comment, column_type, java_type, java_field, is_pk, is_increment, is_required, is_insert, is_edit, is_list, is_query, query_type, html_type, dict_type, sort, create_by, create_time, update_by, update_time) VALUES (N'150', N'21', N'post_name', N'岗位名称', N'nvarchar', N'Long', N'postName', NULL, NULL, NULL, N'1', N'1', N'1', N'1', N'LIKE', N'input', N'', N'3', N'admin', N'2020-07-20 17:14:11.2233333', NULL, N'2020-07-20 17:14:30.8200000')
- ;
- INSERT INTO gen_table_column (column_id, table_id, column_name, column_comment, column_type, java_type, java_field, is_pk, is_increment, is_required, is_insert, is_edit, is_list, is_query, query_type, html_type, dict_type, sort, create_by, create_time, update_by, update_time) VALUES (N'151', N'21', N'post_sort', N'显示顺序', N'int', N'Long', N'postSort', NULL, NULL, NULL, N'1', N'1', N'1', N'1', N'EQ', N'input', N'', N'4', N'admin', N'2020-07-20 17:14:11.2566667', NULL, N'2020-07-20 17:14:30.9000000')
- ;
- INSERT INTO gen_table_column (column_id, table_id, column_name, column_comment, column_type, java_type, java_field, is_pk, is_increment, is_required, is_insert, is_edit, is_list, is_query, query_type, html_type, dict_type, sort, create_by, create_time, update_by, update_time) VALUES (N'152', N'21', N'status', N'状态(0正常 1停用)', N'nchar', N'Long', N'status', NULL, NULL, NULL, N'1', N'1', N'1', N'1', N'EQ', N'radio', N'', N'5', N'admin', N'2020-07-20 17:14:11.3033333', NULL, N'2020-07-20 17:14:30.9933333')
- ;
- INSERT INTO gen_table_column (column_id, table_id, column_name, column_comment, column_type, java_type, java_field, is_pk, is_increment, is_required, is_insert, is_edit, is_list, is_query, query_type, html_type, dict_type, sort, create_by, create_time, update_by, update_time) VALUES (N'153', N'21', N'create_by', N'创建者', N'nvarchar', N'Long', N'createBy', NULL, NULL, NULL, N'1', NULL, NULL, NULL, N'EQ', N'input', N'', N'6', N'admin', N'2020-07-20 17:14:11.3500000', NULL, N'2020-07-20 17:14:31.0400000')
- ;
- INSERT INTO gen_table_column (column_id, table_id, column_name, column_comment, column_type, java_type, java_field, is_pk, is_increment, is_required, is_insert, is_edit, is_list, is_query, query_type, html_type, dict_type, sort, create_by, create_time, update_by, update_time) VALUES (N'154', N'21', N'create_time', N'创建时间', N'datetime', N'Long', N'createTime', NULL, NULL, NULL, N'1', NULL, NULL, NULL, N'EQ', N'input', N'', N'7', N'admin', N'2020-07-20 17:14:11.3800000', NULL, N'2020-07-20 17:14:31.0866667')
- ;
- INSERT INTO gen_table_column (column_id, table_id, column_name, column_comment, column_type, java_type, java_field, is_pk, is_increment, is_required, is_insert, is_edit, is_list, is_query, query_type, html_type, dict_type, sort, create_by, create_time, update_by, update_time) VALUES (N'155', N'21', N'update_by', N'更新者', N'nvarchar', N'Long', N'updateBy', NULL, NULL, NULL, N'1', N'1', NULL, NULL, N'EQ', N'input', N'', N'8', N'admin', N'2020-07-20 17:14:11.4266667', NULL, N'2020-07-20 17:14:31.1633333')
- ;
- INSERT INTO gen_table_column (column_id, table_id, column_name, column_comment, column_type, java_type, java_field, is_pk, is_increment, is_required, is_insert, is_edit, is_list, is_query, query_type, html_type, dict_type, sort, create_by, create_time, update_by, update_time) VALUES (N'156', N'21', N'update_time', N'更新时间', N'datetime', N'Long', N'updateTime', NULL, NULL, NULL, N'1', N'1', NULL, NULL, N'EQ', N'input', N'', N'9', N'admin', N'2020-07-20 17:14:11.4600000', NULL, N'2020-07-20 17:14:31.2133333')
- ;
- INSERT INTO gen_table_column (column_id, table_id, column_name, column_comment, column_type, java_type, java_field, is_pk, is_increment, is_required, is_insert, is_edit, is_list, is_query, query_type, html_type, dict_type, sort, create_by, create_time, update_by, update_time) VALUES (N'157', N'21', N'remark', N'备注', N'nvarchar', N'Long', N'remark', NULL, NULL, NULL, N'1', N'1', N'1', NULL, N'EQ', N'input', N'', N'10', N'admin', N'2020-07-20 17:14:11.5066667', NULL, N'2020-07-20 17:14:31.2900000')
- ;
- INSERT INTO gen_table_column (column_id, table_id, column_name, column_comment, column_type, java_type, java_field, is_pk, is_increment, is_required, is_insert, is_edit, is_list, is_query, query_type, html_type, dict_type, sort, create_by, create_time, update_by, update_time) VALUES (N'720', N'53', N'ID', N'ID', N'bigint', N'Long', N'ID', NULL, NULL, NULL, N'1', N'1', N'1', N'1', N'EQ', N'input', N'', N'1', N'admin', N'2022-02-16 01:37:06.3166667', N'', NULL)
- ;
- INSERT INTO gen_table_column (column_id, table_id, column_name, column_comment, column_type, java_type, java_field, is_pk, is_increment, is_required, is_insert, is_edit, is_list, is_query, query_type, html_type, dict_type, sort, create_by, create_time, update_by, update_time) VALUES (N'721', N'53', N'DEVICE_ID', N'设备ID(关锁表主键)', N'varchar', N'String', N'deviceId', NULL, NULL, NULL, N'1', N'1', N'1', N'1', N'EQ', N'input', N'', N'2', N'admin', N'2022-02-16 01:37:06.3366667', N'', NULL)
- ;
- INSERT INTO gen_table_column (column_id, table_id, column_name, column_comment, column_type, java_type, java_field, is_pk, is_increment, is_required, is_insert, is_edit, is_list, is_query, query_type, html_type, dict_type, sort, create_by, create_time, update_by, update_time) VALUES (N'722', N'53', N'CAR_NO', N'车牌号', N'varchar', N'String', N'carNo', NULL, NULL, NULL, N'1', N'1', N'1', N'1', N'EQ', N'input', N'', N'3', N'admin', N'2022-02-16 01:37:06.3566667', N'', NULL)
- ;
- INSERT INTO gen_table_column (column_id, table_id, column_name, column_comment, column_type, java_type, java_field, is_pk, is_increment, is_required, is_insert, is_edit, is_list, is_query, query_type, html_type, dict_type, sort, create_by, create_time, update_by, update_time) VALUES (N'723', N'53', N'CAR_TYPE', N'车辆类型', N'varchar', N'String', N'carType', NULL, NULL, NULL, N'1', N'1', N'1', N'1', N'EQ', N'select', N'', N'4', N'admin', N'2022-02-16 01:37:06.3733333', N'', NULL)
- ;
- INSERT INTO gen_table_column (column_id, table_id, column_name, column_comment, column_type, java_type, java_field, is_pk, is_increment, is_required, is_insert, is_edit, is_list, is_query, query_type, html_type, dict_type, sort, create_by, create_time, update_by, update_time) VALUES (N'724', N'53', N'ORIGIN', N'起点', N'varchar', N'String', N'ORIGIN', NULL, NULL, NULL, N'1', N'1', N'1', N'1', N'EQ', N'input', N'', N'5', N'admin', N'2022-02-16 01:37:06.3933333', N'', NULL)
- ;
- INSERT INTO gen_table_column (column_id, table_id, column_name, column_comment, column_type, java_type, java_field, is_pk, is_increment, is_required, is_insert, is_edit, is_list, is_query, query_type, html_type, dict_type, sort, create_by, create_time, update_by, update_time) VALUES (N'725', N'53', N'DESTINATION', N'终点', N'varchar', N'String', N'DESTINATION', NULL, NULL, NULL, N'1', N'1', N'1', N'1', N'EQ', N'input', N'', N'6', N'admin', N'2022-02-16 01:37:06.4133333', N'', NULL)
- ;
- INSERT INTO gen_table_column (column_id, table_id, column_name, column_comment, column_type, java_type, java_field, is_pk, is_increment, is_required, is_insert, is_edit, is_list, is_query, query_type, html_type, dict_type, sort, create_by, create_time, update_by, update_time) VALUES (N'726', N'53', N'STATUS', N'状态(未绑定、绑定中、绑定结束)', N'varchar', N'String', N'STATUS', NULL, NULL, NULL, N'1', N'1', N'1', N'1', N'EQ', N'radio', N'', N'7', N'admin', N'2022-02-16 01:37:06.4333333', N'', NULL)
- ;
- INSERT INTO gen_table_column (column_id, table_id, column_name, column_comment, column_type, java_type, java_field, is_pk, is_increment, is_required, is_insert, is_edit, is_list, is_query, query_type, html_type, dict_type, sort, create_by, create_time, update_by, update_time) VALUES (N'727', N'53', N'REMARK', N'备注', N'varchar', N'String', N'REMARK', NULL, NULL, NULL, N'1', N'1', N'1', N'1', N'EQ', N'input', N'', N'8', N'admin', N'2022-02-16 01:37:06.4533333', N'', NULL)
- ;
- INSERT INTO gen_table_column (column_id, table_id, column_name, column_comment, column_type, java_type, java_field, is_pk, is_increment, is_required, is_insert, is_edit, is_list, is_query, query_type, html_type, dict_type, sort, create_by, create_time, update_by, update_time) VALUES (N'728', N'53', N'CREATE_BY', N'创建人', N'varchar', N'String', N'createBy', NULL, NULL, NULL, N'1', N'1', N'1', N'1', N'EQ', N'input', N'', N'9', N'admin', N'2022-02-16 01:37:06.4800000', N'', NULL)
- ;
- INSERT INTO gen_table_column (column_id, table_id, column_name, column_comment, column_type, java_type, java_field, is_pk, is_increment, is_required, is_insert, is_edit, is_list, is_query, query_type, html_type, dict_type, sort, create_by, create_time, update_by, update_time) VALUES (N'729', N'53', N'CREATE_TIME', N'创建时间', N'datetime', N'Date', N'createTime', NULL, NULL, NULL, N'1', N'1', N'1', N'1', N'EQ', N'datetime', N'', N'10', N'admin', N'2022-02-16 01:37:06.5033333', N'', NULL)
- ;
- INSERT INTO gen_table_column (column_id, table_id, column_name, column_comment, column_type, java_type, java_field, is_pk, is_increment, is_required, is_insert, is_edit, is_list, is_query, query_type, html_type, dict_type, sort, create_by, create_time, update_by, update_time) VALUES (N'730', N'53', N'UPDATE_BY', N'修改人', N'varchar', N'String', N'updateBy', NULL, NULL, NULL, N'1', N'1', N'1', N'1', N'EQ', N'input', N'', N'11', N'admin', N'2022-02-16 01:37:06.5333333', N'', NULL)
- ;
- INSERT INTO gen_table_column (column_id, table_id, column_name, column_comment, column_type, java_type, java_field, is_pk, is_increment, is_required, is_insert, is_edit, is_list, is_query, query_type, html_type, dict_type, sort, create_by, create_time, update_by, update_time) VALUES (N'731', N'53', N'UPDATE_TIME', N'修改时间', N'datetime', N'Date', N'updateTime', NULL, NULL, NULL, N'1', N'1', N'1', N'1', N'EQ', N'datetime', N'', N'12', N'admin', N'2022-02-16 01:37:06.5566667', N'', NULL)
- ;
- INSERT INTO gen_table_column (column_id, table_id, column_name, column_comment, column_type, java_type, java_field, is_pk, is_increment, is_required, is_insert, is_edit, is_list, is_query, query_type, html_type, dict_type, sort, create_by, create_time, update_by, update_time) VALUES (N'732', N'53', N'USER_ID', NULL, N'bigint', N'Long', N'userId', NULL, NULL, NULL, N'1', N'1', N'1', N'1', N'EQ', N'input', N'', N'13', N'admin', N'2022-02-16 01:37:06.5766667', N'', NULL)
- ;
- INSERT INTO gen_table_column (column_id, table_id, column_name, column_comment, column_type, java_type, java_field, is_pk, is_increment, is_required, is_insert, is_edit, is_list, is_query, query_type, html_type, dict_type, sort, create_by, create_time, update_by, update_time) VALUES (N'733', N'53', N'DEPT_ID', NULL, N'bigint', N'Long', N'deptId', NULL, NULL, NULL, N'1', N'1', N'1', N'1', N'EQ', N'input', N'', N'14', N'admin', N'2022-02-16 01:37:06.6033333', N'', NULL)
- ;
- INSERT INTO gen_table_column (column_id, table_id, column_name, column_comment, column_type, java_type, java_field, is_pk, is_increment, is_required, is_insert, is_edit, is_list, is_query, query_type, html_type, dict_type, sort, create_by, create_time, update_by, update_time) VALUES (N'192', N'24', N'ID', N'ID', N'bigint', N'Long', N'id', N'1', NULL, NULL, N'1', NULL, NULL, NULL, N'EQ', N'input', N'', N'1', N'admin', N'2021-05-26 08:42:55.0500000', NULL, N'2021-05-27 02:35:12.9200000')
- ;
- INSERT INTO gen_table_column (column_id, table_id, column_name, column_comment, column_type, java_type, java_field, is_pk, is_increment, is_required, is_insert, is_edit, is_list, is_query, query_type, html_type, dict_type, sort, create_by, create_time, update_by, update_time) VALUES (N'193', N'24', N'DEVICE_ID', N'设备ID', N'bigint', N'Long', N'deviceId', NULL, NULL, NULL, N'1', N'1', N'1', N'1', N'EQ', N'input', N'', N'2', N'admin', N'2021-05-26 08:42:55.0530000', NULL, N'2021-05-27 02:35:12.9270000')
- ;
- INSERT INTO gen_table_column (column_id, table_id, column_name, column_comment, column_type, java_type, java_field, is_pk, is_increment, is_required, is_insert, is_edit, is_list, is_query, query_type, html_type, dict_type, sort, create_by, create_time, update_by, update_time) VALUES (N'194', N'24', N'LONGITUDE', N'经度', N'decimal', N'Double', N'longitude', NULL, NULL, NULL, N'1', N'1', N'1', NULL, N'EQ', N'input', N'', N'3', N'admin', N'2021-05-26 08:42:55.0570000', NULL, N'2021-05-27 02:35:12.9270000')
- ;
- INSERT INTO gen_table_column (column_id, table_id, column_name, column_comment, column_type, java_type, java_field, is_pk, is_increment, is_required, is_insert, is_edit, is_list, is_query, query_type, html_type, dict_type, sort, create_by, create_time, update_by, update_time) VALUES (N'195', N'24', N'LATITUDE', N'纬度', N'decimal', N'Double', N'latitude', NULL, NULL, NULL, N'1', N'1', N'1', NULL, N'EQ', N'input', N'', N'4', N'admin', N'2021-05-26 08:42:55.0600000', NULL, N'2021-05-27 02:35:12.9300000')
- ;
- INSERT INTO gen_table_column (column_id, table_id, column_name, column_comment, column_type, java_type, java_field, is_pk, is_increment, is_required, is_insert, is_edit, is_list, is_query, query_type, html_type, dict_type, sort, create_by, create_time, update_by, update_time) VALUES (N'196', N'24', N'ORIENTATION', N'方向', N'varchar', N'String', N'orientation', NULL, NULL, NULL, N'1', N'1', N'1', NULL, N'EQ', N'input', N'', N'5', N'admin', N'2021-05-26 08:42:55.0630000', NULL, N'2021-05-27 02:35:12.9330000')
- ;
- INSERT INTO gen_table_column (column_id, table_id, column_name, column_comment, column_type, java_type, java_field, is_pk, is_increment, is_required, is_insert, is_edit, is_list, is_query, query_type, html_type, dict_type, sort, create_by, create_time, update_by, update_time) VALUES (N'197', N'24', N'GPS_TIME', N'GPS时间', N'datetime', N'Date', N'gpsTime', NULL, NULL, NULL, N'1', N'1', N'1', N'1', N'EQ', N'datetime', N'', N'6', N'admin', N'2021-05-26 08:42:55.0630000', NULL, N'2021-05-27 02:35:12.9330000')
- ;
- INSERT INTO gen_table_column (column_id, table_id, column_name, column_comment, column_type, java_type, java_field, is_pk, is_increment, is_required, is_insert, is_edit, is_list, is_query, query_type, html_type, dict_type, sort, create_by, create_time, update_by, update_time) VALUES (N'198', N'24', N'SERVER_TIME', N'服务器时间', N'datetime', N'Date', N'serverTime', NULL, NULL, NULL, N'1', N'1', N'1', N'1', N'EQ', N'datetime', N'', N'7', N'admin', N'2021-05-26 08:42:55.0700000', NULL, N'2021-05-27 02:35:12.9370000')
- ;
- INSERT INTO gen_table_column (column_id, table_id, column_name, column_comment, column_type, java_type, java_field, is_pk, is_increment, is_required, is_insert, is_edit, is_list, is_query, query_type, html_type, dict_type, sort, create_by, create_time, update_by, update_time) VALUES (N'199', N'24', N'SPEED', N'速度', N'int', N'Integer', N'speed', NULL, NULL, NULL, N'1', N'1', N'1', NULL, N'EQ', N'input', N'', N'8', N'admin', N'2021-05-26 08:42:55.0730000', NULL, N'2021-05-27 02:35:12.9430000')
- ;
- INSERT INTO gen_table_column (column_id, table_id, column_name, column_comment, column_type, java_type, java_field, is_pk, is_increment, is_required, is_insert, is_edit, is_list, is_query, query_type, html_type, dict_type, sort, create_by, create_time, update_by, update_time) VALUES (N'200', N'24', N'MILEAGE', N'里程', N'int', N'Integer', N'mileage', NULL, NULL, NULL, N'1', N'1', N'1', NULL, N'EQ', N'input', N'', N'9', N'admin', N'2021-05-26 08:42:55.0770000', NULL, N'2021-05-27 02:35:12.9470000')
- ;
- INSERT INTO gen_table_column (column_id, table_id, column_name, column_comment, column_type, java_type, java_field, is_pk, is_increment, is_required, is_insert, is_edit, is_list, is_query, query_type, html_type, dict_type, sort, create_by, create_time, update_by, update_time) VALUES (N'201', N'24', N'ALTITUDE', N'高程', N'int', N'Integer', N'altitude', NULL, NULL, NULL, N'1', N'1', N'1', NULL, N'EQ', N'input', N'', N'10', N'admin', N'2021-05-26 08:42:55.0800000', NULL, N'2021-05-27 02:35:12.9470000')
- ;
- INSERT INTO gen_table_column (column_id, table_id, column_name, column_comment, column_type, java_type, java_field, is_pk, is_increment, is_required, is_insert, is_edit, is_list, is_query, query_type, html_type, dict_type, sort, create_by, create_time, update_by, update_time) VALUES (N'202', N'24', N'DEVICE_STATUS', N'设备状态', N'varchar', N'String', N'deviceStatus', NULL, NULL, NULL, N'1', N'1', N'1', N'1', N'EQ', N'select', N'JT_DEVICE_STATUS', N'11', N'admin', N'2021-05-26 08:42:55.0870000', NULL, N'2021-05-27 02:35:12.9500000')
- ;
- INSERT INTO gen_table_column (column_id, table_id, column_name, column_comment, column_type, java_type, java_field, is_pk, is_increment, is_required, is_insert, is_edit, is_list, is_query, query_type, html_type, dict_type, sort, create_by, create_time, update_by, update_time) VALUES (N'203', N'24', N'ALARM_FLAG', N'报警标志', N'varchar', N'String', N'alarmFlag', NULL, NULL, NULL, N'1', N'1', N'1', N'1', N'EQ', N'select', N'JT_ALARM_FLAG', N'12', N'admin', N'2021-05-26 08:42:55.0870000', NULL, N'2021-05-27 02:35:12.9530000')
- ;
- INSERT INTO gen_table_column (column_id, table_id, column_name, column_comment, column_type, java_type, java_field, is_pk, is_increment, is_required, is_insert, is_edit, is_list, is_query, query_type, html_type, dict_type, sort, create_by, create_time, update_by, update_time) VALUES (N'204', N'24', N'QUANTITY_OF_ELECTRICITY', N'电量', N'int', N'Integer', N'quantityOfElectricity', NULL, NULL, NULL, N'1', N'1', N'1', NULL, N'EQ', N'input', N'', N'13', N'admin', N'2021-05-26 08:42:55.0900000', NULL, N'2021-05-27 02:35:12.9600000')
- ;
- INSERT INTO gen_table_column (column_id, table_id, column_name, column_comment, column_type, java_type, java_field, is_pk, is_increment, is_required, is_insert, is_edit, is_list, is_query, query_type, html_type, dict_type, sort, create_by, create_time, update_by, update_time) VALUES (N'205', N'24', N'ADDRESS', N'地址', N'varchar', N'String', N'address', NULL, NULL, NULL, N'1', N'1', N'1', NULL, N'EQ', N'input', N'', N'14', N'admin', N'2021-05-26 08:42:55.0930000', NULL, N'2021-05-27 02:35:12.9630000')
- ;
- INSERT INTO gen_table_column (column_id, table_id, column_name, column_comment, column_type, java_type, java_field, is_pk, is_increment, is_required, is_insert, is_edit, is_list, is_query, query_type, html_type, dict_type, sort, create_by, create_time, update_by, update_time) VALUES (N'206', N'24', N'REMARK', N'备注', N'varchar', N'String', N'remark', NULL, NULL, NULL, N'1', N'1', N'1', NULL, N'EQ', N'input', N'', N'15', N'admin', N'2021-05-26 08:42:55.0970000', NULL, N'2021-05-27 02:35:12.9630000')
- ;
- INSERT INTO gen_table_column (column_id, table_id, column_name, column_comment, column_type, java_type, java_field, is_pk, is_increment, is_required, is_insert, is_edit, is_list, is_query, query_type, html_type, dict_type, sort, create_by, create_time, update_by, update_time) VALUES (N'207', N'24', N'CREATE_BY', N'创建人', N'varchar', N'String', N'createBy', NULL, NULL, NULL, N'1', NULL, N'1', N'1', N'EQ', N'input', N'', N'16', N'admin', N'2021-05-26 08:42:55.1000000', NULL, N'2021-05-27 02:35:12.9670000')
- ;
- INSERT INTO gen_table_column (column_id, table_id, column_name, column_comment, column_type, java_type, java_field, is_pk, is_increment, is_required, is_insert, is_edit, is_list, is_query, query_type, html_type, dict_type, sort, create_by, create_time, update_by, update_time) VALUES (N'208', N'24', N'CREATE_TIME', N'创建时间', N'datetime', N'Date', N'createTime', NULL, NULL, NULL, N'1', NULL, N'1', N'1', N'EQ', N'datetime', N'', N'17', N'admin', N'2021-05-26 08:42:55.1070000', NULL, N'2021-05-27 02:35:12.9700000')
- ;
- INSERT INTO gen_table_column (column_id, table_id, column_name, column_comment, column_type, java_type, java_field, is_pk, is_increment, is_required, is_insert, is_edit, is_list, is_query, query_type, html_type, dict_type, sort, create_by, create_time, update_by, update_time) VALUES (N'209', N'24', N'UPDATE_BY', N'修改人', N'varchar', N'String', N'updateBy', NULL, NULL, NULL, N'1', NULL, N'1', N'1', N'EQ', N'input', N'', N'18', N'admin', N'2021-05-26 08:42:55.1100000', NULL, N'2021-05-27 02:35:12.9700000')
- ;
- INSERT INTO gen_table_column (column_id, table_id, column_name, column_comment, column_type, java_type, java_field, is_pk, is_increment, is_required, is_insert, is_edit, is_list, is_query, query_type, html_type, dict_type, sort, create_by, create_time, update_by, update_time) VALUES (N'210', N'24', N'UPDATE_TIME', N'修改时间', N'datetime', N'Date', N'updateTime', NULL, NULL, NULL, N'1', NULL, N'1', N'1', N'EQ', N'datetime', N'', N'19', N'admin', N'2021-05-26 08:42:55.1130000', NULL, N'2021-05-27 02:35:12.9770000')
- ;
- INSERT INTO gen_table_column (column_id, table_id, column_name, column_comment, column_type, java_type, java_field, is_pk, is_increment, is_required, is_insert, is_edit, is_list, is_query, query_type, html_type, dict_type, sort, create_by, create_time, update_by, update_time) VALUES (N'656', N'50', N'ID', NULL, N'bigint', N'Long', N'ID', N'1', NULL, NULL, N'1', NULL, NULL, NULL, N'EQ', N'input', N'', N'1', N'admin', N'2022-01-18 01:57:48.4333333', N'', NULL)
- ;
- INSERT INTO gen_table_column (column_id, table_id, column_name, column_comment, column_type, java_type, java_field, is_pk, is_increment, is_required, is_insert, is_edit, is_list, is_query, query_type, html_type, dict_type, sort, create_by, create_time, update_by, update_time) VALUES (N'657', N'50', N'DEVICE_NO', N'设备编号(唯一)', N'varchar', N'String', N'deviceNo', NULL, NULL, NULL, N'1', N'1', N'1', N'1', N'EQ', N'input', N'', N'2', N'admin', N'2022-01-18 01:57:48.4500000', N'', NULL)
- ;
- INSERT INTO gen_table_column (column_id, table_id, column_name, column_comment, column_type, java_type, java_field, is_pk, is_increment, is_required, is_insert, is_edit, is_list, is_query, query_type, html_type, dict_type, sort, create_by, create_time, update_by, update_time) VALUES (N'658', N'50', N'DEVICE_TYPE', N'设备类型', N'varchar', N'String', N'deviceType', NULL, NULL, NULL, N'1', N'1', N'1', N'1', N'EQ', N'select', N'', N'3', N'admin', N'2022-01-18 01:57:48.4633333', N'', NULL)
- ;
- INSERT INTO gen_table_column (column_id, table_id, column_name, column_comment, column_type, java_type, java_field, is_pk, is_increment, is_required, is_insert, is_edit, is_list, is_query, query_type, html_type, dict_type, sort, create_by, create_time, update_by, update_time) VALUES (N'659', N'50', N'DEVICE_UTC', N'时区(UTC)', N'int', N'Long', N'deviceUtc', NULL, NULL, NULL, N'1', N'1', N'1', N'1', N'EQ', N'input', N'', N'4', N'admin', N'2022-01-18 01:57:48.4766667', N'', NULL)
- ;
- INSERT INTO gen_table_column (column_id, table_id, column_name, column_comment, column_type, java_type, java_field, is_pk, is_increment, is_required, is_insert, is_edit, is_list, is_query, query_type, html_type, dict_type, sort, create_by, create_time, update_by, update_time) VALUES (N'660', N'50', N'OVERDUE_TIME', N'过期时间', N'datetime', N'Date', N'overdueTime', NULL, NULL, NULL, N'1', N'1', N'1', N'1', N'EQ', N'datetime', N'', N'5', N'admin', N'2022-01-18 01:57:48.4866667', N'', NULL)
- ;
- INSERT INTO gen_table_column (column_id, table_id, column_name, column_comment, column_type, java_type, java_field, is_pk, is_increment, is_required, is_insert, is_edit, is_list, is_query, query_type, html_type, dict_type, sort, create_by, create_time, update_by, update_time) VALUES (N'661', N'50', N'FIRMWARE_VER', N'固件版本', N'varchar', N'String', N'firmwareVer', NULL, NULL, NULL, N'1', N'1', N'1', N'1', N'EQ', N'input', N'', N'6', N'admin', N'2022-01-18 01:57:48.5033333', N'', NULL)
- ;
- INSERT INTO gen_table_column (column_id, table_id, column_name, column_comment, column_type, java_type, java_field, is_pk, is_increment, is_required, is_insert, is_edit, is_list, is_query, query_type, html_type, dict_type, sort, create_by, create_time, update_by, update_time) VALUES (N'662', N'50', N'ICCID', N'ICCID', N'varchar', N'String', N'ICCID', NULL, NULL, NULL, N'1', N'1', N'1', N'1', N'EQ', N'input', N'', N'7', N'admin', N'2022-01-18 01:57:48.5166667', N'', NULL)
- ;
- INSERT INTO gen_table_column (column_id, table_id, column_name, column_comment, column_type, java_type, java_field, is_pk, is_increment, is_required, is_insert, is_edit, is_list, is_query, query_type, html_type, dict_type, sort, create_by, create_time, update_by, update_time) VALUES (N'663', N'50', N'SIM', N'SIM', N'varchar', N'String', N'SIM', NULL, NULL, NULL, N'1', N'1', N'1', N'1', N'EQ', N'input', N'', N'8', N'admin', N'2022-01-18 01:57:48.5300000', N'', NULL)
- ;
- INSERT INTO gen_table_column (column_id, table_id, column_name, column_comment, column_type, java_type, java_field, is_pk, is_increment, is_required, is_insert, is_edit, is_list, is_query, query_type, html_type, dict_type, sort, create_by, create_time, update_by, update_time) VALUES (N'664', N'50', N'IMEI', N'IMEI', N'varchar', N'String', N'IMEI', NULL, NULL, NULL, N'1', N'1', N'1', N'1', N'EQ', N'input', N'', N'9', N'admin', N'2022-01-18 01:57:48.7000000', N'', NULL)
- ;
- INSERT INTO gen_table_column (column_id, table_id, column_name, column_comment, column_type, java_type, java_field, is_pk, is_increment, is_required, is_insert, is_edit, is_list, is_query, query_type, html_type, dict_type, sort, create_by, create_time, update_by, update_time) VALUES (N'665', N'50', N'DEVICE_NAME', N'设备名称(手动命名)', N'varchar', N'String', N'deviceName', NULL, NULL, NULL, N'1', N'1', N'1', N'1', N'LIKE', N'input', N'', N'10', N'admin', N'2022-01-18 01:57:48.7166667', N'', NULL)
- ;
- INSERT INTO gen_table_column (column_id, table_id, column_name, column_comment, column_type, java_type, java_field, is_pk, is_increment, is_required, is_insert, is_edit, is_list, is_query, query_type, html_type, dict_type, sort, create_by, create_time, update_by, update_time) VALUES (N'666', N'50', N'UPLOAD_INTERVAL', N'上传间隔(秒)', N'int', N'Long', N'uploadInterval', NULL, NULL, NULL, N'1', N'1', N'1', N'1', N'EQ', N'input', N'', N'11', N'admin', N'2022-01-18 01:57:48.7266667', N'', NULL)
- ;
- INSERT INTO gen_table_column (column_id, table_id, column_name, column_comment, column_type, java_type, java_field, is_pk, is_increment, is_required, is_insert, is_edit, is_list, is_query, query_type, html_type, dict_type, sort, create_by, create_time, update_by, update_time) VALUES (N'667', N'50', N'IP_ADDR', N'IP地址', N'varchar', N'String', N'ipAddr', NULL, NULL, NULL, N'1', N'1', N'1', N'1', N'EQ', N'input', N'', N'12', N'admin', N'2022-01-18 01:57:48.7400000', N'', NULL)
- ;
- INSERT INTO gen_table_column (column_id, table_id, column_name, column_comment, column_type, java_type, java_field, is_pk, is_increment, is_required, is_insert, is_edit, is_list, is_query, query_type, html_type, dict_type, sort, create_by, create_time, update_by, update_time) VALUES (N'668', N'50', N'ENABLE_FLAG', N'启用标志(启用、不启用)', N'varchar', N'String', N'enableFlag', NULL, NULL, NULL, N'1', N'1', N'1', N'1', N'EQ', N'input', N'', N'13', N'admin', N'2022-01-18 01:57:48.7533333', N'', NULL)
- ;
- INSERT INTO gen_table_column (column_id, table_id, column_name, column_comment, column_type, java_type, java_field, is_pk, is_increment, is_required, is_insert, is_edit, is_list, is_query, query_type, html_type, dict_type, sort, create_by, create_time, update_by, update_time) VALUES (N'669', N'50', N'REMARK', N'备注', N'varchar', N'String', N'REMARK', NULL, NULL, NULL, N'1', N'1', N'1', N'1', N'EQ', N'input', N'', N'14', N'admin', N'2022-01-18 01:57:48.7700000', N'', NULL)
- ;
- INSERT INTO gen_table_column (column_id, table_id, column_name, column_comment, column_type, java_type, java_field, is_pk, is_increment, is_required, is_insert, is_edit, is_list, is_query, query_type, html_type, dict_type, sort, create_by, create_time, update_by, update_time) VALUES (N'670', N'50', N'CREATE_BY', N'创建人', N'varchar', N'String', N'createBy', NULL, NULL, NULL, N'1', N'1', N'1', N'1', N'EQ', N'input', N'', N'15', N'admin', N'2022-01-18 01:57:48.7800000', N'', NULL)
- ;
- INSERT INTO gen_table_column (column_id, table_id, column_name, column_comment, column_type, java_type, java_field, is_pk, is_increment, is_required, is_insert, is_edit, is_list, is_query, query_type, html_type, dict_type, sort, create_by, create_time, update_by, update_time) VALUES (N'671', N'50', N'CREATE_TIME', N'创建时间', N'datetime', N'Date', N'createTime', NULL, NULL, NULL, N'1', N'1', N'1', N'1', N'EQ', N'datetime', N'', N'16', N'admin', N'2022-01-18 01:57:48.7933333', N'', NULL)
- ;
- INSERT INTO gen_table_column (column_id, table_id, column_name, column_comment, column_type, java_type, java_field, is_pk, is_increment, is_required, is_insert, is_edit, is_list, is_query, query_type, html_type, dict_type, sort, create_by, create_time, update_by, update_time) VALUES (N'672', N'50', N'UPDATE_BY', N'修改人', N'varchar', N'String', N'updateBy', NULL, NULL, NULL, N'1', N'1', N'1', N'1', N'EQ', N'input', N'', N'17', N'admin', N'2022-01-18 01:57:48.8066667', N'', NULL)
- ;
- INSERT INTO gen_table_column (column_id, table_id, column_name, column_comment, column_type, java_type, java_field, is_pk, is_increment, is_required, is_insert, is_edit, is_list, is_query, query_type, html_type, dict_type, sort, create_by, create_time, update_by, update_time) VALUES (N'673', N'50', N'UPDATE_TIME', N'修改时间', N'datetime', N'Date', N'updateTime', NULL, NULL, NULL, N'1', N'1', N'1', N'1', N'EQ', N'datetime', N'', N'18', N'admin', N'2022-01-18 01:57:48.8166667', N'', NULL)
- ;
- INSERT INTO gen_table_column (column_id, table_id, column_name, column_comment, column_type, java_type, java_field, is_pk, is_increment, is_required, is_insert, is_edit, is_list, is_query, query_type, html_type, dict_type, sort, create_by, create_time, update_by, update_time) VALUES (N'674', N'50', N'USER_ID', NULL, N'bigint', N'Long', N'userId', NULL, NULL, NULL, N'1', N'1', N'1', N'1', N'EQ', N'input', N'', N'19', N'admin', N'2022-01-18 01:57:48.8333333', N'', NULL)
- ;
- INSERT INTO gen_table_column (column_id, table_id, column_name, column_comment, column_type, java_type, java_field, is_pk, is_increment, is_required, is_insert, is_edit, is_list, is_query, query_type, html_type, dict_type, sort, create_by, create_time, update_by, update_time) VALUES (N'675', N'50', N'DEPT_ID', NULL, N'bigint', N'Long', N'deptId', NULL, NULL, NULL, N'1', N'1', N'1', N'1', N'EQ', N'input', N'', N'20', N'admin', N'2022-01-18 01:57:48.8466667', N'', NULL)
- ;
- INSERT INTO gen_table_column (column_id, table_id, column_name, column_comment, column_type, java_type, java_field, is_pk, is_increment, is_required, is_insert, is_edit, is_list, is_query, query_type, html_type, dict_type, sort, create_by, create_time, update_by, update_time) VALUES (N'753', N'56', N'ID', N'主键ID', N'bigint', N'Long', N'ID', N'1', NULL, NULL, N'1', NULL, NULL, NULL, N'EQ', N'input', N'', N'1', N'admin', N'2022-03-09 07:21:19.8600000', N'', NULL)
- ;
- INSERT INTO gen_table_column (column_id, table_id, column_name, column_comment, column_type, java_type, java_field, is_pk, is_increment, is_required, is_insert, is_edit, is_list, is_query, query_type, html_type, dict_type, sort, create_by, create_time, update_by, update_time) VALUES (N'754', N'56', N'LOCK_ID', N'关锁ID', N'varchar', N'String', N'lockId', NULL, NULL, NULL, N'1', N'1', N'1', N'1', N'EQ', N'input', N'', N'2', N'admin', N'2022-03-09 07:21:19.8766667', N'', NULL)
- ;
- INSERT INTO gen_table_column (column_id, table_id, column_name, column_comment, column_type, java_type, java_field, is_pk, is_increment, is_required, is_insert, is_edit, is_list, is_query, query_type, html_type, dict_type, sort, create_by, create_time, update_by, update_time) VALUES (N'755', N'56', N'CTP_TYPE', N'报警类型', N'varchar', N'String', N'ctpType', NULL, NULL, NULL, N'1', N'1', N'1', N'1', N'EQ', N'select', N'', N'3', N'admin', N'2022-03-09 07:21:19.8833333', N'', NULL)
- ;
- INSERT INTO gen_table_column (column_id, table_id, column_name, column_comment, column_type, java_type, java_field, is_pk, is_increment, is_required, is_insert, is_edit, is_list, is_query, query_type, html_type, dict_type, sort, create_by, create_time, update_by, update_time) VALUES (N'756', N'56', N'CTP_DESC', N'报警描述', N'varchar', N'String', N'ctpDesc', NULL, NULL, NULL, N'1', N'1', N'1', N'1', N'EQ', N'input', N'', N'4', N'admin', N'2022-03-09 07:21:19.8966667', N'', NULL)
- ;
- INSERT INTO gen_table_column (column_id, table_id, column_name, column_comment, column_type, java_type, java_field, is_pk, is_increment, is_required, is_insert, is_edit, is_list, is_query, query_type, html_type, dict_type, sort, create_by, create_time, update_by, update_time) VALUES (N'757', N'56', N'CTP_NUMBER', N'报警数值', N'int', N'Long', N'ctpNumber', NULL, NULL, NULL, N'1', N'1', N'1', N'1', N'EQ', N'input', N'', N'5', N'admin', N'2022-03-09 07:21:19.9066667', N'', NULL)
- ;
- INSERT INTO gen_table_column (column_id, table_id, column_name, column_comment, column_type, java_type, java_field, is_pk, is_increment, is_required, is_insert, is_edit, is_list, is_query, query_type, html_type, dict_type, sort, create_by, create_time, update_by, update_time) VALUES (N'758', N'56', N'CTP_LEVEL', N'报警级别', N'int', N'Long', N'ctpLevel', NULL, NULL, NULL, N'1', N'1', N'1', N'1', N'EQ', N'input', N'', N'6', N'admin', N'2022-03-09 07:21:19.9200000', N'', NULL)
- ;
- INSERT INTO gen_table_column (column_id, table_id, column_name, column_comment, column_type, java_type, java_field, is_pk, is_increment, is_required, is_insert, is_edit, is_list, is_query, query_type, html_type, dict_type, sort, create_by, create_time, update_by, update_time) VALUES (N'759', N'56', N'CAR_NO', N'车牌号', N'varchar', N'String', N'carNo', NULL, NULL, NULL, N'1', N'1', N'1', N'1', N'EQ', N'input', N'', N'7', N'admin', N'2022-03-09 07:21:19.9333333', N'', NULL)
- ;
- INSERT INTO gen_table_column (column_id, table_id, column_name, column_comment, column_type, java_type, java_field, is_pk, is_increment, is_required, is_insert, is_edit, is_list, is_query, query_type, html_type, dict_type, sort, create_by, create_time, update_by, update_time) VALUES (N'760', N'56', N'CREATE_TIME', NULL, N'datetime', N'Date', N'createTime', NULL, NULL, NULL, N'1', N'1', N'1', N'1', N'EQ', N'datetime', N'', N'8', N'admin', N'2022-03-09 07:21:19.9433333', N'', NULL)
- ;
- INSERT INTO gen_table_column (column_id, table_id, column_name, column_comment, column_type, java_type, java_field, is_pk, is_increment, is_required, is_insert, is_edit, is_list, is_query, query_type, html_type, dict_type, sort, create_by, create_time, update_by, update_time) VALUES (N'761', N'56', N'CREATE_BY', NULL, N'varchar', N'String', N'createBy', NULL, NULL, NULL, N'1', N'1', N'1', N'1', N'EQ', N'input', N'', N'9', N'admin', N'2022-03-09 07:21:19.9566667', N'', NULL)
- ;
- INSERT INTO gen_table_column (column_id, table_id, column_name, column_comment, column_type, java_type, java_field, is_pk, is_increment, is_required, is_insert, is_edit, is_list, is_query, query_type, html_type, dict_type, sort, create_by, create_time, update_by, update_time) VALUES (N'762', N'56', N'UPDATE_TIME', NULL, N'datetime', N'Date', N'updateTime', NULL, NULL, NULL, N'1', N'1', N'1', N'1', N'EQ', N'datetime', N'', N'10', N'admin', N'2022-03-09 07:21:19.9633333', N'', NULL)
- ;
- INSERT INTO gen_table_column (column_id, table_id, column_name, column_comment, column_type, java_type, java_field, is_pk, is_increment, is_required, is_insert, is_edit, is_list, is_query, query_type, html_type, dict_type, sort, create_by, create_time, update_by, update_time) VALUES (N'763', N'56', N'UPDATE_BY', NULL, N'varchar', N'String', N'updateBy', NULL, NULL, NULL, N'1', N'1', N'1', N'1', N'EQ', N'input', N'', N'11', N'admin', N'2022-03-09 07:21:19.9766667', N'', NULL)
- ;
- INSERT INTO gen_table_column (column_id, table_id, column_name, column_comment, column_type, java_type, java_field, is_pk, is_increment, is_required, is_insert, is_edit, is_list, is_query, query_type, html_type, dict_type, sort, create_by, create_time, update_by, update_time) VALUES (N'764', N'56', N'REMARK', NULL, N'varchar', N'String', N'REMARK', NULL, NULL, NULL, N'1', N'1', N'1', N'1', N'EQ', N'input', N'', N'12', N'admin', N'2022-03-09 07:21:19.9900000', N'', NULL)
- ;
- INSERT INTO gen_table_column (column_id, table_id, column_name, column_comment, column_type, java_type, java_field, is_pk, is_increment, is_required, is_insert, is_edit, is_list, is_query, query_type, html_type, dict_type, sort, create_by, create_time, update_by, update_time) VALUES (N'765', N'56', N'USER_ID', NULL, N'bigint', N'Long', N'userId', NULL, NULL, NULL, N'1', N'1', N'1', N'1', N'EQ', N'input', N'', N'13', N'admin', N'2022-03-09 07:21:20.0000000', N'', NULL)
- ;
- INSERT INTO gen_table_column (column_id, table_id, column_name, column_comment, column_type, java_type, java_field, is_pk, is_increment, is_required, is_insert, is_edit, is_list, is_query, query_type, html_type, dict_type, sort, create_by, create_time, update_by, update_time) VALUES (N'766', N'56', N'DEPT_ID', NULL, N'bigint', N'Long', N'deptId', NULL, NULL, NULL, N'1', N'1', N'1', N'1', N'EQ', N'input', N'', N'14', N'admin', N'2022-03-09 07:21:20.0100000', N'', NULL)
- ;
- INSERT INTO gen_table_column (column_id, table_id, column_name, column_comment, column_type, java_type, java_field, is_pk, is_increment, is_required, is_insert, is_edit, is_list, is_query, query_type, html_type, dict_type, sort, create_by, create_time, update_by, update_time) VALUES (N'319', N'31', N'ID', N'主键ID', N'bigint', N'Long', N'ID', N'1', NULL, NULL, N'1', NULL, NULL, NULL, N'EQ', N'input', N'', N'1', N'admin', N'2021-05-27 06:34:13.0900000', NULL, N'2021-05-27 06:39:21.8830000')
- ;
- INSERT INTO gen_table_column (column_id, table_id, column_name, column_comment, column_type, java_type, java_field, is_pk, is_increment, is_required, is_insert, is_edit, is_list, is_query, query_type, html_type, dict_type, sort, create_by, create_time, update_by, update_time) VALUES (N'320', N'31', N'LOCK_ID', N'关锁ID', N'bigint', N'Long', N'lockId', NULL, NULL, NULL, N'1', N'1', N'1', N'1', N'EQ', N'input', N'', N'2', N'admin', N'2021-05-27 06:34:13.1030000', NULL, N'2021-05-27 06:39:21.8900000')
- ;
- INSERT INTO gen_table_column (column_id, table_id, column_name, column_comment, column_type, java_type, java_field, is_pk, is_increment, is_required, is_insert, is_edit, is_list, is_query, query_type, html_type, dict_type, sort, create_by, create_time, update_by, update_time) VALUES (N'321', N'31', N'W_TYPE', N'工作流类型(施封、验封、解封)', N'varchar', N'String', N'wType', NULL, NULL, NULL, N'1', N'1', N'1', N'1', N'EQ', N'select', N'JT_LOCK_TYPE', N'3', N'admin', N'2021-05-27 06:34:13.1100000', NULL, N'2021-05-27 06:39:21.8930000')
- ;
- INSERT INTO gen_table_column (column_id, table_id, column_name, column_comment, column_type, java_type, java_field, is_pk, is_increment, is_required, is_insert, is_edit, is_list, is_query, query_type, html_type, dict_type, sort, create_by, create_time, update_by, update_time) VALUES (N'676', N'50', N'LOCK_GROUP_ID', N'关锁所属组的ID', N'bigint', N'Long', N'lockGroupId', NULL, NULL, NULL, N'1', N'1', N'1', N'1', N'EQ', N'input', N'', N'21', N'admin', N'2022-01-18 01:57:48.8633333', N'', NULL)
- ;
- INSERT INTO gen_table_column (column_id, table_id, column_name, column_comment, column_type, java_type, java_field, is_pk, is_increment, is_required, is_insert, is_edit, is_list, is_query, query_type, html_type, dict_type, sort, create_by, create_time, update_by, update_time) VALUES (N'322', N'31', N'W_DESC', N'工作流描述', N'varchar', N'String', N'wDesc', NULL, NULL, NULL, N'1', N'1', N'1', NULL, N'EQ', N'input', N'', N'4', N'admin', N'2021-05-27 06:34:13.1200000', NULL, N'2021-05-27 06:39:21.9000000')
- ;
- INSERT INTO gen_table_column (column_id, table_id, column_name, column_comment, column_type, java_type, java_field, is_pk, is_increment, is_required, is_insert, is_edit, is_list, is_query, query_type, html_type, dict_type, sort, create_by, create_time, update_by, update_time) VALUES (N'323', N'31', N'W_STATUS', N'工作流状态', N'int', N'Long', N'wStatus', NULL, NULL, NULL, N'1', N'1', N'1', N'1', N'EQ', N'select', N'JT_W_TYPE', N'5', N'admin', N'2021-05-27 06:34:13.1230000', NULL, N'2021-05-27 06:39:21.9030000')
- ;
- INSERT INTO gen_table_column (column_id, table_id, column_name, column_comment, column_type, java_type, java_field, is_pk, is_increment, is_required, is_insert, is_edit, is_list, is_query, query_type, html_type, dict_type, sort, create_by, create_time, update_by, update_time) VALUES (N'324', N'31', N'W_STATUS_DESC', N'工作流状态描述(正常施封、施封异常)', N'varchar', N'String', N'wStatusDesc', NULL, NULL, NULL, N'1', N'1', N'1', NULL, N'EQ', N'input', N'', N'6', N'admin', N'2021-05-27 06:34:13.1300000', NULL, N'2021-05-27 06:39:21.9100000')
- ;
- INSERT INTO gen_table_column (column_id, table_id, column_name, column_comment, column_type, java_type, java_field, is_pk, is_increment, is_required, is_insert, is_edit, is_list, is_query, query_type, html_type, dict_type, sort, create_by, create_time, update_by, update_time) VALUES (N'325', N'31', N'SEAL_ADDRESS', N'操作地点', N'varchar', N'String', N'sealAddress', NULL, NULL, NULL, N'1', N'1', N'1', N'1', N'EQ', N'select', N'JT_ADDRESS', N'7', N'admin', N'2021-05-27 06:34:13.1400000', NULL, N'2021-05-27 06:39:21.9130000')
- ;
- INSERT INTO gen_table_column (column_id, table_id, column_name, column_comment, column_type, java_type, java_field, is_pk, is_increment, is_required, is_insert, is_edit, is_list, is_query, query_type, html_type, dict_type, sort, create_by, create_time, update_by, update_time) VALUES (N'326', N'31', N'SEAL_MILEAGE', N'里程', N'varchar', N'String', N'sealMileage', NULL, NULL, NULL, N'1', N'1', N'1', N'1', N'EQ', N'input', N'', N'8', N'admin', N'2021-05-27 06:34:13.1470000', NULL, N'2021-05-27 06:39:21.9170000')
- ;
- INSERT INTO gen_table_column (column_id, table_id, column_name, column_comment, column_type, java_type, java_field, is_pk, is_increment, is_required, is_insert, is_edit, is_list, is_query, query_type, html_type, dict_type, sort, create_by, create_time, update_by, update_time) VALUES (N'327', N'31', N'SEAL_TYPE', N'操作类型(人工、IC卡、远程)', N'varchar', N'String', N'sealType', NULL, NULL, NULL, N'1', N'1', N'1', N'1', N'EQ', N'select', N'JT_OP_LOCK', N'9', N'admin', N'2021-05-27 06:34:13.1570000', NULL, N'2021-05-27 06:39:21.9270000')
- ;
- INSERT INTO gen_table_column (column_id, table_id, column_name, column_comment, column_type, java_type, java_field, is_pk, is_increment, is_required, is_insert, is_edit, is_list, is_query, query_type, html_type, dict_type, sort, create_by, create_time, update_by, update_time) VALUES (N'328', N'31', N'SEAL_PASSWORD', N'操作密码', N'varchar', N'String', N'sealPassword', NULL, NULL, NULL, N'1', N'1', N'1', N'1', N'EQ', N'input', N'', N'10', N'admin', N'2021-05-27 06:34:13.1570000', NULL, N'2021-05-27 06:39:21.9300000')
- ;
- INSERT INTO gen_table_column (column_id, table_id, column_name, column_comment, column_type, java_type, java_field, is_pk, is_increment, is_required, is_insert, is_edit, is_list, is_query, query_type, html_type, dict_type, sort, create_by, create_time, update_by, update_time) VALUES (N'329', N'31', N'SEAL_TIME', N'操作时间', N'datetime', N'Date', N'sealTime', NULL, NULL, NULL, N'1', N'1', N'1', N'1', N'EQ', N'datetime', N'', N'11', N'admin', N'2021-05-27 06:34:13.1600000', NULL, N'2021-05-27 06:39:21.9330000')
- ;
- INSERT INTO gen_table_column (column_id, table_id, column_name, column_comment, column_type, java_type, java_field, is_pk, is_increment, is_required, is_insert, is_edit, is_list, is_query, query_type, html_type, dict_type, sort, create_by, create_time, update_by, update_time) VALUES (N'330', N'31', N'SEAL_VOLTAGE', N'关锁的电压', N'varchar', N'String', N'sealVoltage', NULL, NULL, NULL, N'1', N'1', N'1', N'1', N'EQ', N'input', N'', N'12', N'admin', N'2021-05-27 06:34:13.1630000', NULL, N'2021-05-27 06:39:21.9330000')
- ;
- INSERT INTO gen_table_column (column_id, table_id, column_name, column_comment, column_type, java_type, java_field, is_pk, is_increment, is_required, is_insert, is_edit, is_list, is_query, query_type, html_type, dict_type, sort, create_by, create_time, update_by, update_time) VALUES (N'331', N'31', N'SEAL_ICCARD', N'操作的IC卡号', N'varchar', N'String', N'sealIccard', NULL, NULL, NULL, N'1', N'1', N'1', N'1', N'EQ', N'input', N'', N'13', N'admin', N'2021-05-27 06:34:13.1700000', NULL, N'2021-05-27 06:39:21.9370000')
- ;
- INSERT INTO gen_table_column (column_id, table_id, column_name, column_comment, column_type, java_type, java_field, is_pk, is_increment, is_required, is_insert, is_edit, is_list, is_query, query_type, html_type, dict_type, sort, create_by, create_time, update_by, update_time) VALUES (N'332', N'31', N'CREATE_TIME', N'创建时间', N'datetime', N'Date', N'createTime', NULL, NULL, NULL, NULL, NULL, N'1', NULL, N'EQ', N'datetime', N'', N'14', N'admin', N'2021-05-27 06:34:13.1700000', NULL, N'2021-05-27 06:39:21.9400000')
- ;
- INSERT INTO gen_table_column (column_id, table_id, column_name, column_comment, column_type, java_type, java_field, is_pk, is_increment, is_required, is_insert, is_edit, is_list, is_query, query_type, html_type, dict_type, sort, create_by, create_time, update_by, update_time) VALUES (N'333', N'31', N'CREATE_BY', N'创建人', N'varchar', N'String', N'createBy', NULL, NULL, NULL, NULL, NULL, N'1', NULL, N'EQ', N'input', N'', N'15', N'admin', N'2021-05-27 06:34:13.1730000', NULL, N'2021-05-27 06:39:21.9470000')
- ;
- INSERT INTO gen_table_column (column_id, table_id, column_name, column_comment, column_type, java_type, java_field, is_pk, is_increment, is_required, is_insert, is_edit, is_list, is_query, query_type, html_type, dict_type, sort, create_by, create_time, update_by, update_time) VALUES (N'334', N'31', N'UPDATE_TIME', N'修改时间', N'datetime', N'Date', N'updateTime', NULL, NULL, NULL, NULL, NULL, N'1', NULL, N'EQ', N'datetime', N'', N'16', N'admin', N'2021-05-27 06:34:13.1770000', NULL, N'2021-05-27 06:39:21.9500000')
- ;
- INSERT INTO gen_table_column (column_id, table_id, column_name, column_comment, column_type, java_type, java_field, is_pk, is_increment, is_required, is_insert, is_edit, is_list, is_query, query_type, html_type, dict_type, sort, create_by, create_time, update_by, update_time) VALUES (N'335', N'31', N'UPDATE_BY', N'修改人', N'varchar', N'String', N'updateBy', NULL, NULL, NULL, NULL, NULL, N'1', NULL, N'EQ', N'input', N'', N'17', N'admin', N'2021-05-27 06:34:13.1800000', NULL, N'2021-05-27 06:39:21.9530000')
- ;
- INSERT INTO gen_table_column (column_id, table_id, column_name, column_comment, column_type, java_type, java_field, is_pk, is_increment, is_required, is_insert, is_edit, is_list, is_query, query_type, html_type, dict_type, sort, create_by, create_time, update_by, update_time) VALUES (N'336', N'31', N'REMARK', N'备注', N'varchar', N'String', N'REMARK', NULL, NULL, NULL, N'1', N'1', N'1', NULL, N'EQ', N'input', N'', N'18', N'admin', N'2021-05-27 06:34:13.1800000', NULL, N'2021-05-27 06:39:21.9630000')
- ;
- INSERT INTO gen_table_column (column_id, table_id, column_name, column_comment, column_type, java_type, java_field, is_pk, is_increment, is_required, is_insert, is_edit, is_list, is_query, query_type, html_type, dict_type, sort, create_by, create_time, update_by, update_time) VALUES (N'337', N'31', N'USER_ID', N'用户id,权限用', N'bigint', N'Long', N'userId', NULL, NULL, NULL, NULL, NULL, NULL, NULL, N'EQ', N'input', N'', N'19', N'admin', N'2021-05-27 06:34:13.1830000', NULL, N'2021-05-27 06:39:21.9670000')
- ;
- INSERT INTO gen_table_column (column_id, table_id, column_name, column_comment, column_type, java_type, java_field, is_pk, is_increment, is_required, is_insert, is_edit, is_list, is_query, query_type, html_type, dict_type, sort, create_by, create_time, update_by, update_time) VALUES (N'338', N'31', N'DEPT_ID', N'部门id,权限用', N'bigint', N'Long', N'deptId', NULL, NULL, NULL, NULL, NULL, NULL, NULL, N'EQ', N'input', N'', N'20', N'admin', N'2021-05-27 06:34:13.1900000', NULL, N'2021-05-27 06:39:21.9700000')
- ;
- INSERT INTO gen_table_column (column_id, table_id, column_name, column_comment, column_type, java_type, java_field, is_pk, is_increment, is_required, is_insert, is_edit, is_list, is_query, query_type, html_type, dict_type, sort, create_by, create_time, update_by, update_time) VALUES (N'339', N'32', N'ID', N'主键ID', N'bigint', N'Long', N'ID', N'1', NULL, NULL, N'1', NULL, NULL, NULL, N'EQ', N'input', N'', N'1', N'admin', N'2021-05-27 06:34:18.7200000', NULL, N'2021-05-27 06:43:15.8770000')
- ;
- INSERT INTO gen_table_column (column_id, table_id, column_name, column_comment, column_type, java_type, java_field, is_pk, is_increment, is_required, is_insert, is_edit, is_list, is_query, query_type, html_type, dict_type, sort, create_by, create_time, update_by, update_time) VALUES (N'340', N'32', N'ORIGIN', N'起点', N'int', N'String', N'ORIGIN', NULL, NULL, NULL, N'1', N'1', N'1', N'1', N'EQ', N'select', N'JT_ADDRESS', N'2', N'admin', N'2021-05-27 06:34:18.7230000', NULL, N'2021-05-27 06:43:15.8800000')
- ;
- INSERT INTO gen_table_column (column_id, table_id, column_name, column_comment, column_type, java_type, java_field, is_pk, is_increment, is_required, is_insert, is_edit, is_list, is_query, query_type, html_type, dict_type, sort, create_by, create_time, update_by, update_time) VALUES (N'341', N'32', N'DESTINATION', N'终点', N'int', N'String', N'DESTINATION', NULL, NULL, NULL, N'1', N'1', N'1', N'1', N'EQ', N'select', N'JT_ADDRESS', N'3', N'admin', N'2021-05-27 06:34:18.7270000', NULL, N'2021-05-27 06:43:15.8800000')
- ;
- INSERT INTO gen_table_column (column_id, table_id, column_name, column_comment, column_type, java_type, java_field, is_pk, is_increment, is_required, is_insert, is_edit, is_list, is_query, query_type, html_type, dict_type, sort, create_by, create_time, update_by, update_time) VALUES (N'342', N'32', N'CAR_TYPE', N'车辆作业类型', N'varchar', N'String', N'carType', NULL, NULL, NULL, N'1', N'1', N'1', N'1', N'EQ', N'select', N'JT_CAR_TYPE', N'4', N'admin', N'2021-05-27 06:34:18.7270000', NULL, N'2021-05-27 06:43:15.8830000')
- ;
- INSERT INTO gen_table_column (column_id, table_id, column_name, column_comment, column_type, java_type, java_field, is_pk, is_increment, is_required, is_insert, is_edit, is_list, is_query, query_type, html_type, dict_type, sort, create_by, create_time, update_by, update_time) VALUES (N'343', N'32', N'DRIVING_OVER_TIME', N'驾驶超时时间', N'bigint', N'Long', N'drivingOverTime', NULL, NULL, NULL, N'1', N'1', N'1', NULL, N'EQ', N'input', N'', N'5', N'admin', N'2021-05-27 06:34:18.7300000', NULL, N'2021-05-27 06:43:15.8900000')
- ;
- INSERT INTO gen_table_column (column_id, table_id, column_name, column_comment, column_type, java_type, java_field, is_pk, is_increment, is_required, is_insert, is_edit, is_list, is_query, query_type, html_type, dict_type, sort, create_by, create_time, update_by, update_time) VALUES (N'344', N'32', N'STOP_OVER_TIME', N'停车超时时间', N'bigint', N'Long', N'stopOverTime', NULL, NULL, NULL, N'1', N'1', N'1', NULL, N'EQ', N'input', N'', N'6', N'admin', N'2021-05-27 06:34:18.7300000', NULL, N'2021-05-27 06:43:15.8900000')
- ;
- INSERT INTO gen_table_column (column_id, table_id, column_name, column_comment, column_type, java_type, java_field, is_pk, is_increment, is_required, is_insert, is_edit, is_list, is_query, query_type, html_type, dict_type, sort, create_by, create_time, update_by, update_time) VALUES (N'345', N'32', N'CREATE_TIME', N'创建时间', N'datetime', N'Date', N'createTime', NULL, NULL, NULL, NULL, NULL, N'1', NULL, N'EQ', N'datetime', N'', N'7', N'admin', N'2021-05-27 06:34:18.7370000', NULL, N'2021-05-27 06:43:15.8930000')
- ;
- INSERT INTO gen_table_column (column_id, table_id, column_name, column_comment, column_type, java_type, java_field, is_pk, is_increment, is_required, is_insert, is_edit, is_list, is_query, query_type, html_type, dict_type, sort, create_by, create_time, update_by, update_time) VALUES (N'346', N'32', N'CREATE_BY', N'创建人', N'varchar', N'String', N'createBy', NULL, NULL, NULL, NULL, NULL, N'1', NULL, N'EQ', N'input', N'', N'8', N'admin', N'2021-05-27 06:34:18.7400000', NULL, N'2021-05-27 06:43:15.8970000')
- ;
- INSERT INTO gen_table_column (column_id, table_id, column_name, column_comment, column_type, java_type, java_field, is_pk, is_increment, is_required, is_insert, is_edit, is_list, is_query, query_type, html_type, dict_type, sort, create_by, create_time, update_by, update_time) VALUES (N'347', N'32', N'UPDATE_TIME', N'修改时间', N'datetime', N'Date', N'updateTime', NULL, NULL, NULL, NULL, NULL, N'1', NULL, N'EQ', N'datetime', N'', N'9', N'admin', N'2021-05-27 06:34:18.7430000', NULL, N'2021-05-27 06:43:15.9000000')
- ;
- INSERT INTO gen_table_column (column_id, table_id, column_name, column_comment, column_type, java_type, java_field, is_pk, is_increment, is_required, is_insert, is_edit, is_list, is_query, query_type, html_type, dict_type, sort, create_by, create_time, update_by, update_time) VALUES (N'348', N'32', N'UPDATE_BY', N'修改人', N'varchar', N'String', N'updateBy', NULL, NULL, NULL, NULL, NULL, N'1', NULL, N'EQ', N'input', N'', N'10', N'admin', N'2021-05-27 06:34:18.7430000', NULL, N'2021-05-27 06:43:15.9000000')
- ;
- INSERT INTO gen_table_column (column_id, table_id, column_name, column_comment, column_type, java_type, java_field, is_pk, is_increment, is_required, is_insert, is_edit, is_list, is_query, query_type, html_type, dict_type, sort, create_by, create_time, update_by, update_time) VALUES (N'349', N'32', N'REMARK', N'备注', N'varchar', N'String', N'REMARK', NULL, NULL, NULL, N'1', N'1', N'1', NULL, N'EQ', N'input', N'', N'11', N'admin', N'2021-05-27 06:34:18.7470000', NULL, N'2021-05-27 06:43:15.9030000')
- ;
- INSERT INTO gen_table_column (column_id, table_id, column_name, column_comment, column_type, java_type, java_field, is_pk, is_increment, is_required, is_insert, is_edit, is_list, is_query, query_type, html_type, dict_type, sort, create_by, create_time, update_by, update_time) VALUES (N'350', N'32', N'USER_ID', N'用户id,权限用', N'bigint', N'Long', N'userId', NULL, NULL, NULL, NULL, NULL, NULL, NULL, N'EQ', N'input', N'', N'12', N'admin', N'2021-05-27 06:34:18.7470000', NULL, N'2021-05-27 06:43:15.9100000')
- ;
- INSERT INTO gen_table_column (column_id, table_id, column_name, column_comment, column_type, java_type, java_field, is_pk, is_increment, is_required, is_insert, is_edit, is_list, is_query, query_type, html_type, dict_type, sort, create_by, create_time, update_by, update_time) VALUES (N'351', N'32', N'DEPT_ID', N'部门id,权限用', N'bigint', N'Long', N'deptId', NULL, NULL, NULL, NULL, NULL, NULL, NULL, N'EQ', N'input', N'', N'13', N'admin', N'2021-05-27 06:34:18.7500000', NULL, N'2021-05-27 06:43:15.9130000')
- ;
- INSERT INTO gen_table_column (column_id, table_id, column_name, column_comment, column_type, java_type, java_field, is_pk, is_increment, is_required, is_insert, is_edit, is_list, is_query, query_type, html_type, dict_type, sort, create_by, create_time, update_by, update_time) VALUES (N'682', N'50', N'ELECTRONIC_FENCE_IDS', N'绑定的电子围栏ID', N'varchar', N'String', N'electronicFenceIds', NULL, NULL, NULL, N'1', N'1', N'1', N'1', N'EQ', N'input', N'', N'27', N'admin', N'2022-01-18 01:57:48.9400000', N'', NULL)
- ;
- INSERT INTO gen_table_column (column_id, table_id, column_name, column_comment, column_type, java_type, java_field, is_pk, is_increment, is_required, is_insert, is_edit, is_list, is_query, query_type, html_type, dict_type, sort, create_by, create_time, update_by, update_time) VALUES (N'748', N'55', N'ID', N'null', N'int', N'Long', N'id', N'1', NULL, NULL, N'1', NULL, NULL, NULL, N'EQ', N'input', N'', N'1', N'admin', N'2022-02-28 06:11:25.8500000', NULL, N'2022-02-28 06:13:57.1066667')
- ;
- INSERT INTO gen_table_column (column_id, table_id, column_name, column_comment, column_type, java_type, java_field, is_pk, is_increment, is_required, is_insert, is_edit, is_list, is_query, query_type, html_type, dict_type, sort, create_by, create_time, update_by, update_time) VALUES (N'749', N'55', N'USER_ID', N'绑定的用户ID', N'int', N'Long', N'userId', NULL, NULL, NULL, N'1', N'1', NULL, NULL, N'EQ', N'input', N'', N'2', N'admin', N'2022-02-28 06:11:25.8600000', NULL, N'2022-02-28 06:13:57.1133333')
- ;
- INSERT INTO gen_table_column (column_id, table_id, column_name, column_comment, column_type, java_type, java_field, is_pk, is_increment, is_required, is_insert, is_edit, is_list, is_query, query_type, html_type, dict_type, sort, create_by, create_time, update_by, update_time) VALUES (N'750', N'55', N'IC_CODE', N'IC卡卡号', N'varchar', N'String', N'icCode', NULL, NULL, NULL, N'1', N'1', N'1', N'1', N'EQ', N'input', N'', N'3', N'admin', N'2022-02-28 06:11:25.8666667', NULL, N'2022-02-28 06:13:57.1200000')
- ;
- INSERT INTO gen_table_column (column_id, table_id, column_name, column_comment, column_type, java_type, java_field, is_pk, is_increment, is_required, is_insert, is_edit, is_list, is_query, query_type, html_type, dict_type, sort, create_by, create_time, update_by, update_time) VALUES (N'751', N'55', N'IC_TYPE', N'卡的种类', N'int', N'Long', N'icType', NULL, NULL, NULL, N'1', N'1', N'1', N'1', N'EQ', N'select', N'JT_IC_TYPE', N'4', N'admin', N'2022-02-28 06:11:25.8700000', NULL, N'2022-02-28 06:13:57.1266667')
- ;
- INSERT INTO gen_table_column (column_id, table_id, column_name, column_comment, column_type, java_type, java_field, is_pk, is_increment, is_required, is_insert, is_edit, is_list, is_query, query_type, html_type, dict_type, sort, create_by, create_time, update_by, update_time) VALUES (N'752', N'55', N'USER_NAME', N'用户名称', N'varchar', N'String', N'userName', NULL, NULL, NULL, N'1', N'1', N'1', N'1', N'LIKE', N'input', N'', N'5', N'admin', N'2022-02-28 06:11:25.8766667', NULL, N'2022-02-28 06:13:57.1366667')
- ;
- INSERT INTO gen_table_column (column_id, table_id, column_name, column_comment, column_type, java_type, java_field, is_pk, is_increment, is_required, is_insert, is_edit, is_list, is_query, query_type, html_type, dict_type, sort, create_by, create_time, update_by, update_time) VALUES (N'767', N'56', N'LONGITUDE', N'经度', N'decimal', N'Long', N'LONGITUDE', NULL, NULL, NULL, N'1', N'1', N'1', N'1', N'EQ', N'input', N'', N'15', N'admin', N'2022-03-09 07:21:20.0200000', N'', NULL)
- ;
- INSERT INTO gen_table_column (column_id, table_id, column_name, column_comment, column_type, java_type, java_field, is_pk, is_increment, is_required, is_insert, is_edit, is_list, is_query, query_type, html_type, dict_type, sort, create_by, create_time, update_by, update_time) VALUES (N'392', N'36', N'ID', N'id自增长', N'bigint', N'Long', N'id', N'1', NULL, NULL, N'1', NULL, NULL, NULL, N'EQ', N'input', N'', N'1', N'admin', N'2021-05-31 07:10:11.3230000', NULL, N'2021-05-31 08:49:34.3730000')
- ;
- INSERT INTO gen_table_column (column_id, table_id, column_name, column_comment, column_type, java_type, java_field, is_pk, is_increment, is_required, is_insert, is_edit, is_list, is_query, query_type, html_type, dict_type, sort, create_by, create_time, update_by, update_time) VALUES (N'393', N'36', N'GROUP_NAME', N'组名', N'varchar', N'String', N'groupName', NULL, NULL, NULL, N'1', N'1', N'1', N'1', N'LIKE', N'input', N'', N'2', N'admin', N'2021-05-31 07:10:11.3400000', NULL, N'2021-05-31 08:49:34.3770000')
- ;
- INSERT INTO gen_table_column (column_id, table_id, column_name, column_comment, column_type, java_type, java_field, is_pk, is_increment, is_required, is_insert, is_edit, is_list, is_query, query_type, html_type, dict_type, sort, create_by, create_time, update_by, update_time) VALUES (N'394', N'36', N'CREATE_TIME', N'创建时间', N'datetime', N'Date', N'createTime', NULL, NULL, NULL, N'1', N'1', N'1', N'1', N'EQ', N'datetime', N'', N'3', N'admin', N'2021-05-31 07:10:11.3500000', NULL, N'2021-05-31 08:49:34.3870000')
- ;
- INSERT INTO gen_table_column (column_id, table_id, column_name, column_comment, column_type, java_type, java_field, is_pk, is_increment, is_required, is_insert, is_edit, is_list, is_query, query_type, html_type, dict_type, sort, create_by, create_time, update_by, update_time) VALUES (N'395', N'36', N'UPDATE_TIME', N'修改时间', N'datetime', N'Date', N'updateTime', NULL, NULL, NULL, N'1', N'1', N'1', N'1', N'EQ', N'datetime', N'', N'4', N'admin', N'2021-05-31 07:10:11.3900000', NULL, N'2021-05-31 08:49:34.3930000')
- ;
- INSERT INTO gen_table_column (column_id, table_id, column_name, column_comment, column_type, java_type, java_field, is_pk, is_increment, is_required, is_insert, is_edit, is_list, is_query, query_type, html_type, dict_type, sort, create_by, create_time, update_by, update_time) VALUES (N'396', N'36', N'CREATE_BY', N'创建人', N'varchar', N'String', N'createBy', NULL, NULL, NULL, N'1', N'1', N'1', N'1', N'EQ', N'input', N'', N'5', N'admin', N'2021-05-31 07:10:11.3970000', NULL, N'2021-05-31 08:49:34.4070000')
- ;
- INSERT INTO gen_table_column (column_id, table_id, column_name, column_comment, column_type, java_type, java_field, is_pk, is_increment, is_required, is_insert, is_edit, is_list, is_query, query_type, html_type, dict_type, sort, create_by, create_time, update_by, update_time) VALUES (N'397', N'36', N'UPDATE_BY', N'修改人', N'varchar', N'String', N'updateBy', NULL, NULL, NULL, N'1', N'1', N'1', N'1', N'EQ', N'input', N'', N'6', N'admin', N'2021-05-31 07:10:11.4830000', NULL, N'2021-05-31 08:49:34.4170000')
- ;
- INSERT INTO gen_table_column (column_id, table_id, column_name, column_comment, column_type, java_type, java_field, is_pk, is_increment, is_required, is_insert, is_edit, is_list, is_query, query_type, html_type, dict_type, sort, create_by, create_time, update_by, update_time) VALUES (N'398', N'36', N'USER_ID', N'用户id', N'bigint', N'Long', N'userId', NULL, NULL, NULL, N'1', N'1', N'1', N'1', N'EQ', N'input', N'', N'7', N'admin', N'2021-05-31 07:10:11.5100000', NULL, N'2021-05-31 08:49:34.4500000')
- ;
- INSERT INTO gen_table_column (column_id, table_id, column_name, column_comment, column_type, java_type, java_field, is_pk, is_increment, is_required, is_insert, is_edit, is_list, is_query, query_type, html_type, dict_type, sort, create_by, create_time, update_by, update_time) VALUES (N'399', N'36', N'DEPT_ID', N'部门id', N'bigint', N'Long', N'deptId', NULL, NULL, NULL, N'1', N'1', N'1', N'1', N'EQ', N'input', N'', N'8', N'admin', N'2021-05-31 07:10:11.5530000', NULL, N'2021-05-31 08:49:34.4730000')
- ;
- INSERT INTO gen_table_column (column_id, table_id, column_name, column_comment, column_type, java_type, java_field, is_pk, is_increment, is_required, is_insert, is_edit, is_list, is_query, query_type, html_type, dict_type, sort, create_by, create_time, update_by, update_time) VALUES (N'400', N'36', N'REMARK', N'备注', N'varchar', N'String', N'remark', NULL, NULL, NULL, N'1', N'1', N'1', N'1', N'EQ', N'input', N'', N'9', N'admin', N'2021-05-31 07:10:11.5900000', NULL, N'2021-05-31 08:49:34.4800000')
- ;
- INSERT INTO gen_table_column (column_id, table_id, column_name, column_comment, column_type, java_type, java_field, is_pk, is_increment, is_required, is_insert, is_edit, is_list, is_query, query_type, html_type, dict_type, sort, create_by, create_time, update_by, update_time) VALUES (N'401', N'36', N'GROUP_PARENT_ID', N'父id', N'bigint', N'Long', N'groupParentId', NULL, NULL, NULL, N'1', N'1', N'1', N'1', N'EQ', N'input', N'', N'10', N'admin', N'2021-05-31 07:10:11.6600000', NULL, N'2021-05-31 08:49:34.4900000')
- ;
- INSERT INTO gen_table_column (column_id, table_id, column_name, column_comment, column_type, java_type, java_field, is_pk, is_increment, is_required, is_insert, is_edit, is_list, is_query, query_type, html_type, dict_type, sort, create_by, create_time, update_by, update_time) VALUES (N'402', N'37', N'ID', N'id自增长', N'bigint', N'Long', N'id', N'1', NULL, NULL, N'1', NULL, NULL, NULL, N'EQ', N'input', N'', N'1', N'admin', N'2021-05-31 07:10:11.8370000', NULL, N'2021-05-31 08:49:47.9000000')
- ;
- INSERT INTO gen_table_column (column_id, table_id, column_name, column_comment, column_type, java_type, java_field, is_pk, is_increment, is_required, is_insert, is_edit, is_list, is_query, query_type, html_type, dict_type, sort, create_by, create_time, update_by, update_time) VALUES (N'403', N'37', N'GROUP_ID', N'组id', N'bigint', N'Long', N'groupId', NULL, NULL, NULL, N'1', N'1', N'1', N'1', N'EQ', N'input', N'', N'2', N'admin', N'2021-05-31 07:10:11.8400000', NULL, N'2021-05-31 08:49:47.9030000')
- ;
- INSERT INTO gen_table_column (column_id, table_id, column_name, column_comment, column_type, java_type, java_field, is_pk, is_increment, is_required, is_insert, is_edit, is_list, is_query, query_type, html_type, dict_type, sort, create_by, create_time, update_by, update_time) VALUES (N'404', N'37', N'LOCK_ID', N'关锁id', N'bigint', N'Long', N'lockId', NULL, NULL, NULL, N'1', N'1', N'1', N'1', N'EQ', N'input', N'', N'3', N'admin', N'2021-05-31 07:10:11.8570000', NULL, N'2021-05-31 08:49:47.9170000')
- ;
- INSERT INTO gen_table_column (column_id, table_id, column_name, column_comment, column_type, java_type, java_field, is_pk, is_increment, is_required, is_insert, is_edit, is_list, is_query, query_type, html_type, dict_type, sort, create_by, create_time, update_by, update_time) VALUES (N'405', N'37', N'CREATE_TIME', N'创建时间', N'datetime', N'Date', N'createTime', NULL, NULL, NULL, N'1', N'1', N'1', N'1', N'EQ', N'datetime', N'', N'4', N'admin', N'2021-05-31 07:10:11.9570000', NULL, N'2021-05-31 08:49:47.9270000')
- ;
- INSERT INTO gen_table_column (column_id, table_id, column_name, column_comment, column_type, java_type, java_field, is_pk, is_increment, is_required, is_insert, is_edit, is_list, is_query, query_type, html_type, dict_type, sort, create_by, create_time, update_by, update_time) VALUES (N'406', N'37', N'UPDATE_TIME', N'修改时间', N'datetime', N'Date', N'updateTime', NULL, NULL, NULL, N'1', N'1', N'1', N'1', N'EQ', N'datetime', N'', N'5', N'admin', N'2021-05-31 07:10:11.9600000', NULL, N'2021-05-31 08:49:47.9300000')
- ;
- INSERT INTO gen_table_column (column_id, table_id, column_name, column_comment, column_type, java_type, java_field, is_pk, is_increment, is_required, is_insert, is_edit, is_list, is_query, query_type, html_type, dict_type, sort, create_by, create_time, update_by, update_time) VALUES (N'407', N'37', N'CREATE_BY', N'创建人', N'varchar', N'String', N'createBy', NULL, NULL, NULL, N'1', N'1', N'1', N'1', N'EQ', N'input', N'', N'6', N'admin', N'2021-05-31 07:10:11.9730000', NULL, N'2021-05-31 08:49:47.9370000')
- ;
- INSERT INTO gen_table_column (column_id, table_id, column_name, column_comment, column_type, java_type, java_field, is_pk, is_increment, is_required, is_insert, is_edit, is_list, is_query, query_type, html_type, dict_type, sort, create_by, create_time, update_by, update_time) VALUES (N'408', N'37', N'UPDATE_BY', N'修改人', N'varchar', N'String', N'updateBy', NULL, NULL, NULL, N'1', N'1', N'1', N'1', N'EQ', N'input', N'', N'7', N'admin', N'2021-05-31 07:10:11.9800000', NULL, N'2021-05-31 08:49:47.9530000')
- ;
- INSERT INTO gen_table_column (column_id, table_id, column_name, column_comment, column_type, java_type, java_field, is_pk, is_increment, is_required, is_insert, is_edit, is_list, is_query, query_type, html_type, dict_type, sort, create_by, create_time, update_by, update_time) VALUES (N'409', N'37', N'USER_ID', N'用户id', N'bigint', N'Long', N'userId', NULL, NULL, NULL, N'1', N'1', N'1', N'1', N'EQ', N'input', N'', N'8', N'admin', N'2021-05-31 07:10:11.9870000', NULL, N'2021-05-31 08:49:47.9630000')
- ;
- INSERT INTO gen_table_column (column_id, table_id, column_name, column_comment, column_type, java_type, java_field, is_pk, is_increment, is_required, is_insert, is_edit, is_list, is_query, query_type, html_type, dict_type, sort, create_by, create_time, update_by, update_time) VALUES (N'410', N'37', N'DEPT_ID', N'部门id', N'bigint', N'Long', N'deptId', NULL, NULL, NULL, N'1', N'1', N'1', N'1', N'EQ', N'input', N'', N'9', N'admin', N'2021-05-31 07:10:12.0130000', NULL, N'2021-05-31 08:49:47.9670000')
- ;
- INSERT INTO gen_table_column (column_id, table_id, column_name, column_comment, column_type, java_type, java_field, is_pk, is_increment, is_required, is_insert, is_edit, is_list, is_query, query_type, html_type, dict_type, sort, create_by, create_time, update_by, update_time) VALUES (N'411', N'37', N'REMARK', N'备注', N'varchar', N'String', N'remark', NULL, NULL, NULL, N'1', N'1', N'1', N'1', N'EQ', N'input', N'', N'10', N'admin', N'2021-05-31 07:10:12.0270000', NULL, N'2021-05-31 08:49:48.0100000')
- ;
- INSERT INTO gen_table_column (column_id, table_id, column_name, column_comment, column_type, java_type, java_field, is_pk, is_increment, is_required, is_insert, is_edit, is_list, is_query, query_type, html_type, dict_type, sort, create_by, create_time, update_by, update_time) VALUES (N'412', N'38', N'user_id', N'用户ID', N'int', N'Long', N'userId', NULL, NULL, NULL, N'1', N'1', N'1', N'1', N'EQ', N'input', N'', N'1', N'admin', N'2021-06-01 09:52:54.0400000', N'', NULL)
- ;
- INSERT INTO gen_table_column (column_id, table_id, column_name, column_comment, column_type, java_type, java_field, is_pk, is_increment, is_required, is_insert, is_edit, is_list, is_query, query_type, html_type, dict_type, sort, create_by, create_time, update_by, update_time) VALUES (N'413', N'38', N'dept_id', N'部门ID', N'int', N'Long', N'deptId', NULL, NULL, NULL, N'1', N'1', N'1', N'1', N'EQ', N'input', N'', N'2', N'admin', N'2021-06-01 09:52:54.0700000', N'', NULL)
- ;
- INSERT INTO gen_table_column (column_id, table_id, column_name, column_comment, column_type, java_type, java_field, is_pk, is_increment, is_required, is_insert, is_edit, is_list, is_query, query_type, html_type, dict_type, sort, create_by, create_time, update_by, update_time) VALUES (N'414', N'38', N'login_name', N'登录账号', N'nvarchar', NULL, N'loginName', NULL, NULL, NULL, N'1', N'1', N'1', N'1', N'LIKE', NULL, N'', N'3', N'admin', N'2021-06-01 09:52:54.0930000', N'', NULL)
- ;
- INSERT INTO gen_table_column (column_id, table_id, column_name, column_comment, column_type, java_type, java_field, is_pk, is_increment, is_required, is_insert, is_edit, is_list, is_query, query_type, html_type, dict_type, sort, create_by, create_time, update_by, update_time) VALUES (N'415', N'38', N'user_name', N'用户昵称', N'nvarchar', NULL, N'userName', NULL, NULL, NULL, N'1', N'1', N'1', N'1', N'LIKE', NULL, N'', N'4', N'admin', N'2021-06-01 09:52:54.1070000', N'', NULL)
- ;
- INSERT INTO gen_table_column (column_id, table_id, column_name, column_comment, column_type, java_type, java_field, is_pk, is_increment, is_required, is_insert, is_edit, is_list, is_query, query_type, html_type, dict_type, sort, create_by, create_time, update_by, update_time) VALUES (N'416', N'38', N'user_type', N'用户类型(00系统用户)', N'nvarchar', NULL, N'userType', NULL, NULL, NULL, N'1', N'1', N'1', N'1', N'EQ', N'select', N'', N'5', N'admin', N'2021-06-01 09:52:54.1330000', N'', NULL)
- ;
- INSERT INTO gen_table_column (column_id, table_id, column_name, column_comment, column_type, java_type, java_field, is_pk, is_increment, is_required, is_insert, is_edit, is_list, is_query, query_type, html_type, dict_type, sort, create_by, create_time, update_by, update_time) VALUES (N'417', N'38', N'email', N'用户邮箱', N'nvarchar', NULL, N'email', NULL, NULL, NULL, N'1', N'1', N'1', N'1', N'EQ', NULL, N'', N'6', N'admin', N'2021-06-01 09:52:54.1570000', N'', NULL)
- ;
- INSERT INTO gen_table_column (column_id, table_id, column_name, column_comment, column_type, java_type, java_field, is_pk, is_increment, is_required, is_insert, is_edit, is_list, is_query, query_type, html_type, dict_type, sort, create_by, create_time, update_by, update_time) VALUES (N'418', N'38', N'phonenumber', N'手机号码', N'nvarchar', NULL, N'phonenumber', NULL, NULL, NULL, N'1', N'1', N'1', N'1', N'EQ', NULL, N'', N'7', N'admin', N'2021-06-01 09:52:54.1700000', N'', NULL)
- ;
- INSERT INTO gen_table_column (column_id, table_id, column_name, column_comment, column_type, java_type, java_field, is_pk, is_increment, is_required, is_insert, is_edit, is_list, is_query, query_type, html_type, dict_type, sort, create_by, create_time, update_by, update_time) VALUES (N'419', N'38', N'sex', N'用户性别(0男 1女 2未知)', N'nchar', NULL, N'sex', NULL, NULL, NULL, N'1', N'1', N'1', N'1', N'EQ', N'select', N'', N'8', N'admin', N'2021-06-01 09:52:54.1770000', N'', NULL)
- ;
- INSERT INTO gen_table_column (column_id, table_id, column_name, column_comment, column_type, java_type, java_field, is_pk, is_increment, is_required, is_insert, is_edit, is_list, is_query, query_type, html_type, dict_type, sort, create_by, create_time, update_by, update_time) VALUES (N'420', N'38', N'avatar', N'头像路径', N'nvarchar', NULL, N'avatar', NULL, NULL, NULL, N'1', N'1', N'1', N'1', N'EQ', NULL, N'', N'9', N'admin', N'2021-06-01 09:52:54.1900000', N'', NULL)
- ;
- INSERT INTO gen_table_column (column_id, table_id, column_name, column_comment, column_type, java_type, java_field, is_pk, is_increment, is_required, is_insert, is_edit, is_list, is_query, query_type, html_type, dict_type, sort, create_by, create_time, update_by, update_time) VALUES (N'421', N'38', N'password', N'密码', N'nvarchar', NULL, N'password', NULL, NULL, NULL, N'1', N'1', N'1', N'1', N'EQ', NULL, N'', N'10', N'admin', N'2021-06-01 09:52:54.3070000', N'', NULL)
- ;
- INSERT INTO gen_table_column (column_id, table_id, column_name, column_comment, column_type, java_type, java_field, is_pk, is_increment, is_required, is_insert, is_edit, is_list, is_query, query_type, html_type, dict_type, sort, create_by, create_time, update_by, update_time) VALUES (N'422', N'38', N'salt', N'盐加密', N'nvarchar', NULL, N'salt', NULL, NULL, NULL, N'1', N'1', N'1', N'1', N'EQ', NULL, N'', N'11', N'admin', N'2021-06-01 09:52:54.3270000', N'', NULL)
- ;
- INSERT INTO gen_table_column (column_id, table_id, column_name, column_comment, column_type, java_type, java_field, is_pk, is_increment, is_required, is_insert, is_edit, is_list, is_query, query_type, html_type, dict_type, sort, create_by, create_time, update_by, update_time) VALUES (N'423', N'38', N'status', N'帐号状态(0正常 1停用)', N'nchar', NULL, N'status', NULL, NULL, NULL, N'1', N'1', N'1', N'1', N'EQ', N'radio', N'', N'12', N'admin', N'2021-06-01 09:52:54.3330000', N'', NULL)
- ;
- INSERT INTO gen_table_column (column_id, table_id, column_name, column_comment, column_type, java_type, java_field, is_pk, is_increment, is_required, is_insert, is_edit, is_list, is_query, query_type, html_type, dict_type, sort, create_by, create_time, update_by, update_time) VALUES (N'424', N'38', N'del_flag', N'删除标志(0代表存在 2代表删除)', N'nchar', NULL, N'delFlag', NULL, NULL, NULL, N'1', NULL, NULL, NULL, N'EQ', NULL, N'', N'13', N'admin', N'2021-06-01 09:52:54.3500000', N'', NULL)
- ;
- INSERT INTO gen_table_column (column_id, table_id, column_name, column_comment, column_type, java_type, java_field, is_pk, is_increment, is_required, is_insert, is_edit, is_list, is_query, query_type, html_type, dict_type, sort, create_by, create_time, update_by, update_time) VALUES (N'425', N'38', N'login_ip', N'最后登陆IP', N'nvarchar', NULL, N'loginIp', NULL, NULL, NULL, N'1', N'1', N'1', N'1', N'EQ', NULL, N'', N'14', N'admin', N'2021-06-01 09:52:54.3600000', N'', NULL)
- ;
- INSERT INTO gen_table_column (column_id, table_id, column_name, column_comment, column_type, java_type, java_field, is_pk, is_increment, is_required, is_insert, is_edit, is_list, is_query, query_type, html_type, dict_type, sort, create_by, create_time, update_by, update_time) VALUES (N'426', N'38', N'login_date', N'最后登陆时间', N'datetime', NULL, N'loginDate', NULL, NULL, NULL, N'1', N'1', N'1', N'1', N'EQ', NULL, N'', N'15', N'admin', N'2021-06-01 09:52:54.3670000', N'', NULL)
- ;
- INSERT INTO gen_table_column (column_id, table_id, column_name, column_comment, column_type, java_type, java_field, is_pk, is_increment, is_required, is_insert, is_edit, is_list, is_query, query_type, html_type, dict_type, sort, create_by, create_time, update_by, update_time) VALUES (N'427', N'38', N'create_by', N'创建者', N'nvarchar', NULL, N'createBy', NULL, NULL, NULL, N'1', NULL, NULL, NULL, N'EQ', NULL, N'', N'16', N'admin', N'2021-06-01 09:52:54.3770000', N'', NULL)
- ;
- INSERT INTO gen_table_column (column_id, table_id, column_name, column_comment, column_type, java_type, java_field, is_pk, is_increment, is_required, is_insert, is_edit, is_list, is_query, query_type, html_type, dict_type, sort, create_by, create_time, update_by, update_time) VALUES (N'428', N'38', N'create_time', N'创建时间', N'datetime', NULL, N'createTime', NULL, NULL, NULL, N'1', NULL, NULL, NULL, N'EQ', NULL, N'', N'17', N'admin', N'2021-06-01 09:52:54.3830000', N'', NULL)
- ;
- INSERT INTO gen_table_column (column_id, table_id, column_name, column_comment, column_type, java_type, java_field, is_pk, is_increment, is_required, is_insert, is_edit, is_list, is_query, query_type, html_type, dict_type, sort, create_by, create_time, update_by, update_time) VALUES (N'429', N'38', N'update_by', N'更新者', N'nvarchar', NULL, N'updateBy', NULL, NULL, NULL, N'1', N'1', NULL, NULL, N'EQ', NULL, N'', N'18', N'admin', N'2021-06-01 09:52:54.3970000', N'', NULL)
- ;
- INSERT INTO gen_table_column (column_id, table_id, column_name, column_comment, column_type, java_type, java_field, is_pk, is_increment, is_required, is_insert, is_edit, is_list, is_query, query_type, html_type, dict_type, sort, create_by, create_time, update_by, update_time) VALUES (N'430', N'38', N'update_time', N'更新时间', N'datetime', NULL, N'updateTime', NULL, NULL, NULL, N'1', N'1', NULL, NULL, N'EQ', NULL, N'', N'19', N'admin', N'2021-06-01 09:52:54.4130000', N'', NULL)
- ;
- INSERT INTO gen_table_column (column_id, table_id, column_name, column_comment, column_type, java_type, java_field, is_pk, is_increment, is_required, is_insert, is_edit, is_list, is_query, query_type, html_type, dict_type, sort, create_by, create_time, update_by, update_time) VALUES (N'431', N'38', N'remark', N'备注', N'nvarchar', NULL, N'remark', NULL, NULL, NULL, N'1', N'1', N'1', NULL, N'EQ', NULL, N'', N'20', N'admin', N'2021-06-01 09:52:54.4300000', N'', NULL)
- ;
- INSERT INTO gen_table_column (column_id, table_id, column_name, column_comment, column_type, java_type, java_field, is_pk, is_increment, is_required, is_insert, is_edit, is_list, is_query, query_type, html_type, dict_type, sort, create_by, create_time, update_by, update_time) VALUES (N'432', N'39', N'ID', N'主键', N'bigint', N'Long', N'id', N'1', NULL, NULL, N'1', NULL, NULL, NULL, N'EQ', N'input', N'', N'1', N'admin', N'2021-06-04 13:13:06.7330000', NULL, N'2021-06-04 13:24:13.1500000')
- ;
- INSERT INTO gen_table_column (column_id, table_id, column_name, column_comment, column_type, java_type, java_field, is_pk, is_increment, is_required, is_insert, is_edit, is_list, is_query, query_type, html_type, dict_type, sort, create_by, create_time, update_by, update_time) VALUES (N'433', N'39', N'PROTOCOL_TYPE', N'协议类型', N'varchar', N'String', N'protocolType', NULL, NULL, NULL, N'1', N'1', N'1', N'1', N'EQ', N'select', N'protocolType', N'2', N'admin', N'2021-06-04 13:13:06.7470000', NULL, N'2021-06-04 13:24:13.1530000')
- ;
- INSERT INTO gen_table_column (column_id, table_id, column_name, column_comment, column_type, java_type, java_field, is_pk, is_increment, is_required, is_insert, is_edit, is_list, is_query, query_type, html_type, dict_type, sort, create_by, create_time, update_by, update_time) VALUES (N'434', N'39', N'RESPONSE_TYPE', N'响应类型', N'varchar', N'String', N'responseType', NULL, NULL, NULL, N'1', N'1', N'1', N'1', N'EQ', N'select', N'responseType', N'3', N'admin', N'2021-06-04 13:13:06.7500000', NULL, N'2021-06-04 13:24:13.1570000')
- ;
- INSERT INTO gen_table_column (column_id, table_id, column_name, column_comment, column_type, java_type, java_field, is_pk, is_increment, is_required, is_insert, is_edit, is_list, is_query, query_type, html_type, dict_type, sort, create_by, create_time, update_by, update_time) VALUES (N'435', N'39', N'RESPONSE_TYPE_BYTES_STR', N'响应类型编号', N'varchar', N'String', N'responseTypeBytesStr', NULL, NULL, NULL, N'1', N'1', N'1', N'1', N'EQ', N'input', N'', N'4', N'admin', N'2021-06-04 13:13:06.7570000', NULL, N'2021-06-04 13:24:13.1600000')
- ;
- INSERT INTO gen_table_column (column_id, table_id, column_name, column_comment, column_type, java_type, java_field, is_pk, is_increment, is_required, is_insert, is_edit, is_list, is_query, query_type, html_type, dict_type, sort, create_by, create_time, update_by, update_time) VALUES (N'436', N'39', N'DEVICE_ID', N'设备ID', N'varchar', N'String', N'deviceId', NULL, NULL, NULL, N'1', N'1', N'1', N'1', N'EQ', N'input', N'', N'5', N'admin', N'2021-06-04 13:13:06.7630000', NULL, N'2021-06-04 13:24:13.1670000')
- ;
- INSERT INTO gen_table_column (column_id, table_id, column_name, column_comment, column_type, java_type, java_field, is_pk, is_increment, is_required, is_insert, is_edit, is_list, is_query, query_type, html_type, dict_type, sort, create_by, create_time, update_by, update_time) VALUES (N'437', N'39', N'MSG_SEQ_NO', N'消息序号', N'varchar', N'String', N'msgSeqNo', NULL, NULL, NULL, N'1', N'1', N'1', N'1', N'EQ', N'input', N'', N'6', N'admin', N'2021-06-04 13:13:06.7670000', NULL, N'2021-06-04 13:24:13.1700000')
- ;
- INSERT INTO gen_table_column (column_id, table_id, column_name, column_comment, column_type, java_type, java_field, is_pk, is_increment, is_required, is_insert, is_edit, is_list, is_query, query_type, html_type, dict_type, sort, create_by, create_time, update_by, update_time) VALUES (N'438', N'39', N'GPS_LOCATION_INFO_ID', N'GPS位置信息表ID', N'bigint', N'Long', N'gpsLocationInfoId', NULL, NULL, NULL, N'1', N'1', N'1', N'1', N'EQ', N'input', N'', N'7', N'admin', N'2021-06-04 13:13:06.7700000', NULL, N'2021-06-04 13:24:13.1730000')
- ;
- INSERT INTO gen_table_column (column_id, table_id, column_name, column_comment, column_type, java_type, java_field, is_pk, is_increment, is_required, is_insert, is_edit, is_list, is_query, query_type, html_type, dict_type, sort, create_by, create_time, update_by, update_time) VALUES (N'439', N'39', N'EXTRA_INFO_DESC_ID', N'附加信息描述表ID', N'bigint', N'Long', N'extraInfoDescId', NULL, NULL, NULL, N'1', N'1', N'1', N'1', N'EQ', N'input', N'', N'8', N'admin', N'2021-06-04 13:13:06.7800000', NULL, N'2021-06-04 13:24:13.1730000')
- ;
- INSERT INTO gen_table_column (column_id, table_id, column_name, column_comment, column_type, java_type, java_field, is_pk, is_increment, is_required, is_insert, is_edit, is_list, is_query, query_type, html_type, dict_type, sort, create_by, create_time, update_by, update_time) VALUES (N'440', N'39', N'BINARY_PROTOCOL', N'原始指令', N'varchar', N'String', N'binaryProtocol', NULL, NULL, NULL, N'1', N'1', N'1', N'1', N'EQ', N'input', N'', N'9', N'admin', N'2021-06-04 13:13:06.7830000', NULL, N'2021-06-04 13:24:13.1770000')
- ;
- INSERT INTO gen_table_column (column_id, table_id, column_name, column_comment, column_type, java_type, java_field, is_pk, is_increment, is_required, is_insert, is_edit, is_list, is_query, query_type, html_type, dict_type, sort, create_by, create_time, update_by, update_time) VALUES (N'441', N'39', N'REMARK', N'备注', N'varchar', N'String', N'remark', NULL, NULL, NULL, N'1', N'1', N'1', N'1', N'EQ', N'input', N'', N'10', N'admin', N'2021-06-04 13:13:06.7900000', NULL, N'2021-06-04 13:24:13.1800000')
- ;
- INSERT INTO gen_table_column (column_id, table_id, column_name, column_comment, column_type, java_type, java_field, is_pk, is_increment, is_required, is_insert, is_edit, is_list, is_query, query_type, html_type, dict_type, sort, create_by, create_time, update_by, update_time) VALUES (N'442', N'39', N'CREATE_BY', N'创建人', N'varchar', N'String', N'createBy', NULL, NULL, NULL, N'1', N'1', N'1', N'1', N'EQ', N'input', N'', N'11', N'admin', N'2021-06-04 13:13:06.7930000', NULL, N'2021-06-04 13:24:13.1870000')
- ;
- INSERT INTO gen_table_column (column_id, table_id, column_name, column_comment, column_type, java_type, java_field, is_pk, is_increment, is_required, is_insert, is_edit, is_list, is_query, query_type, html_type, dict_type, sort, create_by, create_time, update_by, update_time) VALUES (N'443', N'39', N'CREATE_TIME', N'创建时间', N'datetime', N'Date', N'createTime', NULL, NULL, NULL, N'1', N'1', N'1', N'1', N'EQ', N'datetime', N'', N'12', N'admin', N'2021-06-04 13:13:06.8000000', NULL, N'2021-06-04 13:24:13.1900000')
- ;
- INSERT INTO gen_table_column (column_id, table_id, column_name, column_comment, column_type, java_type, java_field, is_pk, is_increment, is_required, is_insert, is_edit, is_list, is_query, query_type, html_type, dict_type, sort, create_by, create_time, update_by, update_time) VALUES (N'444', N'39', N'UPDATE_BY', N'修改人', N'varchar', N'String', N'updateBy', NULL, NULL, NULL, N'1', N'1', N'1', N'1', N'EQ', N'input', N'', N'13', N'admin', N'2021-06-04 13:13:06.8100000', NULL, N'2021-06-04 13:24:13.1930000')
- ;
- INSERT INTO gen_table_column (column_id, table_id, column_name, column_comment, column_type, java_type, java_field, is_pk, is_increment, is_required, is_insert, is_edit, is_list, is_query, query_type, html_type, dict_type, sort, create_by, create_time, update_by, update_time) VALUES (N'445', N'39', N'UPDATE_TIME', N'修改时间', N'datetime', N'Date', N'updateTime', NULL, NULL, NULL, N'1', N'1', N'1', N'1', N'EQ', N'datetime', N'', N'14', N'admin', N'2021-06-04 13:13:06.8130000', NULL, N'2021-06-04 13:24:13.2000000')
- ;
- INSERT INTO gen_table_column (column_id, table_id, column_name, column_comment, column_type, java_type, java_field, is_pk, is_increment, is_required, is_insert, is_edit, is_list, is_query, query_type, html_type, dict_type, sort, create_by, create_time, update_by, update_time) VALUES (N'446', N'40', N'ID', N'主键', N'bigint', N'Long', N'id', N'1', NULL, NULL, N'1', NULL, NULL, NULL, N'EQ', N'input', N'', N'1', N'admin', N'2021-06-04 13:13:06.8470000', NULL, N'2021-06-04 13:22:46.4970000')
- ;
- INSERT INTO gen_table_column (column_id, table_id, column_name, column_comment, column_type, java_type, java_field, is_pk, is_increment, is_required, is_insert, is_edit, is_list, is_query, query_type, html_type, dict_type, sort, create_by, create_time, update_by, update_time) VALUES (N'447', N'40', N'MCC', N'国家代码', N'varchar', N'String', N'mcc', NULL, NULL, NULL, N'1', N'1', N'1', N'1', N'EQ', N'input', N'', N'2', N'admin', N'2021-06-04 13:13:06.8530000', NULL, N'2021-06-04 13:22:46.5000000')
- ;
- INSERT INTO gen_table_column (column_id, table_id, column_name, column_comment, column_type, java_type, java_field, is_pk, is_increment, is_required, is_insert, is_edit, is_list, is_query, query_type, html_type, dict_type, sort, create_by, create_time, update_by, update_time) VALUES (N'448', N'40', N'MNC', N'网络标识符', N'varchar', N'String', N'mnc', NULL, NULL, NULL, N'1', N'1', N'1', N'1', N'EQ', N'input', N'', N'3', N'admin', N'2021-06-04 13:13:06.8600000', NULL, N'2021-06-04 13:22:46.5030000')
- ;
- INSERT INTO gen_table_column (column_id, table_id, column_name, column_comment, column_type, java_type, java_field, is_pk, is_increment, is_required, is_insert, is_edit, is_list, is_query, query_type, html_type, dict_type, sort, create_by, create_time, update_by, update_time) VALUES (N'449', N'40', N'LAC', N'基站LAC编码', N'varchar', N'String', N'lac', NULL, NULL, NULL, N'1', N'1', N'1', N'1', N'EQ', N'input', N'', N'4', N'admin', N'2021-06-04 13:13:06.8630000', NULL, N'2021-06-04 13:22:46.5070000')
- ;
- INSERT INTO gen_table_column (column_id, table_id, column_name, column_comment, column_type, java_type, java_field, is_pk, is_increment, is_required, is_insert, is_edit, is_list, is_query, query_type, html_type, dict_type, sort, create_by, create_time, update_by, update_time) VALUES (N'450', N'40', N'CELL_ID', N'基站CELL编码', N'varchar', N'String', N'cellId', NULL, NULL, NULL, N'1', N'1', N'1', N'1', N'EQ', N'input', N'', N'5', N'admin', N'2021-06-04 13:13:06.8670000', NULL, N'2021-06-04 13:22:46.5100000')
- ;
- INSERT INTO gen_table_column (column_id, table_id, column_name, column_comment, column_type, java_type, java_field, is_pk, is_increment, is_required, is_insert, is_edit, is_list, is_query, query_type, html_type, dict_type, sort, create_by, create_time, update_by, update_time) VALUES (N'451', N'40', N'SIGNAL_STRENGTH_IN_CSQ', N'信号强度CSQ', N'int', N'Integer', N'signalStrengthInCsq', NULL, NULL, NULL, N'1', N'1', N'1', N'1', N'EQ', N'input', N'', N'6', N'admin', N'2021-06-04 13:13:06.8700000', NULL, N'2021-06-04 13:22:46.5170000')
- ;
- INSERT INTO gen_table_column (column_id, table_id, column_name, column_comment, column_type, java_type, java_field, is_pk, is_increment, is_required, is_insert, is_edit, is_list, is_query, query_type, html_type, dict_type, sort, create_by, create_time, update_by, update_time) VALUES (N'452', N'40', N'SIGNAL_STRENGTH_IN_DBM', N'信号强度DBM', N'int', N'Integer', N'signalStrengthInDbm', NULL, NULL, NULL, N'1', N'1', N'1', N'1', N'EQ', N'input', N'', N'7', N'admin', N'2021-06-04 13:13:06.8800000', NULL, N'2021-06-04 13:22:46.5230000')
- ;
- INSERT INTO gen_table_column (column_id, table_id, column_name, column_comment, column_type, java_type, java_field, is_pk, is_increment, is_required, is_insert, is_edit, is_list, is_query, query_type, html_type, dict_type, sort, create_by, create_time, update_by, update_time) VALUES (N'453', N'40', N'REMEARK', N'备注', N'varchar', N'String', N'remark', NULL, NULL, NULL, N'1', N'1', N'1', N'1', N'EQ', N'input', N'', N'8', N'admin', N'2021-06-04 13:13:06.8800000', NULL, N'2021-06-04 13:22:46.5230000')
- ;
- INSERT INTO gen_table_column (column_id, table_id, column_name, column_comment, column_type, java_type, java_field, is_pk, is_increment, is_required, is_insert, is_edit, is_list, is_query, query_type, html_type, dict_type, sort, create_by, create_time, update_by, update_time) VALUES (N'454', N'40', N'CREATE_BY', N'创建人', N'varchar', N'String', N'createBy', NULL, NULL, NULL, N'1', N'1', N'1', N'1', N'EQ', N'input', N'', N'9', N'admin', N'2021-06-04 13:13:06.8870000', NULL, N'2021-06-04 13:22:46.5300000')
- ;
- INSERT INTO gen_table_column (column_id, table_id, column_name, column_comment, column_type, java_type, java_field, is_pk, is_increment, is_required, is_insert, is_edit, is_list, is_query, query_type, html_type, dict_type, sort, create_by, create_time, update_by, update_time) VALUES (N'455', N'40', N'CREATE_TIME', N'创建时间', N'datetime', N'Date', N'createTime', NULL, NULL, NULL, N'1', N'1', N'1', N'1', N'EQ', N'datetime', N'', N'10', N'admin', N'2021-06-04 13:13:06.8900000', NULL, N'2021-06-04 13:22:46.5330000')
- ;
- INSERT INTO gen_table_column (column_id, table_id, column_name, column_comment, column_type, java_type, java_field, is_pk, is_increment, is_required, is_insert, is_edit, is_list, is_query, query_type, html_type, dict_type, sort, create_by, create_time, update_by, update_time) VALUES (N'456', N'40', N'UPDATE_BY', N'修改人', N'varchar', N'String', N'updateBy', NULL, NULL, NULL, N'1', N'1', N'1', N'1', N'EQ', N'input', N'', N'11', N'admin', N'2021-06-04 13:13:06.8970000', NULL, N'2021-06-04 13:22:46.5370000')
- ;
- INSERT INTO gen_table_column (column_id, table_id, column_name, column_comment, column_type, java_type, java_field, is_pk, is_increment, is_required, is_insert, is_edit, is_list, is_query, query_type, html_type, dict_type, sort, create_by, create_time, update_by, update_time) VALUES (N'457', N'40', N'UPDATE_TIME', N'修改时间', N'datetime', N'Date', N'updateTime', NULL, NULL, NULL, N'1', N'1', N'1', N'1', N'EQ', N'datetime', N'', N'12', N'admin', N'2021-06-04 13:13:06.9000000', NULL, N'2021-06-04 13:22:46.5400000')
- ;
- INSERT INTO gen_table_column (column_id, table_id, column_name, column_comment, column_type, java_type, java_field, is_pk, is_increment, is_required, is_insert, is_edit, is_list, is_query, query_type, html_type, dict_type, sort, create_by, create_time, update_by, update_time) VALUES (N'602', N'47', N'ID', N'主键', N'bigint', N'Long', N'ID', NULL, NULL, NULL, N'1', N'1', N'1', N'1', N'EQ', N'input', N'', N'1', N'admin', N'2022-01-11 02:45:22.3800000', N'', NULL)
- ;
- INSERT INTO gen_table_column (column_id, table_id, column_name, column_comment, column_type, java_type, java_field, is_pk, is_increment, is_required, is_insert, is_edit, is_list, is_query, query_type, html_type, dict_type, sort, create_by, create_time, update_by, update_time) VALUES (N'603', N'47', N'ODOMETER', N'里程', N'varchar', N'String', N'ODOMETER', NULL, NULL, NULL, N'1', N'1', N'1', N'1', N'EQ', N'input', N'', N'2', N'admin', N'2022-01-11 02:45:22.3966667', N'', NULL)
- ;
- INSERT INTO gen_table_column (column_id, table_id, column_name, column_comment, column_type, java_type, java_field, is_pk, is_increment, is_required, is_insert, is_edit, is_list, is_query, query_type, html_type, dict_type, sort, create_by, create_time, update_by, update_time) VALUES (N'604', N'47', N'WNSS', N'无线网络信号强度', N'varchar', N'String', N'WNSS', NULL, NULL, NULL, N'1', N'1', N'1', N'1', N'EQ', N'input', N'', N'3', N'admin', N'2022-01-11 02:45:22.4166667', N'', NULL)
- ;
- INSERT INTO gen_table_column (column_id, table_id, column_name, column_comment, column_type, java_type, java_field, is_pk, is_increment, is_required, is_insert, is_edit, is_list, is_query, query_type, html_type, dict_type, sort, create_by, create_time, update_by, update_time) VALUES (N'605', N'47', N'LBS_INFO', N'基站信息', N'varchar', N'String', N'lbsInfo', NULL, NULL, NULL, N'1', N'1', N'1', N'1', N'EQ', N'input', N'', N'4', N'admin', N'2022-01-11 02:45:22.4366667', N'', NULL)
- ;
- INSERT INTO gen_table_column (column_id, table_id, column_name, column_comment, column_type, java_type, java_field, is_pk, is_increment, is_required, is_insert, is_edit, is_list, is_query, query_type, html_type, dict_type, sort, create_by, create_time, update_by, update_time) VALUES (N'606', N'47', N'DEVICE_POWER', N'设备电量', N'varchar', N'String', N'devicePower', NULL, NULL, NULL, N'1', N'1', N'1', N'1', N'EQ', N'input', N'', N'5', N'admin', N'2022-01-11 02:45:22.4600000', N'', NULL)
- ;
- INSERT INTO gen_table_column (column_id, table_id, column_name, column_comment, column_type, java_type, java_field, is_pk, is_increment, is_required, is_insert, is_edit, is_list, is_query, query_type, html_type, dict_type, sort, create_by, create_time, update_by, update_time) VALUES (N'607', N'47', N'RESOURCE_DATA', N'原始数据', N'varchar', N'String', N'resourceData', NULL, NULL, NULL, N'1', N'1', N'1', N'1', N'EQ', N'input', N'', N'6', N'admin', N'2022-01-11 02:45:22.4800000', N'', NULL)
- ;
- INSERT INTO gen_table_column (column_id, table_id, column_name, column_comment, column_type, java_type, java_field, is_pk, is_increment, is_required, is_insert, is_edit, is_list, is_query, query_type, html_type, dict_type, sort, create_by, create_time, update_by, update_time) VALUES (N'608', N'47', N'REMARK', N'备注', N'varchar', N'String', N'REMARK', NULL, NULL, NULL, N'1', N'1', N'1', N'1', N'EQ', N'input', N'', N'7', N'admin', N'2022-01-11 02:45:22.5066667', N'', NULL)
- ;
- INSERT INTO gen_table_column (column_id, table_id, column_name, column_comment, column_type, java_type, java_field, is_pk, is_increment, is_required, is_insert, is_edit, is_list, is_query, query_type, html_type, dict_type, sort, create_by, create_time, update_by, update_time) VALUES (N'609', N'47', N'CREATE_BY', N'创建人', N'varchar', N'String', N'createBy', NULL, NULL, NULL, N'1', N'1', N'1', N'1', N'EQ', N'input', N'', N'8', N'admin', N'2022-01-11 02:45:22.5400000', N'', NULL)
- ;
- INSERT INTO gen_table_column (column_id, table_id, column_name, column_comment, column_type, java_type, java_field, is_pk, is_increment, is_required, is_insert, is_edit, is_list, is_query, query_type, html_type, dict_type, sort, create_by, create_time, update_by, update_time) VALUES (N'610', N'47', N'CREATE_TIME', N'创建时间', N'datetime', N'Date', N'createTime', NULL, NULL, NULL, N'1', N'1', N'1', N'1', N'EQ', N'datetime', N'', N'9', N'admin', N'2022-01-11 02:45:22.5600000', N'', NULL)
- ;
- INSERT INTO gen_table_column (column_id, table_id, column_name, column_comment, column_type, java_type, java_field, is_pk, is_increment, is_required, is_insert, is_edit, is_list, is_query, query_type, html_type, dict_type, sort, create_by, create_time, update_by, update_time) VALUES (N'611', N'47', N'UPDATE_BY', N'修改人', N'varchar', N'String', N'updateBy', NULL, NULL, NULL, N'1', N'1', N'1', N'1', N'EQ', N'input', N'', N'10', N'admin', N'2022-01-11 02:45:22.5800000', N'', NULL)
- ;
- INSERT INTO gen_table_column (column_id, table_id, column_name, column_comment, column_type, java_type, java_field, is_pk, is_increment, is_required, is_insert, is_edit, is_list, is_query, query_type, html_type, dict_type, sort, create_by, create_time, update_by, update_time) VALUES (N'612', N'47', N'UPDATE_TIME', N'修改时间', N'datetime', N'Date', N'updateTime', NULL, NULL, NULL, N'1', N'1', N'1', N'1', N'EQ', N'datetime', N'', N'11', N'admin', N'2022-01-11 02:45:22.6033333', N'', NULL)
- ;
- INSERT INTO gen_table_column (column_id, table_id, column_name, column_comment, column_type, java_type, java_field, is_pk, is_increment, is_required, is_insert, is_edit, is_list, is_query, query_type, html_type, dict_type, sort, create_by, create_time, update_by, update_time) VALUES (N'613', N'47', N'LOCATION_ID', N'位置信息表id', N'bigint', N'Long', N'locationId', NULL, NULL, NULL, N'1', N'1', N'1', N'1', N'EQ', N'input', N'', N'12', N'admin', N'2022-01-11 02:45:22.6233333', N'', NULL)
- ;
- INSERT INTO gen_table_column (column_id, table_id, column_name, column_comment, column_type, java_type, java_field, is_pk, is_increment, is_required, is_insert, is_edit, is_list, is_query, query_type, html_type, dict_type, sort, create_by, create_time, update_by, update_time) VALUES (N'614', N'47', N'DEVICE__NO', N'关锁号', N'varchar', N'String', N'deviceNo', NULL, NULL, NULL, N'1', N'1', N'1', N'1', N'EQ', N'input', N'', N'13', N'admin', N'2022-01-11 02:45:22.6433333', N'', NULL)
- ;
- INSERT INTO gen_table_column (column_id, table_id, column_name, column_comment, column_type, java_type, java_field, is_pk, is_increment, is_required, is_insert, is_edit, is_list, is_query, query_type, html_type, dict_type, sort, create_by, create_time, update_by, update_time) VALUES (N'640', N'49', N'ID', N'主键', N'bigint', N'Long', N'ID', NULL, NULL, NULL, NULL, NULL, NULL, NULL, N'EQ', N'input', N'', N'1', N'admin', N'2022-01-17 08:19:03.6566667', NULL, N'2022-01-17 08:38:38.1266667')
- ;
- INSERT INTO gen_table_column (column_id, table_id, column_name, column_comment, column_type, java_type, java_field, is_pk, is_increment, is_required, is_insert, is_edit, is_list, is_query, query_type, html_type, dict_type, sort, create_by, create_time, update_by, update_time) VALUES (N'641', N'49', N'ELECTRONIC_FENCE_NAME', N'围栏名称', N'varchar', N'String', N'electronicFenceName', NULL, NULL, NULL, N'1', N'1', N'1', N'1', N'LIKE', N'input', N'', N'2', N'admin', N'2022-01-17 08:19:03.6800000', NULL, N'2022-01-17 08:38:38.1833333')
- ;
- INSERT INTO gen_table_column (column_id, table_id, column_name, column_comment, column_type, java_type, java_field, is_pk, is_increment, is_required, is_insert, is_edit, is_list, is_query, query_type, html_type, dict_type, sort, create_by, create_time, update_by, update_time) VALUES (N'642', N'49', N'ELECTRONIC_FENCE_STATUS', N'围栏状态(启用,不启用)', N'varchar', N'String', N'electronicFenceStatus', NULL, NULL, NULL, N'1', N'1', N'1', N'1', N'EQ', N'select', N'JT_ELECTRONIC_FENCE_STATUS', N'3', N'admin', N'2022-01-17 08:19:03.7033333', NULL, N'2022-01-17 08:38:38.2133333')
- ;
- INSERT INTO gen_table_column (column_id, table_id, column_name, column_comment, column_type, java_type, java_field, is_pk, is_increment, is_required, is_insert, is_edit, is_list, is_query, query_type, html_type, dict_type, sort, create_by, create_time, update_by, update_time) VALUES (N'643', N'49', N'COORDINATE_LIST', N'坐标集合', N'varchar', N'String', N'coordinateList', NULL, NULL, NULL, N'1', N'1', N'1', NULL, N'EQ', N'input', N'', N'4', N'admin', N'2022-01-17 08:19:03.7233333', NULL, N'2022-01-17 08:38:38.2300000')
- ;
- INSERT INTO gen_table_column (column_id, table_id, column_name, column_comment, column_type, java_type, java_field, is_pk, is_increment, is_required, is_insert, is_edit, is_list, is_query, query_type, html_type, dict_type, sort, create_by, create_time, update_by, update_time) VALUES (N'644', N'49', N'VERSION', N'版本号', N'varchar', N'String', N'version', NULL, NULL, NULL, NULL, NULL, NULL, NULL, N'EQ', N'input', N'', N'5', N'admin', N'2022-01-17 08:19:03.7600000', NULL, N'2022-01-17 08:38:38.2500000')
- ;
- INSERT INTO gen_table_column (column_id, table_id, column_name, column_comment, column_type, java_type, java_field, is_pk, is_increment, is_required, is_insert, is_edit, is_list, is_query, query_type, html_type, dict_type, sort, create_by, create_time, update_by, update_time) VALUES (N'645', N'49', N'USER_ID', N'用户id', N'int', N'Long', N'userId', NULL, NULL, NULL, NULL, NULL, NULL, NULL, N'EQ', N'input', N'', N'6', N'admin', N'2022-01-17 08:19:03.7800000', NULL, N'2022-01-17 08:38:38.2666667')
- ;
- INSERT INTO gen_table_column (column_id, table_id, column_name, column_comment, column_type, java_type, java_field, is_pk, is_increment, is_required, is_insert, is_edit, is_list, is_query, query_type, html_type, dict_type, sort, create_by, create_time, update_by, update_time) VALUES (N'646', N'49', N'DEPT_ID', N'部门id', N'int', N'Long', N'deptId', NULL, NULL, NULL, NULL, NULL, NULL, NULL, N'EQ', N'input', N'', N'7', N'admin', N'2022-01-17 08:19:03.8000000', NULL, N'2022-01-17 08:38:38.2866667')
- ;
- INSERT INTO gen_table_column (column_id, table_id, column_name, column_comment, column_type, java_type, java_field, is_pk, is_increment, is_required, is_insert, is_edit, is_list, is_query, query_type, html_type, dict_type, sort, create_by, create_time, update_by, update_time) VALUES (N'647', N'49', N'CREATE_TIME', N'创建时间', N'datetime', N'Date', N'createTime', NULL, NULL, NULL, NULL, NULL, N'1', NULL, N'EQ', N'datetime', N'', N'8', N'admin', N'2022-01-17 08:19:03.8200000', NULL, N'2022-01-17 08:38:38.3100000')
- ;
- INSERT INTO gen_table_column (column_id, table_id, column_name, column_comment, column_type, java_type, java_field, is_pk, is_increment, is_required, is_insert, is_edit, is_list, is_query, query_type, html_type, dict_type, sort, create_by, create_time, update_by, update_time) VALUES (N'648', N'49', N'CREATE_USER', N'创建人', N'varchar', N'String', N'createUser', NULL, NULL, NULL, NULL, NULL, N'1', NULL, N'EQ', N'input', N'', N'9', N'admin', N'2022-01-17 08:19:03.8566667', NULL, N'2022-01-17 08:38:38.3466667')
- ;
- INSERT INTO gen_table_column (column_id, table_id, column_name, column_comment, column_type, java_type, java_field, is_pk, is_increment, is_required, is_insert, is_edit, is_list, is_query, query_type, html_type, dict_type, sort, create_by, create_time, update_by, update_time) VALUES (N'649', N'49', N'UPDATE_TIME', N'修改时间', N'datetime', N'Date', N'updateTime', NULL, NULL, NULL, NULL, NULL, N'1', NULL, N'EQ', N'datetime', N'', N'10', N'admin', N'2022-01-17 08:19:03.8733333', NULL, N'2022-01-17 08:38:38.3633333')
- ;
- INSERT INTO gen_table_column (column_id, table_id, column_name, column_comment, column_type, java_type, java_field, is_pk, is_increment, is_required, is_insert, is_edit, is_list, is_query, query_type, html_type, dict_type, sort, create_by, create_time, update_by, update_time) VALUES (N'650', N'49', N'UPDATE_USER', N'修改人', N'varchar', N'String', N'updateUser', NULL, NULL, NULL, NULL, NULL, N'1', NULL, N'EQ', N'input', N'', N'11', N'admin', N'2022-01-17 08:19:03.8933333', NULL, N'2022-01-17 08:38:38.3800000')
- ;
- INSERT INTO gen_table_column (column_id, table_id, column_name, column_comment, column_type, java_type, java_field, is_pk, is_increment, is_required, is_insert, is_edit, is_list, is_query, query_type, html_type, dict_type, sort, create_by, create_time, update_by, update_time) VALUES (N'651', N'49', N'REMARKS', N'备注', N'varchar', N'String', N'remarks', NULL, NULL, NULL, N'1', N'1', N'1', NULL, N'EQ', N'input', N'', N'12', N'admin', N'2022-01-17 08:19:03.9133333', NULL, N'2022-01-17 08:38:38.3966667')
- ;
- INSERT INTO gen_table_column (column_id, table_id, column_name, column_comment, column_type, java_type, java_field, is_pk, is_increment, is_required, is_insert, is_edit, is_list, is_query, query_type, html_type, dict_type, sort, create_by, create_time, update_by, update_time) VALUES (N'652', N'49', N'ELECTRONIC_FENCE_TYPE', N'围栏种类,0表示矩阵围栏,1表示圆形围栏', N'int', N'Long', N'electronicFenceType', NULL, NULL, NULL, N'1', N'1', N'1', N'1', N'EQ', N'select', N'JT_ELECTRONIC_FENCE_TYPE', N'13', N'admin', N'2022-01-17 08:19:03.9400000', NULL, N'2022-01-17 08:38:38.4100000')
- ;
- INSERT INTO gen_table_column (column_id, table_id, column_name, column_comment, column_type, java_type, java_field, is_pk, is_increment, is_required, is_insert, is_edit, is_list, is_query, query_type, html_type, dict_type, sort, create_by, create_time, update_by, update_time) VALUES (N'486', N'43', N'ConfigID', N'配置ID', N'int', N'Long', N'ConfigID', N'1', NULL, NULL, N'1', NULL, NULL, NULL, N'EQ', N'input', N'', N'1', N'admin', N'2021-10-09 10:18:14.3800000', N'', NULL)
- ;
- INSERT INTO gen_table_column (column_id, table_id, column_name, column_comment, column_type, java_type, java_field, is_pk, is_increment, is_required, is_insert, is_edit, is_list, is_query, query_type, html_type, dict_type, sort, create_by, create_time, update_by, update_time) VALUES (N'487', N'43', N'D_DataType', N'数据库类型', N'nvarchar', NULL, N'dDatatype', NULL, NULL, NULL, N'1', N'1', N'1', N'1', N'EQ', N'select', N'', N'2', N'admin', N'2021-10-09 10:18:14.4100000', N'', NULL)
- ;
- INSERT INTO gen_table_column (column_id, table_id, column_name, column_comment, column_type, java_type, java_field, is_pk, is_increment, is_required, is_insert, is_edit, is_list, is_query, query_type, html_type, dict_type, sort, create_by, create_time, update_by, update_time) VALUES (N'488', N'43', N'D_DataConnection', N'数据库连接串', N'nvarchar', NULL, N'dDataconnection', NULL, NULL, NULL, N'1', N'1', N'1', N'1', N'EQ', NULL, N'', N'3', N'admin', N'2021-10-09 10:18:14.4370000', N'', NULL)
- ;
- INSERT INTO gen_table_column (column_id, table_id, column_name, column_comment, column_type, java_type, java_field, is_pk, is_increment, is_required, is_insert, is_edit, is_list, is_query, query_type, html_type, dict_type, sort, create_by, create_time, update_by, update_time) VALUES (N'489', N'43', N'D_DataSelectTable', N'抓取查询数据表', N'nvarchar', NULL, N'dDataselecttable', NULL, NULL, NULL, N'1', N'1', N'1', N'1', N'EQ', NULL, N'', N'4', N'admin', N'2021-10-09 10:18:14.4670000', N'', NULL)
- ;
- INSERT INTO gen_table_column (column_id, table_id, column_name, column_comment, column_type, java_type, java_field, is_pk, is_increment, is_required, is_insert, is_edit, is_list, is_query, query_type, html_type, dict_type, sort, create_by, create_time, update_by, update_time) VALUES (N'490', N'43', N'D_DataSelectKeyCol', N'抓取查询数据条码字段名', N'nvarchar', NULL, N'dDataselectkeycol', NULL, NULL, NULL, N'1', N'1', N'1', N'1', N'EQ', NULL, N'', N'5', N'admin', N'2021-10-09 10:18:14.4930000', N'', NULL)
- ;
- INSERT INTO gen_table_column (column_id, table_id, column_name, column_comment, column_type, java_type, java_field, is_pk, is_increment, is_required, is_insert, is_edit, is_list, is_query, query_type, html_type, dict_type, sort, create_by, create_time, update_by, update_time) VALUES (N'491', N'43', N'D_DataSelectWheres', N'抓取查询联表条件', N'nvarchar', NULL, N'dDataselectwheres', NULL, NULL, NULL, N'1', N'1', N'1', N'1', N'EQ', NULL, N'', N'6', N'admin', N'2021-10-09 10:18:14.5170000', N'', NULL)
- ;
- INSERT INTO gen_table_column (column_id, table_id, column_name, column_comment, column_type, java_type, java_field, is_pk, is_increment, is_required, is_insert, is_edit, is_list, is_query, query_type, html_type, dict_type, sort, create_by, create_time, update_by, update_time) VALUES (N'492', N'43', N'D_DataDisplay', N'包裹显示控制字段名称', N'nvarchar', NULL, N'dDatadisplay', NULL, NULL, NULL, N'1', N'1', N'1', N'1', N'EQ', NULL, N'', N'7', N'admin', N'2021-10-09 10:18:14.5400000', N'', NULL)
- ;
- INSERT INTO gen_table_column (column_id, table_id, column_name, column_comment, column_type, java_type, java_field, is_pk, is_increment, is_required, is_insert, is_edit, is_list, is_query, query_type, html_type, dict_type, sort, create_by, create_time, update_by, update_time) VALUES (N'493', N'43', N'D_DataJudge', N'包裹判图控制字段名称', N'nvarchar', NULL, N'dDatajudge', NULL, NULL, NULL, N'1', N'1', N'1', N'1', N'EQ', NULL, N'', N'8', N'admin', N'2021-10-09 10:18:14.5630000', N'', NULL)
- ;
- INSERT INTO gen_table_column (column_id, table_id, column_name, column_comment, column_type, java_type, java_field, is_pk, is_increment, is_required, is_insert, is_edit, is_list, is_query, query_type, html_type, dict_type, sort, create_by, create_time, update_by, update_time) VALUES (N'494', N'43', N'D_DataControl', N'包裹操作控制字段名称', N'nvarchar', NULL, N'dDatacontrol', NULL, NULL, NULL, N'1', N'1', N'1', N'1', N'EQ', NULL, N'', N'9', N'admin', N'2021-10-09 10:18:14.5870000', N'', NULL)
- ;
- INSERT INTO gen_table_column (column_id, table_id, column_name, column_comment, column_type, java_type, java_field, is_pk, is_increment, is_required, is_insert, is_edit, is_list, is_query, query_type, html_type, dict_type, sort, create_by, create_time, update_by, update_time) VALUES (N'495', N'43', N'D_DataStatus', N'通关指令字段名称', N'nvarchar', NULL, N'dDatastatus', NULL, NULL, NULL, N'1', N'1', N'1', N'1', N'EQ', N'radio', N'', N'10', N'admin', N'2021-10-09 10:18:14.6100000', N'', NULL)
- ;
- INSERT INTO gen_table_column (column_id, table_id, column_name, column_comment, column_type, java_type, java_field, is_pk, is_increment, is_required, is_insert, is_edit, is_list, is_query, query_type, html_type, dict_type, sort, create_by, create_time, update_by, update_time) VALUES (N'496', N'43', N'D_DataStatusDesc', N'通关指令字段值描述', N'nvarchar', NULL, N'dDatastatusdesc', NULL, NULL, NULL, N'1', N'1', N'1', N'1', N'EQ', NULL, N'', N'11', N'admin', N'2021-10-09 10:18:14.6330000', N'', NULL)
- ;
- INSERT INTO gen_table_column (column_id, table_id, column_name, column_comment, column_type, java_type, java_field, is_pk, is_increment, is_required, is_insert, is_edit, is_list, is_query, query_type, html_type, dict_type, sort, create_by, create_time, update_by, update_time) VALUES (N'497', N'43', N'D_DataPackageType', N'包裹类型字段名称', N'nvarchar', NULL, N'dDatapackagetype', NULL, NULL, NULL, N'1', N'1', N'1', N'1', N'EQ', N'select', N'', N'12', N'admin', N'2021-10-09 10:18:14.6570000', N'', NULL)
- ;
- INSERT INTO gen_table_column (column_id, table_id, column_name, column_comment, column_type, java_type, java_field, is_pk, is_increment, is_required, is_insert, is_edit, is_list, is_query, query_type, html_type, dict_type, sort, create_by, create_time, update_by, update_time) VALUES (N'498', N'43', N'D_DataPackageTypeDesc', N'包裹类型值描述', N'nvarchar', NULL, N'dDatapackagetypedesc', NULL, NULL, NULL, N'1', N'1', N'1', N'1', N'EQ', NULL, N'', N'13', N'admin', N'2021-10-09 10:18:14.6830000', N'', NULL)
- ;
- INSERT INTO gen_table_column (column_id, table_id, column_name, column_comment, column_type, java_type, java_field, is_pk, is_increment, is_required, is_insert, is_edit, is_list, is_query, query_type, html_type, dict_type, sort, create_by, create_time, update_by, update_time) VALUES (N'499', N'43', N'D_JudgeTable', N'判图结论写入表名', N'nvarchar', NULL, N'dJudgetable', NULL, NULL, NULL, N'1', N'1', N'1', N'1', N'EQ', NULL, N'', N'14', N'admin', N'2021-10-09 10:18:14.7070000', N'', NULL)
- ;
- INSERT INTO gen_table_column (column_id, table_id, column_name, column_comment, column_type, java_type, java_field, is_pk, is_increment, is_required, is_insert, is_edit, is_list, is_query, query_type, html_type, dict_type, sort, create_by, create_time, update_by, update_time) VALUES (N'500', N'43', N'D_JudgeSelectKeyCol', N'判图结论写入条码对应列名', N'nvarchar', NULL, N'dJudgeselectkeycol', NULL, NULL, NULL, N'1', N'1', N'1', N'1', N'EQ', NULL, N'', N'15', N'admin', N'2021-10-09 10:18:14.7300000', N'', NULL)
- ;
- INSERT INTO gen_table_column (column_id, table_id, column_name, column_comment, column_type, java_type, java_field, is_pk, is_increment, is_required, is_insert, is_edit, is_list, is_query, query_type, html_type, dict_type, sort, create_by, create_time, update_by, update_time) VALUES (N'501', N'43', N'D_JudgeSelectWheres', N'判图结论写入联表条件', N'nvarchar', NULL, N'dJudgeselectwheres', NULL, NULL, NULL, N'1', N'1', N'1', N'1', N'EQ', NULL, N'', N'16', N'admin', N'2021-10-09 10:18:14.7570000', N'', NULL)
- ;
- INSERT INTO gen_table_column (column_id, table_id, column_name, column_comment, column_type, java_type, java_field, is_pk, is_increment, is_required, is_insert, is_edit, is_list, is_query, query_type, html_type, dict_type, sort, create_by, create_time, update_by, update_time) VALUES (N'502', N'43', N'D_JudgeUpdateCol', N'判图结论写入结论字段对应列', N'nvarchar', NULL, N'dJudgeupdatecol', NULL, NULL, NULL, N'1', N'1', N'1', N'1', N'EQ', NULL, N'', N'17', N'admin', N'2021-10-09 10:18:14.7800000', N'', NULL)
- ;
- INSERT INTO gen_table_column (column_id, table_id, column_name, column_comment, column_type, java_type, java_field, is_pk, is_increment, is_required, is_insert, is_edit, is_list, is_query, query_type, html_type, dict_type, sort, create_by, create_time, update_by, update_time) VALUES (N'503', N'43', N'D_JudgeUpdateColDesc', N'判图结论写入结论字段值描述', N'nvarchar', NULL, N'dJudgeupdatecoldesc', NULL, NULL, NULL, N'1', N'1', N'1', N'1', N'EQ', NULL, N'', N'18', N'admin', N'2021-10-09 10:18:14.8030000', N'', NULL)
- ;
- INSERT INTO gen_table_column (column_id, table_id, column_name, column_comment, column_type, java_type, java_field, is_pk, is_increment, is_required, is_insert, is_edit, is_list, is_query, query_type, html_type, dict_type, sort, create_by, create_time, update_by, update_time) VALUES (N'504', N'43', N'D_CheckTable', N'开包结论写入表名', N'nvarchar', NULL, N'dChecktable', NULL, NULL, NULL, N'1', N'1', N'1', N'1', N'EQ', NULL, N'', N'19', N'admin', N'2021-10-09 10:18:14.8270000', N'', NULL)
- ;
- INSERT INTO gen_table_column (column_id, table_id, column_name, column_comment, column_type, java_type, java_field, is_pk, is_increment, is_required, is_insert, is_edit, is_list, is_query, query_type, html_type, dict_type, sort, create_by, create_time, update_by, update_time) VALUES (N'505', N'43', N'D_CheckSelectKeyCol', N'开包结论写入条码字段列名', N'nvarchar', NULL, N'dCheckselectkeycol', NULL, NULL, NULL, N'1', N'1', N'1', N'1', N'EQ', NULL, N'', N'20', N'admin', N'2021-10-09 10:18:14.8500000', N'', NULL)
- ;
- INSERT INTO gen_table_column (column_id, table_id, column_name, column_comment, column_type, java_type, java_field, is_pk, is_increment, is_required, is_insert, is_edit, is_list, is_query, query_type, html_type, dict_type, sort, create_by, create_time, update_by, update_time) VALUES (N'506', N'43', N'D_CheckSelectWheres', N'开包结论写入联表条件', N'nvarchar', NULL, N'dCheckselectwheres', NULL, NULL, NULL, N'1', N'1', N'1', N'1', N'EQ', NULL, N'', N'21', N'admin', N'2021-10-09 10:18:14.8730000', N'', NULL)
- ;
- INSERT INTO gen_table_column (column_id, table_id, column_name, column_comment, column_type, java_type, java_field, is_pk, is_increment, is_required, is_insert, is_edit, is_list, is_query, query_type, html_type, dict_type, sort, create_by, create_time, update_by, update_time) VALUES (N'507', N'43', N'D_CheckUpdateCol', N'开包结论写入结论对应列名', N'nvarchar', NULL, N'dCheckupdatecol', NULL, NULL, NULL, N'1', N'1', N'1', N'1', N'EQ', NULL, N'', N'22', N'admin', N'2021-10-09 10:18:14.8970000', N'', NULL)
- ;
- INSERT INTO gen_table_column (column_id, table_id, column_name, column_comment, column_type, java_type, java_field, is_pk, is_increment, is_required, is_insert, is_edit, is_list, is_query, query_type, html_type, dict_type, sort, create_by, create_time, update_by, update_time) VALUES (N'508', N'43', N'D_CheckUpdateColDesc', N'开包结论写入值描述', N'nvarchar', NULL, N'dCheckupdatecoldesc', NULL, NULL, NULL, N'1', N'1', N'1', N'1', N'EQ', NULL, N'', N'23', N'admin', N'2021-10-09 10:18:14.9200000', N'', NULL)
- ;
- INSERT INTO gen_table_column (column_id, table_id, column_name, column_comment, column_type, java_type, java_field, is_pk, is_increment, is_required, is_insert, is_edit, is_list, is_query, query_type, html_type, dict_type, sort, create_by, create_time, update_by, update_time) VALUES (N'509', N'43', N'D_JudgeIsWrite', N'判图结论是否写入', N'bit', NULL, N'dJudgeiswrite', NULL, NULL, NULL, N'1', N'1', N'1', N'1', N'EQ', NULL, N'', N'24', N'admin', N'2021-10-09 10:18:14.9430000', N'', NULL)
- ;
- INSERT INTO gen_table_column (column_id, table_id, column_name, column_comment, column_type, java_type, java_field, is_pk, is_increment, is_required, is_insert, is_edit, is_list, is_query, query_type, html_type, dict_type, sort, create_by, create_time, update_by, update_time) VALUES (N'510', N'43', N'D_CheckIsWrite', N'判图结论写入', N'bit', NULL, N'dCheckiswrite', NULL, NULL, NULL, N'1', N'1', N'1', N'1', N'EQ', NULL, N'', N'25', N'admin', N'2021-10-09 10:18:14.9670000', N'', NULL)
- ;
- INSERT INTO gen_table_column (column_id, table_id, column_name, column_comment, column_type, java_type, java_field, is_pk, is_increment, is_required, is_insert, is_edit, is_list, is_query, query_type, html_type, dict_type, sort, create_by, create_time, update_by, update_time) VALUES (N'511', N'43', N'D_ServerIsWrite', N'服务器结论写入', N'bit', NULL, N'dServeriswrite', NULL, NULL, NULL, N'1', N'1', N'1', N'1', N'EQ', NULL, N'', N'26', N'admin', N'2021-10-09 10:18:14.9900000', N'', NULL)
- ;
- INSERT INTO gen_table_column (column_id, table_id, column_name, column_comment, column_type, java_type, java_field, is_pk, is_increment, is_required, is_insert, is_edit, is_list, is_query, query_type, html_type, dict_type, sort, create_by, create_time, update_by, update_time) VALUES (N'512', N'43', N'D_DataZYDan', NULL, N'nvarchar', NULL, N'dDatazydan', NULL, NULL, NULL, N'1', N'1', N'1', N'1', N'EQ', NULL, N'', N'27', N'admin', N'2021-10-09 10:18:15.0170000', N'', NULL)
- ;
- INSERT INTO gen_table_column (column_id, table_id, column_name, column_comment, column_type, java_type, java_field, is_pk, is_increment, is_required, is_insert, is_edit, is_list, is_query, query_type, html_type, dict_type, sort, create_by, create_time, update_by, update_time) VALUES (N'513', N'43', N'D_DataFYDan', NULL, N'nvarchar', NULL, N'dDatafydan', NULL, NULL, NULL, N'1', N'1', N'1', N'1', N'EQ', NULL, N'', N'28', N'admin', N'2021-10-09 10:18:15.0370000', N'', NULL)
- ;
- INSERT INTO gen_table_column (column_id, table_id, column_name, column_comment, column_type, java_type, java_field, is_pk, is_increment, is_required, is_insert, is_edit, is_list, is_query, query_type, html_type, dict_type, sort, create_by, create_time, update_by, update_time) VALUES (N'514', N'43', N'D_DataHWDan', NULL, N'nvarchar', NULL, N'dDatahwdan', NULL, NULL, NULL, N'1', N'1', N'1', N'1', N'EQ', NULL, N'', N'29', N'admin', N'2021-10-09 10:18:15.0600000', N'', NULL)
- ;
- INSERT INTO gen_table_column (column_id, table_id, column_name, column_comment, column_type, java_type, java_field, is_pk, is_increment, is_required, is_insert, is_edit, is_list, is_query, query_type, html_type, dict_type, sort, create_by, create_time, update_by, update_time) VALUES (N'515', N'43', N'D_DataWeight', NULL, N'nvarchar', NULL, N'dDataweight', NULL, NULL, NULL, N'1', N'1', N'1', N'1', N'EQ', NULL, N'', N'30', N'admin', N'2021-10-09 10:18:15.0830000', N'', NULL)
- ;
- INSERT INTO gen_table_column (column_id, table_id, column_name, column_comment, column_type, java_type, java_field, is_pk, is_increment, is_required, is_insert, is_edit, is_list, is_query, query_type, html_type, dict_type, sort, create_by, create_time, update_by, update_time) VALUES (N'516', N'43', N'D_DataWeightValue', NULL, N'nvarchar', NULL, N'dDataweightvalue', NULL, NULL, NULL, N'1', N'1', N'1', N'1', N'EQ', NULL, N'', N'31', N'admin', N'2021-10-09 10:18:15.1070000', N'', NULL)
- ;
- INSERT INTO gen_table_column (column_id, table_id, column_name, column_comment, column_type, java_type, java_field, is_pk, is_increment, is_required, is_insert, is_edit, is_list, is_query, query_type, html_type, dict_type, sort, create_by, create_time, update_by, update_time) VALUES (N'517', N'43', N'B_DelBarCode', N'条码删除标识', N'nvarchar', NULL, N'bDelbarcode', NULL, NULL, NULL, N'1', N'1', N'1', N'1', N'EQ', NULL, N'', N'32', N'admin', N'2021-10-09 10:18:15.1300000', N'', NULL)
- ;
- INSERT INTO gen_table_column (column_id, table_id, column_name, column_comment, column_type, java_type, java_field, is_pk, is_increment, is_required, is_insert, is_edit, is_list, is_query, query_type, html_type, dict_type, sort, create_by, create_time, update_by, update_time) VALUES (N'518', N'43', N'B_DefaultBarCode', N'默认条码', N'nvarchar', NULL, N'bDefaultbarcode', NULL, NULL, NULL, N'1', N'1', N'1', N'1', N'EQ', NULL, N'', N'33', N'admin', N'2021-10-09 10:18:15.1530000', N'', NULL)
- ;
- INSERT INTO gen_table_column (column_id, table_id, column_name, column_comment, column_type, java_type, java_field, is_pk, is_increment, is_required, is_insert, is_edit, is_list, is_query, query_type, html_type, dict_type, sort, create_by, create_time, update_by, update_time) VALUES (N'519', N'43', N'B_BarCodeMaxTime', N'条码窗口最大时间', N'int', N'Long', N'bBarcodemaxtime', NULL, NULL, NULL, N'1', N'1', N'1', N'1', N'EQ', N'input', N'', N'34', N'admin', N'2021-10-09 10:18:15.1830000', N'', NULL)
- ;
- INSERT INTO gen_table_column (column_id, table_id, column_name, column_comment, column_type, java_type, java_field, is_pk, is_increment, is_required, is_insert, is_edit, is_list, is_query, query_type, html_type, dict_type, sort, create_by, create_time, update_by, update_time) VALUES (N'520', N'43', N'B_BarCodeMinTime', N'条码窗口最小时间', N'int', N'Long', N'bBarcodemintime', NULL, NULL, NULL, N'1', N'1', N'1', N'1', N'EQ', N'input', N'', N'35', N'admin', N'2021-10-09 10:18:15.2070000', N'', NULL)
- ;
- INSERT INTO gen_table_column (column_id, table_id, column_name, column_comment, column_type, java_type, java_field, is_pk, is_increment, is_required, is_insert, is_edit, is_list, is_query, query_type, html_type, dict_type, sort, create_by, create_time, update_by, update_time) VALUES (N'521', N'43', N'U_MemberCacheURL', N'membercache地址', N'nvarchar', NULL, N'uMembercacheurl', NULL, NULL, NULL, N'1', N'1', N'1', N'1', N'EQ', NULL, N'', N'36', N'admin', N'2021-10-09 10:18:15.2300000', N'', NULL)
- ;
- INSERT INTO gen_table_column (column_id, table_id, column_name, column_comment, column_type, java_type, java_field, is_pk, is_increment, is_required, is_insert, is_edit, is_list, is_query, query_type, html_type, dict_type, sort, create_by, create_time, update_by, update_time) VALUES (N'522', N'43', N'U_FileServerURL', N'文件系统地址', N'nvarchar', NULL, N'uFileserverurl', NULL, NULL, NULL, N'1', N'1', N'1', N'1', N'EQ', NULL, N'', N'37', N'admin', N'2021-10-09 10:18:15.2500000', N'', NULL)
- ;
- INSERT INTO gen_table_column (column_id, table_id, column_name, column_comment, column_type, java_type, java_field, is_pk, is_increment, is_required, is_insert, is_edit, is_list, is_query, query_type, html_type, dict_type, sort, create_by, create_time, update_by, update_time) VALUES (N'523', N'43', N'U_JudgeStationURL', N'判图站地址', N'nvarchar', NULL, N'uJudgestationurl', NULL, NULL, NULL, N'1', N'1', N'1', N'1', N'EQ', NULL, N'', N'38', N'admin', N'2021-10-09 10:18:15.2730000', N'', NULL)
- ;
- INSERT INTO gen_table_column (column_id, table_id, column_name, column_comment, column_type, java_type, java_field, is_pk, is_increment, is_required, is_insert, is_edit, is_list, is_query, query_type, html_type, dict_type, sort, create_by, create_time, update_by, update_time) VALUES (N'524', N'43', N'U_IsCheckStation', N'是否有开包站', N'bit', NULL, N'uIscheckstation', NULL, NULL, NULL, N'1', N'1', N'1', N'1', N'EQ', NULL, N'', N'39', N'admin', N'2021-10-09 10:18:15.2970000', N'', NULL)
- ;
- INSERT INTO gen_table_column (column_id, table_id, column_name, column_comment, column_type, java_type, java_field, is_pk, is_increment, is_required, is_insert, is_edit, is_list, is_query, query_type, html_type, dict_type, sort, create_by, create_time, update_by, update_time) VALUES (N'525', N'43', N'H_DeviceHeartBeat', N'设备心跳轮询时间间隔', N'int', N'Long', N'hDeviceheartbeat', NULL, NULL, NULL, N'1', N'1', N'1', N'1', N'EQ', N'input', N'', N'40', N'admin', N'2021-10-09 10:18:15.3200000', N'', NULL)
- ;
- INSERT INTO gen_table_column (column_id, table_id, column_name, column_comment, column_type, java_type, java_field, is_pk, is_increment, is_required, is_insert, is_edit, is_list, is_query, query_type, html_type, dict_type, sort, create_by, create_time, update_by, update_time) VALUES (N'526', N'43', N'H_DeviceOffLine', N'设备超时时间', N'int', N'Long', N'hDeviceoffline', NULL, NULL, NULL, N'1', N'1', N'1', N'1', N'EQ', N'input', N'', N'41', N'admin', N'2021-10-09 10:18:15.3430000', N'', NULL)
- ;
- INSERT INTO gen_table_column (column_id, table_id, column_name, column_comment, column_type, java_type, java_field, is_pk, is_increment, is_required, is_insert, is_edit, is_list, is_query, query_type, html_type, dict_type, sort, create_by, create_time, update_by, update_time) VALUES (N'527', N'43', N'H_PackgeTimeout', N'包裹服务器超时时间', N'int', N'Long', N'hPackgetimeout', NULL, NULL, NULL, N'1', N'1', N'1', N'1', N'EQ', N'input', N'', N'42', N'admin', N'2021-10-09 10:18:15.3670000', N'', NULL)
- ;
- INSERT INTO gen_table_column (column_id, table_id, column_name, column_comment, column_type, java_type, java_field, is_pk, is_increment, is_required, is_insert, is_edit, is_list, is_query, query_type, html_type, dict_type, sort, create_by, create_time, update_by, update_time) VALUES (N'528', N'43', N'H_ServerLoop', N'服务端超时轮询时间', N'int', N'Long', N'hServerloop', NULL, NULL, NULL, N'1', N'1', N'1', N'1', N'EQ', N'input', N'', N'43', N'admin', N'2021-10-09 10:18:15.3900000', N'', NULL)
- ;
- INSERT INTO gen_table_column (column_id, table_id, column_name, column_comment, column_type, java_type, java_field, is_pk, is_increment, is_required, is_insert, is_edit, is_list, is_query, query_type, html_type, dict_type, sort, create_by, create_time, update_by, update_time) VALUES (N'529', N'43', N'H_DeviceReflash', N'管理站设备监控刷新时间', N'int', N'Long', N'hDevicereflash', NULL, NULL, NULL, N'1', N'1', N'1', N'1', N'EQ', N'input', N'', N'44', N'admin', N'2021-10-09 10:18:15.4130000', N'', NULL)
- ;
- INSERT INTO gen_table_column (column_id, table_id, column_name, column_comment, column_type, java_type, java_field, is_pk, is_increment, is_required, is_insert, is_edit, is_list, is_query, query_type, html_type, dict_type, sort, create_by, create_time, update_by, update_time) VALUES (N'530', N'43', N'J_JudgeTimeOut', N'判图员默认判图时间', N'int', N'Long', N'jJudgetimeout', NULL, NULL, NULL, N'1', N'1', N'1', N'1', N'EQ', N'input', N'', N'45', N'admin', N'2021-10-09 10:18:15.4370000', N'', NULL)
- ;
- INSERT INTO gen_table_column (column_id, table_id, column_name, column_comment, column_type, java_type, java_field, is_pk, is_increment, is_required, is_insert, is_edit, is_list, is_query, query_type, html_type, dict_type, sort, create_by, create_time, update_by, update_time) VALUES (N'531', N'43', N'J_JudgeConsion', N'判图默认判图结论', N'int', N'Long', N'jJudgeconsion', NULL, NULL, NULL, N'1', N'1', N'1', N'1', N'EQ', N'input', N'', N'46', N'admin', N'2021-10-09 10:18:15.4600000', N'', NULL)
- ;
- INSERT INTO gen_table_column (column_id, table_id, column_name, column_comment, column_type, java_type, java_field, is_pk, is_increment, is_required, is_insert, is_edit, is_list, is_query, query_type, html_type, dict_type, sort, create_by, create_time, update_by, update_time) VALUES (N'532', N'43', N'J_JudgeTimeRemind', N'判图员登录过长提醒时间', N'int', N'Long', N'jJudgetimeremind', NULL, NULL, NULL, N'1', N'1', N'1', N'1', N'EQ', N'input', N'', N'47', N'admin', N'2021-10-09 10:18:15.4830000', N'', NULL)
- ;
- INSERT INTO gen_table_column (column_id, table_id, column_name, column_comment, column_type, java_type, java_field, is_pk, is_increment, is_required, is_insert, is_edit, is_list, is_query, query_type, html_type, dict_type, sort, create_by, create_time, update_by, update_time) VALUES (N'533', N'43', N'J_JudgeNumRemind', N'判图员包裹过多提醒数量', N'int', N'Long', N'jJudgenumremind', NULL, NULL, NULL, N'1', N'1', N'1', N'1', N'EQ', N'input', N'', N'48', N'admin', N'2021-10-09 10:18:15.5130000', N'', NULL)
- ;
- INSERT INTO gen_table_column (column_id, table_id, column_name, column_comment, column_type, java_type, java_field, is_pk, is_increment, is_required, is_insert, is_edit, is_list, is_query, query_type, html_type, dict_type, sort, create_by, create_time, update_by, update_time) VALUES (N'534', N'43', N'J_JudgeThem', N'判图主题选择', N'int', N'Long', N'jJudgethem', NULL, NULL, NULL, N'1', N'1', N'1', N'1', N'EQ', N'input', N'', N'49', N'admin', N'2021-10-09 10:18:15.5370000', N'', NULL)
- ;
- INSERT INTO gen_table_column (column_id, table_id, column_name, column_comment, column_type, java_type, java_field, is_pk, is_increment, is_required, is_insert, is_edit, is_list, is_query, query_type, html_type, dict_type, sort, create_by, create_time, update_by, update_time) VALUES (N'677', N'50', N'PAST_PASSWORD', N'旧的密码', N'varchar', N'String', N'pastPassword', NULL, NULL, NULL, N'1', N'1', N'1', N'1', N'EQ', N'input', N'', N'22', N'admin', N'2022-01-18 01:57:48.8733333', N'', NULL)
- ;
- INSERT INTO gen_table_column (column_id, table_id, column_name, column_comment, column_type, java_type, java_field, is_pk, is_increment, is_required, is_insert, is_edit, is_list, is_query, query_type, html_type, dict_type, sort, create_by, create_time, update_by, update_time) VALUES (N'678', N'50', N'NEW_PASSWORD', N'新的密码', N'varchar', N'String', N'newPassword', NULL, NULL, NULL, N'1', N'1', N'1', N'1', N'EQ', N'input', N'', N'23', N'admin', N'2022-01-18 01:57:48.8866667', N'', NULL)
- ;
- INSERT INTO gen_table_column (column_id, table_id, column_name, column_comment, column_type, java_type, java_field, is_pk, is_increment, is_required, is_insert, is_edit, is_list, is_query, query_type, html_type, dict_type, sort, create_by, create_time, update_by, update_time) VALUES (N'679', N'50', N'MES_STREAM', N'消息流水号', N'varchar', N'String', N'mesStream', NULL, NULL, NULL, N'1', N'1', N'1', N'1', N'EQ', N'input', N'', N'24', N'admin', N'2022-01-18 01:57:48.9000000', N'', NULL)
- ;
- INSERT INTO gen_table_column (column_id, table_id, column_name, column_comment, column_type, java_type, java_field, is_pk, is_increment, is_required, is_insert, is_edit, is_list, is_query, query_type, html_type, dict_type, sort, create_by, create_time, update_by, update_time) VALUES (N'680', N'50', N'BUSINESS_STREAM', N'业务流水号', N'varchar', N'String', N'businessStream', NULL, NULL, NULL, N'1', N'1', N'1', N'1', N'EQ', N'input', N'', N'25', N'admin', N'2022-01-18 01:57:48.9100000', N'', NULL)
- ;
- INSERT INTO gen_table_column (column_id, table_id, column_name, column_comment, column_type, java_type, java_field, is_pk, is_increment, is_required, is_insert, is_edit, is_list, is_query, query_type, html_type, dict_type, sort, create_by, create_time, update_by, update_time) VALUES (N'681', N'50', N'CMD', N'最近一次下发的指令', N'varchar', N'String', N'CMD', NULL, NULL, NULL, N'1', N'1', N'1', N'1', N'EQ', N'input', N'', N'26', N'admin', N'2022-01-18 01:57:48.9266667', N'', NULL)
- ;
- INSERT INTO gen_table_column (column_id, table_id, column_name, column_comment, column_type, java_type, java_field, is_pk, is_increment, is_required, is_insert, is_edit, is_list, is_query, query_type, html_type, dict_type, sort, create_by, create_time, update_by, update_time) VALUES (N'615', N'48', N'ID', N'id自增', N'bigint', N'Long', N'ID', N'1', NULL, NULL, N'1', NULL, NULL, NULL, N'EQ', N'input', N'', N'1', N'admin', N'2022-01-14 09:37:13.3933333', N'', NULL)
- ;
- INSERT INTO gen_table_column (column_id, table_id, column_name, column_comment, column_type, java_type, java_field, is_pk, is_increment, is_required, is_insert, is_edit, is_list, is_query, query_type, html_type, dict_type, sort, create_by, create_time, update_by, update_time) VALUES (N'616', N'48', N'CREATE_TIME', N'创建时间', N'datetime', N'Date', N'createTime', NULL, NULL, NULL, N'1', N'1', N'1', N'1', N'EQ', N'datetime', N'', N'2', N'admin', N'2022-01-14 09:37:13.4133333', N'', NULL)
- ;
- INSERT INTO gen_table_column (column_id, table_id, column_name, column_comment, column_type, java_type, java_field, is_pk, is_increment, is_required, is_insert, is_edit, is_list, is_query, query_type, html_type, dict_type, sort, create_by, create_time, update_by, update_time) VALUES (N'617', N'48', N'UPDATE_TIME', N'修改时间', N'datetime', N'Date', N'updateTime', NULL, NULL, NULL, N'1', N'1', N'1', N'1', N'EQ', N'datetime', N'', N'3', N'admin', N'2022-01-14 09:37:13.4333333', N'', NULL)
- ;
- INSERT INTO gen_table_column (column_id, table_id, column_name, column_comment, column_type, java_type, java_field, is_pk, is_increment, is_required, is_insert, is_edit, is_list, is_query, query_type, html_type, dict_type, sort, create_by, create_time, update_by, update_time) VALUES (N'618', N'48', N'CREATE_BY', N'创建人', N'varchar', N'String', N'createBy', NULL, NULL, NULL, N'1', N'1', N'1', N'1', N'EQ', N'input', N'', N'4', N'admin', N'2022-01-14 09:37:13.4533333', N'', NULL)
- ;
- INSERT INTO gen_table_column (column_id, table_id, column_name, column_comment, column_type, java_type, java_field, is_pk, is_increment, is_required, is_insert, is_edit, is_list, is_query, query_type, html_type, dict_type, sort, create_by, create_time, update_by, update_time) VALUES (N'619', N'48', N'UPDATE_BY', N'修改人', N'varchar', N'String', N'updateBy', NULL, NULL, NULL, N'1', N'1', N'1', N'1', N'EQ', N'input', N'', N'5', N'admin', N'2022-01-14 09:37:13.4733333', N'', NULL)
- ;
- INSERT INTO gen_table_column (column_id, table_id, column_name, column_comment, column_type, java_type, java_field, is_pk, is_increment, is_required, is_insert, is_edit, is_list, is_query, query_type, html_type, dict_type, sort, create_by, create_time, update_by, update_time) VALUES (N'620', N'48', N'USER_ID', N'用户id', N'bigint', N'Long', N'userId', NULL, NULL, NULL, N'1', N'1', N'1', N'1', N'EQ', N'input', N'', N'6', N'admin', N'2022-01-14 09:37:13.4933333', N'', NULL)
- ;
- INSERT INTO gen_table_column (column_id, table_id, column_name, column_comment, column_type, java_type, java_field, is_pk, is_increment, is_required, is_insert, is_edit, is_list, is_query, query_type, html_type, dict_type, sort, create_by, create_time, update_by, update_time) VALUES (N'621', N'48', N'DEPT_ID', N'部门id', N'bigint', N'Long', N'deptId', NULL, NULL, NULL, N'1', N'1', N'1', N'1', N'EQ', N'input', N'', N'7', N'admin', N'2022-01-14 09:37:13.5133333', N'', NULL)
- ;
- INSERT INTO gen_table_column (column_id, table_id, column_name, column_comment, column_type, java_type, java_field, is_pk, is_increment, is_required, is_insert, is_edit, is_list, is_query, query_type, html_type, dict_type, sort, create_by, create_time, update_by, update_time) VALUES (N'622', N'48', N'REMARK', N'备注', N'varchar', N'String', N'REMARK', NULL, NULL, NULL, N'1', N'1', N'1', N'1', N'EQ', N'input', N'', N'8', N'admin', N'2022-01-14 09:37:13.5366667', N'', NULL)
- ;
- INSERT INTO gen_table_column (column_id, table_id, column_name, column_comment, column_type, java_type, java_field, is_pk, is_increment, is_required, is_insert, is_edit, is_list, is_query, query_type, html_type, dict_type, sort, create_by, create_time, update_by, update_time) VALUES (N'623', N'48', N'DEVICE_NO', N'设备编号(唯一)', N'varchar', N'String', N'deviceNo', NULL, NULL, NULL, N'1', N'1', N'1', N'1', N'EQ', N'input', N'', N'9', N'admin', N'2022-01-14 09:37:13.5566667', N'', NULL)
- ;
- INSERT INTO gen_table_column (column_id, table_id, column_name, column_comment, column_type, java_type, java_field, is_pk, is_increment, is_required, is_insert, is_edit, is_list, is_query, query_type, html_type, dict_type, sort, create_by, create_time, update_by, update_time) VALUES (N'624', N'48', N'LONGITUDE', N'经度', N'decimal', N'Long', N'LONGITUDE', NULL, NULL, NULL, N'1', N'1', N'1', N'1', N'EQ', N'input', N'', N'10', N'admin', N'2022-01-14 09:37:13.5766667', N'', NULL)
- ;
- INSERT INTO gen_table_column (column_id, table_id, column_name, column_comment, column_type, java_type, java_field, is_pk, is_increment, is_required, is_insert, is_edit, is_list, is_query, query_type, html_type, dict_type, sort, create_by, create_time, update_by, update_time) VALUES (N'625', N'48', N'LATITUDE', N'纬度', N'decimal', N'Long', N'LATITUDE', NULL, NULL, NULL, N'1', N'1', N'1', N'1', N'EQ', N'input', N'', N'11', N'admin', N'2022-01-14 09:37:13.5966667', N'', NULL)
- ;
- INSERT INTO gen_table_column (column_id, table_id, column_name, column_comment, column_type, java_type, java_field, is_pk, is_increment, is_required, is_insert, is_edit, is_list, is_query, query_type, html_type, dict_type, sort, create_by, create_time, update_by, update_time) VALUES (N'626', N'48', N'GPS_TIME', N'GPS时间', N'datetime', N'Date', N'gpsTime', NULL, NULL, NULL, N'1', N'1', N'1', N'1', N'EQ', N'datetime', N'', N'12', N'admin', N'2022-01-14 09:37:13.6166667', N'', NULL)
- ;
- INSERT INTO gen_table_column (column_id, table_id, column_name, column_comment, column_type, java_type, java_field, is_pk, is_increment, is_required, is_insert, is_edit, is_list, is_query, query_type, html_type, dict_type, sort, create_by, create_time, update_by, update_time) VALUES (N'627', N'48', N'SERVER_TIME', N'服务器时间', N'datetime', N'Date', N'serverTime', NULL, NULL, NULL, N'1', N'1', N'1', N'1', N'EQ', N'datetime', N'', N'13', N'admin', N'2022-01-14 09:37:13.6366667', N'', NULL)
- ;
- INSERT INTO gen_table_column (column_id, table_id, column_name, column_comment, column_type, java_type, java_field, is_pk, is_increment, is_required, is_insert, is_edit, is_list, is_query, query_type, html_type, dict_type, sort, create_by, create_time, update_by, update_time) VALUES (N'628', N'48', N'SPEED', N'速度', N'int', N'Long', N'SPEED', NULL, NULL, NULL, N'1', N'1', N'1', N'1', N'EQ', N'input', N'', N'14', N'admin', N'2022-01-14 09:37:13.6566667', N'', NULL)
- ;
- INSERT INTO gen_table_column (column_id, table_id, column_name, column_comment, column_type, java_type, java_field, is_pk, is_increment, is_required, is_insert, is_edit, is_list, is_query, query_type, html_type, dict_type, sort, create_by, create_time, update_by, update_time) VALUES (N'629', N'48', N'MILEAGE', N'里程', N'varchar', N'String', N'MILEAGE', NULL, NULL, NULL, N'1', N'1', N'1', N'1', N'EQ', N'input', N'', N'15', N'admin', N'2022-01-14 09:37:13.6766667', N'', NULL)
- ;
- INSERT INTO gen_table_column (column_id, table_id, column_name, column_comment, column_type, java_type, java_field, is_pk, is_increment, is_required, is_insert, is_edit, is_list, is_query, query_type, html_type, dict_type, sort, create_by, create_time, update_by, update_time) VALUES (N'630', N'48', N'ALTITUDE', N'高程(海拔高度,单位为米(m))', N'int', N'Long', N'ALTITUDE', NULL, NULL, NULL, N'1', N'1', N'1', N'1', N'EQ', N'input', N'', N'16', N'admin', N'2022-01-14 09:37:13.6966667', N'', NULL)
- ;
- INSERT INTO gen_table_column (column_id, table_id, column_name, column_comment, column_type, java_type, java_field, is_pk, is_increment, is_required, is_insert, is_edit, is_list, is_query, query_type, html_type, dict_type, sort, create_by, create_time, update_by, update_time) VALUES (N'631', N'48', N'DEVICE_STATUS', N'设备状态', N'varchar', N'String', N'deviceStatus', NULL, NULL, NULL, N'1', N'1', N'1', N'1', N'EQ', N'radio', N'', N'17', N'admin', N'2022-01-14 09:37:13.7133333', N'', NULL)
- ;
- INSERT INTO gen_table_column (column_id, table_id, column_name, column_comment, column_type, java_type, java_field, is_pk, is_increment, is_required, is_insert, is_edit, is_list, is_query, query_type, html_type, dict_type, sort, create_by, create_time, update_by, update_time) VALUES (N'632', N'48', N'ALARM_FLAG', N'报警标志', N'varchar', N'String', N'alarmFlag', NULL, NULL, NULL, N'1', N'1', N'1', N'1', N'EQ', N'input', N'', N'18', N'admin', N'2022-01-14 09:37:13.7333333', N'', NULL)
- ;
- INSERT INTO gen_table_column (column_id, table_id, column_name, column_comment, column_type, java_type, java_field, is_pk, is_increment, is_required, is_insert, is_edit, is_list, is_query, query_type, html_type, dict_type, sort, create_by, create_time, update_by, update_time) VALUES (N'633', N'48', N'QUANTITY_OF_ELECTRICITY', N'电量', N'int', N'Long', N'quantityOfElectricity', NULL, NULL, NULL, N'1', N'1', N'1', N'1', N'EQ', N'input', N'', N'19', N'admin', N'2022-01-14 09:37:13.7533333', N'', NULL)
- ;
- INSERT INTO gen_table_column (column_id, table_id, column_name, column_comment, column_type, java_type, java_field, is_pk, is_increment, is_required, is_insert, is_edit, is_list, is_query, query_type, html_type, dict_type, sort, create_by, create_time, update_by, update_time) VALUES (N'634', N'48', N'ADDRESS', N'地址', N'varchar', N'String', N'ADDRESS', NULL, NULL, NULL, N'1', N'1', N'1', N'1', N'EQ', N'input', N'', N'20', N'admin', N'2022-01-14 09:37:13.7766667', N'', NULL)
- ;
- INSERT INTO gen_table_column (column_id, table_id, column_name, column_comment, column_type, java_type, java_field, is_pk, is_increment, is_required, is_insert, is_edit, is_list, is_query, query_type, html_type, dict_type, sort, create_by, create_time, update_by, update_time) VALUES (N'635', N'48', N'ORIENTATION', N'方向( 0-359,正北为 0,顺时针)', N'varchar', N'String', N'ORIENTATION', NULL, NULL, NULL, N'1', N'1', N'1', N'1', N'EQ', N'input', N'', N'21', N'admin', N'2022-01-14 09:37:13.8000000', N'', NULL)
- ;
- INSERT INTO gen_table_column (column_id, table_id, column_name, column_comment, column_type, java_type, java_field, is_pk, is_increment, is_required, is_insert, is_edit, is_list, is_query, query_type, html_type, dict_type, sort, create_by, create_time, update_by, update_time) VALUES (N'636', N'48', N'LOCK_STATUS', N'设备操作状态', N'varchar', N'String', N'lockStatus', NULL, NULL, NULL, N'1', N'1', N'1', N'1', N'EQ', N'radio', N'', N'22', N'admin', N'2022-01-14 09:37:13.8200000', N'', NULL)
- ;
- INSERT INTO gen_table_column (column_id, table_id, column_name, column_comment, column_type, java_type, java_field, is_pk, is_increment, is_required, is_insert, is_edit, is_list, is_query, query_type, html_type, dict_type, sort, create_by, create_time, update_by, update_time) VALUES (N'637', N'48', N'ALARM_STATUS', N'设备报警状态', N'varchar', N'String', N'alarmStatus', NULL, NULL, NULL, N'1', N'1', N'1', N'1', N'EQ', N'radio', N'', N'23', N'admin', N'2022-01-14 09:37:13.8400000', N'', NULL)
- ;
- INSERT INTO gen_table_column (column_id, table_id, column_name, column_comment, column_type, java_type, java_field, is_pk, is_increment, is_required, is_insert, is_edit, is_list, is_query, query_type, html_type, dict_type, sort, create_by, create_time, update_by, update_time) VALUES (N'638', N'48', N'STATUS', N'状态', N'varchar', N'String', N'STATUS', NULL, NULL, NULL, N'1', N'1', N'1', N'1', N'EQ', N'radio', N'', N'24', N'admin', N'2022-01-14 09:37:13.8600000', N'', NULL)
- ;
- INSERT INTO gen_table_column (column_id, table_id, column_name, column_comment, column_type, java_type, java_field, is_pk, is_increment, is_required, is_insert, is_edit, is_list, is_query, query_type, html_type, dict_type, sort, create_by, create_time, update_by, update_time) VALUES (N'639', N'48', N'PRECISE_FLAG', N'精准标识(1=精准,0=不精准)', N'varchar', N'String', N'preciseFlag', NULL, NULL, NULL, N'1', N'1', N'1', N'1', N'EQ', N'input', N'', N'25', N'admin', N'2022-01-14 09:37:13.8800000', N'', NULL)
- ;
- INSERT INTO gen_table_column (column_id, table_id, column_name, column_comment, column_type, java_type, java_field, is_pk, is_increment, is_required, is_insert, is_edit, is_list, is_query, query_type, html_type, dict_type, sort, create_by, create_time, update_by, update_time) VALUES (N'741', N'54', N'ID', N'null', N'int', N'Long', N'ID', N'1', NULL, NULL, N'1', NULL, NULL, NULL, N'EQ', N'input', N'', N'1', N'admin', N'2022-02-22 01:28:32.6066667', NULL, N'2022-02-22 02:09:46.5800000')
- ;
- INSERT INTO gen_table_column (column_id, table_id, column_name, column_comment, column_type, java_type, java_field, is_pk, is_increment, is_required, is_insert, is_edit, is_list, is_query, query_type, html_type, dict_type, sort, create_by, create_time, update_by, update_time) VALUES (N'742', N'54', N'DEVICE_NO', N'绑定的关锁号', N'varchar', N'String', N'deviceNo', NULL, NULL, NULL, N'1', N'1', N'1', NULL, N'EQ', N'input', N'', N'2', N'admin', N'2022-02-22 01:28:32.6266667', NULL, N'2022-02-22 02:09:46.6133333')
- ;
- INSERT INTO gen_table_column (column_id, table_id, column_name, column_comment, column_type, java_type, java_field, is_pk, is_increment, is_required, is_insert, is_edit, is_list, is_query, query_type, html_type, dict_type, sort, create_by, create_time, update_by, update_time) VALUES (N'584', N'46', N'ID', N'主键', N'bigint', N'Long', N'ID', NULL, NULL, NULL, N'1', N'1', N'1', N'1', N'EQ', N'input', N'', N'1', N'admin', N'2022-01-11 02:40:46.3866667', N'', NULL)
- ;
- INSERT INTO gen_table_column (column_id, table_id, column_name, column_comment, column_type, java_type, java_field, is_pk, is_increment, is_required, is_insert, is_edit, is_list, is_query, query_type, html_type, dict_type, sort, create_by, create_time, update_by, update_time) VALUES (N'585', N'46', N'ALARM', N'报警', N'varchar', N'String', N'ALARM', NULL, NULL, NULL, N'1', N'1', N'1', N'1', N'EQ', N'input', N'', N'2', N'admin', N'2022-01-11 02:40:46.4066667', N'', NULL)
- ;
- INSERT INTO gen_table_column (column_id, table_id, column_name, column_comment, column_type, java_type, java_field, is_pk, is_increment, is_required, is_insert, is_edit, is_list, is_query, query_type, html_type, dict_type, sort, create_by, create_time, update_by, update_time) VALUES (N'586', N'46', N'STATUS', N'状态', N'varchar', N'String', N'STATUS', NULL, NULL, NULL, N'1', N'1', N'1', N'1', N'EQ', N'radio', N'', N'3', N'admin', N'2022-01-11 02:40:46.4266667', N'', NULL)
- ;
- INSERT INTO gen_table_column (column_id, table_id, column_name, column_comment, column_type, java_type, java_field, is_pk, is_increment, is_required, is_insert, is_edit, is_list, is_query, query_type, html_type, dict_type, sort, create_by, create_time, update_by, update_time) VALUES (N'587', N'46', N'PRECISE_FLAG', N'精准标识(1=精准,0=不精准)', N'varchar', N'String', N'preciseFlag', NULL, NULL, NULL, N'1', N'1', N'1', N'1', N'EQ', N'input', N'', N'4', N'admin', N'2022-01-11 02:40:46.4500000', N'', NULL)
- ;
- INSERT INTO gen_table_column (column_id, table_id, column_name, column_comment, column_type, java_type, java_field, is_pk, is_increment, is_required, is_insert, is_edit, is_list, is_query, query_type, html_type, dict_type, sort, create_by, create_time, update_by, update_time) VALUES (N'588', N'46', N'LAT', N'经度', N'decimal', N'Long', N'LAT', NULL, NULL, NULL, N'1', N'1', N'1', N'1', N'EQ', N'input', N'', N'5', N'admin', N'2022-01-11 02:40:46.4700000', N'', NULL)
- ;
- INSERT INTO gen_table_column (column_id, table_id, column_name, column_comment, column_type, java_type, java_field, is_pk, is_increment, is_required, is_insert, is_edit, is_list, is_query, query_type, html_type, dict_type, sort, create_by, create_time, update_by, update_time) VALUES (N'589', N'46', N'LON', N'纬度', N'decimal', N'Long', N'LON', NULL, NULL, NULL, N'1', N'1', N'1', N'1', N'EQ', N'input', N'', N'6', N'admin', N'2022-01-11 02:40:46.4933333', N'', NULL)
- ;
- INSERT INTO gen_table_column (column_id, table_id, column_name, column_comment, column_type, java_type, java_field, is_pk, is_increment, is_required, is_insert, is_edit, is_list, is_query, query_type, html_type, dict_type, sort, create_by, create_time, update_by, update_time) VALUES (N'590', N'46', N'ALTITUDE', N'海拔高度', N'int', N'Long', N'ALTITUDE', NULL, NULL, NULL, N'1', N'1', N'1', N'1', N'EQ', N'input', N'', N'7', N'admin', N'2022-01-11 02:40:46.5133333', N'', NULL)
- ;
- INSERT INTO gen_table_column (column_id, table_id, column_name, column_comment, column_type, java_type, java_field, is_pk, is_increment, is_required, is_insert, is_edit, is_list, is_query, query_type, html_type, dict_type, sort, create_by, create_time, update_by, update_time) VALUES (N'591', N'46', N'SPEED', N'速度', N'int', N'Long', N'SPEED', NULL, NULL, NULL, N'1', N'1', N'1', N'1', N'EQ', N'input', N'', N'8', N'admin', N'2022-01-11 02:40:46.5466667', N'', NULL)
- ;
- INSERT INTO gen_table_column (column_id, table_id, column_name, column_comment, column_type, java_type, java_field, is_pk, is_increment, is_required, is_insert, is_edit, is_list, is_query, query_type, html_type, dict_type, sort, create_by, create_time, update_by, update_time) VALUES (N'592', N'46', N'DIRECTION', N'方向', N'int', N'Long', N'DIRECTION', NULL, NULL, NULL, N'1', N'1', N'1', N'1', N'EQ', N'input', N'', N'9', N'admin', N'2022-01-11 02:40:46.5700000', N'', NULL)
- ;
- INSERT INTO gen_table_column (column_id, table_id, column_name, column_comment, column_type, java_type, java_field, is_pk, is_increment, is_required, is_insert, is_edit, is_list, is_query, query_type, html_type, dict_type, sort, create_by, create_time, update_by, update_time) VALUES (N'593', N'46', N'GPS_TIME', N'gps回传时间', N'datetime', N'Date', N'gpsTime', NULL, NULL, NULL, N'1', N'1', N'1', N'1', N'EQ', N'datetime', N'', N'10', N'admin', N'2022-01-11 02:40:46.5933333', N'', NULL)
- ;
- INSERT INTO gen_table_column (column_id, table_id, column_name, column_comment, column_type, java_type, java_field, is_pk, is_increment, is_required, is_insert, is_edit, is_list, is_query, query_type, html_type, dict_type, sort, create_by, create_time, update_by, update_time) VALUES (N'594', N'46', N'RECV_TIME', N'后台接收时间', N'datetime', N'Date', N'recvTime', NULL, NULL, NULL, N'1', N'1', N'1', N'1', N'EQ', N'datetime', N'', N'11', N'admin', N'2022-01-11 02:40:46.6166667', N'', NULL)
- ;
- INSERT INTO gen_table_column (column_id, table_id, column_name, column_comment, column_type, java_type, java_field, is_pk, is_increment, is_required, is_insert, is_edit, is_list, is_query, query_type, html_type, dict_type, sort, create_by, create_time, update_by, update_time) VALUES (N'595', N'46', N'REMARK', N'备注', N'varchar', N'String', N'REMARK', NULL, NULL, NULL, N'1', N'1', N'1', N'1', N'EQ', N'input', N'', N'12', N'admin', N'2022-01-11 02:40:46.6366667', N'', NULL)
- ;
- INSERT INTO gen_table_column (column_id, table_id, column_name, column_comment, column_type, java_type, java_field, is_pk, is_increment, is_required, is_insert, is_edit, is_list, is_query, query_type, html_type, dict_type, sort, create_by, create_time, update_by, update_time) VALUES (N'596', N'46', N'CREATE_BY', N'创建人', N'varchar', N'String', N'createBy', NULL, NULL, NULL, N'1', N'1', N'1', N'1', N'EQ', N'input', N'', N'13', N'admin', N'2022-01-11 02:40:46.6600000', N'', NULL)
- ;
- INSERT INTO gen_table_column (column_id, table_id, column_name, column_comment, column_type, java_type, java_field, is_pk, is_increment, is_required, is_insert, is_edit, is_list, is_query, query_type, html_type, dict_type, sort, create_by, create_time, update_by, update_time) VALUES (N'597', N'46', N'CREATE_TIME', N'创建时间', N'datetime', N'Date', N'createTime', NULL, NULL, NULL, N'1', N'1', N'1', N'1', N'EQ', N'datetime', N'', N'14', N'admin', N'2022-01-11 02:40:46.6800000', N'', NULL)
- ;
- INSERT INTO gen_table_column (column_id, table_id, column_name, column_comment, column_type, java_type, java_field, is_pk, is_increment, is_required, is_insert, is_edit, is_list, is_query, query_type, html_type, dict_type, sort, create_by, create_time, update_by, update_time) VALUES (N'598', N'46', N'UPDATE_BY', N'修改人', N'varchar', N'String', N'updateBy', NULL, NULL, NULL, N'1', N'1', N'1', N'1', N'EQ', N'input', N'', N'15', N'admin', N'2022-01-11 02:40:46.7000000', N'', NULL)
- ;
- INSERT INTO gen_table_column (column_id, table_id, column_name, column_comment, column_type, java_type, java_field, is_pk, is_increment, is_required, is_insert, is_edit, is_list, is_query, query_type, html_type, dict_type, sort, create_by, create_time, update_by, update_time) VALUES (N'599', N'46', N'UPDATE_TIME', N'修改时间', N'datetime', N'Date', N'updateTime', NULL, NULL, NULL, N'1', N'1', N'1', N'1', N'EQ', N'datetime', N'', N'16', N'admin', N'2022-01-11 02:40:46.7200000', N'', NULL)
- ;
- INSERT INTO gen_table_column (column_id, table_id, column_name, column_comment, column_type, java_type, java_field, is_pk, is_increment, is_required, is_insert, is_edit, is_list, is_query, query_type, html_type, dict_type, sort, create_by, create_time, update_by, update_time) VALUES (N'600', N'46', N'LOCATION_ID', N'位置信息表id', N'bigint', N'Long', N'locationId', NULL, NULL, NULL, N'1', N'1', N'1', N'1', N'EQ', N'input', N'', N'17', N'admin', N'2022-01-11 02:40:46.7400000', N'', NULL)
- ;
- INSERT INTO gen_table_column (column_id, table_id, column_name, column_comment, column_type, java_type, java_field, is_pk, is_increment, is_required, is_insert, is_edit, is_list, is_query, query_type, html_type, dict_type, sort, create_by, create_time, update_by, update_time) VALUES (N'601', N'46', N'DEVICE_NO', N'关锁编号', N'varchar', N'String', N'deviceNo', NULL, NULL, NULL, N'1', N'1', N'1', N'1', N'EQ', N'input', N'', N'18', N'admin', N'2022-01-11 02:40:46.7600000', N'', NULL)
- ;
- INSERT INTO gen_table_column (column_id, table_id, column_name, column_comment, column_type, java_type, java_field, is_pk, is_increment, is_required, is_insert, is_edit, is_list, is_query, query_type, html_type, dict_type, sort, create_by, create_time, update_by, update_time) VALUES (N'743', N'54', N'IC_CODE', N'IC卡卡号', N'varchar', N'String', N'icCode', NULL, NULL, NULL, N'1', N'1', N'1', N'1', N'EQ', N'input', N'', N'3', N'admin', N'2022-02-22 01:28:32.6433333', NULL, N'2022-02-22 02:09:46.6366667')
- ;
- INSERT INTO gen_table_column (column_id, table_id, column_name, column_comment, column_type, java_type, java_field, is_pk, is_increment, is_required, is_insert, is_edit, is_list, is_query, query_type, html_type, dict_type, sort, create_by, create_time, update_by, update_time) VALUES (N'744', N'54', N'IC_TYPE', N'卡的种类', N'int', N'Long', N'icType', NULL, NULL, NULL, N'1', N'1', N'1', N'1', N'EQ', N'select', N'JT_IC_TYPE', N'4', N'admin', N'2022-02-22 01:28:32.6633333', NULL, N'2022-02-22 02:09:46.6866667')
- ;
- INSERT INTO gen_table_column (column_id, table_id, column_name, column_comment, column_type, java_type, java_field, is_pk, is_increment, is_required, is_insert, is_edit, is_list, is_query, query_type, html_type, dict_type, sort, create_by, create_time, update_by, update_time) VALUES (N'745', N'54', N'IC_STATUS', N'卡的状态', N'int', N'Long', N'icStatus', NULL, NULL, NULL, N'1', N'1', N'1', N'1', N'EQ', N'select', N'JT_IC_STATUS', N'7', N'admin', N'2022-02-22 01:28:32.6833333', NULL, N'2022-02-22 02:09:46.7033333')
- ;
- INSERT INTO gen_table_column (column_id, table_id, column_name, column_comment, column_type, java_type, java_field, is_pk, is_increment, is_required, is_insert, is_edit, is_list, is_query, query_type, html_type, dict_type, sort, create_by, create_time, update_by, update_time) VALUES (N'746', N'54', N'MES_STREAM', N'消息流水号', N'varchar', N'String', N'mesStream', NULL, NULL, NULL, N'1', N'1', NULL, NULL, N'EQ', N'input', N'', N'8', N'admin', N'2022-02-22 01:28:32.7000000', NULL, N'2022-02-22 02:09:46.7266667')
- ;
- INSERT INTO gen_table_column (column_id, table_id, column_name, column_comment, column_type, java_type, java_field, is_pk, is_increment, is_required, is_insert, is_edit, is_list, is_query, query_type, html_type, dict_type, sort, create_by, create_time, update_by, update_time) VALUES (N'747', N'54', N'BUSINESS_STREAM', N'业务流水号', N'varchar', N'String', N'businessStream', NULL, NULL, NULL, N'1', N'1', NULL, NULL, N'EQ', N'input', N'', N'9', N'admin', N'2022-02-22 01:28:32.7200000', NULL, N'2022-02-22 02:09:46.7466667')
- ;
- INSERT INTO gen_table_column (column_id, table_id, column_name, column_comment, column_type, java_type, java_field, is_pk, is_increment, is_required, is_insert, is_edit, is_list, is_query, query_type, html_type, dict_type, sort, create_by, create_time, update_by, update_time) VALUES (N'653', N'49', N'CENTRE_LONGITUDE', N'圆形围栏的中心点经度坐标', N'real', N'Long', N'centreLongitude', NULL, NULL, NULL, N'1', N'1', N'1', NULL, N'EQ', N'input', N'', N'14', N'admin', N'2022-01-17 08:19:03.9600000', NULL, N'2022-01-17 08:38:38.4333333')
- ;
- INSERT INTO gen_table_column (column_id, table_id, column_name, column_comment, column_type, java_type, java_field, is_pk, is_increment, is_required, is_insert, is_edit, is_list, is_query, query_type, html_type, dict_type, sort, create_by, create_time, update_by, update_time) VALUES (N'654', N'49', N'CENTRE_LATITUDE', N'圆形围栏的中心点纬度坐标', N'varchar', N'String', N'centreLatitude', NULL, NULL, NULL, N'1', N'1', N'1', NULL, N'EQ', N'input', N'', N'15', N'admin', N'2022-01-17 08:19:03.9900000', NULL, N'2022-01-17 08:38:38.4500000')
- ;
- INSERT INTO gen_table_column (column_id, table_id, column_name, column_comment, column_type, java_type, java_field, is_pk, is_increment, is_required, is_insert, is_edit, is_list, is_query, query_type, html_type, dict_type, sort, create_by, create_time, update_by, update_time) VALUES (N'655', N'49', N'RADIUS', N'半径(M)', N'varchar', N'String', N'radius', NULL, NULL, NULL, N'1', N'1', N'1', NULL, N'EQ', N'input', N'', N'16', N'admin', N'2022-01-17 08:19:04.0100000', NULL, N'2022-01-17 08:38:38.4633333')
- ;
- INSERT INTO gen_table_column (column_id, table_id, column_name, column_comment, column_type, java_type, java_field, is_pk, is_increment, is_required, is_insert, is_edit, is_list, is_query, query_type, html_type, dict_type, sort, create_by, create_time, update_by, update_time) VALUES (N'734', N'53', N'END_STATUS', N'判断是否结束流,0未结束,1结束', N'varchar', N'String', N'endStatus', NULL, NULL, NULL, N'1', N'1', N'1', N'1', N'EQ', N'radio', N'', N'15', N'admin', N'2022-02-16 01:37:06.6233333', N'', NULL)
- ;
- INSERT INTO gen_table_column (column_id, table_id, column_name, column_comment, column_type, java_type, java_field, is_pk, is_increment, is_required, is_insert, is_edit, is_list, is_query, query_type, html_type, dict_type, sort, create_by, create_time, update_by, update_time) VALUES (N'735', N'53', N'START_ID', N'起始点的ID', N'bigint', N'Long', N'startId', NULL, NULL, NULL, N'1', N'1', N'1', N'1', N'EQ', N'input', N'', N'16', N'admin', N'2022-02-16 01:37:06.6400000', N'', NULL)
- ;
- INSERT INTO gen_table_column (column_id, table_id, column_name, column_comment, column_type, java_type, java_field, is_pk, is_increment, is_required, is_insert, is_edit, is_list, is_query, query_type, html_type, dict_type, sort, create_by, create_time, update_by, update_time) VALUES (N'736', N'53', N'OVERT_TIME', N'超时时间,单位分钟', N'bigint', N'Long', N'overtTime', NULL, NULL, NULL, N'1', N'1', N'1', N'1', N'EQ', N'input', N'', N'17', N'admin', N'2022-02-16 01:37:06.6600000', N'', NULL)
- ;
- INSERT INTO gen_table_column (column_id, table_id, column_name, column_comment, column_type, java_type, java_field, is_pk, is_increment, is_required, is_insert, is_edit, is_list, is_query, query_type, html_type, dict_type, sort, create_by, create_time, update_by, update_time) VALUES (N'737', N'53', N'EF_ID', N'电子围栏ID,用于指定路线用', N'int', N'Long', N'efId', NULL, NULL, NULL, N'1', N'1', N'1', N'1', N'EQ', N'input', N'', N'18', N'admin', N'2022-02-16 01:37:06.6800000', N'', NULL)
- ;
- INSERT INTO gen_table_column (column_id, table_id, column_name, column_comment, column_type, java_type, java_field, is_pk, is_increment, is_required, is_insert, is_edit, is_list, is_query, query_type, html_type, dict_type, sort, create_by, create_time, update_by, update_time) VALUES (N'738', N'53', N'END_TIME', N'解绑时间', N'datetime', N'Date', N'endTime', NULL, NULL, NULL, N'1', N'1', N'1', N'1', N'EQ', N'datetime', N'', N'19', N'admin', N'2022-02-16 01:37:06.6966667', N'', NULL)
- ;
- INSERT INTO gen_table_column (column_id, table_id, column_name, column_comment, column_type, java_type, java_field, is_pk, is_increment, is_required, is_insert, is_edit, is_list, is_query, query_type, html_type, dict_type, sort, create_by, create_time, update_by, update_time) VALUES (N'739', N'53', N'ADDRESS_EF_IDS', N'指定操作地点的围栏集合', N'varchar', N'String', N'addressEfIds', NULL, NULL, NULL, N'1', N'1', N'1', N'1', N'EQ', N'input', N'', N'21', N'admin', N'2022-02-16 01:37:06.7166667', N'', NULL)
- ;
- INSERT INTO gen_table_column (column_id, table_id, column_name, column_comment, column_type, java_type, java_field, is_pk, is_increment, is_required, is_insert, is_edit, is_list, is_query, query_type, html_type, dict_type, sort, create_by, create_time, update_by, update_time) VALUES (N'740', N'53', N'STOP_CAR_TIME', N'停车超时时间,单位分钟', N'bigint', N'Long', N'stopCarTime', NULL, NULL, NULL, N'1', N'1', N'1', N'1', N'EQ', N'input', N'', N'22', N'admin', N'2022-02-16 01:37:06.7400000', N'', NULL)
- ;
- INSERT INTO gen_table_column (column_id, table_id, column_name, column_comment, column_type, java_type, java_field, is_pk, is_increment, is_required, is_insert, is_edit, is_list, is_query, query_type, html_type, dict_type, sort, create_by, create_time, update_by, update_time) VALUES (N'768', N'56', N'LATITUDE', N'纬度', N'decimal', N'Long', N'LATITUDE', NULL, NULL, NULL, N'1', N'1', N'1', N'1', N'EQ', N'input', N'', N'16', N'admin', N'2022-03-09 07:21:20.0333333', N'', NULL)
- ;
- INSERT INTO gen_table_column (column_id, table_id, column_name, column_comment, column_type, java_type, java_field, is_pk, is_increment, is_required, is_insert, is_edit, is_list, is_query, query_type, html_type, dict_type, sort, create_by, create_time, update_by, update_time) VALUES (N'769', N'56', N'ADDRESS', N'地址', N'varchar', N'String', N'ADDRESS', NULL, NULL, NULL, N'1', N'1', N'1', N'1', N'EQ', N'input', N'', N'17', N'admin', N'2022-03-09 07:21:20.0433333', N'', NULL)
- ;
- CREATE TABLE JT_ALARM (
- ID bigint NOT NULL,
- LOCK_ID varchar(255) NOT NULL,
- CTP_TYPE varchar(50) NULL,
- CTP_DESC varchar(255) NULL,
- CTP_NUMBER int NULL,
- CTP_LEVEL int NULL,
- CAR_NO varchar(50) NULL,
- CREATE_TIME datetime NULL,
- CREATE_BY varchar(50) NULL,
- UPDATE_TIME datetime NULL,
- UPDATE_BY varchar(50) NULL,
- REMARK varchar(255) NULL,
- USER_ID bigint NULL,
- DEPT_ID bigint NULL,
- LONGITUDE decimal(18,10) NULL,
- LATITUDE decimal(18,10) NULL,
- ADDRESS varchar(255) NULL
- )
- ;
- CREATE TABLE JT_BASE_STATION_LOCATION_INFO (
- ID bigint NOT NULL,
- MCC varchar(255) NULL,
- MNC varchar(255) NULL,
- LAC varchar(255) NULL,
- CELL_ID varchar(255) NULL,
- SIGNAL_STRENGTH_IN_CSQ int NULL,
- SIGNAL_STRENGTH_IN_DBM int NULL,
- REMEARK varchar(255) NULL,
- CREATE_BY varchar(255) NULL,
- CREATE_TIME datetime NULL,
- UPDATE_BY varchar(255) NULL,
- UPDATE_TIME datetime NULL,
- GPS_LOCATION_ID bigint NULL
- )
- ;
- CREATE TABLE JT_CAR_BIND_INFO (
- ID bigint NOT NULL,
- DEVICE_ID varchar(255) NULL,
- CAR_NO varchar(255) NULL,
- CAR_TYPE varchar(255) NULL,
- ORIGIN varchar(255) NULL,
- DESTINATION varchar(255) NULL,
- STATUS varchar(255) NULL,
- REMARK varchar(255) NULL,
- CREATE_BY varchar(255) NULL,
- CREATE_TIME datetime NOT NULL,
- UPDATE_BY varchar(1) NULL,
- UPDATE_TIME datetime NULL,
- USER_ID bigint NULL,
- DEPT_ID bigint NULL,
- END_STATUS varchar(255) NULL,
- START_ID bigint NULL,
- OVERT_TIME bigint NULL,
- EF_ID int NULL,
- END_TIME datetime NULL,
- ADDRESS_EF_IDS varchar(255) NULL,
- STOP_CAR_TIME bigint NULL
- )
- ;
- CREATE TABLE JT_EARLYWARN_SETTINGS (
- ID bigint NOT NULL,
- ORIGIN varchar(50) NULL,
- DESTINATION varchar(50) NULL,
- CAR_TYPE varchar(50) NULL,
- DRIVING_OVER_TIME bigint NULL,
- STOP_OVER_TIME bigint NULL,
- CREATE_TIME datetime NOT NULL,
- CREATE_BY varchar(50) NULL,
- UPDATE_TIME datetime NULL,
- UPDATE_BY varchar(50) NULL,
- REMARK varchar(255) NULL,
- USER_ID bigint NULL,
- DEPT_ID bigint NULL
- )
- ;
- CREATE TABLE JT_ELECTRONIC_FENCE (
- ID bigint NOT NULL,
- ELECTRONIC_FENCE_NAME varchar(100) NULL,
- ELECTRONIC_FENCE_STATUS varchar(30) NULL,
- COORDINATE_LIST varchar(5000) NULL,
- VERSION varchar(30) NULL,
- USER_ID int NULL,
- DEPT_ID int NULL,
- CREATE_TIME datetime NULL,
- CREATE_USER varchar(30) NULL,
- UPDATE_TIME datetime NULL,
- UPDATE_USER varchar(30) NULL,
- REMARK varchar(500) NULL,
- ELECTRONIC_FENCE_TYPE int NULL,
- CENTRE_LONGITUDE real NULL,
- CENTRE_LATITUDE varchar(255) NULL,
- RADIUS varchar(255) NULL
- )
- ;
- CREATE TABLE JT_ELECTRONIC_FENCE_INCIDENT (
- ID bigint NOT NULL,
- HEAD_ID varchar(50) NULL,
- IE_TYPE varchar(30) NULL,
- INCIDENT_TYPE varchar(30) NULL,
- USER_ID int NULL,
- DEPT_ID int NULL,
- CREATE_TIME datetime NULL,
- CREATE_USER varchar(30) NULL,
- UPDATE_TIME datetime NULL,
- UPDATE_USER varchar(30) NULL,
- REMARKS varchar(500) NULL
- )
- ;
- CREATE TABLE JT_EXTRA_INFO_DESC (
- ID bigint NOT NULL,
- ODOMETER varchar(255) NULL,
- WNSS varchar(255) NULL,
- LBS_INFO varchar(255) NULL,
- DEVICE_POWER varchar(255) NULL,
- RESOURCE_DATA varchar(1000) NULL,
- REMARK varchar(255) NULL,
- CREATE_BY varchar(255) NULL,
- CREATE_TIME datetime NULL,
- UPDATE_BY varchar(255) NULL,
- UPDATE_TIME datetime NULL,
- LOCATION_ID bigint NULL,
- DEVICE__NO varchar(255) NULL
- )
- ;
- CREATE TABLE JT_GPS_LOCATION (
- ID bigint NOT NULL,
- ALARM varchar(255) NULL,
- STATUS varchar(255) NULL,
- PRECISE_FLAG varchar(255) NULL,
- LAT decimal(18,6) NULL,
- LON decimal(18,6) NULL,
- ALTITUDE int NULL,
- SPEED int NULL,
- DIRECTION int NULL,
- GPS_TIME datetime NULL,
- RECV_TIME datetime NULL,
- REMARK varchar(255) NULL,
- CREATE_BY varchar(255) NULL,
- CREATE_TIME datetime NULL,
- UPDATE_BY varchar(255) NULL,
- UPDATE_TIME datetime NULL,
- LOCATION_ID bigint NULL,
- DEVICE_NO varchar(50) NULL
- )
- ;
- CREATE TABLE JT_GROUP (
- ID bigint NOT NULL,
- GROUP_NAME varchar(100) NULL,
- CREATE_TIME datetime NULL,
- UPDATE_TIME datetime NULL,
- CREATE_BY varchar(50) NULL,
- UPDATE_BY varchar(50) NULL,
- USER_ID bigint NULL,
- DEPT_ID bigint NULL,
- REMARK varchar(255) NULL,
- GROUP_PARENT_ID bigint NULL
- )
- ;
- INSERT INTO JT_GROUP (ID, GROUP_NAME, CREATE_TIME, UPDATE_TIME, CREATE_BY, UPDATE_BY, USER_ID, DEPT_ID, REMARK, GROUP_PARENT_ID) VALUES (N'2', N'GPS设备', N'2022-08-03 13:49:40.280', NULL, N'admin', NULL, N'1', N'102', N'', NULL)
- ;
- CREATE TABLE JT_IC_CODE (
- ID int NOT NULL,
- DEVICE_NO varchar(255) NOT NULL,
- IC_CODE varchar(255) NOT NULL,
- IC_TYPE int NOT NULL,
- IC_STATUS int NOT NULL,
- MES_STREAM varchar(4) NULL,
- BUSINESS_STREAM varchar(4) NULL,
- USER_ID bigint NULL,
- DEPT_ID bigint NULL
- )
- ;
- CREATE TABLE JT_IC_CODE_USER (
- ID int NOT NULL,
- USER_ID int NULL,
- IC_CODE varchar(255) NOT NULL,
- IC_TYPE int NOT NULL,
- USER_NAME varchar(255) NOT NULL,
- REMARK varchar(255) NULL,
- CREATE_BY varchar(255) NULL,
- CREATE_TIME datetime NULL,
- UPDATE_BY varchar(1) NULL,
- UPDATE_TIME datetime NULL
- )
- ;
- CREATE TABLE JT_LOCATION_INFO (
- ID bigint NOT NULL,
- PROTOCOL_TYPE varchar(255) NULL,
- RESPONSE_TYPE varchar(255) NULL,
- RESPONSE_TYPE_BYTES_STR varchar(255) NULL,
- DEVICE_ID varchar(255) NULL,
- MSG_SEQ_NO varchar(255) NULL,
- BINARY_PROTOCOL varchar(1000) NULL,
- REMARK varchar(255) NULL,
- CREATE_BY varchar(255) NULL,
- CREATE_TIME datetime NULL,
- UPDATE_BY varchar(255) NULL,
- UPDATE_TIME datetime NULL
- )
- ;
- CREATE TABLE JT_LOCK_GROUP (
- ID bigint NOT NULL,
- GROUP_ID bigint NULL,
- LOCK_ID bigint NULL,
- CREATE_TIME datetime NULL,
- UPDATE_TIME datetime NULL,
- CREATE_BY varchar(50) NULL,
- UPDATE_BY varchar(50) NULL,
- USER_ID bigint NULL,
- DEPT_ID bigint NULL,
- REMARK varchar(255) NULL
- )
- ;
- CREATE TABLE JT_LOCK_STATUS (
- ID bigint NOT NULL,
- CREATE_TIME datetime NULL,
- UPDATE_TIME datetime NULL,
- CREATE_BY varchar(50) NULL,
- UPDATE_BY varchar(50) NULL,
- USER_ID bigint NULL,
- DEPT_ID bigint NULL,
- REMARK varchar(255) NULL,
- DEVICE_NO varchar(255) NULL,
- LONGITUDE decimal(18,10) NULL,
- LATITUDE decimal(18,10) NULL,
- GPS_TIME datetime NULL,
- SERVER_TIME datetime NULL,
- SPEED int NULL,
- MILEAGE varchar(50) NULL,
- ALTITUDE int NULL,
- DEVICE_STATUS varchar(255) NULL,
- ALARM_FLAG varchar(255) NULL,
- QUANTITY_OF_ELECTRICITY int NULL,
- ADDRESS varchar(255) NULL,
- ORIENTATION varchar(255) NULL,
- LOCK_STATUS varchar(50) NULL,
- ALARM_STATUS varchar(50) NULL,
- STATUS varchar(255) NULL,
- PRECISE_FLAG varchar(255) NULL
- )
- ;
- CREATE TABLE JT_SEAL_INFO (
- ID bigint NOT NULL,
- DEVICE_NO varchar(255) NULL,
- DEVICE_TYPE varchar(255) NULL,
- DEVICE_UTC int NULL,
- OVERDUE_TIME datetime NULL,
- FIRMWARE_VER varchar(255) NULL,
- ICCID varchar(255) NULL,
- SIM varchar(255) NULL,
- IMEI varchar(255) NULL,
- DEVICE_NAME varchar(255) NULL,
- UPLOAD_INTERVAL int NULL,
- IP_ADDR varchar(255) NULL,
- ENABLE_FLAG varchar(255) NULL,
- REMARK varchar(255) NULL,
- CREATE_BY varchar(255) NULL,
- CREATE_TIME datetime NULL,
- UPDATE_BY varchar(1) NULL,
- UPDATE_TIME datetime NULL,
- USER_ID bigint NULL,
- DEPT_ID bigint NULL,
- LOCK_GROUP_ID bigint NULL,
- PAST_PASSWORD varchar(255) NULL,
- NEW_PASSWORD varchar(255) NULL,
- MES_STREAM varchar(4) NULL,
- BUSINESS_STREAM varchar(4) NULL,
- CMD varchar(2) NULL,
- ELECTRONIC_FENCE_IDS varchar(255) NULL
- )
- ;
- CREATE TABLE JT_TRAJECTORY (
- ID bigint NOT NULL,
- DEVICE_ID bigint NULL,
- LONGITUDE decimal(18,6) NULL,
- LATITUDE decimal(18,6) NULL,
- ORIENTATION varchar(255) NULL,
- GPS_TIME datetime NULL,
- SERVER_TIME datetime NULL,
- SPEED int NULL,
- MILEAGE int NULL,
- ALTITUDE int NULL,
- DEVICE_STATUS varchar(255) NULL,
- ALARM_FLAG varchar(255) NULL,
- QUANTITY_OF_ELECTRICITY int NULL,
- ADDRESS varchar(255) NULL,
- REMARK varchar(255) NULL,
- CREATE_BY varchar(255) NULL,
- CREATE_TIME datetime NULL,
- UPDATE_BY varchar(255) NULL,
- UPDATE_TIME datetime NULL
- )
- ;
- CREATE TABLE JT_WORKFLOW (
- ID bigint NOT NULL,
- LOCK_ID varchar(255) NULL,
- W_TYPE varchar(50) NULL,
- W_DESC varchar(255) NULL,
- W_STATUS int NULL,
- W_STATUS_DESC varchar(255) NULL,
- SEAL_ADDRESS varchar(50) NULL,
- SEAL_MILEAGE varchar(50) NULL,
- SEAL_TYPE varchar(50) NULL,
- SEAL_PASSWORD varchar(50) NULL,
- SEAL_TIME datetime NULL,
- SEAL_VOLTAGE varchar(255) NULL,
- SEAL_ICCARD varchar(255) NULL,
- CREATE_TIME datetime NULL,
- CREATE_BY varchar(50) NULL,
- UPDATE_TIME datetime NULL,
- UPDATE_BY varchar(50) NULL,
- REMARK varchar(255) NULL,
- USER_ID bigint NULL,
- DEPT_ID bigint NULL
- )
- ;
- CREATE TABLE qrtz_blob_triggers (
- sched_name nvarchar(120) NOT NULL,
- trigger_name nvarchar(200) NOT NULL,
- trigger_group nvarchar(200) NOT NULL,
- blob_data varbinary(500) NULL
- )
- ;
- CREATE TABLE qrtz_calendars (
- sched_name nvarchar(120) NOT NULL,
- calendar_name nvarchar(200) NOT NULL,
- calendar varbinary(500) NOT NULL
- )
- ;
- CREATE TABLE qrtz_cron_triggers (
- sched_name nvarchar(120) NOT NULL,
- trigger_name nvarchar(200) NOT NULL,
- trigger_group nvarchar(200) NOT NULL,
- cron_expression nvarchar(200) NOT NULL,
- time_zone_id nvarchar(80) DEFAULT NULL NULL
- )
- ;
- INSERT INTO qrtz_cron_triggers VALUES (N'RuoyiScheduler', N'TASK_CLASS_NAME1', N'DEFAULT', N'0/10 * * * * ?', N'Asia/Shanghai')
- ;
- INSERT INTO qrtz_cron_triggers VALUES (N'RuoyiScheduler', N'TASK_CLASS_NAME2', N'DEFAULT', N'0/20 * * * * ?', N'Asia/Shanghai')
- ;
- INSERT INTO qrtz_cron_triggers VALUES (N'RuoyiScheduler', N'TASK_CLASS_NAME3', N'DEFAULT', N'0/20 * * * * ?', N'Asia/Shanghai')
- ;
- CREATE TABLE qrtz_fired_triggers (
- sched_name nvarchar(120) NOT NULL,
- entry_id nvarchar(95) NOT NULL,
- trigger_name nvarchar(200) NOT NULL,
- trigger_group nvarchar(200) NOT NULL,
- instance_name nvarchar(200) NOT NULL,
- fired_time bigint NOT NULL,
- sched_time bigint NOT NULL,
- priority int NOT NULL,
- state nvarchar(16) NOT NULL,
- job_name nvarchar(200) DEFAULT NULL NULL,
- job_group nvarchar(200) DEFAULT NULL NULL,
- is_nonconcurrent nvarchar(1) DEFAULT NULL NULL,
- requests_recovery nvarchar(1) DEFAULT NULL NULL
- )
- ;
- CREATE TABLE qrtz_job_details (
- sched_name nvarchar(120) NOT NULL,
- job_name nvarchar(200) NOT NULL,
- job_group nvarchar(200) NOT NULL,
- description nvarchar(250) DEFAULT NULL NULL,
- job_class_name nvarchar(250) NOT NULL,
- is_durable nvarchar(1) NOT NULL,
- is_nonconcurrent nvarchar(1) NOT NULL,
- is_update_data nvarchar(1) NOT NULL,
- requests_recovery nvarchar(1) NOT NULL,
- job_data varbinary(1500) NULL
- )
- ;
- CREATE TABLE qrtz_locks (
- sched_name nvarchar(120) NOT NULL,
- lock_name nvarchar(40) NOT NULL
- )
- ;
- INSERT INTO qrtz_locks VALUES (N'RuoyiScheduler', N'STATE_ACCESS')
- ;
- INSERT INTO qrtz_locks VALUES (N'RuoyiScheduler', N'TRIGGER_ACCESS')
- ;
- CREATE TABLE qrtz_paused_trigger_grps (
- sched_name nvarchar(120) NOT NULL,
- trigger_group nvarchar(200) NOT NULL
- )
- ;
- CREATE TABLE qrtz_scheduler_state (
- sched_name nvarchar(120) NOT NULL,
- instance_name nvarchar(200) NOT NULL,
- last_checkin_time bigint NOT NULL,
- checkin_interval bigint NOT NULL
- )
- ;
- INSERT INTO qrtz_scheduler_state VALUES (N'RuoyiScheduler', N'liujinpeng1672713722866', N'1672713802859', N'15000')
- ;
- CREATE TABLE qrtz_simple_triggers (
- sched_name nvarchar(120) NOT NULL,
- trigger_name nvarchar(200) NOT NULL,
- trigger_group nvarchar(200) NOT NULL,
- repeat_count bigint NOT NULL,
- repeat_interval bigint NOT NULL,
- times_triggered bigint NOT NULL
- )
- ;
- CREATE TABLE qrtz_simprop_triggers (
- sched_name nvarchar(120) NOT NULL,
- trigger_name nvarchar(200) NOT NULL,
- trigger_group nvarchar(200) NOT NULL,
- str_prop_1 nvarchar(512) DEFAULT NULL NULL,
- str_prop_2 nvarchar(512) DEFAULT NULL NULL,
- str_prop_3 nvarchar(512) DEFAULT NULL NULL,
- int_prop_1 int DEFAULT NULL NULL,
- int_prop_2 int DEFAULT NULL NULL,
- long_prop_1 bigint DEFAULT NULL NULL,
- long_prop_2 bigint DEFAULT NULL NULL,
- dec_prop_1 decimal(13,4) DEFAULT NULL NULL,
- dec_prop_2 decimal(13,4) DEFAULT NULL NULL,
- bool_prop_1 nvarchar(1) DEFAULT NULL NULL,
- bool_prop_2 nvarchar(1) DEFAULT NULL NULL
- )
- ;
- CREATE TABLE qrtz_triggers (
- sched_name nvarchar(120) NOT NULL,
- trigger_name nvarchar(200) NOT NULL,
- trigger_group nvarchar(200) NOT NULL,
- job_name nvarchar(200) NOT NULL,
- job_group nvarchar(200) NOT NULL,
- description nvarchar(250) DEFAULT NULL NULL,
- next_fire_time bigint DEFAULT NULL NULL,
- prev_fire_time bigint DEFAULT NULL NULL,
- priority int DEFAULT NULL NULL,
- trigger_state nvarchar(16) NOT NULL,
- trigger_type nvarchar(8) NOT NULL,
- start_time bigint NOT NULL,
- end_time bigint DEFAULT NULL NULL,
- calendar_name nvarchar(200) DEFAULT NULL NULL,
- misfire_instr smallint DEFAULT NULL NULL,
- job_data varbinary(1500) NULL
- )
- ;
- -- ----------------------------
- -- Records of qrtz_triggers
- -- ----------------------------
- INSERT INTO qrtz_triggers VALUES (N'RuoyiScheduler', N'TASK_CLASS_NAME1', N'DEFAULT', N'TASK_CLASS_NAME1', N'DEFAULT', NULL, N'1672713730000', N'-1', N'5', N'PAUSED', N'CRON', N'1672713723000', N'0', NULL, N'2', N'')
- ;
- INSERT INTO qrtz_triggers VALUES (N'RuoyiScheduler', N'TASK_CLASS_NAME2', N'DEFAULT', N'TASK_CLASS_NAME2', N'DEFAULT', NULL, N'1672713740000', N'-1', N'5', N'PAUSED', N'CRON', N'1672713723000', N'0', NULL, N'2', N'')
- ;
- INSERT INTO qrtz_triggers VALUES (N'RuoyiScheduler', N'TASK_CLASS_NAME3', N'DEFAULT', N'TASK_CLASS_NAME3', N'DEFAULT', NULL, N'1672713740000', N'-1', N'5', N'PAUSED', N'CRON', N'1672713723000', N'0', NULL, N'2', N'')
- ;
- CREATE TABLE S_ConfigInfo (
- ConfigID int NOT NULL,
- D_DataType nvarchar(50) NULL,
- D_DataConnection nvarchar(500) NULL,
- D_DataSelectTable nvarchar(50) NULL,
- D_DataSelectKeyCol nvarchar(50) NULL,
- D_DataSelectWheres nvarchar(200) NULL,
- D_DataDisplay nvarchar(50) NULL,
- D_DataJudge nvarchar(50) NULL,
- D_DataControl nvarchar(50) NULL,
- D_DataStatus nvarchar(50) NULL,
- D_DataStatusDesc nvarchar(50) NULL,
- D_DataPackageType nvarchar(50) NULL,
- D_DataPackageTypeDesc nvarchar(50) NULL,
- D_JudgeTable nvarchar(50) NULL,
- D_JudgeSelectKeyCol nvarchar(50) NULL,
- D_JudgeSelectWheres nvarchar(50) NULL,
- D_JudgeUpdateCol nvarchar(50) NULL,
- D_JudgeUpdateColDesc nvarchar(50) NULL,
- D_CheckTable nvarchar(50) NULL,
- D_CheckSelectKeyCol nvarchar(50) NULL,
- D_CheckSelectWheres nvarchar(50) NULL,
- D_CheckUpdateCol nvarchar(50) NULL,
- D_CheckUpdateColDesc nvarchar(50) NULL,
- D_JudgeIsWrite bit NULL,
- D_CheckIsWrite bit NULL,
- D_ServerIsWrite bit NULL,
- D_DataZYDan nvarchar(50) NULL,
- D_DataFYDan nvarchar(50) NULL,
- D_DataHWDan nvarchar(50) NULL,
- D_DataWeight nvarchar(100) NULL,
- D_DataWeightValue nvarchar(50) NULL,
- B_DelBarCode nvarchar(200) NULL,
- B_DefaultBarCode nvarchar(200) NULL,
- B_BarCodeMaxTime int NULL,
- B_BarCodeMinTime int NULL,
- U_MemberCacheURL nvarchar(200) NULL,
- U_FileServerURL nvarchar(200) NULL,
- U_JudgeStationURL nvarchar(200) NULL,
- U_IsCheckStation bit NULL,
- H_DeviceHeartBeat int NULL,
- H_DeviceOffLine int NULL,
- H_PackgeTimeout int NULL,
- H_ServerLoop int NULL,
- H_DeviceReflash int NULL,
- J_JudgeTimeOut int NULL,
- J_JudgeConsion int NULL,
- J_JudgeTimeRemind int NULL,
- J_JudgeNumRemind int NULL,
- J_JudgeThem int NULL
- )
- ;
- CREATE TABLE sys_config (
- config_id int NOT NULL,
- config_name nvarchar(100) DEFAULT (N'') NULL,
- config_key nvarchar(100) DEFAULT (N'') NULL,
- config_value nvarchar(100) DEFAULT (N'') NULL,
- config_type nchar(1) DEFAULT (N'N') NULL,
- create_by nvarchar(64) DEFAULT (N'') NULL,
- create_time datetime(6) DEFAULT NULL NULL,
- update_by nvarchar(64) DEFAULT (N'') NULL,
- update_time datetime(6) DEFAULT NULL NULL,
- remark nvarchar(500) DEFAULT NULL NULL
- )
- ;
- INSERT INTO sys_config (config_id, config_name, config_key, config_value, config_type, create_by, create_time, update_by, update_time, remark) VALUES (N'1', N'主框架页-默认皮肤样式名称', N'sys.index.skinName', N'skin-blue', N'Y', N'admin', N'2018-03-16 11:33:00.0000000', N'admin', N'2018-03-16 11:33:00.0000000', N'蓝色 skin-blue、绿色 skin-green、紫色 skin-purple、红色 skin-red、黄色 skin-yellow')
- ;
- INSERT INTO sys_config (config_id, config_name, config_key, config_value, config_type, create_by, create_time, update_by, update_time, remark) VALUES (N'2', N'用户管理-账号初始密码', N'sys.user.initPassword', N'123456', N'Y', N'admin', N'2018-03-16 11:33:00.0000000', N'admin', N'2018-03-16 11:33:00.0000000', N'初始化密码 123456')
- ;
- INSERT INTO sys_config (config_id, config_name, config_key, config_value, config_type, create_by, create_time, update_by, update_time, remark) VALUES (N'3', N'主框架页-侧边栏主题', N'sys.index.sideTheme', N'theme-dark', N'Y', N'admin', N'2018-03-16 11:33:00.0000000', N'admin', N'2019-08-05 16:27:09.0500000', N'深色主题theme-dark,浅色主题theme-light, 深蓝主题theme-blue')
- ;
- INSERT INTO sys_config (config_id, config_name, config_key, config_value, config_type, create_by, create_time, update_by, update_time, remark) VALUES (N'4', N'关锁电量的配置,低于该值触发电量过低警告。', N'web.lock.electric', N'30', N'Y', N'admin', N'2022-01-12 06:27:28.0500000', N'admin', N'2022-02-22 07:52:17.6166667', N'')
- ;
- INSERT INTO sys_config (config_id, config_name, config_key, config_value, config_type, create_by, create_time, update_by, update_time, remark) VALUES (N'5', N'地图中心的经度', N'web.gps.lon', N'103.939265', N'Y', N'admin', N'2022-03-04 07:33:42.2400000', N'admin', N'2022-03-08 07:09:46.0533333', N'')
- ;
- INSERT INTO sys_config (config_id, config_name, config_key, config_value, config_type, create_by, create_time, update_by, update_time, remark) VALUES (N'6', N'地图中心的纬度', N'web.gps.lat', N'22.529438', N'Y', N'admin', N'2022-03-04 07:34:05.2700000', N'admin', N'2022-03-08 07:09:34.7133333', N'')
- ;
- CREATE TABLE sys_dept (
- dept_id int NOT NULL,
- parent_id int DEFAULT ((0)) NULL,
- ancestors nvarchar(50) DEFAULT (N'') NULL,
- dept_name nvarchar(30) DEFAULT (N'') NULL,
- order_num int DEFAULT ((0)) NULL,
- leader nvarchar(20) DEFAULT NULL NULL,
- phone nvarchar(11) DEFAULT NULL NULL,
- email nvarchar(50) DEFAULT NULL NULL,
- status nchar(1) DEFAULT (N'0') NULL,
- del_flag nchar(1) DEFAULT (N'0') NULL,
- create_by nvarchar(64) DEFAULT (N'') NULL,
- create_time datetime(6) DEFAULT NULL NULL,
- update_by nvarchar(64) DEFAULT (N'') NULL,
- update_time datetime(6) DEFAULT NULL NULL
- )
- ;
- INSERT INTO sys_dept (dept_id, parent_id, ancestors, dept_name, order_num, leader, phone, email, status, del_flag, create_by, create_time, update_by, update_time) VALUES (N'100', N'0', N'0', N'在途监管系统', N'0', N'若依', N'15888888888', N'ry@qq.com', N'0', N'0', N'admin', N'2018-03-16 11:33:00.0000000', N'admin', N'2022-03-04 02:26:31.4900000')
- ;
- INSERT INTO sys_dept (dept_id, parent_id, ancestors, dept_name, order_num, leader, phone, email, status, del_flag, create_by, create_time, update_by, update_time) VALUES (N'216', N'100', N'0,100', N'北投建设', N'0', NULL, NULL, NULL, N'0', N'2', N'admin', N'2022-01-20 05:30:28.8433333', N'', NULL)
- ;
- INSERT INTO sys_dept (dept_id, parent_id, ancestors, dept_name, order_num, leader, phone, email, status, del_flag, create_by, create_time, update_by, update_time) VALUES (N'102', N'100', N'0,100', N'河口海关', N'2', N'若依', N'15888888888', N'ry@qq.com', N'0', N'0', N'admin', N'2018-03-16 11:33:00.0000000', N'admin', N'2022-03-04 02:26:31.4700000')
- ;
- INSERT INTO sys_dept (dept_id, parent_id, ancestors, dept_name, order_num, leader, phone, email, status, del_flag, create_by, create_time, update_by, update_time) VALUES (N'217', N'100', N'0,100', N'1', N'1', N'1', NULL, NULL, N'0', N'2', N'admin', N'2022-01-20 06:09:02.2000000', N'', NULL)
- ;
- INSERT INTO sys_dept (dept_id, parent_id, ancestors, dept_name, order_num, leader, phone, email, status, del_flag, create_by, create_time, update_by, update_time) VALUES (N'218', N'100', N'0,100', N'广西北投建设投资有限公司', N'1', NULL, NULL, NULL, N'0', N'0', N'admin', N'2022-01-20 06:13:01.2900000', N'', NULL)
- ;
- CREATE TABLE sys_dict_data (
- dict_code int NOT NULL,
- dict_sort int DEFAULT ((0)) NULL,
- dict_label nvarchar(100) DEFAULT (N'') NULL,
- dict_value nvarchar(100) DEFAULT (N'') NULL,
- dict_type nvarchar(100) DEFAULT (N'') NULL,
- css_class nvarchar(100) DEFAULT NULL NULL,
- list_class nvarchar(100) DEFAULT NULL NULL,
- is_default nchar(1) DEFAULT (N'N') NULL,
- status nchar(1) DEFAULT (N'0') NULL,
- create_by nvarchar(64) DEFAULT (N'') NULL,
- create_time datetime(6) DEFAULT NULL NULL,
- update_by nvarchar(64) DEFAULT (N'') NULL,
- update_time datetime(6) DEFAULT NULL NULL,
- remark nvarchar(500) DEFAULT NULL NULL
- )
- ;
- INSERT INTO sys_dict_data (dict_code, dict_sort, dict_label, dict_value, dict_type, css_class, list_class, is_default, status, create_by, create_time, update_by, update_time, remark) VALUES (N'1', N'1', N'男', N'0', N'sys_user_sex', N'', N'', N'Y', N'0', N'admin', N'2018-03-16 11:33:00.0000000', N'ry', N'2018-03-16 11:33:00.0000000', N'性别男')
- ;
- INSERT INTO sys_dict_data (dict_code, dict_sort, dict_label, dict_value, dict_type, css_class, list_class, is_default, status, create_by, create_time, update_by, update_time, remark) VALUES (N'2', N'2', N'女', N'1', N'sys_user_sex', N'', N'', N'N', N'0', N'admin', N'2018-03-16 11:33:00.0000000', N'ry', N'2018-03-16 11:33:00.0000000', N'性别女')
- ;
- INSERT INTO sys_dict_data (dict_code, dict_sort, dict_label, dict_value, dict_type, css_class, list_class, is_default, status, create_by, create_time, update_by, update_time, remark) VALUES (N'3', N'3', N'未知', N'2', N'sys_user_sex', N'', N'', N'N', N'0', N'admin', N'2018-03-16 11:33:00.0000000', N'ry', N'2018-03-16 11:33:00.0000000', N'性别未知')
- ;
- INSERT INTO sys_dict_data (dict_code, dict_sort, dict_label, dict_value, dict_type, css_class, list_class, is_default, status, create_by, create_time, update_by, update_time, remark) VALUES (N'4', N'1', N'显示', N'0', N'sys_show_hide', N'', N'primary', N'Y', N'0', N'admin', N'2018-03-16 11:33:00.0000000', N'ry', N'2018-03-16 11:33:00.0000000', N'显示菜单')
- ;
- INSERT INTO sys_dict_data (dict_code, dict_sort, dict_label, dict_value, dict_type, css_class, list_class, is_default, status, create_by, create_time, update_by, update_time, remark) VALUES (N'5', N'2', N'隐藏', N'1', N'sys_show_hide', N'', N'danger', N'N', N'0', N'admin', N'2018-03-16 11:33:00.0000000', N'ry', N'2018-03-16 11:33:00.0000000', N'隐藏菜单')
- ;
- INSERT INTO sys_dict_data (dict_code, dict_sort, dict_label, dict_value, dict_type, css_class, list_class, is_default, status, create_by, create_time, update_by, update_time, remark) VALUES (N'6', N'1', N'正常', N'0', N'sys_normal_disable', N'', N'primary', N'Y', N'0', N'admin', N'2018-03-16 11:33:00.0000000', N'ry', N'2018-03-16 11:33:00.0000000', N'正常状态')
- ;
- INSERT INTO sys_dict_data (dict_code, dict_sort, dict_label, dict_value, dict_type, css_class, list_class, is_default, status, create_by, create_time, update_by, update_time, remark) VALUES (N'7', N'2', N'停用', N'1', N'sys_normal_disable', N'', N'danger', N'N', N'0', N'admin', N'2018-03-16 11:33:00.0000000', N'ry', N'2018-03-16 11:33:00.0000000', N'停用状态')
- ;
- INSERT INTO sys_dict_data (dict_code, dict_sort, dict_label, dict_value, dict_type, css_class, list_class, is_default, status, create_by, create_time, update_by, update_time, remark) VALUES (N'8', N'1', N'正常', N'0', N'sys_job_status', N'', N'primary', N'Y', N'0', N'admin', N'2018-03-16 11:33:00.0000000', N'ry', N'2018-03-16 11:33:00.0000000', N'正常状态')
- ;
- INSERT INTO sys_dict_data (dict_code, dict_sort, dict_label, dict_value, dict_type, css_class, list_class, is_default, status, create_by, create_time, update_by, update_time, remark) VALUES (N'9', N'2', N'暂停', N'1', N'sys_job_status', N'', N'danger', N'N', N'0', N'admin', N'2018-03-16 11:33:00.0000000', N'ry', N'2018-03-16 11:33:00.0000000', N'停用状态')
- ;
- INSERT INTO sys_dict_data (dict_code, dict_sort, dict_label, dict_value, dict_type, css_class, list_class, is_default, status, create_by, create_time, update_by, update_time, remark) VALUES (N'10', N'1', N'默认', N'DEFAULT', N'sys_job_group', N'', N'', N'Y', N'0', N'admin', N'2018-03-16 11:33:00.0000000', N'ry', N'2018-03-16 11:33:00.0000000', N'默认分组')
- ;
- INSERT INTO sys_dict_data (dict_code, dict_sort, dict_label, dict_value, dict_type, css_class, list_class, is_default, status, create_by, create_time, update_by, update_time, remark) VALUES (N'11', N'2', N'系统', N'SYSTEM', N'sys_job_group', N'', N'', N'N', N'0', N'admin', N'2018-03-16 11:33:00.0000000', N'ry', N'2018-03-16 11:33:00.0000000', N'系统分组')
- ;
- INSERT INTO sys_dict_data (dict_code, dict_sort, dict_label, dict_value, dict_type, css_class, list_class, is_default, status, create_by, create_time, update_by, update_time, remark) VALUES (N'12', N'1', N'是', N'Y', N'sys_yes_no', N'', N'primary', N'Y', N'0', N'admin', N'2018-03-16 11:33:00.0000000', N'ry', N'2018-03-16 11:33:00.0000000', N'系统默认是')
- ;
- INSERT INTO sys_dict_data (dict_code, dict_sort, dict_label, dict_value, dict_type, css_class, list_class, is_default, status, create_by, create_time, update_by, update_time, remark) VALUES (N'13', N'2', N'否', N'N', N'sys_yes_no', N'', N'danger', N'N', N'0', N'admin', N'2018-03-16 11:33:00.0000000', N'ry', N'2018-03-16 11:33:00.0000000', N'系统默认否')
- ;
- INSERT INTO sys_dict_data (dict_code, dict_sort, dict_label, dict_value, dict_type, css_class, list_class, is_default, status, create_by, create_time, update_by, update_time, remark) VALUES (N'14', N'1', N'通知', N'1', N'sys_notice_type', N'', N'warning', N'Y', N'0', N'admin', N'2018-03-16 11:33:00.0000000', N'ry', N'2018-03-16 11:33:00.0000000', N'通知')
- ;
- INSERT INTO sys_dict_data (dict_code, dict_sort, dict_label, dict_value, dict_type, css_class, list_class, is_default, status, create_by, create_time, update_by, update_time, remark) VALUES (N'15', N'2', N'公告', N'2', N'sys_notice_type', N'', N'success', N'N', N'0', N'admin', N'2018-03-16 11:33:00.0000000', N'ry', N'2018-03-16 11:33:00.0000000', N'公告')
- ;
- INSERT INTO sys_dict_data (dict_code, dict_sort, dict_label, dict_value, dict_type, css_class, list_class, is_default, status, create_by, create_time, update_by, update_time, remark) VALUES (N'16', N'1', N'正常', N'0', N'sys_notice_status', N'', N'primary', N'Y', N'0', N'admin', N'2018-03-16 11:33:00.0000000', N'ry', N'2018-03-16 11:33:00.0000000', N'正常状态')
- ;
- INSERT INTO sys_dict_data (dict_code, dict_sort, dict_label, dict_value, dict_type, css_class, list_class, is_default, status, create_by, create_time, update_by, update_time, remark) VALUES (N'17', N'2', N'关闭', N'1', N'sys_notice_status', N'', N'danger', N'N', N'0', N'admin', N'2018-03-16 11:33:00.0000000', N'ry', N'2018-03-16 11:33:00.0000000', N'关闭状态')
- ;
- INSERT INTO sys_dict_data (dict_code, dict_sort, dict_label, dict_value, dict_type, css_class, list_class, is_default, status, create_by, create_time, update_by, update_time, remark) VALUES (N'18', N'1', N'新增', N'1', N'sys_oper_type', N'', N'info', N'N', N'0', N'admin', N'2018-03-16 11:33:00.0000000', N'admin', N'2019-08-07 17:22:17.0800000', N'新增操作')
- ;
- INSERT INTO sys_dict_data (dict_code, dict_sort, dict_label, dict_value, dict_type, css_class, list_class, is_default, status, create_by, create_time, update_by, update_time, remark) VALUES (N'19', N'2', N'修改', N'2', N'sys_oper_type', N'', N'info', N'N', N'0', N'admin', N'2018-03-16 11:33:00.0000000', N'ry', N'2018-03-16 11:33:00.0000000', N'修改操作')
- ;
- INSERT INTO sys_dict_data (dict_code, dict_sort, dict_label, dict_value, dict_type, css_class, list_class, is_default, status, create_by, create_time, update_by, update_time, remark) VALUES (N'20', N'3', N'删除', N'3', N'sys_oper_type', N'', N'danger', N'N', N'0', N'admin', N'2018-03-16 11:33:00.0000000', N'ry', N'2018-03-16 11:33:00.0000000', N'删除操作')
- ;
- INSERT INTO sys_dict_data (dict_code, dict_sort, dict_label, dict_value, dict_type, css_class, list_class, is_default, status, create_by, create_time, update_by, update_time, remark) VALUES (N'21', N'4', N'授权', N'4', N'sys_oper_type', N'', N'primary', N'N', N'0', N'admin', N'2018-03-16 11:33:00.0000000', N'ry', N'2018-03-16 11:33:00.0000000', N'授权操作')
- ;
- INSERT INTO sys_dict_data (dict_code, dict_sort, dict_label, dict_value, dict_type, css_class, list_class, is_default, status, create_by, create_time, update_by, update_time, remark) VALUES (N'22', N'5', N'导出', N'5', N'sys_oper_type', N'', N'warning', N'N', N'0', N'admin', N'2018-03-16 11:33:00.0000000', N'ry', N'2018-03-16 11:33:00.0000000', N'导出操作')
- ;
- INSERT INTO sys_dict_data (dict_code, dict_sort, dict_label, dict_value, dict_type, css_class, list_class, is_default, status, create_by, create_time, update_by, update_time, remark) VALUES (N'23', N'6', N'导入', N'6', N'sys_oper_type', N'', N'warning', N'N', N'0', N'admin', N'2018-03-16 11:33:00.0000000', N'ry', N'2018-03-16 11:33:00.0000000', N'导入操作')
- ;
- INSERT INTO sys_dict_data (dict_code, dict_sort, dict_label, dict_value, dict_type, css_class, list_class, is_default, status, create_by, create_time, update_by, update_time, remark) VALUES (N'24', N'7', N'强退', N'7', N'sys_oper_type', N'', N'danger', N'N', N'0', N'admin', N'2018-03-16 11:33:00.0000000', N'ry', N'2018-03-16 11:33:00.0000000', N'强退操作')
- ;
- INSERT INTO sys_dict_data (dict_code, dict_sort, dict_label, dict_value, dict_type, css_class, list_class, is_default, status, create_by, create_time, update_by, update_time, remark) VALUES (N'25', N'8', N'生成代码', N'8', N'sys_oper_type', N'', N'warning', N'N', N'0', N'admin', N'2018-03-16 11:33:00.0000000', N'ry', N'2018-03-16 11:33:00.0000000', N'生成操作')
- ;
- INSERT INTO sys_dict_data (dict_code, dict_sort, dict_label, dict_value, dict_type, css_class, list_class, is_default, status, create_by, create_time, update_by, update_time, remark) VALUES (N'26', N'9', N'清空数据', N'9', N'sys_oper_type', N'', N'danger', N'N', N'0', N'admin', N'2018-03-16 11:33:00.0000000', N'ry', N'2018-03-16 11:33:00.0000000', N'清空操作')
- ;
- INSERT INTO sys_dict_data (dict_code, dict_sort, dict_label, dict_value, dict_type, css_class, list_class, is_default, status, create_by, create_time, update_by, update_time, remark) VALUES (N'108', N'1', N'成功', N'0', N'sys_common_status', N'', N'primary', N'N', N'0', N'admin', N'2018-03-16 11:33:00.0000000', N'ry', N'2018-03-16 11:33:00.0000000', N'正常状态')
- ;
- INSERT INTO sys_dict_data (dict_code, dict_sort, dict_label, dict_value, dict_type, css_class, list_class, is_default, status, create_by, create_time, update_by, update_time, remark) VALUES (N'109', N'2', N'失败', N'1', N'sys_common_status', N'', N'danger', N'N', N'0', N'admin', N'2018-03-16 11:33:00.0000000', N'ry', N'2018-03-16 11:33:00.0000000', N'停用状态')
- ;
- INSERT INTO sys_dict_data (dict_code, dict_sort, dict_label, dict_value, dict_type, css_class, list_class, is_default, status, create_by, create_time, update_by, update_time, remark) VALUES (N'110', N'1', N'启用', N'1', N'JT_ENABLE_FLAG', NULL, N'success', N'Y', N'0', N'admin', N'2021-05-26 08:58:49.6570000', N'', NULL, NULL)
- ;
- INSERT INTO sys_dict_data (dict_code, dict_sort, dict_label, dict_value, dict_type, css_class, list_class, is_default, status, create_by, create_time, update_by, update_time, remark) VALUES (N'111', N'2', N'不启用', N'0', N'JT_ENABLE_FLAG', NULL, N'danger', N'Y', N'0', N'admin', N'2021-05-26 08:59:08.8630000', N'', NULL, NULL)
- ;
- INSERT INTO sys_dict_data (dict_code, dict_sort, dict_label, dict_value, dict_type, css_class, list_class, is_default, status, create_by, create_time, update_by, update_time, remark) VALUES (N'112', N'0', N'施封', N'SF', N'JT_LOCK_TYPE', N'', N'default', N'Y', N'0', N'admin', N'2021-05-27 01:45:51.4330000', N'admin', N'2021-05-27 01:47:24.6970000', N'')
- ;
- INSERT INTO sys_dict_data (dict_code, dict_sort, dict_label, dict_value, dict_type, css_class, list_class, is_default, status, create_by, create_time, update_by, update_time, remark) VALUES (N'113', N'1', N'验封', N'YF', N'JT_LOCK_TYPE', NULL, NULL, N'Y', N'0', N'admin', N'2021-05-27 01:47:54.4500000', N'', NULL, NULL)
- ;
- INSERT INTO sys_dict_data (dict_code, dict_sort, dict_label, dict_value, dict_type, css_class, list_class, is_default, status, create_by, create_time, update_by, update_time, remark) VALUES (N'114', N'2', N'解封', N'JF', N'JT_LOCK_TYPE', NULL, NULL, N'Y', N'0', N'admin', N'2021-05-27 01:48:22.0030000', N'', NULL, NULL)
- ;
- INSERT INTO sys_dict_data (dict_code, dict_sort, dict_label, dict_value, dict_type, css_class, list_class, is_default, status, create_by, create_time, update_by, update_time, remark) VALUES (N'116', N'1', N'异常', N'1', N'JT_W_TYPE', NULL, N'warning', N'Y', N'0', N'admin', N'2021-05-27 01:50:27.8100000', N'', NULL, NULL)
- ;
- INSERT INTO sys_dict_data (dict_code, dict_sort, dict_label, dict_value, dict_type, css_class, list_class, is_default, status, create_by, create_time, update_by, update_time, remark) VALUES (N'119', N'0', N'IC卡', N'ICCODE', N'JT_OP_LOCK', NULL, NULL, N'Y', N'0', N'admin', N'2021-05-27 01:54:23.6070000', N'', NULL, NULL)
- ;
- INSERT INTO sys_dict_data (dict_code, dict_sort, dict_label, dict_value, dict_type, css_class, list_class, is_default, status, create_by, create_time, update_by, update_time, remark) VALUES (N'122', N'0', N'大型货车', N'B2', N'JT_CAR_TYPE', NULL, NULL, N'Y', N'0', N'admin', N'2021-05-27 02:02:18.9670000', N'', NULL, NULL)
- ;
- INSERT INTO sys_dict_data (dict_code, dict_sort, dict_label, dict_value, dict_type, css_class, list_class, is_default, status, create_by, create_time, update_by, update_time, remark) VALUES (N'126', N'2', N'超出范围', N'CWFW', N'JT_ALARM_TYPE', NULL, NULL, N'Y', N'0', N'admin', N'2021-05-27 02:06:27.8370000', N'', NULL, NULL)
- ;
- INSERT INTO sys_dict_data (dict_code, dict_sort, dict_label, dict_value, dict_type, css_class, list_class, is_default, status, create_by, create_time, update_by, update_time, remark) VALUES (N'127', N'0', N'一级', N'0', N'JT_ALARM_LEVEL', NULL, NULL, N'Y', N'0', N'admin', N'2021-05-27 02:12:02.3730000', N'', NULL, NULL)
- ;
- INSERT INTO sys_dict_data (dict_code, dict_sort, dict_label, dict_value, dict_type, css_class, list_class, is_default, status, create_by, create_time, update_by, update_time, remark) VALUES (N'128', N'1', N'二级', N'1', N'JT_ALARM_LEVEL', NULL, NULL, N'Y', N'0', N'admin', N'2021-05-27 02:12:09.8870000', N'', NULL, NULL)
- ;
- INSERT INTO sys_dict_data (dict_code, dict_sort, dict_label, dict_value, dict_type, css_class, list_class, is_default, status, create_by, create_time, update_by, update_time, remark) VALUES (N'129', N'2', N'三级', N'2', N'JT_ALARM_LEVEL', NULL, NULL, N'Y', N'0', N'admin', N'2021-05-27 02:12:17.7830000', N'', NULL, NULL)
- ;
- INSERT INTO sys_dict_data (dict_code, dict_sort, dict_label, dict_value, dict_type, css_class, list_class, is_default, status, create_by, create_time, update_by, update_time, remark) VALUES (N'115', N'0', N'正常', N'0', N'JT_W_TYPE', NULL, NULL, N'Y', N'0', N'admin', N'2021-05-27 01:50:11.9930000', N'', NULL, NULL)
- ;
- INSERT INTO sys_dict_data (dict_code, dict_sort, dict_label, dict_value, dict_type, css_class, list_class, is_default, status, create_by, create_time, update_by, update_time, remark) VALUES (N'117', N'0', N'河口A', N'DXA', N'JT_ADDRESS', N'', N'', N'Y', N'0', N'admin', N'2021-05-27 01:51:25.1870000', N'admin', N'2022-03-09 08:38:13.4433333', N'')
- ;
- INSERT INTO sys_dict_data (dict_code, dict_sort, dict_label, dict_value, dict_type, css_class, list_class, is_default, status, create_by, create_time, update_by, update_time, remark) VALUES (N'118', N'1', N'河口B', N'DXB', N'JT_ADDRESS', N'', N'', N'Y', N'0', N'admin', N'2021-05-27 01:51:38.7130000', N'admin', N'2022-03-09 08:38:18.8400000', N'')
- ;
- INSERT INTO sys_dict_data (dict_code, dict_sort, dict_label, dict_value, dict_type, css_class, list_class, is_default, status, create_by, create_time, update_by, update_time, remark) VALUES (N'120', N'1', N'人工', N'RG', N'JT_OP_LOCK', NULL, NULL, N'Y', N'0', N'admin', N'2021-05-27 01:56:14.5470000', N'', NULL, NULL)
- ;
- INSERT INTO sys_dict_data (dict_code, dict_sort, dict_label, dict_value, dict_type, css_class, list_class, is_default, status, create_by, create_time, update_by, update_time, remark) VALUES (N'121', N'2', N'系统远程', N'XTYC', N'JT_OP_LOCK', NULL, NULL, N'Y', N'0', N'admin', N'2021-05-27 01:56:32.6370000', N'', NULL, NULL)
- ;
- INSERT INTO sys_dict_data (dict_code, dict_sort, dict_label, dict_value, dict_type, css_class, list_class, is_default, status, create_by, create_time, update_by, update_time, remark) VALUES (N'123', N'1', N'半挂', N'A2', N'JT_CAR_TYPE', NULL, NULL, N'Y', N'0', N'admin', N'2021-05-27 02:03:09.2830000', N'', NULL, NULL)
- ;
- INSERT INTO sys_dict_data (dict_code, dict_sort, dict_label, dict_value, dict_type, css_class, list_class, is_default, status, create_by, create_time, update_by, update_time, remark) VALUES (N'124', N'0', N'行驶超时', N'XSCS', N'JT_ALARM_TYPE', N'', N'', N'Y', N'0', N'admin', N'2021-05-27 02:05:39.0930000', N'admin', N'2021-05-27 02:06:09.5500000', N'')
- ;
- INSERT INTO sys_dict_data (dict_code, dict_sort, dict_label, dict_value, dict_type, css_class, list_class, is_default, status, create_by, create_time, update_by, update_time, remark) VALUES (N'125', N'1', N'停车超时', N'TCCS', N'JT_ALARM_TYPE', NULL, NULL, N'Y', N'0', N'admin', N'2021-05-27 02:05:57.5230000', N'', NULL, NULL)
- ;
- INSERT INTO sys_dict_data (dict_code, dict_sort, dict_label, dict_value, dict_type, css_class, list_class, is_default, status, create_by, create_time, update_by, update_time, remark) VALUES (N'1111', N'0', N'在线', N'opening', N'JT_DEVICE_STATUE', N'', N'success', N'Y', N'0', N'admin', N'2021-12-27 06:10:27.9566667', N'admin', N'2022-01-11 07:59:15.5433333', N'')
- ;
- INSERT INTO sys_dict_data (dict_code, dict_sort, dict_label, dict_value, dict_type, css_class, list_class, is_default, status, create_by, create_time, update_by, update_time, remark) VALUES (N'1109', N'2', N'已绑定', N'20', N'JT_BIND_STATUS', NULL, NULL, N'Y', N'0', N'admin', N'2021-06-02 09:57:52.4830000', N'', NULL, NULL)
- ;
- INSERT INTO sys_dict_data (dict_code, dict_sort, dict_label, dict_value, dict_type, css_class, list_class, is_default, status, create_by, create_time, update_by, update_time, remark) VALUES (N'1110', N'3', N'绑定结束', N'30', N'JT_BIND_STATUS', NULL, NULL, N'Y', N'0', N'admin', N'2021-06-02 09:58:01.1030000', N'', NULL, NULL)
- ;
- INSERT INTO sys_dict_data (dict_code, dict_sort, dict_label, dict_value, dict_type, css_class, list_class, is_default, status, create_by, create_time, update_by, update_time, remark) VALUES (N'1112', N'2', N'离线', N'close', N'JT_DEVICE_STATUE', N'', N'danger', N'Y', N'0', N'admin', N'2021-12-27 06:10:47.8566667', N'admin', N'2022-01-11 07:59:20.3100000', N'')
- ;
- INSERT INTO sys_dict_data (dict_code, dict_sort, dict_label, dict_value, dict_type, css_class, list_class, is_default, status, create_by, create_time, update_by, update_time, remark) VALUES (N'1113', N'0', N'位置数据上传', N'Location Data Upload', N'responseType', NULL, NULL, N'Y', N'0', N'admin', N'2021-12-27 07:37:26.2133333', N'', NULL, NULL)
- ;
- INSERT INTO sys_dict_data (dict_code, dict_sort, dict_label, dict_value, dict_type, css_class, list_class, is_default, status, create_by, create_time, update_by, update_time, remark) VALUES (N'1114', N'0', N'socket', N'808', N'protocolType', NULL, NULL, N'Y', N'0', N'admin', N'2021-12-27 07:38:27.9400000', N'', NULL, NULL)
- ;
- INSERT INTO sys_dict_data (dict_code, dict_sort, dict_label, dict_value, dict_type, css_class, list_class, is_default, status, create_by, create_time, update_by, update_time, remark) VALUES (N'1115', N'1', N'开启', N'opening', N'JT_DEVICE_STATUS', N'', N'success', N'Y', N'0', N'admin', N'2022-01-11 07:29:58.5600000', N'admin', N'2022-01-11 07:30:25.3066667', N'')
- ;
- INSERT INTO sys_dict_data (dict_code, dict_sort, dict_label, dict_value, dict_type, css_class, list_class, is_default, status, create_by, create_time, update_by, update_time, remark) VALUES (N'1124', N'0', N'启用', N'0', N'JT_ELECTRONIC_FENCE_STATUS', NULL, N'primary', N'Y', N'0', N'admin', N'2022-01-17 08:35:23.3700000', N'', NULL, NULL)
- ;
- INSERT INTO sys_dict_data (dict_code, dict_sort, dict_label, dict_value, dict_type, css_class, list_class, is_default, status, create_by, create_time, update_by, update_time, remark) VALUES (N'1125', N'1', N'不启用', N'1', N'JT_ELECTRONIC_FENCE_STATUS', NULL, N'warning', N'Y', N'0', N'admin', N'2022-01-17 08:35:36.5800000', N'', NULL, NULL)
- ;
- INSERT INTO sys_dict_data (dict_code, dict_sort, dict_label, dict_value, dict_type, css_class, list_class, is_default, status, create_by, create_time, update_by, update_time, remark) VALUES (N'1126', N'0', N'矩阵围栏', N'rectangle', N'JT_ELECTRONIC_FENCE_TYPE', NULL, N'primary', N'Y', N'0', N'admin', N'2022-01-17 08:37:21.6700000', N'', NULL, NULL)
- ;
- INSERT INTO sys_dict_data (dict_code, dict_sort, dict_label, dict_value, dict_type, css_class, list_class, is_default, status, create_by, create_time, update_by, update_time, remark) VALUES (N'1127', N'1', N'圆形围栏', N'circular', N'JT_ELECTRONIC_FENCE_TYPE', NULL, N'primary', N'Y', N'0', N'admin', N'2022-01-17 08:37:41.3100000', N'', NULL, NULL)
- ;
- INSERT INTO sys_dict_data (dict_code, dict_sort, dict_label, dict_value, dict_type, css_class, list_class, is_default, status, create_by, create_time, update_by, update_time, remark) VALUES (N'1131', N'1', N'黑名单', N'1', N'JT_IC_STATUS', N'', N'danger', N'Y', N'0', N'admin', N'2022-02-22 01:37:12.9766667', N'admin', N'2022-02-22 01:37:21.3366667', N'')
- ;
- INSERT INTO sys_dict_data (dict_code, dict_sort, dict_label, dict_value, dict_type, css_class, list_class, is_default, status, create_by, create_time, update_by, update_time, remark) VALUES (N'1132', N'0', N'施封卡', N'0', N'JT_IC_TYPE', NULL, N'primary', N'Y', N'0', N'admin', N'2022-02-22 02:07:07.3666667', N'', NULL, NULL)
- ;
- INSERT INTO sys_dict_data (dict_code, dict_sort, dict_label, dict_value, dict_type, css_class, list_class, is_default, status, create_by, create_time, update_by, update_time, remark) VALUES (N'1133', N'1', N'解封卡', N'1', N'JT_IC_TYPE', NULL, N'info', N'Y', N'0', N'admin', N'2022-02-22 02:07:25.6466667', N'', NULL, NULL)
- ;
- INSERT INTO sys_dict_data (dict_code, dict_sort, dict_label, dict_value, dict_type, css_class, list_class, is_default, status, create_by, create_time, update_by, update_time, remark) VALUES (N'1116', N'2', N'关闭', N'close', N'JT_DEVICE_STATUS', NULL, N'danger', N'Y', N'0', N'admin', N'2022-01-11 07:30:19.4633333', N'', NULL, NULL)
- ;
- INSERT INTO sys_dict_data (dict_code, dict_sort, dict_label, dict_value, dict_type, css_class, list_class, is_default, status, create_by, create_time, update_by, update_time, remark) VALUES (N'1117', N'10', N'开启状态', N'10', N'JT_LOCK_STATUE', N'', N'primary', N'Y', N'0', N'admin', N'2022-01-13 07:18:06.5500000', N'admin', N'2022-01-13 07:19:09.3533333', N'')
- ;
- INSERT INTO sys_dict_data (dict_code, dict_sort, dict_label, dict_value, dict_type, css_class, list_class, is_default, status, create_by, create_time, update_by, update_time, remark) VALUES (N'1118', N'1', N'待命状态', N'20', N'JT_LOCK_STATUE', N'', N'primary', N'Y', N'0', N'admin', N'2022-01-13 07:18:34.4700000', N'admin', N'2022-01-13 07:19:05.3300000', N'')
- ;
- INSERT INTO sys_dict_data (dict_code, dict_sort, dict_label, dict_value, dict_type, css_class, list_class, is_default, status, create_by, create_time, update_by, update_time, remark) VALUES (N'1128', N'4', N'锁被破坏', N'PH', N'JT_ALARM_TYPE', NULL, NULL, N'Y', N'0', N'admin', N'2022-01-21 02:53:40.3166667', N'', NULL, NULL)
- ;
- INSERT INTO sys_dict_data (dict_code, dict_sort, dict_label, dict_value, dict_type, css_class, list_class, is_default, status, create_by, create_time, update_by, update_time, remark) VALUES (N'1129', N'6', N'非法操作关锁', N'FFCZ', N'JT_ALARM_TYPE', NULL, NULL, N'Y', N'0', N'admin', N'2022-02-16 07:18:25.8566667', N'', NULL, NULL)
- ;
- INSERT INTO sys_dict_data (dict_code, dict_sort, dict_label, dict_value, dict_type, css_class, list_class, is_default, status, create_by, create_time, update_by, update_time, remark) VALUES (N'1119', N'2', N'锁未锁好', N'30', N'JT_LOCK_STATUE', NULL, N'danger', N'Y', N'0', N'admin', N'2022-01-13 07:18:59.5533333', N'', NULL, NULL)
- ;
- INSERT INTO sys_dict_data (dict_code, dict_sort, dict_label, dict_value, dict_type, css_class, list_class, is_default, status, create_by, create_time, update_by, update_time, remark) VALUES (N'1120', N'3', N'远程施封状态', N'40', N'JT_LOCK_STATUE', N'', N'warning', N'Y', N'0', N'admin', N'2022-01-13 07:19:36.4533333', N'admin', N'2022-01-19 03:11:47.1133333', N'')
- ;
- INSERT INTO sys_dict_data (dict_code, dict_sort, dict_label, dict_value, dict_type, css_class, list_class, is_default, status, create_by, create_time, update_by, update_time, remark) VALUES (N'1121', N'4', N'本地施封状态', N'50', N'JT_LOCK_STATUE', N'', N'warning', N'Y', N'0', N'admin', N'2022-01-13 07:19:56.6100000', N'admin', N'2022-01-19 03:11:52.1400000', N'')
- ;
- INSERT INTO sys_dict_data (dict_code, dict_sort, dict_label, dict_value, dict_type, css_class, list_class, is_default, status, create_by, create_time, update_by, update_time, remark) VALUES (N'1122', N'5', N'远程解封状态', N'60', N'JT_LOCK_STATUE', N'', N'primary', N'Y', N'0', N'admin', N'2022-01-13 07:20:25.0733333', N'admin', N'2022-01-19 03:11:41.4933333', N'')
- ;
- INSERT INTO sys_dict_data (dict_code, dict_sort, dict_label, dict_value, dict_type, css_class, list_class, is_default, status, create_by, create_time, update_by, update_time, remark) VALUES (N'1123', N'6', N'本地解封状态', N'B0', N'JT_LOCK_STATUE', N'', N'primary', N'Y', N'0', N'admin', N'2022-01-13 07:20:42.2833333', N'admin', N'2022-01-19 03:11:35.9833333', N'')
- ;
- INSERT INTO sys_dict_data (dict_code, dict_sort, dict_label, dict_value, dict_type, css_class, list_class, is_default, status, create_by, create_time, update_by, update_time, remark) VALUES (N'1130', N'0', N'白名单', N'0', N'JT_IC_STATUS', N'', N'primary', N'Y', N'0', N'admin', N'2022-02-22 01:35:25.8833333', N'admin', N'2022-02-22 01:37:34.2533333', N'')
- ;
- CREATE TABLE sys_dict_type (
- dict_id int NOT NULL,
- dict_name nvarchar(100) DEFAULT (N'') NULL,
- dict_type nvarchar(100) DEFAULT (N'') NULL,
- status nchar(1) DEFAULT (N'0') NULL,
- create_by nvarchar(64) DEFAULT (N'') NULL,
- create_time datetime(6) DEFAULT NULL NULL,
- update_by nvarchar(64) DEFAULT (N'') NULL,
- update_time datetime(6) DEFAULT NULL NULL,
- remark nvarchar(500) DEFAULT NULL NULL
- )
- ;
- INSERT INTO sys_dict_type (dict_id, dict_name, dict_type, status, create_by, create_time, update_by, update_time, remark) VALUES (N'1', N'用户性别', N'sys_user_sex', N'0', N'admin', N'2018-03-16 11:33:00.0000000', N'admin', N'2019-08-07 17:19:25.5200000', N'用户性别列表')
- ;
- INSERT INTO sys_dict_type (dict_id, dict_name, dict_type, status, create_by, create_time, update_by, update_time, remark) VALUES (N'2', N'菜单状态', N'sys_show_hide', N'0', N'admin', N'2018-03-16 11:33:00.0000000', N'ry', N'2018-03-16 11:33:00.0000000', N'菜单状态列表')
- ;
- INSERT INTO sys_dict_type (dict_id, dict_name, dict_type, status, create_by, create_time, update_by, update_time, remark) VALUES (N'3', N'系统开关', N'sys_normal_disable', N'0', N'admin', N'2018-03-16 11:33:00.0000000', N'ry', N'2018-03-16 11:33:00.0000000', N'系统开关列表')
- ;
- INSERT INTO sys_dict_type (dict_id, dict_name, dict_type, status, create_by, create_time, update_by, update_time, remark) VALUES (N'4', N'任务状态', N'sys_job_status', N'0', N'admin', N'2018-03-16 11:33:00.0000000', N'ry', N'2018-03-16 11:33:00.0000000', N'任务状态列表')
- ;
- INSERT INTO sys_dict_type (dict_id, dict_name, dict_type, status, create_by, create_time, update_by, update_time, remark) VALUES (N'5', N'任务分组', N'sys_job_group', N'0', N'admin', N'2018-03-16 11:33:00.0000000', N'admin', N'2019-08-05 16:25:11.6230000', N'任务分组列表')
- ;
- INSERT INTO sys_dict_type (dict_id, dict_name, dict_type, status, create_by, create_time, update_by, update_time, remark) VALUES (N'6', N'系统是否', N'sys_yes_no', N'0', N'admin', N'2018-03-16 11:33:00.0000000', N'ry', N'2018-03-16 11:33:00.0000000', N'系统是否列表')
- ;
- INSERT INTO sys_dict_type (dict_id, dict_name, dict_type, status, create_by, create_time, update_by, update_time, remark) VALUES (N'7', N'通知类型', N'sys_notice_type', N'0', N'admin', N'2018-03-16 11:33:00.0000000', N'ry', N'2018-03-16 11:33:00.0000000', N'通知类型列表')
- ;
- INSERT INTO sys_dict_type (dict_id, dict_name, dict_type, status, create_by, create_time, update_by, update_time, remark) VALUES (N'8', N'通知状态', N'sys_notice_status', N'0', N'admin', N'2018-03-16 11:33:00.0000000', N'ry', N'2018-03-16 11:33:00.0000000', N'通知状态列表')
- ;
- INSERT INTO sys_dict_type (dict_id, dict_name, dict_type, status, create_by, create_time, update_by, update_time, remark) VALUES (N'9', N'操作类型', N'sys_oper_type', N'0', N'admin', N'2018-03-16 11:33:00.0000000', N'ry', N'2018-03-16 11:33:00.0000000', N'操作类型列表')
- ;
- INSERT INTO sys_dict_type (dict_id, dict_name, dict_type, status, create_by, create_time, update_by, update_time, remark) VALUES (N'103', N'系统状态', N'sys_common_status', N'0', N'admin', N'2018-03-16 11:33:00.0000000', N'ry', N'2018-03-16 11:33:00.0000000', N'登录状态列表')
- ;
- INSERT INTO sys_dict_type (dict_id, dict_name, dict_type, status, create_by, create_time, update_by, update_time, remark) VALUES (N'104', N'启用标志', N'JT_ENABLE_FLAG', N'0', N'admin', N'2021-05-26 08:58:18.1070000', N'admin', N'2021-05-27 02:28:08.9530000', N'')
- ;
- INSERT INTO sys_dict_type (dict_id, dict_name, dict_type, status, create_by, create_time, update_by, update_time, remark) VALUES (N'105', N'关锁操作类型', N'JT_LOCK_TYPE', N'0', N'admin', N'2021-05-27 01:44:51.4100000', N'admin', N'2021-05-27 01:45:12.6800000', N'施封、解封等')
- ;
- INSERT INTO sys_dict_type (dict_id, dict_name, dict_type, status, create_by, create_time, update_by, update_time, remark) VALUES (N'106', N'工作流状态', N'JT_W_TYPE', N'0', N'admin', N'2021-05-27 01:49:53.1300000', N'', NULL, N'工作流状态')
- ;
- INSERT INTO sys_dict_type (dict_id, dict_name, dict_type, status, create_by, create_time, update_by, update_time, remark) VALUES (N'108', N'如何操作的关锁', N'JT_OP_LOCK', N'0', N'admin', N'2021-05-27 01:53:53.1870000', N'', NULL, N'ic卡、人工、系统远程')
- ;
- INSERT INTO sys_dict_type (dict_id, dict_name, dict_type, status, create_by, create_time, update_by, update_time, remark) VALUES (N'109', N'车辆作业类型', N'JT_CAR_TYPE', N'0', N'admin', N'2021-05-27 01:57:15.8600000', N'admin', N'2021-05-27 02:03:35.5300000', N'车辆作业类型')
- ;
- INSERT INTO sys_dict_type (dict_id, dict_name, dict_type, status, create_by, create_time, update_by, update_time, remark) VALUES (N'110', N'设备状态', N'JT_DEVICE_STATUS', N'0', N'admin', N'2021-05-27 02:01:19.8500000', N'', NULL, NULL)
- ;
- INSERT INTO sys_dict_type (dict_id, dict_name, dict_type, status, create_by, create_time, update_by, update_time, remark) VALUES (N'111', N'报警标志', N'JT_ALARM_FLAG', N'0', N'admin', N'2021-05-27 02:02:02.8470000', N'', NULL, NULL)
- ;
- INSERT INTO sys_dict_type (dict_id, dict_name, dict_type, status, create_by, create_time, update_by, update_time, remark) VALUES (N'107', N'地址字典', N'JT_ADDRESS', N'0', N'admin', N'2021-05-27 01:51:09.2630000', N'', NULL, N'地址字典')
- ;
- INSERT INTO sys_dict_type (dict_id, dict_name, dict_type, status, create_by, create_time, update_by, update_time, remark) VALUES (N'112', N'报警类型', N'JT_ALARM_TYPE', N'0', N'admin', N'2021-05-27 02:04:51.1970000', N'', NULL, N'报警类型')
- ;
- INSERT INTO sys_dict_type (dict_id, dict_name, dict_type, status, create_by, create_time, update_by, update_time, remark) VALUES (N'113', N'报警级别', N'JT_ALARM_LEVEL', N'0', N'admin', N'2021-05-27 02:07:15.0730000', N'', NULL, N'报警级别')
- ;
- INSERT INTO sys_dict_type (dict_id, dict_name, dict_type, status, create_by, create_time, update_by, update_time, remark) VALUES (N'114', N'绑定状态', N'JT_BIND_STATUS', N'0', N'admin', N'2021-05-27 02:24:05.7600000', N'', NULL, NULL)
- ;
- INSERT INTO sys_dict_type (dict_id, dict_name, dict_type, status, create_by, create_time, update_by, update_time, remark) VALUES (N'1103', N'协议类型', N'protocolType', N'0', N'admin', N'2021-06-04 13:14:03.2800000', N'', NULL, NULL)
- ;
- INSERT INTO sys_dict_type (dict_id, dict_name, dict_type, status, create_by, create_time, update_by, update_time, remark) VALUES (N'1104', N'响应类型', N'responseType', N'0', N'admin', N'2021-06-04 13:14:14.8630000', N'', NULL, NULL)
- ;
- INSERT INTO sys_dict_type (dict_id, dict_name, dict_type, status, create_by, create_time, update_by, update_time, remark) VALUES (N'1105', N'设备状态', N'JT_DEVICE_STATUE', N'0', N'admin', N'2021-12-27 06:09:49.4666667', N'admin', N'2021-12-27 06:12:28.6266667', N'')
- ;
- INSERT INTO sys_dict_type (dict_id, dict_name, dict_type, status, create_by, create_time, update_by, update_time, remark) VALUES (N'1106', N'设备操作状态', N'JT_LOCK_STATUE', N'0', N'admin', N'2022-01-13 07:17:17.2133333', N'', NULL, NULL)
- ;
- INSERT INTO sys_dict_type (dict_id, dict_name, dict_type, status, create_by, create_time, update_by, update_time, remark) VALUES (N'1107', N'围栏状态', N'JT_ELECTRONIC_FENCE_STATUS', N'0', N'admin', N'2022-01-17 08:35:05.7900000', N'', NULL, NULL)
- ;
- INSERT INTO sys_dict_type (dict_id, dict_name, dict_type, status, create_by, create_time, update_by, update_time, remark) VALUES (N'1108', N'围栏类型', N'JT_ELECTRONIC_FENCE_TYPE', N'0', N'admin', N'2022-01-17 08:36:51.6300000', N'', NULL, NULL)
- ;
- INSERT INTO sys_dict_type (dict_id, dict_name, dict_type, status, create_by, create_time, update_by, update_time, remark) VALUES (N'1109', N'IC卡状态', N'JT_IC_STATUS', N'0', N'admin', N'2022-02-22 01:34:33.6500000', N'', NULL, NULL)
- ;
- INSERT INTO sys_dict_type (dict_id, dict_name, dict_type, status, create_by, create_time, update_by, update_time, remark) VALUES (N'1110', N'IC卡种类', N'JT_IC_TYPE', N'0', N'admin', N'2022-02-22 01:35:06.5200000', N'', NULL, NULL)
- ;
- CREATE TABLE sys_job (
- job_id int NOT NULL,
- job_name nvarchar(64) DEFAULT (N'') NOT NULL,
- job_group nvarchar(64) DEFAULT (N'') NOT NULL,
- invoke_target nvarchar(500) DEFAULT (N'') NOT NULL,
- cron_expression nvarchar(255) DEFAULT (N'') NULL,
- misfire_policy nvarchar(20) DEFAULT (N'3') NULL,
- status nchar(1) DEFAULT (N'0') NULL,
- create_by nvarchar(64) DEFAULT (N'') NULL,
- create_time datetime(6) DEFAULT NULL NULL,
- update_by nvarchar(64) DEFAULT (N'') NULL,
- update_time datetime(6) DEFAULT NULL NULL,
- remark nvarchar(500) DEFAULT (N'') NULL,
- concurrent nchar(1) NULL
- )
- ;
- INSERT INTO sys_job (job_id, job_name, job_group, invoke_target, cron_expression, misfire_policy, status, create_by, create_time, update_by, update_time, remark, concurrent) VALUES (N'1', N'系统默认(无参)', N'DEFAULT', N'ryNoParams', N'0/10 * * * * ?', N'3', N'1', N'admin', N'2018-03-16 11:33:00.0000000', N'admin', N'2019-08-08 10:00:30.9670000', N'1119', N'1')
- ;
- INSERT INTO sys_job (job_id, job_name, job_group, invoke_target, cron_expression, misfire_policy, status, create_by, create_time, update_by, update_time, remark, concurrent) VALUES (N'2', N'系统默认(有参)', N'DEFAULT', N'ryParams', N'0/20 * * * * ?', N'3', N'1', N'admin', N'2018-03-16 11:33:00.0000000', N'ry', N'2018-03-16 11:33:00.0000000', N'', N'1')
- ;
- INSERT INTO sys_job (job_id, job_name, job_group, invoke_target, cron_expression, misfire_policy, status, create_by, create_time, update_by, update_time, remark, concurrent) VALUES (N'3', N'系统默认(多参)', N'DEFAULT', N'ryTask.ryMultipleParams(''ry'', true, 2000L, 316.50D, 100)', N'0/20 * * * * ?', N'3', N'1', N'admin', N'2018-03-16 11:33:00.0000000', N'ry', N'2018-03-16 11:33:00.0000000', N'', N'1')
- ;
- CREATE TABLE sys_job_log (
- job_log_id int NOT NULL,
- job_name nvarchar(64) NOT NULL,
- job_group nvarchar(64) NOT NULL,
- invoke_target nvarchar(500) DEFAULT NULL NULL,
- job_message nvarchar(500) DEFAULT NULL NULL,
- status nchar(1) DEFAULT (N'0') NULL,
- exception_info nvarchar(2000) DEFAULT (N'') NULL,
- create_time datetime(6) DEFAULT NULL NULL
- )
- ;
- CREATE TABLE sys_logininfor (
- info_id int NOT NULL,
- login_name nvarchar(50) DEFAULT (N'') NULL,
- ipaddr nvarchar(50) DEFAULT (N'') NULL,
- login_location nvarchar(255) DEFAULT (N'') NULL,
- browser nvarchar(50) DEFAULT (N'') NULL,
- os nvarchar(50) DEFAULT (N'') NULL,
- status nchar(1) DEFAULT (N'0') NULL,
- msg nvarchar(255) DEFAULT (N'') NULL,
- login_time datetime(6) DEFAULT NULL NULL
- )
- ;
- CREATE TABLE sys_menu (
- menu_id int NOT NULL,
- menu_name nvarchar(50) NOT NULL,
- parent_id int DEFAULT ((0)) NULL,
- order_num int DEFAULT ((0)) NULL,
- url nvarchar(200) DEFAULT (N'#') NULL,
- menu_type nchar(1) DEFAULT (N'') NULL,
- visible nchar(1) DEFAULT (N'0') NULL,
- perms nvarchar(100) DEFAULT NULL NULL,
- icon nvarchar(100) DEFAULT (N'#') NULL,
- create_by nvarchar(64) DEFAULT (N'') NULL,
- create_time datetime(6) DEFAULT NULL NULL,
- update_by nvarchar(64) DEFAULT (N'') NULL,
- update_time datetime(6) DEFAULT NULL NULL,
- remark nvarchar(500) DEFAULT (N'') NULL,
- target nvarchar(20) DEFAULT '' NULL
- )
- ;
- INSERT INTO sys_menu (menu_id, menu_name, parent_id, order_num, url, menu_type, visible, perms, icon, create_by, create_time, update_by, update_time, remark, target) VALUES (N'1', N'系统管理', N'0', N'2', N'#', N'M', N'0', N'', N'fa fa-gear', N'admin', N'2018-03-16 11:33:00.0000000', N'admin', N'2022-01-12 09:25:09.5100000', N'系统管理目录', N'menuItem')
- ;
- INSERT INTO sys_menu (menu_id, menu_name, parent_id, order_num, url, menu_type, visible, perms, icon, create_by, create_time, update_by, update_time, remark, target) VALUES (N'2', N'系统监控', N'0', N'2', N'#', N'M', N'0', N'', N'fa fa-video-camera', N'admin', N'2018-03-16 11:33:00.0000000', N'admin', N'2021-12-10 09:46:07.3770000', N'系统监控目录', N'menuItem')
- ;
- INSERT INTO sys_menu (menu_id, menu_name, parent_id, order_num, url, menu_type, visible, perms, icon, create_by, create_time, update_by, update_time, remark, target) VALUES (N'3', N'系统工具', N'0', N'3', N'#', N'M', N'0', N'', N'fa fa-wrench', N'admin', N'2018-03-16 11:33:00.0000000', N'admin', N'2021-12-10 09:46:12.9270000', N'系统工具目录', N'menuItem')
- ;
- INSERT INTO sys_menu (menu_id, menu_name, parent_id, order_num, url, menu_type, visible, perms, icon, create_by, create_time, update_by, update_time, remark, target) VALUES (N'100', N'用户管理', N'1', N'1', N'/system/user', N'C', N'0', N'system:user:view', N'#', N'admin', N'2018-03-16 11:33:00.0000000', N'ry', N'2018-03-16 11:33:00.0000000', N'用户管理菜单', N'')
- ;
- INSERT INTO sys_menu (menu_id, menu_name, parent_id, order_num, url, menu_type, visible, perms, icon, create_by, create_time, update_by, update_time, remark, target) VALUES (N'101', N'角色管理', N'1', N'2', N'/system/role', N'C', N'0', N'system:role:view', N'#', N'admin', N'2018-03-16 11:33:00.0000000', N'ry', N'2018-03-16 11:33:00.0000000', N'角色管理菜单', N'')
- ;
- INSERT INTO sys_menu (menu_id, menu_name, parent_id, order_num, url, menu_type, visible, perms, icon, create_by, create_time, update_by, update_time, remark, target) VALUES (N'102', N'菜单管理', N'1', N'3', N'/system/menu', N'C', N'0', N'system:menu:view', N'#', N'admin', N'2018-03-16 11:33:00.0000000', N'ry', N'2018-03-16 11:33:00.0000000', N'菜单管理菜单', N'')
- ;
- INSERT INTO sys_menu (menu_id, menu_name, parent_id, order_num, url, menu_type, visible, perms, icon, create_by, create_time, update_by, update_time, remark, target) VALUES (N'103', N'部门管理', N'1', N'4', N'/system/dept', N'C', N'0', N'system:dept:view', N'#', N'admin', N'2018-03-16 11:33:00.0000000', N'ry', N'2018-03-16 11:33:00.0000000', N'部门管理菜单', N'')
- ;
- INSERT INTO sys_menu (menu_id, menu_name, parent_id, order_num, url, menu_type, visible, perms, icon, create_by, create_time, update_by, update_time, remark, target) VALUES (N'104', N'岗位管理', N'1', N'5', N'/system/post', N'C', N'1', N'system:post:view', N'#', N'admin', N'2018-03-16 11:33:00.0000000', N'admin', N'2022-01-20 06:19:11.3200000', N'岗位管理菜单', N'menuItem')
- ;
- INSERT INTO sys_menu (menu_id, menu_name, parent_id, order_num, url, menu_type, visible, perms, icon, create_by, create_time, update_by, update_time, remark, target) VALUES (N'105', N'字典管理', N'1', N'6', N'/system/dict', N'C', N'0', N'system:dict:view', N'#', N'admin', N'2018-03-16 11:33:00.0000000', N'ry', N'2018-03-16 11:33:00.0000000', N'字典管理菜单', N'')
- ;
- INSERT INTO sys_menu (menu_id, menu_name, parent_id, order_num, url, menu_type, visible, perms, icon, create_by, create_time, update_by, update_time, remark, target) VALUES (N'106', N'参数设置', N'1', N'7', N'/system/config', N'C', N'0', N'system:config:view', N'#', N'admin', N'2018-03-16 11:33:00.0000000', N'ry', N'2018-03-16 11:33:00.0000000', N'参数设置菜单', N'')
- ;
- INSERT INTO sys_menu (menu_id, menu_name, parent_id, order_num, url, menu_type, visible, perms, icon, create_by, create_time, update_by, update_time, remark, target) VALUES (N'107', N'通知公告', N'1', N'8', N'/system/notice', N'C', N'0', N'system:notice:view', N'#', N'admin', N'2018-03-16 11:33:00.0000000', N'ry', N'2018-03-16 11:33:00.0000000', N'通知公告菜单', N'')
- ;
- INSERT INTO sys_menu (menu_id, menu_name, parent_id, order_num, url, menu_type, visible, perms, icon, create_by, create_time, update_by, update_time, remark, target) VALUES (N'108', N'日志管理', N'1', N'9', N'#', N'M', N'0', N'', N'#', N'admin', N'2018-03-16 11:33:00.0000000', N'ry', N'2018-03-16 11:33:00.0000000', N'日志管理菜单', N'')
- ;
- INSERT INTO sys_menu (menu_id, menu_name, parent_id, order_num, url, menu_type, visible, perms, icon, create_by, create_time, update_by, update_time, remark, target) VALUES (N'109', N'在线用户', N'2', N'1', N'/monitor/online', N'C', N'0', N'monitor:online:view', N'#', N'admin', N'2018-03-16 11:33:00.0000000', N'ry', N'2018-03-16 11:33:00.0000000', N'在线用户菜单', N'')
- ;
- INSERT INTO sys_menu (menu_id, menu_name, parent_id, order_num, url, menu_type, visible, perms, icon, create_by, create_time, update_by, update_time, remark, target) VALUES (N'110', N'定时任务', N'2', N'2', N'/monitor/job', N'C', N'0', N'monitor:job:view', N'#', N'admin', N'2018-03-16 11:33:00.0000000', N'ry', N'2018-03-16 11:33:00.0000000', N'定时任务菜单', N'')
- ;
- INSERT INTO sys_menu (menu_id, menu_name, parent_id, order_num, url, menu_type, visible, perms, icon, create_by, create_time, update_by, update_time, remark, target) VALUES (N'111', N'数据监控', N'2', N'3', N'/monitor/data', N'C', N'0', N'monitor:data:view', N'#', N'admin', N'2018-03-16 11:33:00.0000000', N'ry', N'2018-03-16 11:33:00.0000000', N'数据监控菜单', N'')
- ;
- INSERT INTO sys_menu (menu_id, menu_name, parent_id, order_num, url, menu_type, visible, perms, icon, create_by, create_time, update_by, update_time, remark, target) VALUES (N'112', N'服务监控', N'2', N'3', N'/monitor/server', N'C', N'0', N'monitor:server:view', N'#', N'admin', N'2018-03-16 11:33:00.0000000', N'ry', N'2018-03-16 11:33:00.0000000', N'服务监控菜单', N'')
- ;
- INSERT INTO sys_menu (menu_id, menu_name, parent_id, order_num, url, menu_type, visible, perms, icon, create_by, create_time, update_by, update_time, remark, target) VALUES (N'113', N'表单构建', N'3', N'1', N'/tool/build', N'C', N'0', N'tool:build:view', N'#', N'admin', N'2018-03-16 11:33:00.0000000', N'ry', N'2018-03-16 11:33:00.0000000', N'表单构建菜单', N'')
- ;
- INSERT INTO sys_menu (menu_id, menu_name, parent_id, order_num, url, menu_type, visible, perms, icon, create_by, create_time, update_by, update_time, remark, target) VALUES (N'114', N'代码生成', N'3', N'2', N'/tool/gen', N'C', N'0', N'tool:gen:view', N'#', N'admin', N'2018-03-16 11:33:00.0000000', N'ry', N'2018-03-16 11:33:00.0000000', N'代码生成菜单', N'')
- ;
- INSERT INTO sys_menu (menu_id, menu_name, parent_id, order_num, url, menu_type, visible, perms, icon, create_by, create_time, update_by, update_time, remark, target) VALUES (N'115', N'系统接口', N'3', N'3', N'/tool/swagger', N'C', N'0', N'tool:swagger:view', N'#', N'admin', N'2018-03-16 11:33:00.0000000', N'ry', N'2018-03-16 11:33:00.0000000', N'系统接口菜单', N'')
- ;
- INSERT INTO sys_menu (menu_id, menu_name, parent_id, order_num, url, menu_type, visible, perms, icon, create_by, create_time, update_by, update_time, remark, target) VALUES (N'500', N'操作日志', N'108', N'1', N'/monitor/operlog', N'C', N'0', N'monitor:operlog:view', N'#', N'admin', N'2018-03-16 11:33:00.0000000', N'ry', N'2018-03-16 11:33:00.0000000', N'操作日志菜单', N'')
- ;
- INSERT INTO sys_menu (menu_id, menu_name, parent_id, order_num, url, menu_type, visible, perms, icon, create_by, create_time, update_by, update_time, remark, target) VALUES (N'501', N'登录日志', N'108', N'2', N'/monitor/logininfor', N'C', N'0', N'monitor:logininfor:view', N'#', N'admin', N'2018-03-16 11:33:00.0000000', N'ry', N'2018-03-16 11:33:00.0000000', N'登录日志菜单', N'')
- ;
- INSERT INTO sys_menu (menu_id, menu_name, parent_id, order_num, url, menu_type, visible, perms, icon, create_by, create_time, update_by, update_time, remark, target) VALUES (N'1000', N'用户查询', N'100', N'1', N'#', N'F', N'0', N'system:user:list', N'#', N'admin', N'2018-03-16 11:33:00.0000000', N'ry', N'2018-03-16 11:33:00.0000000', N'', N'')
- ;
- INSERT INTO sys_menu (menu_id, menu_name, parent_id, order_num, url, menu_type, visible, perms, icon, create_by, create_time, update_by, update_time, remark, target) VALUES (N'1001', N'用户新增', N'100', N'2', N'#', N'F', N'0', N'system:user:add', N'#', N'admin', N'2018-03-16 11:33:00.0000000', N'ry', N'2018-03-16 11:33:00.0000000', N'', N'')
- ;
- INSERT INTO sys_menu (menu_id, menu_name, parent_id, order_num, url, menu_type, visible, perms, icon, create_by, create_time, update_by, update_time, remark, target) VALUES (N'1002', N'用户修改', N'100', N'3', N'#', N'F', N'0', N'system:user:edit', N'#', N'admin', N'2018-03-16 11:33:00.0000000', N'ry', N'2018-03-16 11:33:00.0000000', N'', N'')
- ;
- INSERT INTO sys_menu (menu_id, menu_name, parent_id, order_num, url, menu_type, visible, perms, icon, create_by, create_time, update_by, update_time, remark, target) VALUES (N'1003', N'用户删除', N'100', N'4', N'#', N'F', N'0', N'system:user:remove', N'#', N'admin', N'2018-03-16 11:33:00.0000000', N'ry', N'2018-03-16 11:33:00.0000000', N'', N'')
- ;
- INSERT INTO sys_menu (menu_id, menu_name, parent_id, order_num, url, menu_type, visible, perms, icon, create_by, create_time, update_by, update_time, remark, target) VALUES (N'1004', N'用户导出', N'100', N'5', N'#', N'F', N'0', N'system:user:export', N'#', N'admin', N'2018-03-16 11:33:00.0000000', N'ry', N'2018-03-16 11:33:00.0000000', N'', N'')
- ;
- INSERT INTO sys_menu (menu_id, menu_name, parent_id, order_num, url, menu_type, visible, perms, icon, create_by, create_time, update_by, update_time, remark, target) VALUES (N'1005', N'用户导入', N'100', N'6', N'#', N'F', N'0', N'system:user:import', N'#', N'admin', N'2018-03-16 11:33:00.0000000', N'ry', N'2018-03-16 11:33:00.0000000', N'', N'')
- ;
- INSERT INTO sys_menu (menu_id, menu_name, parent_id, order_num, url, menu_type, visible, perms, icon, create_by, create_time, update_by, update_time, remark, target) VALUES (N'1006', N'重置密码', N'100', N'7', N'#', N'F', N'0', N'system:user:resetPwd', N'#', N'admin', N'2018-03-16 11:33:00.0000000', N'ry', N'2018-03-16 11:33:00.0000000', N'', N'')
- ;
- INSERT INTO sys_menu (menu_id, menu_name, parent_id, order_num, url, menu_type, visible, perms, icon, create_by, create_time, update_by, update_time, remark, target) VALUES (N'1007', N'角色查询', N'101', N'1', N'#', N'F', N'0', N'system:role:list', N'#', N'admin', N'2018-03-16 11:33:00.0000000', N'ry', N'2018-03-16 11:33:00.0000000', N'', N'')
- ;
- INSERT INTO sys_menu (menu_id, menu_name, parent_id, order_num, url, menu_type, visible, perms, icon, create_by, create_time, update_by, update_time, remark, target) VALUES (N'1008', N'角色新增', N'101', N'2', N'#', N'F', N'0', N'system:role:add', N'#', N'admin', N'2018-03-16 11:33:00.0000000', N'ry', N'2018-03-16 11:33:00.0000000', N'', N'')
- ;
- INSERT INTO sys_menu (menu_id, menu_name, parent_id, order_num, url, menu_type, visible, perms, icon, create_by, create_time, update_by, update_time, remark, target) VALUES (N'1009', N'角色修改', N'101', N'3', N'#', N'F', N'0', N'system:role:edit', N'#', N'admin', N'2018-03-16 11:33:00.0000000', N'ry', N'2018-03-16 11:33:00.0000000', N'', N'')
- ;
- INSERT INTO sys_menu (menu_id, menu_name, parent_id, order_num, url, menu_type, visible, perms, icon, create_by, create_time, update_by, update_time, remark, target) VALUES (N'1010', N'角色删除', N'101', N'4', N'#', N'F', N'0', N'system:role:remove', N'#', N'admin', N'2018-03-16 11:33:00.0000000', N'ry', N'2018-03-16 11:33:00.0000000', N'', N'')
- ;
- INSERT INTO sys_menu (menu_id, menu_name, parent_id, order_num, url, menu_type, visible, perms, icon, create_by, create_time, update_by, update_time, remark, target) VALUES (N'1011', N'角色导出', N'101', N'5', N'#', N'F', N'0', N'system:role:export', N'#', N'admin', N'2018-03-16 11:33:00.0000000', N'ry', N'2018-03-16 11:33:00.0000000', N'', N'')
- ;
- INSERT INTO sys_menu (menu_id, menu_name, parent_id, order_num, url, menu_type, visible, perms, icon, create_by, create_time, update_by, update_time, remark, target) VALUES (N'1012', N'菜单查询', N'102', N'1', N'#', N'F', N'0', N'system:menu:list', N'#', N'admin', N'2018-03-16 11:33:00.0000000', N'ry', N'2018-03-16 11:33:00.0000000', N'', N'')
- ;
- INSERT INTO sys_menu (menu_id, menu_name, parent_id, order_num, url, menu_type, visible, perms, icon, create_by, create_time, update_by, update_time, remark, target) VALUES (N'1013', N'菜单新增', N'102', N'2', N'#', N'F', N'0', N'system:menu:add', N'#', N'admin', N'2018-03-16 11:33:00.0000000', N'ry', N'2018-03-16 11:33:00.0000000', N'', N'')
- ;
- INSERT INTO sys_menu (menu_id, menu_name, parent_id, order_num, url, menu_type, visible, perms, icon, create_by, create_time, update_by, update_time, remark, target) VALUES (N'1014', N'菜单修改', N'102', N'3', N'#', N'F', N'0', N'system:menu:edit', N'#', N'admin', N'2018-03-16 11:33:00.0000000', N'ry', N'2018-03-16 11:33:00.0000000', N'', N'')
- ;
- INSERT INTO sys_menu (menu_id, menu_name, parent_id, order_num, url, menu_type, visible, perms, icon, create_by, create_time, update_by, update_time, remark, target) VALUES (N'1015', N'菜单删除', N'102', N'4', N'#', N'F', N'0', N'system:menu:remove', N'#', N'admin', N'2018-03-16 11:33:00.0000000', N'ry', N'2018-03-16 11:33:00.0000000', N'', N'')
- ;
- INSERT INTO sys_menu (menu_id, menu_name, parent_id, order_num, url, menu_type, visible, perms, icon, create_by, create_time, update_by, update_time, remark, target) VALUES (N'1016', N'部门查询', N'103', N'1', N'#', N'F', N'0', N'system:dept:list', N'#', N'admin', N'2018-03-16 11:33:00.0000000', N'ry', N'2018-03-16 11:33:00.0000000', N'', N'')
- ;
- INSERT INTO sys_menu (menu_id, menu_name, parent_id, order_num, url, menu_type, visible, perms, icon, create_by, create_time, update_by, update_time, remark, target) VALUES (N'1017', N'部门新增', N'103', N'2', N'#', N'F', N'0', N'system:dept:add', N'#', N'admin', N'2018-03-16 11:33:00.0000000', N'ry', N'2018-03-16 11:33:00.0000000', N'', N'')
- ;
- INSERT INTO sys_menu (menu_id, menu_name, parent_id, order_num, url, menu_type, visible, perms, icon, create_by, create_time, update_by, update_time, remark, target) VALUES (N'1018', N'部门修改', N'103', N'3', N'#', N'F', N'0', N'system:dept:edit', N'#', N'admin', N'2018-03-16 11:33:00.0000000', N'ry', N'2018-03-16 11:33:00.0000000', N'', N'')
- ;
- INSERT INTO sys_menu (menu_id, menu_name, parent_id, order_num, url, menu_type, visible, perms, icon, create_by, create_time, update_by, update_time, remark, target) VALUES (N'1019', N'部门删除', N'103', N'4', N'#', N'F', N'0', N'system:dept:remove', N'#', N'admin', N'2018-03-16 11:33:00.0000000', N'ry', N'2018-03-16 11:33:00.0000000', N'', N'')
- ;
- INSERT INTO sys_menu (menu_id, menu_name, parent_id, order_num, url, menu_type, visible, perms, icon, create_by, create_time, update_by, update_time, remark, target) VALUES (N'1020', N'岗位查询', N'104', N'1', N'#', N'F', N'0', N'system:post:list', N'#', N'admin', N'2018-03-16 11:33:00.0000000', N'ry', N'2018-03-16 11:33:00.0000000', N'', N'')
- ;
- INSERT INTO sys_menu (menu_id, menu_name, parent_id, order_num, url, menu_type, visible, perms, icon, create_by, create_time, update_by, update_time, remark, target) VALUES (N'1021', N'岗位新增', N'104', N'2', N'#', N'F', N'0', N'system:post:add', N'#', N'admin', N'2018-03-16 11:33:00.0000000', N'ry', N'2018-03-16 11:33:00.0000000', N'', N'')
- ;
- INSERT INTO sys_menu (menu_id, menu_name, parent_id, order_num, url, menu_type, visible, perms, icon, create_by, create_time, update_by, update_time, remark, target) VALUES (N'1022', N'岗位修改', N'104', N'3', N'#', N'F', N'0', N'system:post:edit', N'#', N'admin', N'2018-03-16 11:33:00.0000000', N'ry', N'2018-03-16 11:33:00.0000000', N'', N'')
- ;
- INSERT INTO sys_menu (menu_id, menu_name, parent_id, order_num, url, menu_type, visible, perms, icon, create_by, create_time, update_by, update_time, remark, target) VALUES (N'1023', N'岗位删除', N'104', N'4', N'#', N'F', N'0', N'system:post:remove', N'#', N'admin', N'2018-03-16 11:33:00.0000000', N'ry', N'2018-03-16 11:33:00.0000000', N'', N'')
- ;
- INSERT INTO sys_menu (menu_id, menu_name, parent_id, order_num, url, menu_type, visible, perms, icon, create_by, create_time, update_by, update_time, remark, target) VALUES (N'1024', N'岗位导出', N'104', N'5', N'#', N'F', N'0', N'system:post:export', N'#', N'admin', N'2018-03-16 11:33:00.0000000', N'ry', N'2018-03-16 11:33:00.0000000', N'', N'')
- ;
- INSERT INTO sys_menu (menu_id, menu_name, parent_id, order_num, url, menu_type, visible, perms, icon, create_by, create_time, update_by, update_time, remark, target) VALUES (N'1025', N'字典查询', N'105', N'1', N'#', N'F', N'0', N'system:dict:list', N'#', N'admin', N'2018-03-16 11:33:00.0000000', N'ry', N'2018-03-16 11:33:00.0000000', N'', N'')
- ;
- INSERT INTO sys_menu (menu_id, menu_name, parent_id, order_num, url, menu_type, visible, perms, icon, create_by, create_time, update_by, update_time, remark, target) VALUES (N'1026', N'字典新增', N'105', N'2', N'#', N'F', N'0', N'system:dict:add', N'#', N'admin', N'2018-03-16 11:33:00.0000000', N'ry', N'2018-03-16 11:33:00.0000000', N'', N'')
- ;
- INSERT INTO sys_menu (menu_id, menu_name, parent_id, order_num, url, menu_type, visible, perms, icon, create_by, create_time, update_by, update_time, remark, target) VALUES (N'1027', N'字典修改', N'105', N'3', N'#', N'F', N'0', N'system:dict:edit', N'#', N'admin', N'2018-03-16 11:33:00.0000000', N'ry', N'2018-03-16 11:33:00.0000000', N'', N'')
- ;
- INSERT INTO sys_menu (menu_id, menu_name, parent_id, order_num, url, menu_type, visible, perms, icon, create_by, create_time, update_by, update_time, remark, target) VALUES (N'1028', N'字典删除', N'105', N'4', N'#', N'F', N'0', N'system:dict:remove', N'#', N'admin', N'2018-03-16 11:33:00.0000000', N'ry', N'2018-03-16 11:33:00.0000000', N'', N'')
- ;
- INSERT INTO sys_menu (menu_id, menu_name, parent_id, order_num, url, menu_type, visible, perms, icon, create_by, create_time, update_by, update_time, remark, target) VALUES (N'1029', N'字典导出', N'105', N'5', N'#', N'F', N'0', N'system:dict:export', N'#', N'admin', N'2018-03-16 11:33:00.0000000', N'ry', N'2018-03-16 11:33:00.0000000', N'', N'')
- ;
- INSERT INTO sys_menu (menu_id, menu_name, parent_id, order_num, url, menu_type, visible, perms, icon, create_by, create_time, update_by, update_time, remark, target) VALUES (N'1030', N'参数查询', N'106', N'1', N'#', N'F', N'0', N'system:config:list', N'#', N'admin', N'2018-03-16 11:33:00.0000000', N'ry', N'2018-03-16 11:33:00.0000000', N'', N'')
- ;
- INSERT INTO sys_menu (menu_id, menu_name, parent_id, order_num, url, menu_type, visible, perms, icon, create_by, create_time, update_by, update_time, remark, target) VALUES (N'1031', N'参数新增', N'106', N'2', N'#', N'F', N'0', N'system:config:add', N'#', N'admin', N'2018-03-16 11:33:00.0000000', N'ry', N'2018-03-16 11:33:00.0000000', N'', N'')
- ;
- INSERT INTO sys_menu (menu_id, menu_name, parent_id, order_num, url, menu_type, visible, perms, icon, create_by, create_time, update_by, update_time, remark, target) VALUES (N'1032', N'参数修改', N'106', N'3', N'#', N'F', N'0', N'system:config:edit', N'#', N'admin', N'2018-03-16 11:33:00.0000000', N'ry', N'2018-03-16 11:33:00.0000000', N'', N'')
- ;
- INSERT INTO sys_menu (menu_id, menu_name, parent_id, order_num, url, menu_type, visible, perms, icon, create_by, create_time, update_by, update_time, remark, target) VALUES (N'1033', N'参数删除', N'106', N'4', N'#', N'F', N'0', N'system:config:remove', N'#', N'admin', N'2018-03-16 11:33:00.0000000', N'ry', N'2018-03-16 11:33:00.0000000', N'', N'')
- ;
- INSERT INTO sys_menu (menu_id, menu_name, parent_id, order_num, url, menu_type, visible, perms, icon, create_by, create_time, update_by, update_time, remark, target) VALUES (N'1034', N'参数导出', N'106', N'5', N'#', N'F', N'0', N'system:config:export', N'#', N'admin', N'2018-03-16 11:33:00.0000000', N'ry', N'2018-03-16 11:33:00.0000000', N'', N'')
- ;
- INSERT INTO sys_menu (menu_id, menu_name, parent_id, order_num, url, menu_type, visible, perms, icon, create_by, create_time, update_by, update_time, remark, target) VALUES (N'1035', N'公告查询', N'107', N'1', N'#', N'F', N'0', N'system:notice:list', N'#', N'admin', N'2018-03-16 11:33:00.0000000', N'ry', N'2018-03-16 11:33:00.0000000', N'', N'')
- ;
- INSERT INTO sys_menu (menu_id, menu_name, parent_id, order_num, url, menu_type, visible, perms, icon, create_by, create_time, update_by, update_time, remark, target) VALUES (N'1036', N'公告新增', N'107', N'2', N'#', N'F', N'0', N'system:notice:add', N'#', N'admin', N'2018-03-16 11:33:00.0000000', N'ry', N'2018-03-16 11:33:00.0000000', N'', N'')
- ;
- INSERT INTO sys_menu (menu_id, menu_name, parent_id, order_num, url, menu_type, visible, perms, icon, create_by, create_time, update_by, update_time, remark, target) VALUES (N'1037', N'公告修改', N'107', N'3', N'#', N'F', N'0', N'system:notice:edit', N'#', N'admin', N'2018-03-16 11:33:00.0000000', N'ry', N'2018-03-16 11:33:00.0000000', N'', N'')
- ;
- INSERT INTO sys_menu (menu_id, menu_name, parent_id, order_num, url, menu_type, visible, perms, icon, create_by, create_time, update_by, update_time, remark, target) VALUES (N'1038', N'公告删除', N'107', N'4', N'#', N'F', N'0', N'system:notice:remove', N'#', N'admin', N'2018-03-16 11:33:00.0000000', N'ry', N'2018-03-16 11:33:00.0000000', N'', N'')
- ;
- INSERT INTO sys_menu (menu_id, menu_name, parent_id, order_num, url, menu_type, visible, perms, icon, create_by, create_time, update_by, update_time, remark, target) VALUES (N'1039', N'操作查询', N'500', N'1', N'#', N'F', N'0', N'monitor:operlog:list', N'#', N'admin', N'2018-03-16 11:33:00.0000000', N'ry', N'2018-03-16 11:33:00.0000000', N'', N'')
- ;
- INSERT INTO sys_menu (menu_id, menu_name, parent_id, order_num, url, menu_type, visible, perms, icon, create_by, create_time, update_by, update_time, remark, target) VALUES (N'1040', N'操作删除', N'500', N'2', N'#', N'F', N'0', N'monitor:operlog:remove', N'#', N'admin', N'2018-03-16 11:33:00.0000000', N'ry', N'2018-03-16 11:33:00.0000000', N'', N'')
- ;
- INSERT INTO sys_menu (menu_id, menu_name, parent_id, order_num, url, menu_type, visible, perms, icon, create_by, create_time, update_by, update_time, remark, target) VALUES (N'1041', N'详细信息', N'500', N'3', N'#', N'F', N'0', N'monitor:operlog:detail', N'#', N'admin', N'2018-03-16 11:33:00.0000000', N'ry', N'2018-03-16 11:33:00.0000000', N'', N'')
- ;
- INSERT INTO sys_menu (menu_id, menu_name, parent_id, order_num, url, menu_type, visible, perms, icon, create_by, create_time, update_by, update_time, remark, target) VALUES (N'1042', N'日志导出', N'500', N'4', N'#', N'F', N'0', N'monitor:operlog:export', N'#', N'admin', N'2018-03-16 11:33:00.0000000', N'ry', N'2018-03-16 11:33:00.0000000', N'', N'')
- ;
- INSERT INTO sys_menu (menu_id, menu_name, parent_id, order_num, url, menu_type, visible, perms, icon, create_by, create_time, update_by, update_time, remark, target) VALUES (N'1043', N'登录查询', N'501', N'1', N'#', N'F', N'0', N'monitor:logininfor:list', N'#', N'admin', N'2018-03-16 11:33:00.0000000', N'ry', N'2018-03-16 11:33:00.0000000', N'', N'')
- ;
- INSERT INTO sys_menu (menu_id, menu_name, parent_id, order_num, url, menu_type, visible, perms, icon, create_by, create_time, update_by, update_time, remark, target) VALUES (N'1044', N'登录删除', N'501', N'2', N'#', N'F', N'0', N'monitor:logininfor:remove', N'#', N'admin', N'2018-03-16 11:33:00.0000000', N'ry', N'2018-03-16 11:33:00.0000000', N'', N'')
- ;
- INSERT INTO sys_menu (menu_id, menu_name, parent_id, order_num, url, menu_type, visible, perms, icon, create_by, create_time, update_by, update_time, remark, target) VALUES (N'1045', N'日志导出', N'501', N'3', N'#', N'F', N'0', N'monitor:logininfor:export', N'#', N'admin', N'2018-03-16 11:33:00.0000000', N'ry', N'2018-03-16 11:33:00.0000000', N'', N'')
- ;
- INSERT INTO sys_menu (menu_id, menu_name, parent_id, order_num, url, menu_type, visible, perms, icon, create_by, create_time, update_by, update_time, remark, target) VALUES (N'1046', N'在线查询', N'109', N'1', N'#', N'F', N'0', N'monitor:online:list', N'#', N'admin', N'2018-03-16 11:33:00.0000000', N'ry', N'2018-03-16 11:33:00.0000000', N'', N'')
- ;
- INSERT INTO sys_menu (menu_id, menu_name, parent_id, order_num, url, menu_type, visible, perms, icon, create_by, create_time, update_by, update_time, remark, target) VALUES (N'1047', N'批量强退', N'109', N'2', N'#', N'F', N'0', N'monitor:online:batchForceLogout', N'#', N'admin', N'2018-03-16 11:33:00.0000000', N'ry', N'2018-03-16 11:33:00.0000000', N'', N'')
- ;
- INSERT INTO sys_menu (menu_id, menu_name, parent_id, order_num, url, menu_type, visible, perms, icon, create_by, create_time, update_by, update_time, remark, target) VALUES (N'1048', N'单条强退', N'109', N'3', N'#', N'F', N'0', N'monitor:online:forceLogout', N'#', N'admin', N'2018-03-16 11:33:00.0000000', N'ry', N'2018-03-16 11:33:00.0000000', N'', N'')
- ;
- INSERT INTO sys_menu (menu_id, menu_name, parent_id, order_num, url, menu_type, visible, perms, icon, create_by, create_time, update_by, update_time, remark, target) VALUES (N'1049', N'任务查询', N'110', N'1', N'#', N'F', N'0', N'monitor:job:list', N'#', N'admin', N'2018-03-16 11:33:00.0000000', N'ry', N'2018-03-16 11:33:00.0000000', N'', N'')
- ;
- INSERT INTO sys_menu (menu_id, menu_name, parent_id, order_num, url, menu_type, visible, perms, icon, create_by, create_time, update_by, update_time, remark, target) VALUES (N'1050', N'任务新增', N'110', N'2', N'#', N'F', N'0', N'monitor:job:add', N'#', N'admin', N'2018-03-16 11:33:00.0000000', N'ry', N'2018-03-16 11:33:00.0000000', N'', N'')
- ;
- INSERT INTO sys_menu (menu_id, menu_name, parent_id, order_num, url, menu_type, visible, perms, icon, create_by, create_time, update_by, update_time, remark, target) VALUES (N'1051', N'任务修改', N'110', N'3', N'#', N'F', N'0', N'monitor:job:edit', N'#', N'admin', N'2018-03-16 11:33:00.0000000', N'ry', N'2018-03-16 11:33:00.0000000', N'', N'')
- ;
- INSERT INTO sys_menu (menu_id, menu_name, parent_id, order_num, url, menu_type, visible, perms, icon, create_by, create_time, update_by, update_time, remark, target) VALUES (N'1052', N'任务删除', N'110', N'4', N'#', N'F', N'0', N'monitor:job:remove', N'#', N'admin', N'2018-03-16 11:33:00.0000000', N'ry', N'2018-03-16 11:33:00.0000000', N'', N'')
- ;
- INSERT INTO sys_menu (menu_id, menu_name, parent_id, order_num, url, menu_type, visible, perms, icon, create_by, create_time, update_by, update_time, remark, target) VALUES (N'1053', N'状态修改', N'110', N'5', N'#', N'F', N'0', N'monitor:job:changeStatus', N'#', N'admin', N'2018-03-16 11:33:00.0000000', N'ry', N'2018-03-16 11:33:00.0000000', N'', N'')
- ;
- INSERT INTO sys_menu (menu_id, menu_name, parent_id, order_num, url, menu_type, visible, perms, icon, create_by, create_time, update_by, update_time, remark, target) VALUES (N'1054', N'任务详细', N'110', N'6', N'#', N'F', N'0', N'monitor:job:detail', N'#', N'admin', N'2018-03-16 11:33:00.0000000', N'ry', N'2018-03-16 11:33:00.0000000', N'', N'')
- ;
- INSERT INTO sys_menu (menu_id, menu_name, parent_id, order_num, url, menu_type, visible, perms, icon, create_by, create_time, update_by, update_time, remark, target) VALUES (N'1055', N'任务导出', N'110', N'7', N'#', N'F', N'0', N'monitor:job:export', N'#', N'admin', N'2018-03-16 11:33:00.0000000', N'ry', N'2018-03-16 11:33:00.0000000', N'', N'')
- ;
- INSERT INTO sys_menu (menu_id, menu_name, parent_id, order_num, url, menu_type, visible, perms, icon, create_by, create_time, update_by, update_time, remark, target) VALUES (N'1056', N'生成查询', N'114', N'1', N'#', N'F', N'0', N'tool:gen:list', N'#', N'admin', N'2018-03-16 11:33:00.0000000', N'ry', N'2018-03-16 11:33:00.0000000', N'', N'')
- ;
- INSERT INTO sys_menu (menu_id, menu_name, parent_id, order_num, url, menu_type, visible, perms, icon, create_by, create_time, update_by, update_time, remark, target) VALUES (N'1057', N'生成代码', N'114', N'2', N'#', N'F', N'0', N'tool:gen:edit', N'#', N'admin', N'2018-03-16 11:33:00.0000000', N'ry', N'2018-03-16 11:33:00.0000000', N'', N'')
- ;
- INSERT INTO sys_menu (menu_id, menu_name, parent_id, order_num, url, menu_type, visible, perms, icon, create_by, create_time, update_by, update_time, remark, target) VALUES (N'2042', N'生成删除', N'114', N'3', N'#', N'F', N'0', N'tool:gen:remove', N'#', N'admin', N'2018-03-16 11:33:00.0000000', N'ry', N'2018-03-16 11:33:00.0000000', N'', N'')
- ;
- INSERT INTO sys_menu (menu_id, menu_name, parent_id, order_num, url, menu_type, visible, perms, icon, create_by, create_time, update_by, update_time, remark, target) VALUES (N'2043', N'预览代码', N'114', N'4', N'#', N'F', N'0', N'tool:gen:preview', N'#', N'admin', N'2018-03-16 11:33:00.0000000', N'ry', N'2018-03-16 11:33:00.0000000', N'', N'')
- ;
- INSERT INTO sys_menu (menu_id, menu_name, parent_id, order_num, url, menu_type, visible, perms, icon, create_by, create_time, update_by, update_time, remark, target) VALUES (N'2044', N'生成代码', N'114', N'5', N'#', N'F', N'0', N'tool:gen:code', N'#', N'admin', N'2018-03-16 11:33:00.0000000', N'ry', N'2018-03-16 11:33:00.0000000', N'', N'')
- ;
- INSERT INTO sys_menu (menu_id, menu_name, parent_id, order_num, url, menu_type, visible, perms, icon, create_by, create_time, update_by, update_time, remark, target) VALUES (N'2045', N'途中监管功能', N'0', N'1', N'#', N'M', N'0', N'', N'fa fa-truck', N'admin', N'2021-05-26 09:06:32.4200000', N'admin', N'2022-01-12 09:24:58.5200000', N'', N'menuItem')
- ;
- INSERT INTO sys_menu (menu_id, menu_name, parent_id, order_num, url, menu_type, visible, perms, icon, create_by, create_time, update_by, update_time, remark, target) VALUES (N'2054', N'设备备案', N'3112', N'30', N'/web/sealinfo', N'C', N'0', N'web:sealinfo:view', N'#', N'admin', N'2018-03-01 00:00:00.0000000', N'admin', N'2022-08-03 13:56:45.3270000', N'关锁基本信息菜单', N'menuItem')
- ;
- INSERT INTO sys_menu (menu_id, menu_name, parent_id, order_num, url, menu_type, visible, perms, icon, create_by, create_time, update_by, update_time, remark, target) VALUES (N'2055', N'关锁基本信息查询', N'2054', N'1', N'#', N'F', N'0', N'web:sealinfo:list', N'#', N'admin', N'2018-03-01 00:00:00.0000000', N'ry', N'2018-03-01 00:00:00.0000000', N'', N'')
- ;
- INSERT INTO sys_menu (menu_id, menu_name, parent_id, order_num, url, menu_type, visible, perms, icon, create_by, create_time, update_by, update_time, remark, target) VALUES (N'2056', N'关锁基本信息新增', N'2054', N'2', N'#', N'F', N'0', N'web:sealinfo:add', N'#', N'admin', N'2018-03-01 00:00:00.0000000', N'ry', N'2018-03-01 00:00:00.0000000', N'', N'')
- ;
- INSERT INTO sys_menu (menu_id, menu_name, parent_id, order_num, url, menu_type, visible, perms, icon, create_by, create_time, update_by, update_time, remark, target) VALUES (N'2057', N'关锁基本信息修改', N'2054', N'3', N'#', N'F', N'0', N'web:sealinfo:edit', N'#', N'admin', N'2018-03-01 00:00:00.0000000', N'ry', N'2018-03-01 00:00:00.0000000', N'', N'')
- ;
- INSERT INTO sys_menu (menu_id, menu_name, parent_id, order_num, url, menu_type, visible, perms, icon, create_by, create_time, update_by, update_time, remark, target) VALUES (N'2058', N'关锁基本信息删除', N'2054', N'4', N'#', N'F', N'0', N'web:sealinfo:remove', N'#', N'admin', N'2018-03-01 00:00:00.0000000', N'ry', N'2018-03-01 00:00:00.0000000', N'', N'')
- ;
- INSERT INTO sys_menu (menu_id, menu_name, parent_id, order_num, url, menu_type, visible, perms, icon, create_by, create_time, update_by, update_time, remark, target) VALUES (N'2059', N'关锁基本信息导出', N'2054', N'5', N'#', N'F', N'0', N'web:sealinfo:export', N'#', N'admin', N'2018-03-01 00:00:00.0000000', N'ry', N'2018-03-01 00:00:00.0000000', N'', N'')
- ;
- INSERT INTO sys_menu (menu_id, menu_name, parent_id, order_num, url, menu_type, visible, perms, icon, create_by, create_time, update_by, update_time, remark, target) VALUES (N'2060', N'历史轨迹回放', N'2045', N'50', N'/web/trajectory', N'C', N'0', N'web:trajectory:view', N'#', N'admin', N'2018-03-01 00:00:00.0000000', N'admin', N'2022-01-12 09:20:32.6033333', N'轨迹查询菜单', N'menuItem')
- ;
- INSERT INTO sys_menu (menu_id, menu_name, parent_id, order_num, url, menu_type, visible, perms, icon, create_by, create_time, update_by, update_time, remark, target) VALUES (N'2061', N'轨迹查询查询', N'2060', N'1', N'#', N'F', N'0', N'web:trajectory:list', N'#', N'admin', N'2018-03-01 00:00:00.0000000', N'ry', N'2018-03-01 00:00:00.0000000', N'', N'')
- ;
- INSERT INTO sys_menu (menu_id, menu_name, parent_id, order_num, url, menu_type, visible, perms, icon, create_by, create_time, update_by, update_time, remark, target) VALUES (N'2062', N'轨迹查询新增', N'2060', N'2', N'#', N'F', N'0', N'web:trajectory:add', N'#', N'admin', N'2018-03-01 00:00:00.0000000', N'ry', N'2018-03-01 00:00:00.0000000', N'', N'')
- ;
- INSERT INTO sys_menu (menu_id, menu_name, parent_id, order_num, url, menu_type, visible, perms, icon, create_by, create_time, update_by, update_time, remark, target) VALUES (N'2063', N'轨迹查询修改', N'2060', N'3', N'#', N'F', N'0', N'web:trajectory:edit', N'#', N'admin', N'2018-03-01 00:00:00.0000000', N'ry', N'2018-03-01 00:00:00.0000000', N'', N'')
- ;
- INSERT INTO sys_menu (menu_id, menu_name, parent_id, order_num, url, menu_type, visible, perms, icon, create_by, create_time, update_by, update_time, remark, target) VALUES (N'2064', N'轨迹查询删除', N'2060', N'4', N'#', N'F', N'0', N'web:trajectory:remove', N'#', N'admin', N'2018-03-01 00:00:00.0000000', N'ry', N'2018-03-01 00:00:00.0000000', N'', N'')
- ;
- INSERT INTO sys_menu (menu_id, menu_name, parent_id, order_num, url, menu_type, visible, perms, icon, create_by, create_time, update_by, update_time, remark, target) VALUES (N'2065', N'轨迹查询导出', N'2060', N'5', N'#', N'F', N'0', N'web:trajectory:export', N'#', N'admin', N'2018-03-01 00:00:00.0000000', N'ry', N'2018-03-01 00:00:00.0000000', N'', N'')
- ;
- INSERT INTO sys_menu (menu_id, menu_name, parent_id, order_num, url, menu_type, visible, perms, icon, create_by, create_time, update_by, update_time, remark, target) VALUES (N'2066', N'车辆管理', N'2045', N'40', N'/web/carBindInfo', N'C', N'0', N'web:carBindInfo:view', N'#', N'admin', N'2018-03-01 00:00:00.0000000', N'admin', N'2021-12-23 06:47:28.1033333', N'绑定运输工具信息菜单', N'menuItem')
- ;
- INSERT INTO sys_menu (menu_id, menu_name, parent_id, order_num, url, menu_type, visible, perms, icon, create_by, create_time, update_by, update_time, remark, target) VALUES (N'2067', N'绑定运输工具信息查询', N'2066', N'1', N'#', N'F', N'0', N'web:carBindInfo:list', N'#', N'admin', N'2018-03-01 00:00:00.0000000', N'ry', N'2018-03-01 00:00:00.0000000', N'', N'')
- ;
- INSERT INTO sys_menu (menu_id, menu_name, parent_id, order_num, url, menu_type, visible, perms, icon, create_by, create_time, update_by, update_time, remark, target) VALUES (N'2068', N'绑定运输工具信息新增', N'2066', N'2', N'#', N'F', N'0', N'web:carBindInfo:add', N'#', N'admin', N'2018-03-01 00:00:00.0000000', N'ry', N'2018-03-01 00:00:00.0000000', N'', N'')
- ;
- INSERT INTO sys_menu (menu_id, menu_name, parent_id, order_num, url, menu_type, visible, perms, icon, create_by, create_time, update_by, update_time, remark, target) VALUES (N'2069', N'绑定运输工具信息修改', N'2066', N'3', N'#', N'F', N'0', N'web:carBindInfo:edit', N'#', N'admin', N'2018-03-01 00:00:00.0000000', N'ry', N'2018-03-01 00:00:00.0000000', N'', N'')
- ;
- INSERT INTO sys_menu (menu_id, menu_name, parent_id, order_num, url, menu_type, visible, perms, icon, create_by, create_time, update_by, update_time, remark, target) VALUES (N'2070', N'绑定运输工具信息删除', N'2066', N'4', N'#', N'F', N'0', N'web:carBindInfo:remove', N'#', N'admin', N'2018-03-01 00:00:00.0000000', N'ry', N'2018-03-01 00:00:00.0000000', N'', N'')
- ;
- INSERT INTO sys_menu (menu_id, menu_name, parent_id, order_num, url, menu_type, visible, perms, icon, create_by, create_time, update_by, update_time, remark, target) VALUES (N'2071', N'绑定运输工具信息导出', N'2066', N'5', N'#', N'F', N'0', N'web:carBindInfo:export', N'#', N'admin', N'2018-03-01 00:00:00.0000000', N'ry', N'2018-03-01 00:00:00.0000000', N'', N'')
- ;
- INSERT INTO sys_menu (menu_id, menu_name, parent_id, order_num, url, menu_type, visible, perms, icon, create_by, create_time, update_by, update_time, remark, target) VALUES (N'2072', N'历史报警记录', N'2045', N'90', N'/web/ALARM', N'C', N'0', N'web:ALARM:view', N'#', N'admin', N'2018-03-01 00:00:00.0000000', N'admin', N'2022-01-19 12:13:55.5900000', N'报警信息菜单', N'menuItem')
- ;
- INSERT INTO sys_menu (menu_id, menu_name, parent_id, order_num, url, menu_type, visible, perms, icon, create_by, create_time, update_by, update_time, remark, target) VALUES (N'2073', N'报警信息查询', N'2072', N'1', N'#', N'F', N'0', N'web:ALARM:list', N'#', N'admin', N'2018-03-01 00:00:00.0000000', N'ry', N'2018-03-01 00:00:00.0000000', N'', N'')
- ;
- INSERT INTO sys_menu (menu_id, menu_name, parent_id, order_num, url, menu_type, visible, perms, icon, create_by, create_time, update_by, update_time, remark, target) VALUES (N'2074', N'报警信息新增', N'2072', N'2', N'#', N'F', N'0', N'web:ALARM:add', N'#', N'admin', N'2018-03-01 00:00:00.0000000', N'ry', N'2018-03-01 00:00:00.0000000', N'', N'')
- ;
- INSERT INTO sys_menu (menu_id, menu_name, parent_id, order_num, url, menu_type, visible, perms, icon, create_by, create_time, update_by, update_time, remark, target) VALUES (N'2075', N'报警信息修改', N'2072', N'3', N'#', N'F', N'0', N'web:ALARM:edit', N'#', N'admin', N'2018-03-01 00:00:00.0000000', N'ry', N'2018-03-01 00:00:00.0000000', N'', N'')
- ;
- INSERT INTO sys_menu (menu_id, menu_name, parent_id, order_num, url, menu_type, visible, perms, icon, create_by, create_time, update_by, update_time, remark, target) VALUES (N'2076', N'报警信息删除', N'2072', N'4', N'#', N'F', N'0', N'web:ALARM:remove', N'#', N'admin', N'2018-03-01 00:00:00.0000000', N'ry', N'2018-03-01 00:00:00.0000000', N'', N'')
- ;
- INSERT INTO sys_menu (menu_id, menu_name, parent_id, order_num, url, menu_type, visible, perms, icon, create_by, create_time, update_by, update_time, remark, target) VALUES (N'2077', N'报警信息导出', N'2072', N'5', N'#', N'F', N'0', N'web:ALARM:export', N'#', N'admin', N'2018-03-01 00:00:00.0000000', N'ry', N'2018-03-01 00:00:00.0000000', N'', N'')
- ;
- INSERT INTO sys_menu (menu_id, menu_name, parent_id, order_num, url, menu_type, visible, perms, icon, create_by, create_time, update_by, update_time, remark, target) VALUES (N'2078', N'预警设置', N'2045', N'80', N'/web/SETTINGS', N'C', N'1', N'web:SETTINGS:view', N'#', N'admin', N'2018-03-01 00:00:00.0000000', N'admin', N'2022-01-19 07:19:25.2833333', N'预警设置菜单', N'menuItem')
- ;
- INSERT INTO sys_menu (menu_id, menu_name, parent_id, order_num, url, menu_type, visible, perms, icon, create_by, create_time, update_by, update_time, remark, target) VALUES (N'2079', N'预警设置查询', N'2078', N'1', N'#', N'F', N'0', N'web:SETTINGS:list', N'#', N'admin', N'2018-03-01 00:00:00.0000000', N'ry', N'2018-03-01 00:00:00.0000000', N'', N'')
- ;
- INSERT INTO sys_menu (menu_id, menu_name, parent_id, order_num, url, menu_type, visible, perms, icon, create_by, create_time, update_by, update_time, remark, target) VALUES (N'2080', N'预警设置新增', N'2078', N'2', N'#', N'F', N'0', N'web:SETTINGS:add', N'#', N'admin', N'2018-03-01 00:00:00.0000000', N'ry', N'2018-03-01 00:00:00.0000000', N'', N'')
- ;
- INSERT INTO sys_menu (menu_id, menu_name, parent_id, order_num, url, menu_type, visible, perms, icon, create_by, create_time, update_by, update_time, remark, target) VALUES (N'2081', N'预警设置修改', N'2078', N'3', N'#', N'F', N'0', N'web:SETTINGS:edit', N'#', N'admin', N'2018-03-01 00:00:00.0000000', N'ry', N'2018-03-01 00:00:00.0000000', N'', N'')
- ;
- INSERT INTO sys_menu (menu_id, menu_name, parent_id, order_num, url, menu_type, visible, perms, icon, create_by, create_time, update_by, update_time, remark, target) VALUES (N'2082', N'预警设置删除', N'2078', N'4', N'#', N'F', N'0', N'web:SETTINGS:remove', N'#', N'admin', N'2018-03-01 00:00:00.0000000', N'ry', N'2018-03-01 00:00:00.0000000', N'', N'')
- ;
- INSERT INTO sys_menu (menu_id, menu_name, parent_id, order_num, url, menu_type, visible, perms, icon, create_by, create_time, update_by, update_time, remark, target) VALUES (N'2083', N'预警设置导出', N'2078', N'5', N'#', N'F', N'0', N'web:SETTINGS:export', N'#', N'admin', N'2018-03-01 00:00:00.0000000', N'ry', N'2018-03-01 00:00:00.0000000', N'', N'')
- ;
- INSERT INTO sys_menu (menu_id, menu_name, parent_id, order_num, url, menu_type, visible, perms, icon, create_by, create_time, update_by, update_time, remark, target) VALUES (N'2084', N'关锁操作记录', N'2045', N'100', N'/web/WORKFLOW', N'C', N'1', N'web:WORKFLOW:view', N'#', N'admin', N'2018-03-01 00:00:00.0000000', N'admin', N'2022-03-08 06:49:43.6200000', N'工作流菜单', N'menuItem')
- ;
- INSERT INTO sys_menu (menu_id, menu_name, parent_id, order_num, url, menu_type, visible, perms, icon, create_by, create_time, update_by, update_time, remark, target) VALUES (N'2085', N'工作流查询', N'2084', N'1', N'#', N'F', N'0', N'web:WORKFLOW:list', N'#', N'admin', N'2018-03-01 00:00:00.0000000', N'ry', N'2018-03-01 00:00:00.0000000', N'', N'')
- ;
- INSERT INTO sys_menu (menu_id, menu_name, parent_id, order_num, url, menu_type, visible, perms, icon, create_by, create_time, update_by, update_time, remark, target) VALUES (N'2086', N'工作流新增', N'2084', N'2', N'#', N'F', N'0', N'web:WORKFLOW:add', N'#', N'admin', N'2018-03-01 00:00:00.0000000', N'ry', N'2018-03-01 00:00:00.0000000', N'', N'')
- ;
- INSERT INTO sys_menu (menu_id, menu_name, parent_id, order_num, url, menu_type, visible, perms, icon, create_by, create_time, update_by, update_time, remark, target) VALUES (N'2087', N'工作流修改', N'2084', N'3', N'#', N'F', N'0', N'web:WORKFLOW:edit', N'#', N'admin', N'2018-03-01 00:00:00.0000000', N'ry', N'2018-03-01 00:00:00.0000000', N'', N'')
- ;
- INSERT INTO sys_menu (menu_id, menu_name, parent_id, order_num, url, menu_type, visible, perms, icon, create_by, create_time, update_by, update_time, remark, target) VALUES (N'2088', N'工作流删除', N'2084', N'4', N'#', N'F', N'0', N'web:WORKFLOW:remove', N'#', N'admin', N'2018-03-01 00:00:00.0000000', N'ry', N'2018-03-01 00:00:00.0000000', N'', N'')
- ;
- INSERT INTO sys_menu (menu_id, menu_name, parent_id, order_num, url, menu_type, visible, perms, icon, create_by, create_time, update_by, update_time, remark, target) VALUES (N'2089', N'工作流导出', N'2084', N'5', N'#', N'F', N'0', N'web:WORKFLOW:export', N'#', N'admin', N'2018-03-01 00:00:00.0000000', N'ry', N'2018-03-01 00:00:00.0000000', N'', N'')
- ;
- INSERT INTO sys_menu (menu_id, menu_name, parent_id, order_num, url, menu_type, visible, perms, icon, create_by, create_time, update_by, update_time, remark, target) VALUES (N'3106', N'位置信息管理', N'2045', N'300', N'/web/locationInfo', N'C', N'1', N'web:locationInfo:view', N'#', N'admin', N'2018-03-01 00:00:00.0000000', N'admin', N'2022-01-12 08:45:50.4333333', N'位置信息菜单', N'menuItem')
- ;
- INSERT INTO sys_menu (menu_id, menu_name, parent_id, order_num, url, menu_type, visible, perms, icon, create_by, create_time, update_by, update_time, remark, target) VALUES (N'3079', N'设备远程诊断管理', N'2045', N'60', N'/web/LOCK_STATUS', N'C', N'0', N'web:LOCK_STATUS:view', N'#', N'admin', N'2018-03-01 00:00:00.0000000', N'admin', N'2022-03-08 06:51:39.1600000', N'状态菜单', N'menuItem')
- ;
- INSERT INTO sys_menu (menu_id, menu_name, parent_id, order_num, url, menu_type, visible, perms, icon, create_by, create_time, update_by, update_time, remark, target) VALUES (N'3080', N'查询', N'3079', N'1', N'#', N'F', N'0', N'web:LOCK_STATUS:list', N'#', N'admin', N'2018-03-01 00:00:00.0000000', N'ry', N'2018-03-01 00:00:00.0000000', N'', N'')
- ;
- INSERT INTO sys_menu (menu_id, menu_name, parent_id, order_num, url, menu_type, visible, perms, icon, create_by, create_time, update_by, update_time, remark, target) VALUES (N'3062', N'设备组配置', N'3112', N'20', N'/web/GROUP', N'C', N'0', N'web:GROUP:view', N'#', N'admin', N'2018-03-01 00:00:00.0000000', N'admin', N'2022-07-30 09:50:17.9400000', N'组名菜单', N'menuItem')
- ;
- INSERT INTO sys_menu (menu_id, menu_name, parent_id, order_num, url, menu_type, visible, perms, icon, create_by, create_time, update_by, update_time, remark, target) VALUES (N'3074', N'查询', N'3062', N'1', N'#', N'F', N'0', N'web:GROUP:list', N'#', N'admin', N'2018-03-01 00:00:00.0000000', N'ry', N'2018-03-01 00:00:00.0000000', N'', N'')
- ;
- INSERT INTO sys_menu (menu_id, menu_name, parent_id, order_num, url, menu_type, visible, perms, icon, create_by, create_time, update_by, update_time, remark, target) VALUES (N'3075', N'新增', N'3062', N'2', N'#', N'F', N'0', N'web:GROUP:add', N'#', N'admin', N'2018-03-01 00:00:00.0000000', N'ry', N'2018-03-01 00:00:00.0000000', N'', N'')
- ;
- INSERT INTO sys_menu (menu_id, menu_name, parent_id, order_num, url, menu_type, visible, perms, icon, create_by, create_time, update_by, update_time, remark, target) VALUES (N'3076', N'修改', N'3062', N'3', N'#', N'F', N'0', N'web:GROUP:edit', N'#', N'admin', N'2018-03-01 00:00:00.0000000', N'ry', N'2018-03-01 00:00:00.0000000', N'', N'')
- ;
- INSERT INTO sys_menu (menu_id, menu_name, parent_id, order_num, url, menu_type, visible, perms, icon, create_by, create_time, update_by, update_time, remark, target) VALUES (N'3077', N'删除', N'3062', N'4', N'#', N'F', N'0', N'web:GROUP:remove', N'#', N'admin', N'2018-03-01 00:00:00.0000000', N'ry', N'2018-03-01 00:00:00.0000000', N'', N'')
- ;
- INSERT INTO sys_menu (menu_id, menu_name, parent_id, order_num, url, menu_type, visible, perms, icon, create_by, create_time, update_by, update_time, remark, target) VALUES (N'3078', N'导出', N'3062', N'5', N'#', N'F', N'0', N'web:GROUP:export', N'#', N'admin', N'2018-03-01 00:00:00.0000000', N'ry', N'2018-03-01 00:00:00.0000000', N'', N'')
- ;
- INSERT INTO sys_menu (menu_id, menu_name, parent_id, order_num, url, menu_type, visible, perms, icon, create_by, create_time, update_by, update_time, remark, target) VALUES (N'3081', N'新增', N'3079', N'2', N'#', N'F', N'0', N'web:LOCK_STATUS:add', N'#', N'admin', N'2018-03-01 00:00:00.0000000', N'ry', N'2018-03-01 00:00:00.0000000', N'', N'')
- ;
- INSERT INTO sys_menu (menu_id, menu_name, parent_id, order_num, url, menu_type, visible, perms, icon, create_by, create_time, update_by, update_time, remark, target) VALUES (N'3082', N'修改', N'3079', N'3', N'#', N'F', N'0', N'web:LOCK_STATUS:edit', N'#', N'admin', N'2018-03-01 00:00:00.0000000', N'ry', N'2018-03-01 00:00:00.0000000', N'', N'')
- ;
- INSERT INTO sys_menu (menu_id, menu_name, parent_id, order_num, url, menu_type, visible, perms, icon, create_by, create_time, update_by, update_time, remark, target) VALUES (N'3083', N'删除', N'3079', N'4', N'#', N'F', N'0', N'web:LOCK_STATUS:remove', N'#', N'admin', N'2018-03-01 00:00:00.0000000', N'ry', N'2018-03-01 00:00:00.0000000', N'', N'')
- ;
- INSERT INTO sys_menu (menu_id, menu_name, parent_id, order_num, url, menu_type, visible, perms, icon, create_by, create_time, update_by, update_time, remark, target) VALUES (N'3084', N'导出', N'3079', N'5', N'#', N'F', N'0', N'web:LOCK_STATUS:export', N'#', N'admin', N'2018-03-01 00:00:00.0000000', N'ry', N'2018-03-01 00:00:00.0000000', N'', N'')
- ;
- INSERT INTO sys_menu (menu_id, menu_name, parent_id, order_num, url, menu_type, visible, perms, icon, create_by, create_time, update_by, update_time, remark, target) VALUES (N'3086', N'附加信息描述', N'2045', N'110', N'/web/extraInfoDesc', N'C', N'1', N'web:extraInfoDesc:view', N'#', N'admin', N'2018-03-01 00:00:00.0000000', N'admin', N'2021-12-23 06:49:49.0600000', N'附加信息描述菜单', N'menuItem')
- ;
- INSERT INTO sys_menu (menu_id, menu_name, parent_id, order_num, url, menu_type, visible, perms, icon, create_by, create_time, update_by, update_time, remark, target) VALUES (N'3087', N'附加信息描述查询', N'3086', N'1', N'#', N'F', N'0', N'web:extraInfoDesc:list', N'#', N'admin', N'2018-03-01 00:00:00.0000000', N'ry', N'2018-03-01 00:00:00.0000000', N'', N'')
- ;
- INSERT INTO sys_menu (menu_id, menu_name, parent_id, order_num, url, menu_type, visible, perms, icon, create_by, create_time, update_by, update_time, remark, target) VALUES (N'3088', N'附加信息描述新增', N'3086', N'2', N'#', N'F', N'0', N'web:extraInfoDesc:add', N'#', N'admin', N'2018-03-01 00:00:00.0000000', N'ry', N'2018-03-01 00:00:00.0000000', N'', N'')
- ;
- INSERT INTO sys_menu (menu_id, menu_name, parent_id, order_num, url, menu_type, visible, perms, icon, create_by, create_time, update_by, update_time, remark, target) VALUES (N'3089', N'附加信息描述修改', N'3086', N'3', N'#', N'F', N'0', N'web:extraInfoDesc:edit', N'#', N'admin', N'2018-03-01 00:00:00.0000000', N'ry', N'2018-03-01 00:00:00.0000000', N'', N'')
- ;
- INSERT INTO sys_menu (menu_id, menu_name, parent_id, order_num, url, menu_type, visible, perms, icon, create_by, create_time, update_by, update_time, remark, target) VALUES (N'3090', N'附加信息描述删除', N'3086', N'4', N'#', N'F', N'0', N'web:extraInfoDesc:remove', N'#', N'admin', N'2018-03-01 00:00:00.0000000', N'ry', N'2018-03-01 00:00:00.0000000', N'', N'')
- ;
- INSERT INTO sys_menu (menu_id, menu_name, parent_id, order_num, url, menu_type, visible, perms, icon, create_by, create_time, update_by, update_time, remark, target) VALUES (N'3091', N'附加信息描述导出', N'3086', N'5', N'#', N'F', N'0', N'web:extraInfoDesc:export', N'#', N'admin', N'2018-03-01 00:00:00.0000000', N'ry', N'2018-03-01 00:00:00.0000000', N'', N'')
- ;
- INSERT INTO sys_menu (menu_id, menu_name, parent_id, order_num, url, menu_type, visible, perms, icon, create_by, create_time, update_by, update_time, remark, target) VALUES (N'3092', N'GPS位置信息', N'2045', N'200', N'/web/gpsLocation', N'C', N'1', N'web:gpsLocation:view', N'#', N'admin', N'2018-03-01 00:00:00.0000000', N'admin', N'2022-03-08 06:49:56.4433333', N'GPS位置信息菜单', N'menuItem')
- ;
- INSERT INTO sys_menu (menu_id, menu_name, parent_id, order_num, url, menu_type, visible, perms, icon, create_by, create_time, update_by, update_time, remark, target) VALUES (N'3093', N'GPS位置信息查询', N'3092', N'1', N'#', N'F', N'0', N'web:gpsLocation:list', N'#', N'admin', N'2018-03-01 00:00:00.0000000', N'ry', N'2018-03-01 00:00:00.0000000', N'', N'')
- ;
- INSERT INTO sys_menu (menu_id, menu_name, parent_id, order_num, url, menu_type, visible, perms, icon, create_by, create_time, update_by, update_time, remark, target) VALUES (N'3094', N'GPS位置信息新增', N'3092', N'2', N'#', N'F', N'0', N'web:gpsLocation:add', N'#', N'admin', N'2018-03-01 00:00:00.0000000', N'ry', N'2018-03-01 00:00:00.0000000', N'', N'')
- ;
- INSERT INTO sys_menu (menu_id, menu_name, parent_id, order_num, url, menu_type, visible, perms, icon, create_by, create_time, update_by, update_time, remark, target) VALUES (N'3095', N'GPS位置信息修改', N'3092', N'3', N'#', N'F', N'0', N'web:gpsLocation:edit', N'#', N'admin', N'2018-03-01 00:00:00.0000000', N'ry', N'2018-03-01 00:00:00.0000000', N'', N'')
- ;
- INSERT INTO sys_menu (menu_id, menu_name, parent_id, order_num, url, menu_type, visible, perms, icon, create_by, create_time, update_by, update_time, remark, target) VALUES (N'3096', N'GPS位置信息删除', N'3092', N'4', N'#', N'F', N'0', N'web:gpsLocation:remove', N'#', N'admin', N'2018-03-01 00:00:00.0000000', N'ry', N'2018-03-01 00:00:00.0000000', N'', N'')
- ;
- INSERT INTO sys_menu (menu_id, menu_name, parent_id, order_num, url, menu_type, visible, perms, icon, create_by, create_time, update_by, update_time, remark, target) VALUES (N'3097', N'GPS位置信息导出', N'3092', N'5', N'#', N'F', N'0', N'web:gpsLocation:export', N'#', N'admin', N'2018-03-01 00:00:00.0000000', N'ry', N'2018-03-01 00:00:00.0000000', N'', N'')
- ;
- INSERT INTO sys_menu (menu_id, menu_name, parent_id, order_num, url, menu_type, visible, perms, icon, create_by, create_time, update_by, update_time, remark, target) VALUES (N'3100', N'基站位置信息', N'2045', N'120', N'/web/baseStationLocationInfo', N'C', N'1', N'web:baseStationLocationInfo:view', N'#', N'admin', N'2018-03-01 00:00:00.0000000', N'admin', N'2021-12-23 06:49:55.5100000', N'基站位置信息菜单', N'menuItem')
- ;
- INSERT INTO sys_menu (menu_id, menu_name, parent_id, order_num, url, menu_type, visible, perms, icon, create_by, create_time, update_by, update_time, remark, target) VALUES (N'3101', N'基站位置信息查询', N'3100', N'1', N'#', N'F', N'0', N'web:baseStationLocationInfo:list', N'#', N'admin', N'2018-03-01 00:00:00.0000000', N'ry', N'2018-03-01 00:00:00.0000000', N'', N'')
- ;
- INSERT INTO sys_menu (menu_id, menu_name, parent_id, order_num, url, menu_type, visible, perms, icon, create_by, create_time, update_by, update_time, remark, target) VALUES (N'3102', N'基站位置信息新增', N'3100', N'2', N'#', N'F', N'0', N'web:baseStationLocationInfo:add', N'#', N'admin', N'2018-03-01 00:00:00.0000000', N'ry', N'2018-03-01 00:00:00.0000000', N'', N'')
- ;
- INSERT INTO sys_menu (menu_id, menu_name, parent_id, order_num, url, menu_type, visible, perms, icon, create_by, create_time, update_by, update_time, remark, target) VALUES (N'3103', N'基站位置信息修改', N'3100', N'3', N'#', N'F', N'0', N'web:baseStationLocationInfo:edit', N'#', N'admin', N'2018-03-01 00:00:00.0000000', N'ry', N'2018-03-01 00:00:00.0000000', N'', N'')
- ;
- INSERT INTO sys_menu (menu_id, menu_name, parent_id, order_num, url, menu_type, visible, perms, icon, create_by, create_time, update_by, update_time, remark, target) VALUES (N'3104', N'基站位置信息删除', N'3100', N'4', N'#', N'F', N'0', N'web:baseStationLocationInfo:remove', N'#', N'admin', N'2018-03-01 00:00:00.0000000', N'ry', N'2018-03-01 00:00:00.0000000', N'', N'')
- ;
- INSERT INTO sys_menu (menu_id, menu_name, parent_id, order_num, url, menu_type, visible, perms, icon, create_by, create_time, update_by, update_time, remark, target) VALUES (N'3105', N'基站位置信息导出', N'3100', N'5', N'#', N'F', N'0', N'web:baseStationLocationInfo:export', N'#', N'admin', N'2018-03-01 00:00:00.0000000', N'ry', N'2018-03-01 00:00:00.0000000', N'', N'')
- ;
- INSERT INTO sys_menu (menu_id, menu_name, parent_id, order_num, url, menu_type, visible, perms, icon, create_by, create_time, update_by, update_time, remark, target) VALUES (N'3068', N'园区路径规划配置', N'2045', N'10', N'/web/LOCK_GROUP', N'C', N'1', N'web:LOCK_GROUP:view', N'#', N'admin', N'2018-03-01 00:00:00.0000000', N'admin', N'2021-12-27 03:36:31.7500000', N'关锁对应组名菜单', N'menuItem')
- ;
- INSERT INTO sys_menu (menu_id, menu_name, parent_id, order_num, url, menu_type, visible, perms, icon, create_by, create_time, update_by, update_time, remark, target) VALUES (N'3069', N'查询', N'3068', N'1', N'#', N'F', N'0', N'web:LOCK_GROUP:list', N'#', N'admin', N'2018-03-01 00:00:00.0000000', N'ry', N'2018-03-01 00:00:00.0000000', N'', N'')
- ;
- INSERT INTO sys_menu (menu_id, menu_name, parent_id, order_num, url, menu_type, visible, perms, icon, create_by, create_time, update_by, update_time, remark, target) VALUES (N'3070', N'新增', N'3068', N'2', N'#', N'F', N'0', N'web:LOCK_GROUP:add', N'#', N'admin', N'2018-03-01 00:00:00.0000000', N'ry', N'2018-03-01 00:00:00.0000000', N'', N'')
- ;
- INSERT INTO sys_menu (menu_id, menu_name, parent_id, order_num, url, menu_type, visible, perms, icon, create_by, create_time, update_by, update_time, remark, target) VALUES (N'3071', N'修改', N'3068', N'3', N'#', N'F', N'0', N'web:LOCK_GROUP:edit', N'#', N'admin', N'2018-03-01 00:00:00.0000000', N'ry', N'2018-03-01 00:00:00.0000000', N'', N'')
- ;
- INSERT INTO sys_menu (menu_id, menu_name, parent_id, order_num, url, menu_type, visible, perms, icon, create_by, create_time, update_by, update_time, remark, target) VALUES (N'3072', N'删除', N'3068', N'4', N'#', N'F', N'0', N'web:LOCK_GROUP:remove', N'#', N'admin', N'2018-03-01 00:00:00.0000000', N'ry', N'2018-03-01 00:00:00.0000000', N'', N'')
- ;
- INSERT INTO sys_menu (menu_id, menu_name, parent_id, order_num, url, menu_type, visible, perms, icon, create_by, create_time, update_by, update_time, remark, target) VALUES (N'3073', N'导出', N'3068', N'5', N'#', N'F', N'0', N'web:LOCK_GROUP:export', N'#', N'admin', N'2018-03-01 00:00:00.0000000', N'ry', N'2018-03-01 00:00:00.0000000', N'', N'')
- ;
- INSERT INTO sys_menu (menu_id, menu_name, parent_id, order_num, url, menu_type, visible, perms, icon, create_by, create_time, update_by, update_time, remark, target) VALUES (N'3085', N'设备定位', N'2045', N'70', N'/web/trajectory/sealLocation', N'C', N'0', N'web:trajectory:view', N'fa fa-location-arrow', N'admin', N'2021-06-03 09:57:03.6130000', N'admin', N'2022-07-30 09:50:56.2430000', N'', N'menuBlank')
- ;
- INSERT INTO sys_menu (menu_id, menu_name, parent_id, order_num, url, menu_type, visible, perms, icon, create_by, create_time, update_by, update_time, remark, target) VALUES (N'3107', N'位置信息查询', N'3106', N'1', N'#', N'F', N'0', N'web:locationInfo:list', N'#', N'admin', N'2018-03-01 00:00:00.0000000', N'ry', N'2018-03-01 00:00:00.0000000', N'', N'')
- ;
- INSERT INTO sys_menu (menu_id, menu_name, parent_id, order_num, url, menu_type, visible, perms, icon, create_by, create_time, update_by, update_time, remark, target) VALUES (N'3108', N'位置信息新增', N'3106', N'2', N'#', N'F', N'0', N'web:locationInfo:add', N'#', N'admin', N'2018-03-01 00:00:00.0000000', N'ry', N'2018-03-01 00:00:00.0000000', N'', N'')
- ;
- INSERT INTO sys_menu (menu_id, menu_name, parent_id, order_num, url, menu_type, visible, perms, icon, create_by, create_time, update_by, update_time, remark, target) VALUES (N'3109', N'位置信息修改', N'3106', N'3', N'#', N'F', N'0', N'web:locationInfo:edit', N'#', N'admin', N'2018-03-01 00:00:00.0000000', N'ry', N'2018-03-01 00:00:00.0000000', N'', N'')
- ;
- INSERT INTO sys_menu (menu_id, menu_name, parent_id, order_num, url, menu_type, visible, perms, icon, create_by, create_time, update_by, update_time, remark, target) VALUES (N'3110', N'位置信息删除', N'3106', N'4', N'#', N'F', N'0', N'web:locationInfo:remove', N'#', N'admin', N'2018-03-01 00:00:00.0000000', N'ry', N'2018-03-01 00:00:00.0000000', N'', N'')
- ;
- INSERT INTO sys_menu (menu_id, menu_name, parent_id, order_num, url, menu_type, visible, perms, icon, create_by, create_time, update_by, update_time, remark, target) VALUES (N'3111', N'位置信息导出', N'3106', N'5', N'#', N'F', N'0', N'web:locationInfo:export', N'#', N'admin', N'2018-03-01 00:00:00.0000000', N'ry', N'2018-03-01 00:00:00.0000000', N'', N'')
- ;
- INSERT INTO sys_menu (menu_id, menu_name, parent_id, order_num, url, menu_type, visible, perms, icon, create_by, create_time, update_by, update_time, remark, target) VALUES (N'3112', N'设备管理', N'0', N'0', N'#', N'C', N'0', N'', N'fa fa-unlock-alt', N'admin', N'2022-01-12 09:15:42.7433333', N'admin', N'2022-01-12 09:17:43.2333333', N'', N'menuItem')
- ;
- INSERT INTO sys_menu (menu_id, menu_name, parent_id, order_num, url, menu_type, visible, perms, icon, create_by, create_time, update_by, update_time, remark, target) VALUES (N'3113', N'电子围栏基础信息', N'2045', N'1', N'/web/FENCE', N'C', N'0', N'web:FENCE:view', N'#', N'admin', N'2018-03-01 00:00:00.0000000', N'ry', N'2018-03-01 00:00:00.0000000', N'电子围栏基础信息菜单', N'')
- ;
- INSERT INTO sys_menu (menu_id, menu_name, parent_id, order_num, url, menu_type, visible, perms, icon, create_by, create_time, update_by, update_time, remark, target) VALUES (N'3114', N'电子围栏基础信息查询', N'3113', N'1', N'#', N'F', N'0', N'web:FENCE:list', N'#', N'admin', N'2018-03-01 00:00:00.0000000', N'ry', N'2018-03-01 00:00:00.0000000', N'', N'')
- ;
- INSERT INTO sys_menu (menu_id, menu_name, parent_id, order_num, url, menu_type, visible, perms, icon, create_by, create_time, update_by, update_time, remark, target) VALUES (N'3115', N'电子围栏基础信息新增', N'3113', N'2', N'#', N'F', N'0', N'web:FENCE:add', N'#', N'admin', N'2018-03-01 00:00:00.0000000', N'ry', N'2018-03-01 00:00:00.0000000', N'', N'')
- ;
- INSERT INTO sys_menu (menu_id, menu_name, parent_id, order_num, url, menu_type, visible, perms, icon, create_by, create_time, update_by, update_time, remark, target) VALUES (N'3116', N'电子围栏基础信息修改', N'3113', N'3', N'#', N'F', N'0', N'web:FENCE:edit', N'#', N'admin', N'2018-03-01 00:00:00.0000000', N'ry', N'2018-03-01 00:00:00.0000000', N'', N'')
- ;
- INSERT INTO sys_menu (menu_id, menu_name, parent_id, order_num, url, menu_type, visible, perms, icon, create_by, create_time, update_by, update_time, remark, target) VALUES (N'3117', N'电子围栏基础信息删除', N'3113', N'4', N'#', N'F', N'0', N'web:FENCE:remove', N'#', N'admin', N'2018-03-01 00:00:00.0000000', N'ry', N'2018-03-01 00:00:00.0000000', N'', N'')
- ;
- INSERT INTO sys_menu (menu_id, menu_name, parent_id, order_num, url, menu_type, visible, perms, icon, create_by, create_time, update_by, update_time, remark, target) VALUES (N'3118', N'电子围栏基础信息导出', N'3113', N'5', N'#', N'F', N'0', N'web:FENCE:export', N'#', N'admin', N'2018-03-01 00:00:00.0000000', N'ry', N'2018-03-01 00:00:00.0000000', N'', N'')
- ;
- INSERT INTO sys_menu (menu_id, menu_name, parent_id, order_num, url, menu_type, visible, perms, icon, create_by, create_time, update_by, update_time, remark, target) VALUES (N'3121', N'IC卡基础', N'3119', N'1', N'/web/CODE', N'C', N'0', N'web:CODE:view', N'#', N'admin', N'2018-03-01 00:00:00.0000000', N'admin', N'2022-02-22 07:13:44.0566667', N'IC卡基础菜单', N'menuItem')
- ;
- INSERT INTO sys_menu (menu_id, menu_name, parent_id, order_num, url, menu_type, visible, perms, icon, create_by, create_time, update_by, update_time, remark, target) VALUES (N'3122', N'IC卡基础查询', N'3121', N'1', N'#', N'F', N'0', N'web:CODE:list', N'#', N'admin', N'2018-03-01 00:00:00.0000000', N'ry', N'2018-03-01 00:00:00.0000000', N'', N'')
- ;
- INSERT INTO sys_menu (menu_id, menu_name, parent_id, order_num, url, menu_type, visible, perms, icon, create_by, create_time, update_by, update_time, remark, target) VALUES (N'3123', N'IC卡基础新增', N'3121', N'2', N'#', N'F', N'0', N'web:CODE:add', N'#', N'admin', N'2018-03-01 00:00:00.0000000', N'ry', N'2018-03-01 00:00:00.0000000', N'', N'')
- ;
- INSERT INTO sys_menu (menu_id, menu_name, parent_id, order_num, url, menu_type, visible, perms, icon, create_by, create_time, update_by, update_time, remark, target) VALUES (N'3124', N'IC卡基础修改', N'3121', N'3', N'#', N'F', N'0', N'web:CODE:edit', N'#', N'admin', N'2018-03-01 00:00:00.0000000', N'ry', N'2018-03-01 00:00:00.0000000', N'', N'')
- ;
- INSERT INTO sys_menu (menu_id, menu_name, parent_id, order_num, url, menu_type, visible, perms, icon, create_by, create_time, update_by, update_time, remark, target) VALUES (N'3125', N'IC卡基础删除', N'3121', N'4', N'#', N'F', N'0', N'web:CODE:remove', N'#', N'admin', N'2018-03-01 00:00:00.0000000', N'ry', N'2018-03-01 00:00:00.0000000', N'', N'')
- ;
- INSERT INTO sys_menu (menu_id, menu_name, parent_id, order_num, url, menu_type, visible, perms, icon, create_by, create_time, update_by, update_time, remark, target) VALUES (N'3126', N'IC卡基础导出', N'3121', N'5', N'#', N'F', N'0', N'web:CODE:export', N'#', N'admin', N'2018-03-01 00:00:00.0000000', N'ry', N'2018-03-01 00:00:00.0000000', N'', N'')
- ;
- INSERT INTO sys_menu (menu_id, menu_name, parent_id, order_num, url, menu_type, visible, perms, icon, create_by, create_time, update_by, update_time, remark, target) VALUES (N'3127', N'IC卡用户关联', N'3119', N'1', N'/web/ic_uesr', N'C', N'0', N'web:ic_uesr:view', N'#', N'admin', N'2018-03-01 00:00:00.0000000', N'ry', N'2018-03-01 00:00:00.0000000', N'IC卡用户关联菜单', N'')
- ;
- INSERT INTO sys_menu (menu_id, menu_name, parent_id, order_num, url, menu_type, visible, perms, icon, create_by, create_time, update_by, update_time, remark, target) VALUES (N'3128', N'IC卡用户关联查询', N'3127', N'1', N'#', N'F', N'0', N'web:ic_uesr:list', N'#', N'admin', N'2018-03-01 00:00:00.0000000', N'ry', N'2018-03-01 00:00:00.0000000', N'', N'')
- ;
- INSERT INTO sys_menu (menu_id, menu_name, parent_id, order_num, url, menu_type, visible, perms, icon, create_by, create_time, update_by, update_time, remark, target) VALUES (N'3129', N'IC卡用户关联新增', N'3127', N'2', N'#', N'F', N'0', N'web:ic_uesr:add', N'#', N'admin', N'2018-03-01 00:00:00.0000000', N'ry', N'2018-03-01 00:00:00.0000000', N'', N'')
- ;
- INSERT INTO sys_menu (menu_id, menu_name, parent_id, order_num, url, menu_type, visible, perms, icon, create_by, create_time, update_by, update_time, remark, target) VALUES (N'3119', N'运维管理', N'0', N'10', N'#', N'C', N'1', N'', N'fa fa-address-book', N'admin', N'2022-01-20 09:04:44.6700000', N'admin', N'2022-03-08 06:50:29.2166667', N'', N'menuItem')
- ;
- INSERT INTO sys_menu (menu_id, menu_name, parent_id, order_num, url, menu_type, visible, perms, icon, create_by, create_time, update_by, update_time, remark, target) VALUES (N'3120', N'报表统计', N'2045', N'101', N'/web/count', N'C', N'0', N'', N'fa fa-circle-o', N'admin', N'2022-01-21 06:44:21.0433333', N'admin', N'2022-02-15 02:17:56.2266667', N'', N'menuItem')
- ;
- INSERT INTO sys_menu (menu_id, menu_name, parent_id, order_num, url, menu_type, visible, perms, icon, create_by, create_time, update_by, update_time, remark, target) VALUES (N'3130', N'IC卡用户关联修改', N'3127', N'3', N'#', N'F', N'0', N'web:ic_uesr:edit', N'#', N'admin', N'2018-03-01 00:00:00.0000000', N'ry', N'2018-03-01 00:00:00.0000000', N'', N'')
- ;
- INSERT INTO sys_menu (menu_id, menu_name, parent_id, order_num, url, menu_type, visible, perms, icon, create_by, create_time, update_by, update_time, remark, target) VALUES (N'3131', N'IC卡用户关联删除', N'3127', N'4', N'#', N'F', N'0', N'web:ic_uesr:remove', N'#', N'admin', N'2018-03-01 00:00:00.0000000', N'ry', N'2018-03-01 00:00:00.0000000', N'', N'')
- ;
- INSERT INTO sys_menu (menu_id, menu_name, parent_id, order_num, url, menu_type, visible, perms, icon, create_by, create_time, update_by, update_time, remark, target) VALUES (N'3132', N'IC卡用户关联导出', N'3127', N'5', N'#', N'F', N'0', N'web:ic_uesr:export', N'#', N'admin', N'2018-03-01 00:00:00.0000000', N'ry', N'2018-03-01 00:00:00.0000000', N'', N'')
- ;
- CREATE TABLE sys_notice (
- notice_id int NOT NULL,
- notice_title nvarchar(50) NOT NULL,
- notice_type nchar(1) NOT NULL,
- notice_content nvarchar(2000) DEFAULT NULL NULL,
- status nchar(1) DEFAULT (N'0') NULL,
- create_by nvarchar(64) DEFAULT (N'') NULL,
- create_time datetime(6) DEFAULT NULL NULL,
- update_by nvarchar(64) DEFAULT (N'') NULL,
- update_time datetime(6) DEFAULT NULL NULL,
- remark nvarchar(255) DEFAULT NULL NULL
- )
- ;
- INSERT INTO sys_notice (notice_id, notice_title, notice_type, notice_content, status, create_by, create_time, update_by, update_time, remark) VALUES (N'1', N'温馨提醒:2022-01-01 在途监管新版本发布啦', N'2', N'新版本内容1', N'0', N'admin', N'2018-03-16 11:33:00.0000000', N'admin', N'2022-01-13 06:35:53.1300000', N'管理员')
- ;
- INSERT INTO sys_notice (notice_id, notice_title, notice_type, notice_content, status, create_by, create_time, update_by, update_time, remark) VALUES (N'2', N'维护通知:2018-07-01 系统凌晨维护', N'1', N'<p>维护内容</p>', N'0', N'admin', N'2018-03-16 11:33:00.0000000', N'admin', N'2022-01-20 06:12:55.5633333', N'管理员')
- ;
- CREATE TABLE sys_oper_log (
- oper_id int NOT NULL,
- title nvarchar(50) DEFAULT (N'') NULL,
- business_type int DEFAULT ((0)) NULL,
- method nvarchar(100) DEFAULT (N'') NULL,
- operator_type int DEFAULT ((0)) NULL,
- oper_name nvarchar(50) DEFAULT (N'') NULL,
- dept_name nvarchar(50) DEFAULT (N'') NULL,
- oper_url nvarchar(255) DEFAULT (N'') NULL,
- oper_ip nvarchar(50) DEFAULT (N'') NULL,
- oper_location nvarchar(255) DEFAULT (N'') NULL,
- oper_param nvarchar(2000) DEFAULT (N'') NULL,
- status int DEFAULT ((0)) NULL,
- error_msg nvarchar(2000) DEFAULT (N'') NULL,
- oper_time datetime(6) ,
- request_method nvarchar(10) DEFAULT '' NULL,
- json_result nvarchar(2000) DEFAULT '' NULL
- )
- ;
- INSERT INTO sys_oper_log (oper_id, title, business_type, method, operator_type, oper_name, dept_name, oper_url, oper_ip, oper_location, oper_param, status, error_msg, oper_time, request_method, json_result) VALUES (N'2686', N'绑定运输工具信息', N'1', N'com.ruoyi.web.controller.JtCarBindInfoController.addSave()', N'1', N'admin', N'东兴海关', N'/web/carBindInfo/add', N'120.229.21.138', N'XX XX', N'{
- "deviceId" : "000021526137" ,
- "carNo" : "TEST001" ,
- "carType" : "B2" ,
- "origin" : "DXA" ,
- "destination" : "DXA" ,
- "overtTime" : "" ,
- "stopCarTime" : "" ,
- "efId" : "" ,
- "remark" : "" ,
- "status" : "20" ,
- "endStatus" : "0" ,
- "addressEfIds" : ""
- }', N'0', NULL, N'2022-03-03 03:15:23.4200000', N'POST', N'{
- "msg" : "操作成功",
- "code" : 0
- }')
- ;
- CREATE TABLE sys_post (
- post_id int NOT NULL,
- post_code nvarchar(64) NOT NULL,
- post_name nvarchar(50) NOT NULL,
- post_sort int NOT NULL,
- status nchar(1) NOT NULL,
- create_by nvarchar(64) DEFAULT (N'') NULL,
- create_time datetime(6) DEFAULT NULL NULL,
- update_by nvarchar(64) DEFAULT (N'') NULL,
- update_time datetime(6) DEFAULT NULL NULL,
- remark nvarchar(500) DEFAULT NULL NULL
- )
- ;
- INSERT INTO sys_post (post_id, post_code, post_name, post_sort, status, create_by, create_time, update_by, update_time, remark) VALUES (N'1', N'ceo', N'董事长', N'11', N'0', N'admin', N'2018-03-16 11:33:00.0000000', N'admin', N'2019-08-07 17:16:34.8530000', N'')
- ;
- INSERT INTO sys_post (post_id, post_code, post_name, post_sort, status, create_by, create_time, update_by, update_time, remark) VALUES (N'2', N'se', N'项目经理', N'2', N'0', N'admin', N'2018-03-16 11:33:00.0000000', N'admin', N'2019-08-05 16:25:06.7430000', N'')
- ;
- INSERT INTO sys_post (post_id, post_code, post_name, post_sort, status, create_by, create_time, update_by, update_time, remark) VALUES (N'3', N'hr', N'人力资源', N'3', N'0', N'admin', N'2018-03-16 11:33:00.0000000', N'ry', N'2018-03-16 11:33:00.0000000', N'')
- ;
- INSERT INTO sys_post (post_id, post_code, post_name, post_sort, status, create_by, create_time, update_by, update_time, remark) VALUES (N'4', N'user', N'普通员工', N'4', N'0', N'admin', N'2018-03-16 11:33:00.0000000', N'ry', N'2018-03-16 11:33:00.0000000', N'')
- ;
- CREATE TABLE sys_role (
- role_id int NOT NULL,
- role_name nvarchar(30) NOT NULL,
- role_key nvarchar(100) NOT NULL,
- role_sort int NOT NULL,
- data_scope nchar(1) DEFAULT (N'1') NULL,
- status nchar(1) NOT NULL,
- del_flag nchar(1) DEFAULT (N'0') NULL,
- create_by nvarchar(64) DEFAULT (N'') NULL,
- create_time datetime(6) DEFAULT NULL NULL,
- update_by nvarchar(64) DEFAULT (N'') NULL,
- update_time datetime(6) DEFAULT NULL NULL,
- remark nvarchar(500) DEFAULT NULL NULL
- )
- ;
- INSERT INTO sys_role (role_id, role_name, role_key, role_sort, data_scope, status, del_flag, create_by, create_time, update_by, update_time, remark) VALUES (N'1', N'管理员', N'admin', N'1', N'1', N'0', N'0', N'admin', N'2018-03-16 11:33:00.0000000', N'admin', N'2019-08-07 16:52:48.7570000', N'管理员')
- ;
- INSERT INTO sys_role (role_id, role_name, role_key, role_sort, data_scope, status, del_flag, create_by, create_time, update_by, update_time, remark) VALUES (N'2', N'施封员', N'common', N'2', N'4', N'0', N'0', N'admin', N'2018-03-16 11:33:00.0000000', N'admin', N'2022-01-20 07:18:15.0200000', N'负责车辆绑定、施封、关锁管理,组织机构属于广西北投建设投资有限公司')
- ;
- INSERT INTO sys_role (role_id, role_name, role_key, role_sort, data_scope, status, del_flag, create_by, create_time, update_by, update_time, remark) VALUES (N'103', N'2111111111111111', N'222', N'222', N'5', N'0', N'2', N'admin', N'2019-08-07 16:27:14.7500000', N'admin', N'2019-08-07 16:27:49.1030000', N'')
- ;
- INSERT INTO sys_role (role_id, role_name, role_key, role_sort, data_scope, status, del_flag, create_by, create_time, update_by, update_time, remark) VALUES (N'104', N'1', N'1', N'1', N'1', N'0', N'2', N'admin', N'2019-08-07 16:56:22.4630000', N'', NULL, N'1')
- ;
- INSERT INTO sys_role (role_id, role_name, role_key, role_sort, data_scope, status, del_flag, create_by, create_time, update_by, update_time, remark) VALUES (N'105', N'12', N'12', N'12', N'1', N'0', N'2', N'admin', N'2019-08-07 16:56:38.8970000', N'', NULL, N'12')
- ;
- INSERT INTO sys_role (role_id, role_name, role_key, role_sort, data_scope, status, del_flag, create_by, create_time, update_by, update_time, remark) VALUES (N'106', N'2222', N'2222', N'2222', N'1', N'0', N'2', N'admin', N'2019-08-07 16:57:30.7570000', N'', NULL, N'2222')
- ;
- INSERT INTO sys_role (role_id, role_name, role_key, role_sort, data_scope, status, del_flag, create_by, create_time, update_by, update_time, remark) VALUES (N'107', N'海关管理人员', N'zt', N'3', N'1', N'0', N'0', N'admin', N'2021-10-08 09:43:13.1200000', N'admin', N'2022-02-21 01:46:25.3833333', N'负责监管在途监控,组织机构属于东兴海关')
- ;
- INSERT INTO sys_role (role_id, role_name, role_key, role_sort, data_scope, status, del_flag, create_by, create_time, update_by, update_time, remark) VALUES (N'108', N'海关监管员角色测试', N'commontest', N'4', N'1', N'0', N'0', N'admin', N'2022-01-20 05:51:37.6400000', N'admin', N'2022-02-21 01:47:06.2366667', N'')
- ;
- INSERT INTO sys_role (role_id, role_name, role_key, role_sort, data_scope, status, del_flag, create_by, create_time, update_by, update_time, remark) VALUES (N'109', N'解封员', N'jf', N'5', N'3', N'0', N'0', N'admin', N'2022-01-20 06:20:59.3000000', N'admin', N'2022-01-20 07:18:35.4233333', N'负责解封、关锁管理,组织机构属于广西北投建设投资有限公司')
- ;
- CREATE TABLE sys_role_dept (
- role_id int NOT NULL,
- dept_id int NOT NULL
- )
- ;
- CREATE TABLE sys_role_menu (
- role_id int NOT NULL,
- menu_id int NOT NULL
- )
- ;
- INSERT INTO sys_role_menu VALUES (N'108', N'3112')
- ;
- INSERT INTO sys_role_menu VALUES (N'108', N'3062')
- ;
- INSERT INTO sys_role_menu VALUES (N'108', N'3074')
- ;
- INSERT INTO sys_role_menu VALUES (N'108', N'3075')
- ;
- INSERT INTO sys_role_menu VALUES (N'108', N'3076')
- ;
- INSERT INTO sys_role_menu VALUES (N'108', N'3077')
- ;
- INSERT INTO sys_role_menu VALUES (N'108', N'3078')
- ;
- INSERT INTO sys_role_menu VALUES (N'108', N'2054')
- ;
- INSERT INTO sys_role_menu VALUES (N'108', N'2055')
- ;
- INSERT INTO sys_role_menu VALUES (N'108', N'2056')
- ;
- INSERT INTO sys_role_menu VALUES (N'108', N'2057')
- ;
- INSERT INTO sys_role_menu VALUES (N'108', N'2058')
- ;
- INSERT INTO sys_role_menu VALUES (N'108', N'2059')
- ;
- INSERT INTO sys_role_menu VALUES (N'108', N'2045')
- ;
- INSERT INTO sys_role_menu VALUES (N'108', N'3113')
- ;
- INSERT INTO sys_role_menu VALUES (N'108', N'3114')
- ;
- INSERT INTO sys_role_menu VALUES (N'108', N'3115')
- ;
- INSERT INTO sys_role_menu VALUES (N'108', N'3116')
- ;
- INSERT INTO sys_role_menu VALUES (N'108', N'3117')
- ;
- INSERT INTO sys_role_menu VALUES (N'108', N'3118')
- ;
- INSERT INTO sys_role_menu VALUES (N'108', N'2066')
- ;
- INSERT INTO sys_role_menu VALUES (N'108', N'2067')
- ;
- INSERT INTO sys_role_menu VALUES (N'108', N'2068')
- ;
- INSERT INTO sys_role_menu VALUES (N'108', N'2069')
- ;
- INSERT INTO sys_role_menu VALUES (N'108', N'2070')
- ;
- INSERT INTO sys_role_menu VALUES (N'108', N'2071')
- ;
- INSERT INTO sys_role_menu VALUES (N'108', N'2060')
- ;
- INSERT INTO sys_role_menu VALUES (N'108', N'2061')
- ;
- INSERT INTO sys_role_menu VALUES (N'108', N'2062')
- ;
- INSERT INTO sys_role_menu VALUES (N'108', N'2063')
- ;
- INSERT INTO sys_role_menu VALUES (N'108', N'2064')
- ;
- INSERT INTO sys_role_menu VALUES (N'108', N'2065')
- ;
- INSERT INTO sys_role_menu VALUES (N'108', N'3079')
- ;
- INSERT INTO sys_role_menu VALUES (N'108', N'3080')
- ;
- INSERT INTO sys_role_menu VALUES (N'108', N'3081')
- ;
- INSERT INTO sys_role_menu VALUES (N'108', N'3082')
- ;
- INSERT INTO sys_role_menu VALUES (N'108', N'3083')
- ;
- INSERT INTO sys_role_menu VALUES (N'108', N'3084')
- ;
- INSERT INTO sys_role_menu VALUES (N'108', N'3085')
- ;
- INSERT INTO sys_role_menu VALUES (N'108', N'2078')
- ;
- INSERT INTO sys_role_menu VALUES (N'108', N'2079')
- ;
- INSERT INTO sys_role_menu VALUES (N'108', N'2080')
- ;
- INSERT INTO sys_role_menu VALUES (N'108', N'2081')
- ;
- INSERT INTO sys_role_menu VALUES (N'108', N'2082')
- ;
- INSERT INTO sys_role_menu VALUES (N'108', N'2083')
- ;
- INSERT INTO sys_role_menu VALUES (N'108', N'2072')
- ;
- INSERT INTO sys_role_menu VALUES (N'108', N'2073')
- ;
- INSERT INTO sys_role_menu VALUES (N'108', N'2074')
- ;
- INSERT INTO sys_role_menu VALUES (N'108', N'2075')
- ;
- INSERT INTO sys_role_menu VALUES (N'108', N'2076')
- ;
- INSERT INTO sys_role_menu VALUES (N'108', N'2077')
- ;
- INSERT INTO sys_role_menu VALUES (N'108', N'2084')
- ;
- INSERT INTO sys_role_menu VALUES (N'108', N'2085')
- ;
- INSERT INTO sys_role_menu VALUES (N'108', N'2086')
- ;
- INSERT INTO sys_role_menu VALUES (N'108', N'2087')
- ;
- INSERT INTO sys_role_menu VALUES (N'108', N'2088')
- ;
- INSERT INTO sys_role_menu VALUES (N'108', N'2089')
- ;
- INSERT INTO sys_role_menu VALUES (N'108', N'3120')
- ;
- INSERT INTO sys_role_menu VALUES (N'109', N'3112')
- ;
- INSERT INTO sys_role_menu VALUES (N'109', N'2054')
- ;
- INSERT INTO sys_role_menu VALUES (N'109', N'2055')
- ;
- INSERT INTO sys_role_menu VALUES (N'2', N'3112')
- ;
- INSERT INTO sys_role_menu VALUES (N'2', N'3062')
- ;
- INSERT INTO sys_role_menu VALUES (N'2', N'3074')
- ;
- INSERT INTO sys_role_menu VALUES (N'2', N'2054')
- ;
- INSERT INTO sys_role_menu VALUES (N'2', N'2055')
- ;
- INSERT INTO sys_role_menu VALUES (N'2', N'2045')
- ;
- INSERT INTO sys_role_menu VALUES (N'2', N'2066')
- ;
- INSERT INTO sys_role_menu VALUES (N'2', N'2067')
- ;
- INSERT INTO sys_role_menu VALUES (N'2', N'2068')
- ;
- INSERT INTO sys_role_menu VALUES (N'2', N'2069')
- ;
- INSERT INTO sys_role_menu VALUES (N'2', N'2070')
- ;
- INSERT INTO sys_role_menu VALUES (N'107', N'3112')
- ;
- INSERT INTO sys_role_menu VALUES (N'107', N'3062')
- ;
- INSERT INTO sys_role_menu VALUES (N'107', N'3074')
- ;
- INSERT INTO sys_role_menu VALUES (N'107', N'3075')
- ;
- INSERT INTO sys_role_menu VALUES (N'107', N'3076')
- ;
- INSERT INTO sys_role_menu VALUES (N'107', N'3077')
- ;
- INSERT INTO sys_role_menu VALUES (N'107', N'3078')
- ;
- INSERT INTO sys_role_menu VALUES (N'107', N'2054')
- ;
- INSERT INTO sys_role_menu VALUES (N'107', N'2055')
- ;
- INSERT INTO sys_role_menu VALUES (N'107', N'2056')
- ;
- INSERT INTO sys_role_menu VALUES (N'107', N'2057')
- ;
- INSERT INTO sys_role_menu VALUES (N'107', N'2058')
- ;
- INSERT INTO sys_role_menu VALUES (N'107', N'2059')
- ;
- INSERT INTO sys_role_menu VALUES (N'107', N'2045')
- ;
- INSERT INTO sys_role_menu VALUES (N'107', N'3113')
- ;
- INSERT INTO sys_role_menu VALUES (N'107', N'3114')
- ;
- INSERT INTO sys_role_menu VALUES (N'107', N'3115')
- ;
- INSERT INTO sys_role_menu VALUES (N'107', N'3116')
- ;
- INSERT INTO sys_role_menu VALUES (N'107', N'3117')
- ;
- INSERT INTO sys_role_menu VALUES (N'107', N'3118')
- ;
- INSERT INTO sys_role_menu VALUES (N'107', N'2066')
- ;
- INSERT INTO sys_role_menu VALUES (N'107', N'2067')
- ;
- INSERT INTO sys_role_menu VALUES (N'107', N'2068')
- ;
- INSERT INTO sys_role_menu VALUES (N'107', N'2069')
- ;
- INSERT INTO sys_role_menu VALUES (N'107', N'2070')
- ;
- INSERT INTO sys_role_menu VALUES (N'107', N'2071')
- ;
- INSERT INTO sys_role_menu VALUES (N'107', N'2060')
- ;
- INSERT INTO sys_role_menu VALUES (N'107', N'2061')
- ;
- INSERT INTO sys_role_menu VALUES (N'107', N'2062')
- ;
- INSERT INTO sys_role_menu VALUES (N'107', N'2063')
- ;
- INSERT INTO sys_role_menu VALUES (N'107', N'2064')
- ;
- INSERT INTO sys_role_menu VALUES (N'107', N'2065')
- ;
- INSERT INTO sys_role_menu VALUES (N'107', N'3079')
- ;
- INSERT INTO sys_role_menu VALUES (N'107', N'3080')
- ;
- INSERT INTO sys_role_menu VALUES (N'107', N'3081')
- ;
- INSERT INTO sys_role_menu VALUES (N'107', N'3082')
- ;
- INSERT INTO sys_role_menu VALUES (N'107', N'3083')
- ;
- INSERT INTO sys_role_menu VALUES (N'107', N'3084')
- ;
- INSERT INTO sys_role_menu VALUES (N'107', N'3085')
- ;
- INSERT INTO sys_role_menu VALUES (N'107', N'2078')
- ;
- INSERT INTO sys_role_menu VALUES (N'107', N'2079')
- ;
- INSERT INTO sys_role_menu VALUES (N'107', N'2080')
- ;
- INSERT INTO sys_role_menu VALUES (N'107', N'2081')
- ;
- INSERT INTO sys_role_menu VALUES (N'107', N'2082')
- ;
- INSERT INTO sys_role_menu VALUES (N'107', N'2083')
- ;
- INSERT INTO sys_role_menu VALUES (N'107', N'2072')
- ;
- INSERT INTO sys_role_menu VALUES (N'107', N'2073')
- ;
- INSERT INTO sys_role_menu VALUES (N'107', N'2074')
- ;
- INSERT INTO sys_role_menu VALUES (N'107', N'2075')
- ;
- INSERT INTO sys_role_menu VALUES (N'107', N'2076')
- ;
- INSERT INTO sys_role_menu VALUES (N'107', N'2077')
- ;
- INSERT INTO sys_role_menu VALUES (N'107', N'2084')
- ;
- INSERT INTO sys_role_menu VALUES (N'107', N'2085')
- ;
- INSERT INTO sys_role_menu VALUES (N'107', N'2086')
- ;
- INSERT INTO sys_role_menu VALUES (N'107', N'2087')
- ;
- INSERT INTO sys_role_menu VALUES (N'107', N'2088')
- ;
- INSERT INTO sys_role_menu VALUES (N'107', N'2089')
- ;
- INSERT INTO sys_role_menu VALUES (N'107', N'3120')
- ;
- CREATE TABLE sys_user (
- user_id int NOT NULL,
- dept_id int DEFAULT NULL NULL,
- login_name nvarchar(30) NOT NULL,
- user_name nvarchar(30) NOT NULL,
- user_type nvarchar(2) DEFAULT (N'00') NULL,
- email nvarchar(50) DEFAULT (N'') NULL,
- phonenumber nvarchar(11) DEFAULT (N'') NULL,
- sex nchar(1) DEFAULT (N'0') NULL,
- avatar nvarchar(100) DEFAULT (N'') NULL,
- password nvarchar(50) DEFAULT (N'') NULL,
- salt nvarchar(20) DEFAULT (N'') NULL,
- status nchar(1) DEFAULT (N'0') NULL,
- del_flag nchar(1) DEFAULT (N'0') NULL,
- login_ip nvarchar(50) DEFAULT (N'') NULL,
- login_date datetime(6) DEFAULT NULL NULL,
- create_by nvarchar(64) DEFAULT (N'') NULL,
- create_time datetime(6) DEFAULT NULL NULL,
- update_by nvarchar(64) DEFAULT (N'') NULL,
- update_time datetime(6) DEFAULT NULL NULL,
- remark nvarchar(500) DEFAULT (N'') NULL
- )
- ;
- INSERT INTO sys_user (user_id, dept_id, login_name, user_name, user_type, email, phonenumber, sex, avatar, password, salt, status, del_flag, login_ip, login_date, create_by, create_time, update_by, update_time, remark) VALUES (N'1', N'102', N'admin', N'系统管理员', N'00', N'ry@163.com', N'15888888888', N'1', N'/profile/avatar/2020/05/06/eee5b449f0f07cfca0b86f13154838b3.png', N'a202833fd6a38ba1ba232863018b536d', N'4723fe', N'0', N'0', N'127.0.0.1', N'2023-01-03 10:42:20.9490000', N'admin', N'2018-03-16 11:33:00.0000000', N'ry', N'2023-01-03 10:42:14.1230000', N'管理员')
- ;
- INSERT INTO sys_user (user_id, dept_id, login_name, user_name, user_type, email, phonenumber, sex, avatar, password, salt, status, del_flag, login_ip, login_date, create_by, create_time, update_by, update_time, remark) VALUES (N'105', N'102', N'xc001', N'现场操作人员', N'00', N'11111@qq.com', N'15957999999', N'0', N'', N'2ebf357e0e394f731782f7c319e2fd14', N'03ceec', N'0', N'2', N'120.229.21.227', N'2022-01-13 17:48:56.3590000', N'admin', N'2022-01-12 09:50:04.2966667', N'admin', N'2022-01-18 02:37:13.5066667', N'')
- ;
- INSERT INTO sys_user (user_id, dept_id, login_name, user_name, user_type, email, phonenumber, sex, avatar, password, salt, status, del_flag, login_ip, login_date, create_by, create_time, update_by, update_time, remark) VALUES (N'106', N'102', N'hgtest01', N'海关监管员测试01', N'00', N'18077153565@163.com', N'18077153565', N'0', N'', N'f4262598d162c2bdd3af53bdfd7b9d92', N'fc7673', N'0', N'0', N'222.216.162.147', N'2022-01-20 13:52:39.2770000', N'admin', N'2022-01-20 05:48:13.1033333', N'admin', N'2022-01-20 05:52:39.2766667', N'')
- ;
- INSERT INTO sys_user (user_id, dept_id, login_name, user_name, user_type, email, phonenumber, sex, avatar, password, salt, status, del_flag, login_ip, login_date, create_by, create_time, update_by, update_time, remark) VALUES (N'107', N'218', N'shy001', N'施封员', N'00', N'123121@qq.com', N'15979926912', N'0', N'', N'503581066c897df00c7e94c9ff1cebbe', N'b54575', N'0', N'2', N'223.73.112.197', N'2022-01-20 14:30:51.6370000', N'admin', N'2022-01-20 06:22:55.6033333', N'', N'2022-01-20 06:30:51.6333333', N'')
- ;
- INSERT INTO sys_user (user_id, dept_id, login_name, user_name, user_type, email, phonenumber, sex, avatar, password, salt, status, del_flag, login_ip, login_date, create_by, create_time, update_by, update_time, remark) VALUES (N'103', N'102', N'hg001', N'海关管理人员', N'00', N'123415@qq.com', N'15979926911', N'0', N'', N'9cd7c812dc51388e4a5649ecdfe4bb8e', N'631281', N'0', N'0', N'120.229.21.234', N'2022-02-18 10:11:25.2990000', N'admin', N'2022-01-12 09:00:38.3400000', N'', N'2022-02-18 02:11:25.3000000', N'')
- ;
- INSERT INTO sys_user (user_id, dept_id, login_name, user_name, user_type, email, phonenumber, sex, avatar, password, salt, status, del_flag, login_ip, login_date, create_by, create_time, update_by, update_time, remark) VALUES (N'104', N'102', N'hu', N'hu', N'00', N'965078673@qq.com', N'18719185666', N'0', N'', N'648d93d50bb0503df74f6427a4b97bd1', N'c60ebc', N'0', N'0', N'127.0.0.1', N'2022-01-12 17:41:51.0630000', N'admin', N'2022-01-12 09:36:55.3366667', N'', N'2022-01-12 09:41:51.0666667', N'')
- ;
- INSERT INTO sys_user (user_id, dept_id, login_name, user_name, user_type, email, phonenumber, sex, avatar, password, salt, status, del_flag, login_ip, login_date, create_by, create_time, update_by, update_time, remark) VALUES (N'108', N'218', N'jfy001', N'解封员', N'00', N'12312@qq.com', N'15979926913', N'0', N'', N'e69ffa5acddcd166614c945ac4f54006', N'7ca677', N'0', N'0', N'113.12.249.234', N'2022-02-25 15:19:05.3640000', N'admin', N'2022-01-20 06:23:59.1300000', N'', N'2022-02-25 07:19:05.3633333', N'')
- ;
- INSERT INTO sys_user (user_id, dept_id, login_name, user_name, user_type, email, phonenumber, sex, avatar, password, salt, status, del_flag, login_ip, login_date, create_by, create_time, update_by, update_time, remark) VALUES (N'109', N'218', N'sfy001', N'施封员', N'00', N'12321@qq.com', N'15979926914', N'0', N'', N'a727232b2647e50c320ce94f39e56767', N'a2a0ae', N'0', N'0', N'113.14.241.6', N'2022-02-14 13:48:19.1250000', N'admin', N'2022-01-20 06:35:29.2366667', N'admin', N'2022-02-14 05:48:19.1266667', N'')
- ;
- INSERT INTO sys_user (user_id, dept_id, login_name, user_name, user_type, email, phonenumber, sex, avatar, password, salt, status, del_flag, login_ip, login_date, create_by, create_time, update_by, update_time, remark) VALUES (N'110', N'218', N'hu123456', N'hu123456', N'00', N'9650786373@qq.com', N'18719185667', N'0', N'', N'9359013bb34b8621ca7c9856001465f7', N'29e6f8', N'0', N'2', N'', NULL, N'admin', N'2022-01-20 06:45:50.9766667', N'', NULL, N'')
- ;
- INSERT INTO sys_user (user_id, dept_id, login_name, user_name, user_type, email, phonenumber, sex, avatar, password, salt, status, del_flag, login_ip, login_date, create_by, create_time, update_by, update_time, remark) VALUES (N'111', N'218', N'qw', N'qw', N'00', N'rl1@limin.com', N'18712344322', N'0', N'', N'1da3c1bc0e40bc180aded815c47757fc', N'2721bb', N'0', N'2', N'', NULL, N'admin', N'2022-01-20 07:07:15.0166667', N'', NULL, N'')
- ;
- CREATE TABLE sys_user_online (
- sessionId nvarchar(50) DEFAULT (N'') NOT NULL,
- login_name nvarchar(50) DEFAULT (N'') NULL,
- dept_name nvarchar(50) DEFAULT (N'') NULL,
- ipaddr nvarchar(50) DEFAULT (N'') NULL,
- login_location nvarchar(255) DEFAULT (N'') NULL,
- browser nvarchar(50) DEFAULT (N'') NULL,
- os nvarchar(50) DEFAULT (N'') NULL,
- status nvarchar(10) DEFAULT (N'') NULL,
- start_timestamp datetime(6) DEFAULT NULL NULL,
- last_access_time datetime(6) DEFAULT NULL NULL,
- expire_time int DEFAULT ((0)) NULL
- )
- ;
- INSERT INTO sys_user_online VALUES (N'b1f3abf2-64cf-4386-ab7d-5855471622a2', N'admin', N'河口海关', N'127.0.0.1', N'内网IP', N'Chrome 10', N'Windows 10', N'on_line', N'2023-01-03 10:23:16.5300000', N'2023-01-03 10:43:21.2370000', N'1800000')
- ;
- CREATE TABLE sys_user_post (
- user_id int NOT NULL,
- post_id int NOT NULL
- )
- ;
- INSERT INTO sys_user_post VALUES (N'1', N'1')
- ;
- INSERT INTO sys_user_post VALUES (N'2', N'2')
- ;
- INSERT INTO sys_user_post VALUES (N'104', N'1')
- ;
- INSERT INTO sys_user_post VALUES (N'105', N'1')
- ;
- INSERT INTO sys_user_post VALUES (N'106', N'1')
- ;
- INSERT INTO sys_user_post VALUES (N'106', N'3')
- ;
- INSERT INTO sys_user_post VALUES (N'106', N'4')
- ;
- INSERT INTO sys_user_post VALUES (N'102', N'1')
- ;
- INSERT INTO sys_user_post VALUES (N'105', N'2')
- ;
- INSERT INTO sys_user_post VALUES (N'110', N'1')
- ;
- CREATE TABLE sys_user_role (
- user_id int NOT NULL,
- role_id int NOT NULL
- )
- ;
- INSERT INTO sys_user_role VALUES (N'2', N'2')
- ;
- INSERT INTO sys_user_role VALUES (N'104', N'1')
- ;
- INSERT INTO sys_user_role VALUES (N'106', N'108')
- ;
- INSERT INTO sys_user_role VALUES (N'107', N'2')
- ;
- INSERT INTO sys_user_role VALUES (N'101', N'107')
- ;
- INSERT INTO sys_user_role VALUES (N'102', N'2')
- ;
- INSERT INTO sys_user_role VALUES (N'103', N'107')
- ;
- INSERT INTO sys_user_role VALUES (N'104', N'2')
- ;
- INSERT INTO sys_user_role VALUES (N'105', N'2')
- ;
- INSERT INTO sys_user_role VALUES (N'111', N'2')
- ;
- INSERT INTO sys_user_role VALUES (N'110', N'2')
- ;
- INSERT INTO sys_user_role VALUES (N'108', N'109')
- ;
- INSERT INTO sys_user_role VALUES (N'111', N'109')
- ;
- INSERT INTO sys_user_role VALUES (N'109', N'2')
- ;
|