ZTJG_WEB.sql 326 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441
  1. CREATE TABLE gen_table (
  2. table_id bigint NOT NULL,
  3. table_name nvarchar(200) DEFAULT '' NULL,
  4. table_comment nvarchar(500) DEFAULT '' NULL,
  5. class_name nvarchar(100) DEFAULT '' NULL,
  6. tpl_category nvarchar(200) DEFAULT ('crud') NULL,
  7. package_name nvarchar(100) DEFAULT NULL NULL,
  8. module_name nvarchar(30) DEFAULT NULL NULL,
  9. business_name nvarchar(30) DEFAULT NULL NULL,
  10. function_name nvarchar(50) DEFAULT NULL NULL,
  11. function_author nvarchar(50) DEFAULT NULL NULL,
  12. options nvarchar(1000) DEFAULT NULL NULL,
  13. create_by nvarchar(64) DEFAULT '' NULL,
  14. create_time datetime(6) DEFAULT NULL NULL,
  15. update_by nvarchar(64) DEFAULT '' NULL,
  16. update_time datetime(6) DEFAULT NULL NULL,
  17. remark nvarchar(500) DEFAULT NULL NULL,
  18. sub_table_name varchar(64) DEFAULT NULL NULL,
  19. sub_table_fk_name varchar(64) DEFAULT NULL NULL,
  20. gen_type char(1) DEFAULT ('0') NULL,
  21. gen_path varchar(200) DEFAULT ('/') NULL
  22. )
  23. ;
  24. 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'/')
  25. ;
  26. 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'/')
  27. ;
  28. 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'/')
  29. ;
  30. 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'/')
  31. ;
  32. 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'/')
  33. ;
  34. 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'/')
  35. ;
  36. 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'/')
  37. ;
  38. 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'/')
  39. ;
  40. 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'/')
  41. ;
  42. 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'/')
  43. ;
  44. 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'/')
  45. ;
  46. 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'/')
  47. ;
  48. 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'/')
  49. ;
  50. 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'/')
  51. ;
  52. 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'/')
  53. ;
  54. 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'/')
  55. ;
  56. 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'/')
  57. ;
  58. 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'/')
  59. ;
  60. 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'/')
  61. ;
  62. 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'/')
  63. ;
  64. 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'/')
  65. ;
  66. CREATE TABLE gen_table_column (
  67. column_id bigint NOT NULL,
  68. table_id nvarchar(64) DEFAULT NULL NULL,
  69. column_name nvarchar(200) DEFAULT NULL NULL,
  70. column_comment nvarchar(500) DEFAULT NULL NULL,
  71. column_type nvarchar(100) DEFAULT NULL NULL,
  72. java_type nvarchar(500) DEFAULT NULL NULL,
  73. java_field nvarchar(200) DEFAULT NULL NULL,
  74. is_pk nchar(1) DEFAULT NULL NULL,
  75. is_increment nchar(1) DEFAULT NULL NULL,
  76. is_required nchar(1) DEFAULT NULL NULL,
  77. is_insert nchar(1) DEFAULT NULL NULL,
  78. is_edit nchar(1) DEFAULT NULL NULL,
  79. is_list nchar(1) DEFAULT NULL NULL,
  80. is_query nchar(1) DEFAULT NULL NULL,
  81. query_type nvarchar(200) DEFAULT ('EQ') NULL,
  82. html_type nvarchar(200) DEFAULT NULL NULL,
  83. dict_type nvarchar(200) DEFAULT '' NULL,
  84. sort int DEFAULT NULL NULL,
  85. create_by nvarchar(64) DEFAULT '' NULL,
  86. create_time datetime(6) DEFAULT NULL NULL,
  87. update_by nvarchar(64) DEFAULT '' NULL,
  88. update_time datetime(6) DEFAULT NULL NULL
  89. )
  90. ;
  91. INSERT INTO gen_table_column (column_id, table_id, column_name, column_comment, column_type, java_type, java_field, is_pk, is_increment, is_required, is_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)
  92. ;
  93. INSERT INTO gen_table_column (column_id, table_id, column_name, column_comment, column_type, java_type, java_field, is_pk, is_increment, is_required, is_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)
  94. ;
  95. INSERT INTO gen_table_column (column_id, table_id, column_name, column_comment, column_type, java_type, java_field, is_pk, is_increment, is_required, is_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)
  96. ;
  97. INSERT INTO gen_table_column (column_id, table_id, column_name, column_comment, column_type, java_type, java_field, is_pk, is_increment, is_required, is_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)
  98. ;
  99. INSERT INTO gen_table_column (column_id, table_id, column_name, column_comment, column_type, java_type, java_field, is_pk, is_increment, is_required, is_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)
  100. ;
  101. INSERT INTO gen_table_column (column_id, table_id, column_name, column_comment, column_type, java_type, java_field, is_pk, is_increment, is_required, is_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)
  102. ;
  103. INSERT INTO gen_table_column (column_id, table_id, column_name, column_comment, column_type, java_type, java_field, is_pk, is_increment, is_required, is_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)
  104. ;
  105. INSERT INTO gen_table_column (column_id, table_id, column_name, column_comment, column_type, java_type, java_field, is_pk, is_increment, is_required, is_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)
  106. ;
  107. INSERT INTO gen_table_column (column_id, table_id, column_name, column_comment, column_type, java_type, java_field, is_pk, is_increment, is_required, is_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)
  108. ;
  109. INSERT INTO gen_table_column (column_id, table_id, column_name, column_comment, column_type, java_type, java_field, is_pk, is_increment, is_required, is_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)
  110. ;
  111. INSERT INTO gen_table_column (column_id, table_id, column_name, column_comment, column_type, java_type, java_field, is_pk, is_increment, is_required, is_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)
  112. ;
  113. INSERT INTO gen_table_column (column_id, table_id, column_name, column_comment, column_type, java_type, java_field, is_pk, is_increment, is_required, is_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)
  114. ;
  115. INSERT INTO gen_table_column (column_id, table_id, column_name, column_comment, column_type, java_type, java_field, is_pk, is_increment, is_required, is_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')
  116. ;
  117. INSERT INTO gen_table_column (column_id, table_id, column_name, column_comment, column_type, java_type, java_field, is_pk, is_increment, is_required, is_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')
  118. ;
  119. INSERT INTO gen_table_column (column_id, table_id, column_name, column_comment, column_type, java_type, java_field, is_pk, is_increment, is_required, is_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')
  120. ;
  121. INSERT INTO gen_table_column (column_id, table_id, column_name, column_comment, column_type, java_type, java_field, is_pk, is_increment, is_required, is_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')
  122. ;
  123. INSERT INTO gen_table_column (column_id, table_id, column_name, column_comment, column_type, java_type, java_field, is_pk, is_increment, is_required, is_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')
  124. ;
  125. INSERT INTO gen_table_column (column_id, table_id, column_name, column_comment, column_type, java_type, java_field, is_pk, is_increment, is_required, is_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')
  126. ;
  127. INSERT INTO gen_table_column (column_id, table_id, column_name, column_comment, column_type, java_type, java_field, is_pk, is_increment, is_required, is_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')
  128. ;
  129. INSERT INTO gen_table_column (column_id, table_id, column_name, column_comment, column_type, java_type, java_field, is_pk, is_increment, is_required, is_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')
  130. ;
  131. INSERT INTO gen_table_column (column_id, table_id, column_name, column_comment, column_type, java_type, java_field, is_pk, is_increment, is_required, is_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')
  132. ;
  133. INSERT INTO gen_table_column (column_id, table_id, column_name, column_comment, column_type, java_type, java_field, is_pk, is_increment, is_required, is_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')
  134. ;
  135. INSERT INTO gen_table_column (column_id, table_id, column_name, column_comment, column_type, java_type, java_field, is_pk, is_increment, is_required, is_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)
  136. ;
  137. INSERT INTO gen_table_column (column_id, table_id, column_name, column_comment, column_type, java_type, java_field, is_pk, is_increment, is_required, is_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)
  138. ;
  139. INSERT INTO gen_table_column (column_id, table_id, column_name, column_comment, column_type, java_type, java_field, is_pk, is_increment, is_required, is_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)
  140. ;
  141. INSERT INTO gen_table_column (column_id, table_id, column_name, column_comment, column_type, java_type, java_field, is_pk, is_increment, is_required, is_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)
  142. ;
  143. INSERT INTO gen_table_column (column_id, table_id, column_name, column_comment, column_type, java_type, java_field, is_pk, is_increment, is_required, is_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)
  144. ;
  145. INSERT INTO gen_table_column (column_id, table_id, column_name, column_comment, column_type, java_type, java_field, is_pk, is_increment, is_required, is_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)
  146. ;
  147. INSERT INTO gen_table_column (column_id, table_id, column_name, column_comment, column_type, java_type, java_field, is_pk, is_increment, is_required, is_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)
  148. ;
  149. INSERT INTO gen_table_column (column_id, table_id, column_name, column_comment, column_type, java_type, java_field, is_pk, is_increment, is_required, is_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)
  150. ;
  151. INSERT INTO gen_table_column (column_id, table_id, column_name, column_comment, column_type, java_type, java_field, is_pk, is_increment, is_required, is_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)
  152. ;
  153. INSERT INTO gen_table_column (column_id, table_id, column_name, column_comment, column_type, java_type, java_field, is_pk, is_increment, is_required, is_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)
  154. ;
  155. INSERT INTO gen_table_column (column_id, table_id, column_name, column_comment, column_type, java_type, java_field, is_pk, is_increment, is_required, is_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)
  156. ;
  157. INSERT INTO gen_table_column (column_id, table_id, column_name, column_comment, column_type, java_type, java_field, is_pk, is_increment, is_required, is_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)
  158. ;
  159. INSERT INTO gen_table_column (column_id, table_id, column_name, column_comment, column_type, java_type, java_field, is_pk, is_increment, is_required, is_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)
  160. ;
  161. INSERT INTO gen_table_column (column_id, table_id, column_name, column_comment, column_type, java_type, java_field, is_pk, is_increment, is_required, is_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)
  162. ;
  163. INSERT INTO gen_table_column (column_id, table_id, column_name, column_comment, column_type, java_type, java_field, is_pk, is_increment, is_required, is_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')
  164. ;
  165. INSERT INTO gen_table_column (column_id, table_id, column_name, column_comment, column_type, java_type, java_field, is_pk, is_increment, is_required, is_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')
  166. ;
  167. INSERT INTO gen_table_column (column_id, table_id, column_name, column_comment, column_type, java_type, java_field, is_pk, is_increment, is_required, is_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')
  168. ;
  169. INSERT INTO gen_table_column (column_id, table_id, column_name, column_comment, column_type, java_type, java_field, is_pk, is_increment, is_required, is_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')
  170. ;
  171. INSERT INTO gen_table_column (column_id, table_id, column_name, column_comment, column_type, java_type, java_field, is_pk, is_increment, is_required, is_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')
  172. ;
  173. INSERT INTO gen_table_column (column_id, table_id, column_name, column_comment, column_type, java_type, java_field, is_pk, is_increment, is_required, is_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')
  174. ;
  175. INSERT INTO gen_table_column (column_id, table_id, column_name, column_comment, column_type, java_type, java_field, is_pk, is_increment, is_required, is_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')
  176. ;
  177. INSERT INTO gen_table_column (column_id, table_id, column_name, column_comment, column_type, java_type, java_field, is_pk, is_increment, is_required, is_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')
  178. ;
  179. INSERT INTO gen_table_column (column_id, table_id, column_name, column_comment, column_type, java_type, java_field, is_pk, is_increment, is_required, is_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')
  180. ;
  181. INSERT INTO gen_table_column (column_id, table_id, column_name, column_comment, column_type, java_type, java_field, is_pk, is_increment, is_required, is_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')
  182. ;
  183. INSERT INTO gen_table_column (column_id, table_id, column_name, column_comment, column_type, java_type, java_field, is_pk, is_increment, is_required, is_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')
  184. ;
  185. INSERT INTO gen_table_column (column_id, table_id, column_name, column_comment, column_type, java_type, java_field, is_pk, is_increment, is_required, is_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')
  186. ;
  187. INSERT INTO gen_table_column (column_id, table_id, column_name, column_comment, column_type, java_type, java_field, is_pk, is_increment, is_required, is_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')
  188. ;
  189. INSERT INTO gen_table_column (column_id, table_id, column_name, column_comment, column_type, java_type, java_field, is_pk, is_increment, is_required, is_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')
  190. ;
  191. INSERT INTO gen_table_column (column_id, table_id, column_name, column_comment, column_type, java_type, java_field, is_pk, is_increment, is_required, is_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')
  192. ;
  193. INSERT INTO gen_table_column (column_id, table_id, column_name, column_comment, column_type, java_type, java_field, is_pk, is_increment, is_required, is_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')
  194. ;
  195. INSERT INTO gen_table_column (column_id, table_id, column_name, column_comment, column_type, java_type, java_field, is_pk, is_increment, is_required, is_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')
  196. ;
  197. INSERT INTO gen_table_column (column_id, table_id, column_name, column_comment, column_type, java_type, java_field, is_pk, is_increment, is_required, is_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')
  198. ;
  199. INSERT INTO gen_table_column (column_id, table_id, column_name, column_comment, column_type, java_type, java_field, is_pk, is_increment, is_required, is_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')
  200. ;
  201. INSERT INTO gen_table_column (column_id, table_id, column_name, column_comment, column_type, java_type, java_field, is_pk, is_increment, is_required, is_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)
  202. ;
  203. INSERT INTO gen_table_column (column_id, table_id, column_name, column_comment, column_type, java_type, java_field, is_pk, is_increment, is_required, is_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)
  204. ;
  205. INSERT INTO gen_table_column (column_id, table_id, column_name, column_comment, column_type, java_type, java_field, is_pk, is_increment, is_required, is_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)
  206. ;
  207. INSERT INTO gen_table_column (column_id, table_id, column_name, column_comment, column_type, java_type, java_field, is_pk, is_increment, is_required, is_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)
  208. ;
  209. INSERT INTO gen_table_column (column_id, table_id, column_name, column_comment, column_type, java_type, java_field, is_pk, is_increment, is_required, is_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)
  210. ;
  211. INSERT INTO gen_table_column (column_id, table_id, column_name, column_comment, column_type, java_type, java_field, is_pk, is_increment, is_required, is_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)
  212. ;
  213. INSERT INTO gen_table_column (column_id, table_id, column_name, column_comment, column_type, java_type, java_field, is_pk, is_increment, is_required, is_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)
  214. ;
  215. INSERT INTO gen_table_column (column_id, table_id, column_name, column_comment, column_type, java_type, java_field, is_pk, is_increment, is_required, is_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)
  216. ;
  217. INSERT INTO gen_table_column (column_id, table_id, column_name, column_comment, column_type, java_type, java_field, is_pk, is_increment, is_required, is_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)
  218. ;
  219. INSERT INTO gen_table_column (column_id, table_id, column_name, column_comment, column_type, java_type, java_field, is_pk, is_increment, is_required, is_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)
  220. ;
  221. INSERT INTO gen_table_column (column_id, table_id, column_name, column_comment, column_type, java_type, java_field, is_pk, is_increment, is_required, is_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)
  222. ;
  223. INSERT INTO gen_table_column (column_id, table_id, column_name, column_comment, column_type, java_type, java_field, is_pk, is_increment, is_required, is_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)
  224. ;
  225. INSERT INTO gen_table_column (column_id, table_id, column_name, column_comment, column_type, java_type, java_field, is_pk, is_increment, is_required, is_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)
  226. ;
  227. INSERT INTO gen_table_column (column_id, table_id, column_name, column_comment, column_type, java_type, java_field, is_pk, is_increment, is_required, is_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)
  228. ;
  229. INSERT INTO gen_table_column (column_id, table_id, column_name, column_comment, column_type, java_type, java_field, is_pk, is_increment, is_required, is_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)
  230. ;
  231. INSERT INTO gen_table_column (column_id, table_id, column_name, column_comment, column_type, java_type, java_field, is_pk, is_increment, is_required, is_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)
  232. ;
  233. INSERT INTO gen_table_column (column_id, table_id, column_name, column_comment, column_type, java_type, java_field, is_pk, is_increment, is_required, is_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)
  234. ;
  235. INSERT INTO gen_table_column (column_id, table_id, column_name, column_comment, column_type, java_type, java_field, is_pk, is_increment, is_required, is_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)
  236. ;
  237. INSERT INTO gen_table_column (column_id, table_id, column_name, column_comment, column_type, java_type, java_field, is_pk, is_increment, is_required, is_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)
  238. ;
  239. INSERT INTO gen_table_column (column_id, table_id, column_name, column_comment, column_type, java_type, java_field, is_pk, is_increment, is_required, is_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)
  240. ;
  241. INSERT INTO gen_table_column (column_id, table_id, column_name, column_comment, column_type, java_type, java_field, is_pk, is_increment, is_required, is_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)
  242. ;
  243. INSERT INTO gen_table_column (column_id, table_id, column_name, column_comment, column_type, java_type, java_field, is_pk, is_increment, is_required, is_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)
  244. ;
  245. INSERT INTO gen_table_column (column_id, table_id, column_name, column_comment, column_type, java_type, java_field, is_pk, is_increment, is_required, is_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)
  246. ;
  247. INSERT INTO gen_table_column (column_id, table_id, column_name, column_comment, column_type, java_type, java_field, is_pk, is_increment, is_required, is_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)
  248. ;
  249. INSERT INTO gen_table_column (column_id, table_id, column_name, column_comment, column_type, java_type, java_field, is_pk, is_increment, is_required, is_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)
  250. ;
  251. INSERT INTO gen_table_column (column_id, table_id, column_name, column_comment, column_type, java_type, java_field, is_pk, is_increment, is_required, is_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)
  252. ;
  253. INSERT INTO gen_table_column (column_id, table_id, column_name, column_comment, column_type, java_type, java_field, is_pk, is_increment, is_required, is_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)
  254. ;
  255. INSERT INTO gen_table_column (column_id, table_id, column_name, column_comment, column_type, java_type, java_field, is_pk, is_increment, is_required, is_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)
  256. ;
  257. INSERT INTO gen_table_column (column_id, table_id, column_name, column_comment, column_type, java_type, java_field, is_pk, is_increment, is_required, is_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)
  258. ;
  259. INSERT INTO gen_table_column (column_id, table_id, column_name, column_comment, column_type, java_type, java_field, is_pk, is_increment, is_required, is_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)
  260. ;
  261. INSERT INTO gen_table_column (column_id, table_id, column_name, column_comment, column_type, java_type, java_field, is_pk, is_increment, is_required, is_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)
  262. ;
  263. INSERT INTO gen_table_column (column_id, table_id, column_name, column_comment, column_type, java_type, java_field, is_pk, is_increment, is_required, is_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)
  264. ;
  265. INSERT INTO gen_table_column (column_id, table_id, column_name, column_comment, column_type, java_type, java_field, is_pk, is_increment, is_required, is_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)
  266. ;
  267. INSERT INTO gen_table_column (column_id, table_id, column_name, column_comment, column_type, java_type, java_field, is_pk, is_increment, is_required, is_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)
  268. ;
  269. INSERT INTO gen_table_column (column_id, table_id, column_name, column_comment, column_type, java_type, java_field, is_pk, is_increment, is_required, is_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')
  270. ;
  271. INSERT INTO gen_table_column (column_id, table_id, column_name, column_comment, column_type, java_type, java_field, is_pk, is_increment, is_required, is_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')
  272. ;
  273. INSERT INTO gen_table_column (column_id, table_id, column_name, column_comment, column_type, java_type, java_field, is_pk, is_increment, is_required, is_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')
  274. ;
  275. INSERT INTO gen_table_column (column_id, table_id, column_name, column_comment, column_type, java_type, java_field, is_pk, is_increment, is_required, is_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)
  276. ;
  277. INSERT INTO gen_table_column (column_id, table_id, column_name, column_comment, column_type, java_type, java_field, is_pk, is_increment, is_required, is_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')
  278. ;
  279. INSERT INTO gen_table_column (column_id, table_id, column_name, column_comment, column_type, java_type, java_field, is_pk, is_increment, is_required, is_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')
  280. ;
  281. INSERT INTO gen_table_column (column_id, table_id, column_name, column_comment, column_type, java_type, java_field, is_pk, is_increment, is_required, is_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')
  282. ;
  283. INSERT INTO gen_table_column (column_id, table_id, column_name, column_comment, column_type, java_type, java_field, is_pk, is_increment, is_required, is_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')
  284. ;
  285. INSERT INTO gen_table_column (column_id, table_id, column_name, column_comment, column_type, java_type, java_field, is_pk, is_increment, is_required, is_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')
  286. ;
  287. INSERT INTO gen_table_column (column_id, table_id, column_name, column_comment, column_type, java_type, java_field, is_pk, is_increment, is_required, is_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')
  288. ;
  289. INSERT INTO gen_table_column (column_id, table_id, column_name, column_comment, column_type, java_type, java_field, is_pk, is_increment, is_required, is_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')
  290. ;
  291. INSERT INTO gen_table_column (column_id, table_id, column_name, column_comment, column_type, java_type, java_field, is_pk, is_increment, is_required, is_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')
  292. ;
  293. INSERT INTO gen_table_column (column_id, table_id, column_name, column_comment, column_type, java_type, java_field, is_pk, is_increment, is_required, is_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')
  294. ;
  295. INSERT INTO gen_table_column (column_id, table_id, column_name, column_comment, column_type, java_type, java_field, is_pk, is_increment, is_required, is_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')
  296. ;
  297. INSERT INTO gen_table_column (column_id, table_id, column_name, column_comment, column_type, java_type, java_field, is_pk, is_increment, is_required, is_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')
  298. ;
  299. INSERT INTO gen_table_column (column_id, table_id, column_name, column_comment, column_type, java_type, java_field, is_pk, is_increment, is_required, is_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')
  300. ;
  301. INSERT INTO gen_table_column (column_id, table_id, column_name, column_comment, column_type, java_type, java_field, is_pk, is_increment, is_required, is_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')
  302. ;
  303. INSERT INTO gen_table_column (column_id, table_id, column_name, column_comment, column_type, java_type, java_field, is_pk, is_increment, is_required, is_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')
  304. ;
  305. INSERT INTO gen_table_column (column_id, table_id, column_name, column_comment, column_type, java_type, java_field, is_pk, is_increment, is_required, is_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')
  306. ;
  307. INSERT INTO gen_table_column (column_id, table_id, column_name, column_comment, column_type, java_type, java_field, is_pk, is_increment, is_required, is_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')
  308. ;
  309. INSERT INTO gen_table_column (column_id, table_id, column_name, column_comment, column_type, java_type, java_field, is_pk, is_increment, is_required, is_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')
  310. ;
  311. INSERT INTO gen_table_column (column_id, table_id, column_name, column_comment, column_type, java_type, java_field, is_pk, is_increment, is_required, is_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')
  312. ;
  313. INSERT INTO gen_table_column (column_id, table_id, column_name, column_comment, column_type, java_type, java_field, is_pk, is_increment, is_required, is_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')
  314. ;
  315. INSERT INTO gen_table_column (column_id, table_id, column_name, column_comment, column_type, java_type, java_field, is_pk, is_increment, is_required, is_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')
  316. ;
  317. INSERT INTO gen_table_column (column_id, table_id, column_name, column_comment, column_type, java_type, java_field, is_pk, is_increment, is_required, is_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')
  318. ;
  319. INSERT INTO gen_table_column (column_id, table_id, column_name, column_comment, column_type, java_type, java_field, is_pk, is_increment, is_required, is_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')
  320. ;
  321. INSERT INTO gen_table_column (column_id, table_id, column_name, column_comment, column_type, java_type, java_field, is_pk, is_increment, is_required, is_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')
  322. ;
  323. INSERT INTO gen_table_column (column_id, table_id, column_name, column_comment, column_type, java_type, java_field, is_pk, is_increment, is_required, is_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')
  324. ;
  325. INSERT INTO gen_table_column (column_id, table_id, column_name, column_comment, column_type, java_type, java_field, is_pk, is_increment, is_required, is_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')
  326. ;
  327. INSERT INTO gen_table_column (column_id, table_id, column_name, column_comment, column_type, java_type, java_field, is_pk, is_increment, is_required, is_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')
  328. ;
  329. INSERT INTO gen_table_column (column_id, table_id, column_name, column_comment, column_type, java_type, java_field, is_pk, is_increment, is_required, is_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')
  330. ;
  331. INSERT INTO gen_table_column (column_id, table_id, column_name, column_comment, column_type, java_type, java_field, is_pk, is_increment, is_required, is_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')
  332. ;
  333. INSERT INTO gen_table_column (column_id, table_id, column_name, column_comment, column_type, java_type, java_field, is_pk, is_increment, is_required, is_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')
  334. ;
  335. INSERT INTO gen_table_column (column_id, table_id, column_name, column_comment, column_type, java_type, java_field, is_pk, is_increment, is_required, is_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')
  336. ;
  337. INSERT INTO gen_table_column (column_id, table_id, column_name, column_comment, column_type, java_type, java_field, is_pk, is_increment, is_required, is_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)
  338. ;
  339. INSERT INTO gen_table_column (column_id, table_id, column_name, column_comment, column_type, java_type, java_field, is_pk, is_increment, is_required, is_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')
  340. ;
  341. INSERT INTO gen_table_column (column_id, table_id, column_name, column_comment, column_type, java_type, java_field, is_pk, is_increment, is_required, is_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')
  342. ;
  343. INSERT INTO gen_table_column (column_id, table_id, column_name, column_comment, column_type, java_type, java_field, is_pk, is_increment, is_required, is_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')
  344. ;
  345. INSERT INTO gen_table_column (column_id, table_id, column_name, column_comment, column_type, java_type, java_field, is_pk, is_increment, is_required, is_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')
  346. ;
  347. INSERT INTO gen_table_column (column_id, table_id, column_name, column_comment, column_type, java_type, java_field, is_pk, is_increment, is_required, is_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')
  348. ;
  349. INSERT INTO gen_table_column (column_id, table_id, column_name, column_comment, column_type, java_type, java_field, is_pk, is_increment, is_required, is_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)
  350. ;
  351. INSERT INTO gen_table_column (column_id, table_id, column_name, column_comment, column_type, java_type, java_field, is_pk, is_increment, is_required, is_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')
  352. ;
  353. INSERT INTO gen_table_column (column_id, table_id, column_name, column_comment, column_type, java_type, java_field, is_pk, is_increment, is_required, is_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')
  354. ;
  355. INSERT INTO gen_table_column (column_id, table_id, column_name, column_comment, column_type, java_type, java_field, is_pk, is_increment, is_required, is_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')
  356. ;
  357. INSERT INTO gen_table_column (column_id, table_id, column_name, column_comment, column_type, java_type, java_field, is_pk, is_increment, is_required, is_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')
  358. ;
  359. INSERT INTO gen_table_column (column_id, table_id, column_name, column_comment, column_type, java_type, java_field, is_pk, is_increment, is_required, is_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')
  360. ;
  361. INSERT INTO gen_table_column (column_id, table_id, column_name, column_comment, column_type, java_type, java_field, is_pk, is_increment, is_required, is_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')
  362. ;
  363. INSERT INTO gen_table_column (column_id, table_id, column_name, column_comment, column_type, java_type, java_field, is_pk, is_increment, is_required, is_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')
  364. ;
  365. INSERT INTO gen_table_column (column_id, table_id, column_name, column_comment, column_type, java_type, java_field, is_pk, is_increment, is_required, is_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')
  366. ;
  367. INSERT INTO gen_table_column (column_id, table_id, column_name, column_comment, column_type, java_type, java_field, is_pk, is_increment, is_required, is_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')
  368. ;
  369. INSERT INTO gen_table_column (column_id, table_id, column_name, column_comment, column_type, java_type, java_field, is_pk, is_increment, is_required, is_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')
  370. ;
  371. INSERT INTO gen_table_column (column_id, table_id, column_name, column_comment, column_type, java_type, java_field, is_pk, is_increment, is_required, is_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')
  372. ;
  373. INSERT INTO gen_table_column (column_id, table_id, column_name, column_comment, column_type, java_type, java_field, is_pk, is_increment, is_required, is_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')
  374. ;
  375. INSERT INTO gen_table_column (column_id, table_id, column_name, column_comment, column_type, java_type, java_field, is_pk, is_increment, is_required, is_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')
  376. ;
  377. INSERT INTO gen_table_column (column_id, table_id, column_name, column_comment, column_type, java_type, java_field, is_pk, is_increment, is_required, is_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')
  378. ;
  379. INSERT INTO gen_table_column (column_id, table_id, column_name, column_comment, column_type, java_type, java_field, is_pk, is_increment, is_required, is_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')
  380. ;
  381. INSERT INTO gen_table_column (column_id, table_id, column_name, column_comment, column_type, java_type, java_field, is_pk, is_increment, is_required, is_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')
  382. ;
  383. INSERT INTO gen_table_column (column_id, table_id, column_name, column_comment, column_type, java_type, java_field, is_pk, is_increment, is_required, is_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')
  384. ;
  385. INSERT INTO gen_table_column (column_id, table_id, column_name, column_comment, column_type, java_type, java_field, is_pk, is_increment, is_required, is_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')
  386. ;
  387. INSERT INTO gen_table_column (column_id, table_id, column_name, column_comment, column_type, java_type, java_field, is_pk, is_increment, is_required, is_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')
  388. ;
  389. INSERT INTO gen_table_column (column_id, table_id, column_name, column_comment, column_type, java_type, java_field, is_pk, is_increment, is_required, is_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')
  390. ;
  391. INSERT INTO gen_table_column (column_id, table_id, column_name, column_comment, column_type, java_type, java_field, is_pk, is_increment, is_required, is_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)
  392. ;
  393. INSERT INTO gen_table_column (column_id, table_id, column_name, column_comment, column_type, java_type, java_field, is_pk, is_increment, is_required, is_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)
  394. ;
  395. INSERT INTO gen_table_column (column_id, table_id, column_name, column_comment, column_type, java_type, java_field, is_pk, is_increment, is_required, is_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)
  396. ;
  397. INSERT INTO gen_table_column (column_id, table_id, column_name, column_comment, column_type, java_type, java_field, is_pk, is_increment, is_required, is_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)
  398. ;
  399. INSERT INTO gen_table_column (column_id, table_id, column_name, column_comment, column_type, java_type, java_field, is_pk, is_increment, is_required, is_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)
  400. ;
  401. INSERT INTO gen_table_column (column_id, table_id, column_name, column_comment, column_type, java_type, java_field, is_pk, is_increment, is_required, is_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)
  402. ;
  403. INSERT INTO gen_table_column (column_id, table_id, column_name, column_comment, column_type, java_type, java_field, is_pk, is_increment, is_required, is_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)
  404. ;
  405. INSERT INTO gen_table_column (column_id, table_id, column_name, column_comment, column_type, java_type, java_field, is_pk, is_increment, is_required, is_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)
  406. ;
  407. INSERT INTO gen_table_column (column_id, table_id, column_name, column_comment, column_type, java_type, java_field, is_pk, is_increment, is_required, is_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)
  408. ;
  409. INSERT INTO gen_table_column (column_id, table_id, column_name, column_comment, column_type, java_type, java_field, is_pk, is_increment, is_required, is_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)
  410. ;
  411. INSERT INTO gen_table_column (column_id, table_id, column_name, column_comment, column_type, java_type, java_field, is_pk, is_increment, is_required, is_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)
  412. ;
  413. INSERT INTO gen_table_column (column_id, table_id, column_name, column_comment, column_type, java_type, java_field, is_pk, is_increment, is_required, is_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)
  414. ;
  415. INSERT INTO gen_table_column (column_id, table_id, column_name, column_comment, column_type, java_type, java_field, is_pk, is_increment, is_required, is_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)
  416. ;
  417. INSERT INTO gen_table_column (column_id, table_id, column_name, column_comment, column_type, java_type, java_field, is_pk, is_increment, is_required, is_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)
  418. ;
  419. INSERT INTO gen_table_column (column_id, table_id, column_name, column_comment, column_type, java_type, java_field, is_pk, is_increment, is_required, is_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)
  420. ;
  421. INSERT INTO gen_table_column (column_id, table_id, column_name, column_comment, column_type, java_type, java_field, is_pk, is_increment, is_required, is_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)
  422. ;
  423. INSERT INTO gen_table_column (column_id, table_id, column_name, column_comment, column_type, java_type, java_field, is_pk, is_increment, is_required, is_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)
  424. ;
  425. INSERT INTO gen_table_column (column_id, table_id, column_name, column_comment, column_type, java_type, java_field, is_pk, is_increment, is_required, is_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)
  426. ;
  427. INSERT INTO gen_table_column (column_id, table_id, column_name, column_comment, column_type, java_type, java_field, is_pk, is_increment, is_required, is_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)
  428. ;
  429. INSERT INTO gen_table_column (column_id, table_id, column_name, column_comment, column_type, java_type, java_field, is_pk, is_increment, is_required, is_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)
  430. ;
  431. INSERT INTO gen_table_column (column_id, table_id, column_name, column_comment, column_type, java_type, java_field, is_pk, is_increment, is_required, is_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')
  432. ;
  433. INSERT INTO gen_table_column (column_id, table_id, column_name, column_comment, column_type, java_type, java_field, is_pk, is_increment, is_required, is_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')
  434. ;
  435. INSERT INTO gen_table_column (column_id, table_id, column_name, column_comment, column_type, java_type, java_field, is_pk, is_increment, is_required, is_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')
  436. ;
  437. INSERT INTO gen_table_column (column_id, table_id, column_name, column_comment, column_type, java_type, java_field, is_pk, is_increment, is_required, is_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')
  438. ;
  439. INSERT INTO gen_table_column (column_id, table_id, column_name, column_comment, column_type, java_type, java_field, is_pk, is_increment, is_required, is_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')
  440. ;
  441. INSERT INTO gen_table_column (column_id, table_id, column_name, column_comment, column_type, java_type, java_field, is_pk, is_increment, is_required, is_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')
  442. ;
  443. INSERT INTO gen_table_column (column_id, table_id, column_name, column_comment, column_type, java_type, java_field, is_pk, is_increment, is_required, is_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')
  444. ;
  445. INSERT INTO gen_table_column (column_id, table_id, column_name, column_comment, column_type, java_type, java_field, is_pk, is_increment, is_required, is_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')
  446. ;
  447. INSERT INTO gen_table_column (column_id, table_id, column_name, column_comment, column_type, java_type, java_field, is_pk, is_increment, is_required, is_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')
  448. ;
  449. INSERT INTO gen_table_column (column_id, table_id, column_name, column_comment, column_type, java_type, java_field, is_pk, is_increment, is_required, is_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')
  450. ;
  451. INSERT INTO gen_table_column (column_id, table_id, column_name, column_comment, column_type, java_type, java_field, is_pk, is_increment, is_required, is_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')
  452. ;
  453. INSERT INTO gen_table_column (column_id, table_id, column_name, column_comment, column_type, java_type, java_field, is_pk, is_increment, is_required, is_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')
  454. ;
  455. INSERT INTO gen_table_column (column_id, table_id, column_name, column_comment, column_type, java_type, java_field, is_pk, is_increment, is_required, is_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')
  456. ;
  457. INSERT INTO gen_table_column (column_id, table_id, column_name, column_comment, column_type, java_type, java_field, is_pk, is_increment, is_required, is_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')
  458. ;
  459. INSERT INTO gen_table_column (column_id, table_id, column_name, column_comment, column_type, java_type, java_field, is_pk, is_increment, is_required, is_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')
  460. ;
  461. INSERT INTO gen_table_column (column_id, table_id, column_name, column_comment, column_type, java_type, java_field, is_pk, is_increment, is_required, is_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')
  462. ;
  463. INSERT INTO gen_table_column (column_id, table_id, column_name, column_comment, column_type, java_type, java_field, is_pk, is_increment, is_required, is_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')
  464. ;
  465. INSERT INTO gen_table_column (column_id, table_id, column_name, column_comment, column_type, java_type, java_field, is_pk, is_increment, is_required, is_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')
  466. ;
  467. INSERT INTO gen_table_column (column_id, table_id, column_name, column_comment, column_type, java_type, java_field, is_pk, is_increment, is_required, is_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')
  468. ;
  469. INSERT INTO gen_table_column (column_id, table_id, column_name, column_comment, column_type, java_type, java_field, is_pk, is_increment, is_required, is_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')
  470. ;
  471. INSERT INTO gen_table_column (column_id, table_id, column_name, column_comment, column_type, java_type, java_field, is_pk, is_increment, is_required, is_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')
  472. ;
  473. INSERT INTO gen_table_column (column_id, table_id, column_name, column_comment, column_type, java_type, java_field, is_pk, is_increment, is_required, is_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')
  474. ;
  475. INSERT INTO gen_table_column (column_id, table_id, column_name, column_comment, column_type, java_type, java_field, is_pk, is_increment, is_required, is_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')
  476. ;
  477. INSERT INTO gen_table_column (column_id, table_id, column_name, column_comment, column_type, java_type, java_field, is_pk, is_increment, is_required, is_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')
  478. ;
  479. INSERT INTO gen_table_column (column_id, table_id, column_name, column_comment, column_type, java_type, java_field, is_pk, is_increment, is_required, is_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')
  480. ;
  481. INSERT INTO gen_table_column (column_id, table_id, column_name, column_comment, column_type, java_type, java_field, is_pk, is_increment, is_required, is_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')
  482. ;
  483. INSERT INTO gen_table_column (column_id, table_id, column_name, column_comment, column_type, java_type, java_field, is_pk, is_increment, is_required, is_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)
  484. ;
  485. INSERT INTO gen_table_column (column_id, table_id, column_name, column_comment, column_type, java_type, java_field, is_pk, is_increment, is_required, is_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)
  486. ;
  487. INSERT INTO gen_table_column (column_id, table_id, column_name, column_comment, column_type, java_type, java_field, is_pk, is_increment, is_required, is_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)
  488. ;
  489. INSERT INTO gen_table_column (column_id, table_id, column_name, column_comment, column_type, java_type, java_field, is_pk, is_increment, is_required, is_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)
  490. ;
  491. INSERT INTO gen_table_column (column_id, table_id, column_name, column_comment, column_type, java_type, java_field, is_pk, is_increment, is_required, is_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)
  492. ;
  493. INSERT INTO gen_table_column (column_id, table_id, column_name, column_comment, column_type, java_type, java_field, is_pk, is_increment, is_required, is_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)
  494. ;
  495. INSERT INTO gen_table_column (column_id, table_id, column_name, column_comment, column_type, java_type, java_field, is_pk, is_increment, is_required, is_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)
  496. ;
  497. INSERT INTO gen_table_column (column_id, table_id, column_name, column_comment, column_type, java_type, java_field, is_pk, is_increment, is_required, is_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)
  498. ;
  499. INSERT INTO gen_table_column (column_id, table_id, column_name, column_comment, column_type, java_type, java_field, is_pk, is_increment, is_required, is_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)
  500. ;
  501. INSERT INTO gen_table_column (column_id, table_id, column_name, column_comment, column_type, java_type, java_field, is_pk, is_increment, is_required, is_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)
  502. ;
  503. INSERT INTO gen_table_column (column_id, table_id, column_name, column_comment, column_type, java_type, java_field, is_pk, is_increment, is_required, is_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)
  504. ;
  505. INSERT INTO gen_table_column (column_id, table_id, column_name, column_comment, column_type, java_type, java_field, is_pk, is_increment, is_required, is_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)
  506. ;
  507. INSERT INTO gen_table_column (column_id, table_id, column_name, column_comment, column_type, java_type, java_field, is_pk, is_increment, is_required, is_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)
  508. ;
  509. INSERT INTO gen_table_column (column_id, table_id, column_name, column_comment, column_type, java_type, java_field, is_pk, is_increment, is_required, is_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')
  510. ;
  511. INSERT INTO gen_table_column (column_id, table_id, column_name, column_comment, column_type, java_type, java_field, is_pk, is_increment, is_required, is_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')
  512. ;
  513. INSERT INTO gen_table_column (column_id, table_id, column_name, column_comment, column_type, java_type, java_field, is_pk, is_increment, is_required, is_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')
  514. ;
  515. INSERT INTO gen_table_column (column_id, table_id, column_name, column_comment, column_type, java_type, java_field, is_pk, is_increment, is_required, is_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')
  516. ;
  517. INSERT INTO gen_table_column (column_id, table_id, column_name, column_comment, column_type, java_type, java_field, is_pk, is_increment, is_required, is_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')
  518. ;
  519. INSERT INTO gen_table_column (column_id, table_id, column_name, column_comment, column_type, java_type, java_field, is_pk, is_increment, is_required, is_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')
  520. ;
  521. INSERT INTO gen_table_column (column_id, table_id, column_name, column_comment, column_type, java_type, java_field, is_pk, is_increment, is_required, is_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')
  522. ;
  523. INSERT INTO gen_table_column (column_id, table_id, column_name, column_comment, column_type, java_type, java_field, is_pk, is_increment, is_required, is_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')
  524. ;
  525. INSERT INTO gen_table_column (column_id, table_id, column_name, column_comment, column_type, java_type, java_field, is_pk, is_increment, is_required, is_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')
  526. ;
  527. INSERT INTO gen_table_column (column_id, table_id, column_name, column_comment, column_type, java_type, java_field, is_pk, is_increment, is_required, is_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')
  528. ;
  529. INSERT INTO gen_table_column (column_id, table_id, column_name, column_comment, column_type, java_type, java_field, is_pk, is_increment, is_required, is_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')
  530. ;
  531. INSERT INTO gen_table_column (column_id, table_id, column_name, column_comment, column_type, java_type, java_field, is_pk, is_increment, is_required, is_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')
  532. ;
  533. INSERT INTO gen_table_column (column_id, table_id, column_name, column_comment, column_type, java_type, java_field, is_pk, is_increment, is_required, is_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')
  534. ;
  535. INSERT INTO gen_table_column (column_id, table_id, column_name, column_comment, column_type, java_type, java_field, is_pk, is_increment, is_required, is_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)
  536. ;
  537. INSERT INTO gen_table_column (column_id, table_id, column_name, column_comment, column_type, java_type, java_field, is_pk, is_increment, is_required, is_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)
  538. ;
  539. INSERT INTO gen_table_column (column_id, table_id, column_name, column_comment, column_type, java_type, java_field, is_pk, is_increment, is_required, is_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)
  540. ;
  541. INSERT INTO gen_table_column (column_id, table_id, column_name, column_comment, column_type, java_type, java_field, is_pk, is_increment, is_required, is_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)
  542. ;
  543. INSERT INTO gen_table_column (column_id, table_id, column_name, column_comment, column_type, java_type, java_field, is_pk, is_increment, is_required, is_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)
  544. ;
  545. INSERT INTO gen_table_column (column_id, table_id, column_name, column_comment, column_type, java_type, java_field, is_pk, is_increment, is_required, is_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)
  546. ;
  547. INSERT INTO gen_table_column (column_id, table_id, column_name, column_comment, column_type, java_type, java_field, is_pk, is_increment, is_required, is_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)
  548. ;
  549. INSERT INTO gen_table_column (column_id, table_id, column_name, column_comment, column_type, java_type, java_field, is_pk, is_increment, is_required, is_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)
  550. ;
  551. INSERT INTO gen_table_column (column_id, table_id, column_name, column_comment, column_type, java_type, java_field, is_pk, is_increment, is_required, is_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)
  552. ;
  553. INSERT INTO gen_table_column (column_id, table_id, column_name, column_comment, column_type, java_type, java_field, is_pk, is_increment, is_required, is_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)
  554. ;
  555. INSERT INTO gen_table_column (column_id, table_id, column_name, column_comment, column_type, java_type, java_field, is_pk, is_increment, is_required, is_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)
  556. ;
  557. INSERT INTO gen_table_column (column_id, table_id, column_name, column_comment, column_type, java_type, java_field, is_pk, is_increment, is_required, is_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)
  558. ;
  559. INSERT INTO gen_table_column (column_id, table_id, column_name, column_comment, column_type, java_type, java_field, is_pk, is_increment, is_required, is_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)
  560. ;
  561. INSERT INTO gen_table_column (column_id, table_id, column_name, column_comment, column_type, java_type, java_field, is_pk, is_increment, is_required, is_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)
  562. ;
  563. INSERT INTO gen_table_column (column_id, table_id, column_name, column_comment, column_type, java_type, java_field, is_pk, is_increment, is_required, is_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)
  564. ;
  565. INSERT INTO gen_table_column (column_id, table_id, column_name, column_comment, column_type, java_type, java_field, is_pk, is_increment, is_required, is_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)
  566. ;
  567. INSERT INTO gen_table_column (column_id, table_id, column_name, column_comment, column_type, java_type, java_field, is_pk, is_increment, is_required, is_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)
  568. ;
  569. INSERT INTO gen_table_column (column_id, table_id, column_name, column_comment, column_type, java_type, java_field, is_pk, is_increment, is_required, is_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)
  570. ;
  571. INSERT INTO gen_table_column (column_id, table_id, column_name, column_comment, column_type, java_type, java_field, is_pk, is_increment, is_required, is_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)
  572. ;
  573. INSERT INTO gen_table_column (column_id, table_id, column_name, column_comment, column_type, java_type, java_field, is_pk, is_increment, is_required, is_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)
  574. ;
  575. INSERT INTO gen_table_column (column_id, table_id, column_name, column_comment, column_type, java_type, java_field, is_pk, is_increment, is_required, is_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)
  576. ;
  577. INSERT INTO gen_table_column (column_id, table_id, column_name, column_comment, column_type, java_type, java_field, is_pk, is_increment, is_required, is_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)
  578. ;
  579. INSERT INTO gen_table_column (column_id, table_id, column_name, column_comment, column_type, java_type, java_field, is_pk, is_increment, is_required, is_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)
  580. ;
  581. INSERT INTO gen_table_column (column_id, table_id, column_name, column_comment, column_type, java_type, java_field, is_pk, is_increment, is_required, is_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)
  582. ;
  583. INSERT INTO gen_table_column (column_id, table_id, column_name, column_comment, column_type, java_type, java_field, is_pk, is_increment, is_required, is_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)
  584. ;
  585. INSERT INTO gen_table_column (column_id, table_id, column_name, column_comment, column_type, java_type, java_field, is_pk, is_increment, is_required, is_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)
  586. ;
  587. INSERT INTO gen_table_column (column_id, table_id, column_name, column_comment, column_type, java_type, java_field, is_pk, is_increment, is_required, is_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)
  588. ;
  589. INSERT INTO gen_table_column (column_id, table_id, column_name, column_comment, column_type, java_type, java_field, is_pk, is_increment, is_required, is_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)
  590. ;
  591. INSERT INTO gen_table_column (column_id, table_id, column_name, column_comment, column_type, java_type, java_field, is_pk, is_increment, is_required, is_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)
  592. ;
  593. INSERT INTO gen_table_column (column_id, table_id, column_name, column_comment, column_type, java_type, java_field, is_pk, is_increment, is_required, is_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)
  594. ;
  595. INSERT INTO gen_table_column (column_id, table_id, column_name, column_comment, column_type, java_type, java_field, is_pk, is_increment, is_required, is_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)
  596. ;
  597. INSERT INTO gen_table_column (column_id, table_id, column_name, column_comment, column_type, java_type, java_field, is_pk, is_increment, is_required, is_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)
  598. ;
  599. INSERT INTO gen_table_column (column_id, table_id, column_name, column_comment, column_type, java_type, java_field, is_pk, is_increment, is_required, is_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)
  600. ;
  601. INSERT INTO gen_table_column (column_id, table_id, column_name, column_comment, column_type, java_type, java_field, is_pk, is_increment, is_required, is_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)
  602. ;
  603. INSERT INTO gen_table_column (column_id, table_id, column_name, column_comment, column_type, java_type, java_field, is_pk, is_increment, is_required, is_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)
  604. ;
  605. INSERT INTO gen_table_column (column_id, table_id, column_name, column_comment, column_type, java_type, java_field, is_pk, is_increment, is_required, is_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)
  606. ;
  607. INSERT INTO gen_table_column (column_id, table_id, column_name, column_comment, column_type, java_type, java_field, is_pk, is_increment, is_required, is_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)
  608. ;
  609. INSERT INTO gen_table_column (column_id, table_id, column_name, column_comment, column_type, java_type, java_field, is_pk, is_increment, is_required, is_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)
  610. ;
  611. INSERT INTO gen_table_column (column_id, table_id, column_name, column_comment, column_type, java_type, java_field, is_pk, is_increment, is_required, is_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)
  612. ;
  613. INSERT INTO gen_table_column (column_id, table_id, column_name, column_comment, column_type, java_type, java_field, is_pk, is_increment, is_required, is_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)
  614. ;
  615. INSERT INTO gen_table_column (column_id, table_id, column_name, column_comment, column_type, java_type, java_field, is_pk, is_increment, is_required, is_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)
  616. ;
  617. INSERT INTO gen_table_column (column_id, table_id, column_name, column_comment, column_type, java_type, java_field, is_pk, is_increment, is_required, is_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)
  618. ;
  619. INSERT INTO gen_table_column (column_id, table_id, column_name, column_comment, column_type, java_type, java_field, is_pk, is_increment, is_required, is_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)
  620. ;
  621. INSERT INTO gen_table_column (column_id, table_id, column_name, column_comment, column_type, java_type, java_field, is_pk, is_increment, is_required, is_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)
  622. ;
  623. INSERT INTO gen_table_column (column_id, table_id, column_name, column_comment, column_type, java_type, java_field, is_pk, is_increment, is_required, is_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)
  624. ;
  625. INSERT INTO gen_table_column (column_id, table_id, column_name, column_comment, column_type, java_type, java_field, is_pk, is_increment, is_required, is_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)
  626. ;
  627. INSERT INTO gen_table_column (column_id, table_id, column_name, column_comment, column_type, java_type, java_field, is_pk, is_increment, is_required, is_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)
  628. ;
  629. INSERT INTO gen_table_column (column_id, table_id, column_name, column_comment, column_type, java_type, java_field, is_pk, is_increment, is_required, is_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)
  630. ;
  631. INSERT INTO gen_table_column (column_id, table_id, column_name, column_comment, column_type, java_type, java_field, is_pk, is_increment, is_required, is_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)
  632. ;
  633. INSERT INTO gen_table_column (column_id, table_id, column_name, column_comment, column_type, java_type, java_field, is_pk, is_increment, is_required, is_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)
  634. ;
  635. INSERT INTO gen_table_column (column_id, table_id, column_name, column_comment, column_type, java_type, java_field, is_pk, is_increment, is_required, is_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)
  636. ;
  637. INSERT INTO gen_table_column (column_id, table_id, column_name, column_comment, column_type, java_type, java_field, is_pk, is_increment, is_required, is_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)
  638. ;
  639. INSERT INTO gen_table_column (column_id, table_id, column_name, column_comment, column_type, java_type, java_field, is_pk, is_increment, is_required, is_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)
  640. ;
  641. INSERT INTO gen_table_column (column_id, table_id, column_name, column_comment, column_type, java_type, java_field, is_pk, is_increment, is_required, is_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)
  642. ;
  643. INSERT INTO gen_table_column (column_id, table_id, column_name, column_comment, column_type, java_type, java_field, is_pk, is_increment, is_required, is_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)
  644. ;
  645. INSERT INTO gen_table_column (column_id, table_id, column_name, column_comment, column_type, java_type, java_field, is_pk, is_increment, is_required, is_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)
  646. ;
  647. INSERT INTO gen_table_column (column_id, table_id, column_name, column_comment, column_type, java_type, java_field, is_pk, is_increment, is_required, is_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)
  648. ;
  649. INSERT INTO gen_table_column (column_id, table_id, column_name, column_comment, column_type, java_type, java_field, is_pk, is_increment, is_required, is_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)
  650. ;
  651. INSERT INTO gen_table_column (column_id, table_id, column_name, column_comment, column_type, java_type, java_field, is_pk, is_increment, is_required, is_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)
  652. ;
  653. INSERT INTO gen_table_column (column_id, table_id, column_name, column_comment, column_type, java_type, java_field, is_pk, is_increment, is_required, is_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)
  654. ;
  655. INSERT INTO gen_table_column (column_id, table_id, column_name, column_comment, column_type, java_type, java_field, is_pk, is_increment, is_required, is_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)
  656. ;
  657. INSERT INTO gen_table_column (column_id, table_id, column_name, column_comment, column_type, java_type, java_field, is_pk, is_increment, is_required, is_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)
  658. ;
  659. INSERT INTO gen_table_column (column_id, table_id, column_name, column_comment, column_type, java_type, java_field, is_pk, is_increment, is_required, is_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)
  660. ;
  661. INSERT INTO gen_table_column (column_id, table_id, column_name, column_comment, column_type, java_type, java_field, is_pk, is_increment, is_required, is_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)
  662. ;
  663. INSERT INTO gen_table_column (column_id, table_id, column_name, column_comment, column_type, java_type, java_field, is_pk, is_increment, is_required, is_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)
  664. ;
  665. INSERT INTO gen_table_column (column_id, table_id, column_name, column_comment, column_type, java_type, java_field, is_pk, is_increment, is_required, is_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)
  666. ;
  667. INSERT INTO gen_table_column (column_id, table_id, column_name, column_comment, column_type, java_type, java_field, is_pk, is_increment, is_required, is_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)
  668. ;
  669. INSERT INTO gen_table_column (column_id, table_id, column_name, column_comment, column_type, java_type, java_field, is_pk, is_increment, is_required, is_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)
  670. ;
  671. INSERT INTO gen_table_column (column_id, table_id, column_name, column_comment, column_type, java_type, java_field, is_pk, is_increment, is_required, is_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)
  672. ;
  673. INSERT INTO gen_table_column (column_id, table_id, column_name, column_comment, column_type, java_type, java_field, is_pk, is_increment, is_required, is_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)
  674. ;
  675. INSERT INTO gen_table_column (column_id, table_id, column_name, column_comment, column_type, java_type, java_field, is_pk, is_increment, is_required, is_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)
  676. ;
  677. INSERT INTO gen_table_column (column_id, table_id, column_name, column_comment, column_type, java_type, java_field, is_pk, is_increment, is_required, is_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)
  678. ;
  679. INSERT INTO gen_table_column (column_id, table_id, column_name, column_comment, column_type, java_type, java_field, is_pk, is_increment, is_required, is_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)
  680. ;
  681. INSERT INTO gen_table_column (column_id, table_id, column_name, column_comment, column_type, java_type, java_field, is_pk, is_increment, is_required, is_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)
  682. ;
  683. INSERT INTO gen_table_column (column_id, table_id, column_name, column_comment, column_type, java_type, java_field, is_pk, is_increment, is_required, is_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)
  684. ;
  685. INSERT INTO gen_table_column (column_id, table_id, column_name, column_comment, column_type, java_type, java_field, is_pk, is_increment, is_required, is_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)
  686. ;
  687. INSERT INTO gen_table_column (column_id, table_id, column_name, column_comment, column_type, java_type, java_field, is_pk, is_increment, is_required, is_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)
  688. ;
  689. INSERT INTO gen_table_column (column_id, table_id, column_name, column_comment, column_type, java_type, java_field, is_pk, is_increment, is_required, is_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)
  690. ;
  691. INSERT INTO gen_table_column (column_id, table_id, column_name, column_comment, column_type, java_type, java_field, is_pk, is_increment, is_required, is_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)
  692. ;
  693. INSERT INTO gen_table_column (column_id, table_id, column_name, column_comment, column_type, java_type, java_field, is_pk, is_increment, is_required, is_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')
  694. ;
  695. INSERT INTO gen_table_column (column_id, table_id, column_name, column_comment, column_type, java_type, java_field, is_pk, is_increment, is_required, is_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')
  696. ;
  697. INSERT INTO gen_table_column (column_id, table_id, column_name, column_comment, column_type, java_type, java_field, is_pk, is_increment, is_required, is_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)
  698. ;
  699. INSERT INTO gen_table_column (column_id, table_id, column_name, column_comment, column_type, java_type, java_field, is_pk, is_increment, is_required, is_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)
  700. ;
  701. INSERT INTO gen_table_column (column_id, table_id, column_name, column_comment, column_type, java_type, java_field, is_pk, is_increment, is_required, is_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)
  702. ;
  703. INSERT INTO gen_table_column (column_id, table_id, column_name, column_comment, column_type, java_type, java_field, is_pk, is_increment, is_required, is_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)
  704. ;
  705. INSERT INTO gen_table_column (column_id, table_id, column_name, column_comment, column_type, java_type, java_field, is_pk, is_increment, is_required, is_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)
  706. ;
  707. INSERT INTO gen_table_column (column_id, table_id, column_name, column_comment, column_type, java_type, java_field, is_pk, is_increment, is_required, is_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)
  708. ;
  709. INSERT INTO gen_table_column (column_id, table_id, column_name, column_comment, column_type, java_type, java_field, is_pk, is_increment, is_required, is_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)
  710. ;
  711. INSERT INTO gen_table_column (column_id, table_id, column_name, column_comment, column_type, java_type, java_field, is_pk, is_increment, is_required, is_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)
  712. ;
  713. INSERT INTO gen_table_column (column_id, table_id, column_name, column_comment, column_type, java_type, java_field, is_pk, is_increment, is_required, is_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)
  714. ;
  715. INSERT INTO gen_table_column (column_id, table_id, column_name, column_comment, column_type, java_type, java_field, is_pk, is_increment, is_required, is_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)
  716. ;
  717. INSERT INTO gen_table_column (column_id, table_id, column_name, column_comment, column_type, java_type, java_field, is_pk, is_increment, is_required, is_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)
  718. ;
  719. INSERT INTO gen_table_column (column_id, table_id, column_name, column_comment, column_type, java_type, java_field, is_pk, is_increment, is_required, is_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)
  720. ;
  721. INSERT INTO gen_table_column (column_id, table_id, column_name, column_comment, column_type, java_type, java_field, is_pk, is_increment, is_required, is_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)
  722. ;
  723. INSERT INTO gen_table_column (column_id, table_id, column_name, column_comment, column_type, java_type, java_field, is_pk, is_increment, is_required, is_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)
  724. ;
  725. INSERT INTO gen_table_column (column_id, table_id, column_name, column_comment, column_type, java_type, java_field, is_pk, is_increment, is_required, is_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)
  726. ;
  727. INSERT INTO gen_table_column (column_id, table_id, column_name, column_comment, column_type, java_type, java_field, is_pk, is_increment, is_required, is_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)
  728. ;
  729. INSERT INTO gen_table_column (column_id, table_id, column_name, column_comment, column_type, java_type, java_field, is_pk, is_increment, is_required, is_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)
  730. ;
  731. INSERT INTO gen_table_column (column_id, table_id, column_name, column_comment, column_type, java_type, java_field, is_pk, is_increment, is_required, is_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)
  732. ;
  733. INSERT INTO gen_table_column (column_id, table_id, column_name, column_comment, column_type, java_type, java_field, is_pk, is_increment, is_required, is_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')
  734. ;
  735. INSERT INTO gen_table_column (column_id, table_id, column_name, column_comment, column_type, java_type, java_field, is_pk, is_increment, is_required, is_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')
  736. ;
  737. INSERT INTO gen_table_column (column_id, table_id, column_name, column_comment, column_type, java_type, java_field, is_pk, is_increment, is_required, is_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')
  738. ;
  739. INSERT INTO gen_table_column (column_id, table_id, column_name, column_comment, column_type, java_type, java_field, is_pk, is_increment, is_required, is_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')
  740. ;
  741. INSERT INTO gen_table_column (column_id, table_id, column_name, column_comment, column_type, java_type, java_field, is_pk, is_increment, is_required, is_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')
  742. ;
  743. INSERT INTO gen_table_column (column_id, table_id, column_name, column_comment, column_type, java_type, java_field, is_pk, is_increment, is_required, is_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')
  744. ;
  745. INSERT INTO gen_table_column (column_id, table_id, column_name, column_comment, column_type, java_type, java_field, is_pk, is_increment, is_required, is_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')
  746. ;
  747. INSERT INTO gen_table_column (column_id, table_id, column_name, column_comment, column_type, java_type, java_field, is_pk, is_increment, is_required, is_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')
  748. ;
  749. INSERT INTO gen_table_column (column_id, table_id, column_name, column_comment, column_type, java_type, java_field, is_pk, is_increment, is_required, is_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)
  750. ;
  751. INSERT INTO gen_table_column (column_id, table_id, column_name, column_comment, column_type, java_type, java_field, is_pk, is_increment, is_required, is_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)
  752. ;
  753. INSERT INTO gen_table_column (column_id, table_id, column_name, column_comment, column_type, java_type, java_field, is_pk, is_increment, is_required, is_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)
  754. ;
  755. INSERT INTO gen_table_column (column_id, table_id, column_name, column_comment, column_type, java_type, java_field, is_pk, is_increment, is_required, is_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)
  756. ;
  757. INSERT INTO gen_table_column (column_id, table_id, column_name, column_comment, column_type, java_type, java_field, is_pk, is_increment, is_required, is_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)
  758. ;
  759. INSERT INTO gen_table_column (column_id, table_id, column_name, column_comment, column_type, java_type, java_field, is_pk, is_increment, is_required, is_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)
  760. ;
  761. INSERT INTO gen_table_column (column_id, table_id, column_name, column_comment, column_type, java_type, java_field, is_pk, is_increment, is_required, is_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)
  762. ;
  763. INSERT INTO gen_table_column (column_id, table_id, column_name, column_comment, column_type, java_type, java_field, is_pk, is_increment, is_required, is_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)
  764. ;
  765. INSERT INTO gen_table_column (column_id, table_id, column_name, column_comment, column_type, java_type, java_field, is_pk, is_increment, is_required, is_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)
  766. ;
  767. CREATE TABLE JT_ALARM (
  768. ID bigint NOT NULL,
  769. LOCK_ID varchar(255) NOT NULL,
  770. CTP_TYPE varchar(50) NULL,
  771. CTP_DESC varchar(255) NULL,
  772. CTP_NUMBER int NULL,
  773. CTP_LEVEL int NULL,
  774. CAR_NO varchar(50) NULL,
  775. CREATE_TIME datetime NULL,
  776. CREATE_BY varchar(50) NULL,
  777. UPDATE_TIME datetime NULL,
  778. UPDATE_BY varchar(50) NULL,
  779. REMARK varchar(255) NULL,
  780. USER_ID bigint NULL,
  781. DEPT_ID bigint NULL,
  782. LONGITUDE decimal(18,10) NULL,
  783. LATITUDE decimal(18,10) NULL,
  784. ADDRESS varchar(255) NULL
  785. )
  786. ;
  787. CREATE TABLE JT_BASE_STATION_LOCATION_INFO (
  788. ID bigint NOT NULL,
  789. MCC varchar(255) NULL,
  790. MNC varchar(255) NULL,
  791. LAC varchar(255) NULL,
  792. CELL_ID varchar(255) NULL,
  793. SIGNAL_STRENGTH_IN_CSQ int NULL,
  794. SIGNAL_STRENGTH_IN_DBM int NULL,
  795. REMEARK varchar(255) NULL,
  796. CREATE_BY varchar(255) NULL,
  797. CREATE_TIME datetime NULL,
  798. UPDATE_BY varchar(255) NULL,
  799. UPDATE_TIME datetime NULL,
  800. GPS_LOCATION_ID bigint NULL
  801. )
  802. ;
  803. CREATE TABLE JT_CAR_BIND_INFO (
  804. ID bigint NOT NULL,
  805. DEVICE_ID varchar(255) NULL,
  806. CAR_NO varchar(255) NULL,
  807. CAR_TYPE varchar(255) NULL,
  808. ORIGIN varchar(255) NULL,
  809. DESTINATION varchar(255) NULL,
  810. STATUS varchar(255) NULL,
  811. REMARK varchar(255) NULL,
  812. CREATE_BY varchar(255) NULL,
  813. CREATE_TIME datetime NOT NULL,
  814. UPDATE_BY varchar(1) NULL,
  815. UPDATE_TIME datetime NULL,
  816. USER_ID bigint NULL,
  817. DEPT_ID bigint NULL,
  818. END_STATUS varchar(255) NULL,
  819. START_ID bigint NULL,
  820. OVERT_TIME bigint NULL,
  821. EF_ID int NULL,
  822. END_TIME datetime NULL,
  823. ADDRESS_EF_IDS varchar(255) NULL,
  824. STOP_CAR_TIME bigint NULL
  825. )
  826. ;
  827. CREATE TABLE JT_EARLYWARN_SETTINGS (
  828. ID bigint NOT NULL,
  829. ORIGIN varchar(50) NULL,
  830. DESTINATION varchar(50) NULL,
  831. CAR_TYPE varchar(50) NULL,
  832. DRIVING_OVER_TIME bigint NULL,
  833. STOP_OVER_TIME bigint NULL,
  834. CREATE_TIME datetime NOT NULL,
  835. CREATE_BY varchar(50) NULL,
  836. UPDATE_TIME datetime NULL,
  837. UPDATE_BY varchar(50) NULL,
  838. REMARK varchar(255) NULL,
  839. USER_ID bigint NULL,
  840. DEPT_ID bigint NULL
  841. )
  842. ;
  843. CREATE TABLE JT_ELECTRONIC_FENCE (
  844. ID bigint NOT NULL,
  845. ELECTRONIC_FENCE_NAME varchar(100) NULL,
  846. ELECTRONIC_FENCE_STATUS varchar(30) NULL,
  847. COORDINATE_LIST varchar(5000) NULL,
  848. VERSION varchar(30) NULL,
  849. USER_ID int NULL,
  850. DEPT_ID int NULL,
  851. CREATE_TIME datetime NULL,
  852. CREATE_USER varchar(30) NULL,
  853. UPDATE_TIME datetime NULL,
  854. UPDATE_USER varchar(30) NULL,
  855. REMARK varchar(500) NULL,
  856. ELECTRONIC_FENCE_TYPE int NULL,
  857. CENTRE_LONGITUDE real NULL,
  858. CENTRE_LATITUDE varchar(255) NULL,
  859. RADIUS varchar(255) NULL
  860. )
  861. ;
  862. CREATE TABLE JT_ELECTRONIC_FENCE_INCIDENT (
  863. ID bigint NOT NULL,
  864. HEAD_ID varchar(50) NULL,
  865. IE_TYPE varchar(30) NULL,
  866. INCIDENT_TYPE varchar(30) NULL,
  867. USER_ID int NULL,
  868. DEPT_ID int NULL,
  869. CREATE_TIME datetime NULL,
  870. CREATE_USER varchar(30) NULL,
  871. UPDATE_TIME datetime NULL,
  872. UPDATE_USER varchar(30) NULL,
  873. REMARKS varchar(500) NULL
  874. )
  875. ;
  876. CREATE TABLE JT_EXTRA_INFO_DESC (
  877. ID bigint NOT NULL,
  878. ODOMETER varchar(255) NULL,
  879. WNSS varchar(255) NULL,
  880. LBS_INFO varchar(255) NULL,
  881. DEVICE_POWER varchar(255) NULL,
  882. RESOURCE_DATA varchar(1000) NULL,
  883. REMARK varchar(255) NULL,
  884. CREATE_BY varchar(255) NULL,
  885. CREATE_TIME datetime NULL,
  886. UPDATE_BY varchar(255) NULL,
  887. UPDATE_TIME datetime NULL,
  888. LOCATION_ID bigint NULL,
  889. DEVICE__NO varchar(255) NULL
  890. )
  891. ;
  892. CREATE TABLE JT_GPS_LOCATION (
  893. ID bigint NOT NULL,
  894. ALARM varchar(255) NULL,
  895. STATUS varchar(255) NULL,
  896. PRECISE_FLAG varchar(255) NULL,
  897. LAT decimal(18,6) NULL,
  898. LON decimal(18,6) NULL,
  899. ALTITUDE int NULL,
  900. SPEED int NULL,
  901. DIRECTION int NULL,
  902. GPS_TIME datetime NULL,
  903. RECV_TIME datetime NULL,
  904. REMARK varchar(255) NULL,
  905. CREATE_BY varchar(255) NULL,
  906. CREATE_TIME datetime NULL,
  907. UPDATE_BY varchar(255) NULL,
  908. UPDATE_TIME datetime NULL,
  909. LOCATION_ID bigint NULL,
  910. DEVICE_NO varchar(50) NULL
  911. )
  912. ;
  913. CREATE TABLE JT_GROUP (
  914. ID bigint NOT NULL,
  915. GROUP_NAME varchar(100) NULL,
  916. CREATE_TIME datetime NULL,
  917. UPDATE_TIME datetime NULL,
  918. CREATE_BY varchar(50) NULL,
  919. UPDATE_BY varchar(50) NULL,
  920. USER_ID bigint NULL,
  921. DEPT_ID bigint NULL,
  922. REMARK varchar(255) NULL,
  923. GROUP_PARENT_ID bigint NULL
  924. )
  925. ;
  926. 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)
  927. ;
  928. CREATE TABLE JT_IC_CODE (
  929. ID int NOT NULL,
  930. DEVICE_NO varchar(255) NOT NULL,
  931. IC_CODE varchar(255) NOT NULL,
  932. IC_TYPE int NOT NULL,
  933. IC_STATUS int NOT NULL,
  934. MES_STREAM varchar(4) NULL,
  935. BUSINESS_STREAM varchar(4) NULL,
  936. USER_ID bigint NULL,
  937. DEPT_ID bigint NULL
  938. )
  939. ;
  940. CREATE TABLE JT_IC_CODE_USER (
  941. ID int NOT NULL,
  942. USER_ID int NULL,
  943. IC_CODE varchar(255) NOT NULL,
  944. IC_TYPE int NOT NULL,
  945. USER_NAME varchar(255) NOT NULL,
  946. REMARK varchar(255) NULL,
  947. CREATE_BY varchar(255) NULL,
  948. CREATE_TIME datetime NULL,
  949. UPDATE_BY varchar(1) NULL,
  950. UPDATE_TIME datetime NULL
  951. )
  952. ;
  953. CREATE TABLE JT_LOCATION_INFO (
  954. ID bigint NOT NULL,
  955. PROTOCOL_TYPE varchar(255) NULL,
  956. RESPONSE_TYPE varchar(255) NULL,
  957. RESPONSE_TYPE_BYTES_STR varchar(255) NULL,
  958. DEVICE_ID varchar(255) NULL,
  959. MSG_SEQ_NO varchar(255) NULL,
  960. BINARY_PROTOCOL varchar(1000) NULL,
  961. REMARK varchar(255) NULL,
  962. CREATE_BY varchar(255) NULL,
  963. CREATE_TIME datetime NULL,
  964. UPDATE_BY varchar(255) NULL,
  965. UPDATE_TIME datetime NULL
  966. )
  967. ;
  968. CREATE TABLE JT_LOCK_GROUP (
  969. ID bigint NOT NULL,
  970. GROUP_ID bigint NULL,
  971. LOCK_ID bigint NULL,
  972. CREATE_TIME datetime NULL,
  973. UPDATE_TIME datetime NULL,
  974. CREATE_BY varchar(50) NULL,
  975. UPDATE_BY varchar(50) NULL,
  976. USER_ID bigint NULL,
  977. DEPT_ID bigint NULL,
  978. REMARK varchar(255) NULL
  979. )
  980. ;
  981. CREATE TABLE JT_LOCK_STATUS (
  982. ID bigint NOT NULL,
  983. CREATE_TIME datetime NULL,
  984. UPDATE_TIME datetime NULL,
  985. CREATE_BY varchar(50) NULL,
  986. UPDATE_BY varchar(50) NULL,
  987. USER_ID bigint NULL,
  988. DEPT_ID bigint NULL,
  989. REMARK varchar(255) NULL,
  990. DEVICE_NO varchar(255) NULL,
  991. LONGITUDE decimal(18,10) NULL,
  992. LATITUDE decimal(18,10) NULL,
  993. GPS_TIME datetime NULL,
  994. SERVER_TIME datetime NULL,
  995. SPEED int NULL,
  996. MILEAGE varchar(50) NULL,
  997. ALTITUDE int NULL,
  998. DEVICE_STATUS varchar(255) NULL,
  999. ALARM_FLAG varchar(255) NULL,
  1000. QUANTITY_OF_ELECTRICITY int NULL,
  1001. ADDRESS varchar(255) NULL,
  1002. ORIENTATION varchar(255) NULL,
  1003. LOCK_STATUS varchar(50) NULL,
  1004. ALARM_STATUS varchar(50) NULL,
  1005. STATUS varchar(255) NULL,
  1006. PRECISE_FLAG varchar(255) NULL
  1007. )
  1008. ;
  1009. CREATE TABLE JT_SEAL_INFO (
  1010. ID bigint NOT NULL,
  1011. DEVICE_NO varchar(255) NULL,
  1012. DEVICE_TYPE varchar(255) NULL,
  1013. DEVICE_UTC int NULL,
  1014. OVERDUE_TIME datetime NULL,
  1015. FIRMWARE_VER varchar(255) NULL,
  1016. ICCID varchar(255) NULL,
  1017. SIM varchar(255) NULL,
  1018. IMEI varchar(255) NULL,
  1019. DEVICE_NAME varchar(255) NULL,
  1020. UPLOAD_INTERVAL int NULL,
  1021. IP_ADDR varchar(255) NULL,
  1022. ENABLE_FLAG varchar(255) NULL,
  1023. REMARK varchar(255) NULL,
  1024. CREATE_BY varchar(255) NULL,
  1025. CREATE_TIME datetime NULL,
  1026. UPDATE_BY varchar(1) NULL,
  1027. UPDATE_TIME datetime NULL,
  1028. USER_ID bigint NULL,
  1029. DEPT_ID bigint NULL,
  1030. LOCK_GROUP_ID bigint NULL,
  1031. PAST_PASSWORD varchar(255) NULL,
  1032. NEW_PASSWORD varchar(255) NULL,
  1033. MES_STREAM varchar(4) NULL,
  1034. BUSINESS_STREAM varchar(4) NULL,
  1035. CMD varchar(2) NULL,
  1036. ELECTRONIC_FENCE_IDS varchar(255) NULL
  1037. )
  1038. ;
  1039. CREATE TABLE JT_TRAJECTORY (
  1040. ID bigint NOT NULL,
  1041. DEVICE_ID bigint NULL,
  1042. LONGITUDE decimal(18,6) NULL,
  1043. LATITUDE decimal(18,6) NULL,
  1044. ORIENTATION varchar(255) NULL,
  1045. GPS_TIME datetime NULL,
  1046. SERVER_TIME datetime NULL,
  1047. SPEED int NULL,
  1048. MILEAGE int NULL,
  1049. ALTITUDE int NULL,
  1050. DEVICE_STATUS varchar(255) NULL,
  1051. ALARM_FLAG varchar(255) NULL,
  1052. QUANTITY_OF_ELECTRICITY int NULL,
  1053. ADDRESS varchar(255) NULL,
  1054. REMARK varchar(255) NULL,
  1055. CREATE_BY varchar(255) NULL,
  1056. CREATE_TIME datetime NULL,
  1057. UPDATE_BY varchar(255) NULL,
  1058. UPDATE_TIME datetime NULL
  1059. )
  1060. ;
  1061. CREATE TABLE JT_WORKFLOW (
  1062. ID bigint NOT NULL,
  1063. LOCK_ID varchar(255) NULL,
  1064. W_TYPE varchar(50) NULL,
  1065. W_DESC varchar(255) NULL,
  1066. W_STATUS int NULL,
  1067. W_STATUS_DESC varchar(255) NULL,
  1068. SEAL_ADDRESS varchar(50) NULL,
  1069. SEAL_MILEAGE varchar(50) NULL,
  1070. SEAL_TYPE varchar(50) NULL,
  1071. SEAL_PASSWORD varchar(50) NULL,
  1072. SEAL_TIME datetime NULL,
  1073. SEAL_VOLTAGE varchar(255) NULL,
  1074. SEAL_ICCARD varchar(255) NULL,
  1075. CREATE_TIME datetime NULL,
  1076. CREATE_BY varchar(50) NULL,
  1077. UPDATE_TIME datetime NULL,
  1078. UPDATE_BY varchar(50) NULL,
  1079. REMARK varchar(255) NULL,
  1080. USER_ID bigint NULL,
  1081. DEPT_ID bigint NULL
  1082. )
  1083. ;
  1084. CREATE TABLE qrtz_blob_triggers (
  1085. sched_name nvarchar(120) NOT NULL,
  1086. trigger_name nvarchar(200) NOT NULL,
  1087. trigger_group nvarchar(200) NOT NULL,
  1088. blob_data varbinary(500) NULL
  1089. )
  1090. ;
  1091. CREATE TABLE qrtz_calendars (
  1092. sched_name nvarchar(120) NOT NULL,
  1093. calendar_name nvarchar(200) NOT NULL,
  1094. calendar varbinary(500) NOT NULL
  1095. )
  1096. ;
  1097. CREATE TABLE qrtz_cron_triggers (
  1098. sched_name nvarchar(120) NOT NULL,
  1099. trigger_name nvarchar(200) NOT NULL,
  1100. trigger_group nvarchar(200) NOT NULL,
  1101. cron_expression nvarchar(200) NOT NULL,
  1102. time_zone_id nvarchar(80) DEFAULT NULL NULL
  1103. )
  1104. ;
  1105. INSERT INTO qrtz_cron_triggers VALUES (N'RuoyiScheduler', N'TASK_CLASS_NAME1', N'DEFAULT', N'0/10 * * * * ?', N'Asia/Shanghai')
  1106. ;
  1107. INSERT INTO qrtz_cron_triggers VALUES (N'RuoyiScheduler', N'TASK_CLASS_NAME2', N'DEFAULT', N'0/20 * * * * ?', N'Asia/Shanghai')
  1108. ;
  1109. INSERT INTO qrtz_cron_triggers VALUES (N'RuoyiScheduler', N'TASK_CLASS_NAME3', N'DEFAULT', N'0/20 * * * * ?', N'Asia/Shanghai')
  1110. ;
  1111. CREATE TABLE qrtz_fired_triggers (
  1112. sched_name nvarchar(120) NOT NULL,
  1113. entry_id nvarchar(95) NOT NULL,
  1114. trigger_name nvarchar(200) NOT NULL,
  1115. trigger_group nvarchar(200) NOT NULL,
  1116. instance_name nvarchar(200) NOT NULL,
  1117. fired_time bigint NOT NULL,
  1118. sched_time bigint NOT NULL,
  1119. priority int NOT NULL,
  1120. state nvarchar(16) NOT NULL,
  1121. job_name nvarchar(200) DEFAULT NULL NULL,
  1122. job_group nvarchar(200) DEFAULT NULL NULL,
  1123. is_nonconcurrent nvarchar(1) DEFAULT NULL NULL,
  1124. requests_recovery nvarchar(1) DEFAULT NULL NULL
  1125. )
  1126. ;
  1127. CREATE TABLE qrtz_job_details (
  1128. sched_name nvarchar(120) NOT NULL,
  1129. job_name nvarchar(200) NOT NULL,
  1130. job_group nvarchar(200) NOT NULL,
  1131. description nvarchar(250) DEFAULT NULL NULL,
  1132. job_class_name nvarchar(250) NOT NULL,
  1133. is_durable nvarchar(1) NOT NULL,
  1134. is_nonconcurrent nvarchar(1) NOT NULL,
  1135. is_update_data nvarchar(1) NOT NULL,
  1136. requests_recovery nvarchar(1) NOT NULL,
  1137. job_data varbinary(1500) NULL
  1138. )
  1139. ;
  1140. CREATE TABLE qrtz_locks (
  1141. sched_name nvarchar(120) NOT NULL,
  1142. lock_name nvarchar(40) NOT NULL
  1143. )
  1144. ;
  1145. INSERT INTO qrtz_locks VALUES (N'RuoyiScheduler', N'STATE_ACCESS')
  1146. ;
  1147. INSERT INTO qrtz_locks VALUES (N'RuoyiScheduler', N'TRIGGER_ACCESS')
  1148. ;
  1149. CREATE TABLE qrtz_paused_trigger_grps (
  1150. sched_name nvarchar(120) NOT NULL,
  1151. trigger_group nvarchar(200) NOT NULL
  1152. )
  1153. ;
  1154. CREATE TABLE qrtz_scheduler_state (
  1155. sched_name nvarchar(120) NOT NULL,
  1156. instance_name nvarchar(200) NOT NULL,
  1157. last_checkin_time bigint NOT NULL,
  1158. checkin_interval bigint NOT NULL
  1159. )
  1160. ;
  1161. INSERT INTO qrtz_scheduler_state VALUES (N'RuoyiScheduler', N'liujinpeng1672713722866', N'1672713802859', N'15000')
  1162. ;
  1163. CREATE TABLE qrtz_simple_triggers (
  1164. sched_name nvarchar(120) NOT NULL,
  1165. trigger_name nvarchar(200) NOT NULL,
  1166. trigger_group nvarchar(200) NOT NULL,
  1167. repeat_count bigint NOT NULL,
  1168. repeat_interval bigint NOT NULL,
  1169. times_triggered bigint NOT NULL
  1170. )
  1171. ;
  1172. CREATE TABLE qrtz_simprop_triggers (
  1173. sched_name nvarchar(120) NOT NULL,
  1174. trigger_name nvarchar(200) NOT NULL,
  1175. trigger_group nvarchar(200) NOT NULL,
  1176. str_prop_1 nvarchar(512) DEFAULT NULL NULL,
  1177. str_prop_2 nvarchar(512) DEFAULT NULL NULL,
  1178. str_prop_3 nvarchar(512) DEFAULT NULL NULL,
  1179. int_prop_1 int DEFAULT NULL NULL,
  1180. int_prop_2 int DEFAULT NULL NULL,
  1181. long_prop_1 bigint DEFAULT NULL NULL,
  1182. long_prop_2 bigint DEFAULT NULL NULL,
  1183. dec_prop_1 decimal(13,4) DEFAULT NULL NULL,
  1184. dec_prop_2 decimal(13,4) DEFAULT NULL NULL,
  1185. bool_prop_1 nvarchar(1) DEFAULT NULL NULL,
  1186. bool_prop_2 nvarchar(1) DEFAULT NULL NULL
  1187. )
  1188. ;
  1189. CREATE TABLE qrtz_triggers (
  1190. sched_name nvarchar(120) NOT NULL,
  1191. trigger_name nvarchar(200) NOT NULL,
  1192. trigger_group nvarchar(200) NOT NULL,
  1193. job_name nvarchar(200) NOT NULL,
  1194. job_group nvarchar(200) NOT NULL,
  1195. description nvarchar(250) DEFAULT NULL NULL,
  1196. next_fire_time bigint DEFAULT NULL NULL,
  1197. prev_fire_time bigint DEFAULT NULL NULL,
  1198. priority int DEFAULT NULL NULL,
  1199. trigger_state nvarchar(16) NOT NULL,
  1200. trigger_type nvarchar(8) NOT NULL,
  1201. start_time bigint NOT NULL,
  1202. end_time bigint DEFAULT NULL NULL,
  1203. calendar_name nvarchar(200) DEFAULT NULL NULL,
  1204. misfire_instr smallint DEFAULT NULL NULL,
  1205. job_data varbinary(1500) NULL
  1206. )
  1207. ;
  1208. -- ----------------------------
  1209. -- Records of qrtz_triggers
  1210. -- ----------------------------
  1211. 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'')
  1212. ;
  1213. 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'')
  1214. ;
  1215. 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'')
  1216. ;
  1217. CREATE TABLE S_ConfigInfo (
  1218. ConfigID int NOT NULL,
  1219. D_DataType nvarchar(50) NULL,
  1220. D_DataConnection nvarchar(500) NULL,
  1221. D_DataSelectTable nvarchar(50) NULL,
  1222. D_DataSelectKeyCol nvarchar(50) NULL,
  1223. D_DataSelectWheres nvarchar(200) NULL,
  1224. D_DataDisplay nvarchar(50) NULL,
  1225. D_DataJudge nvarchar(50) NULL,
  1226. D_DataControl nvarchar(50) NULL,
  1227. D_DataStatus nvarchar(50) NULL,
  1228. D_DataStatusDesc nvarchar(50) NULL,
  1229. D_DataPackageType nvarchar(50) NULL,
  1230. D_DataPackageTypeDesc nvarchar(50) NULL,
  1231. D_JudgeTable nvarchar(50) NULL,
  1232. D_JudgeSelectKeyCol nvarchar(50) NULL,
  1233. D_JudgeSelectWheres nvarchar(50) NULL,
  1234. D_JudgeUpdateCol nvarchar(50) NULL,
  1235. D_JudgeUpdateColDesc nvarchar(50) NULL,
  1236. D_CheckTable nvarchar(50) NULL,
  1237. D_CheckSelectKeyCol nvarchar(50) NULL,
  1238. D_CheckSelectWheres nvarchar(50) NULL,
  1239. D_CheckUpdateCol nvarchar(50) NULL,
  1240. D_CheckUpdateColDesc nvarchar(50) NULL,
  1241. D_JudgeIsWrite bit NULL,
  1242. D_CheckIsWrite bit NULL,
  1243. D_ServerIsWrite bit NULL,
  1244. D_DataZYDan nvarchar(50) NULL,
  1245. D_DataFYDan nvarchar(50) NULL,
  1246. D_DataHWDan nvarchar(50) NULL,
  1247. D_DataWeight nvarchar(100) NULL,
  1248. D_DataWeightValue nvarchar(50) NULL,
  1249. B_DelBarCode nvarchar(200) NULL,
  1250. B_DefaultBarCode nvarchar(200) NULL,
  1251. B_BarCodeMaxTime int NULL,
  1252. B_BarCodeMinTime int NULL,
  1253. U_MemberCacheURL nvarchar(200) NULL,
  1254. U_FileServerURL nvarchar(200) NULL,
  1255. U_JudgeStationURL nvarchar(200) NULL,
  1256. U_IsCheckStation bit NULL,
  1257. H_DeviceHeartBeat int NULL,
  1258. H_DeviceOffLine int NULL,
  1259. H_PackgeTimeout int NULL,
  1260. H_ServerLoop int NULL,
  1261. H_DeviceReflash int NULL,
  1262. J_JudgeTimeOut int NULL,
  1263. J_JudgeConsion int NULL,
  1264. J_JudgeTimeRemind int NULL,
  1265. J_JudgeNumRemind int NULL,
  1266. J_JudgeThem int NULL
  1267. )
  1268. ;
  1269. CREATE TABLE sys_config (
  1270. config_id int NOT NULL,
  1271. config_name nvarchar(100) DEFAULT (N'') NULL,
  1272. config_key nvarchar(100) DEFAULT (N'') NULL,
  1273. config_value nvarchar(100) DEFAULT (N'') NULL,
  1274. config_type nchar(1) DEFAULT (N'N') NULL,
  1275. create_by nvarchar(64) DEFAULT (N'') NULL,
  1276. create_time datetime(6) DEFAULT NULL NULL,
  1277. update_by nvarchar(64) DEFAULT (N'') NULL,
  1278. update_time datetime(6) DEFAULT NULL NULL,
  1279. remark nvarchar(500) DEFAULT NULL NULL
  1280. )
  1281. ;
  1282. 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')
  1283. ;
  1284. 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')
  1285. ;
  1286. 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')
  1287. ;
  1288. 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'')
  1289. ;
  1290. 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'')
  1291. ;
  1292. 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'')
  1293. ;
  1294. CREATE TABLE sys_dept (
  1295. dept_id int NOT NULL,
  1296. parent_id int DEFAULT ((0)) NULL,
  1297. ancestors nvarchar(50) DEFAULT (N'') NULL,
  1298. dept_name nvarchar(30) DEFAULT (N'') NULL,
  1299. order_num int DEFAULT ((0)) NULL,
  1300. leader nvarchar(20) DEFAULT NULL NULL,
  1301. phone nvarchar(11) DEFAULT NULL NULL,
  1302. email nvarchar(50) DEFAULT NULL NULL,
  1303. status nchar(1) DEFAULT (N'0') NULL,
  1304. del_flag nchar(1) DEFAULT (N'0') NULL,
  1305. create_by nvarchar(64) DEFAULT (N'') NULL,
  1306. create_time datetime(6) DEFAULT NULL NULL,
  1307. update_by nvarchar(64) DEFAULT (N'') NULL,
  1308. update_time datetime(6) DEFAULT NULL NULL
  1309. )
  1310. ;
  1311. 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')
  1312. ;
  1313. 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)
  1314. ;
  1315. 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')
  1316. ;
  1317. 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)
  1318. ;
  1319. 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)
  1320. ;
  1321. CREATE TABLE sys_dict_data (
  1322. dict_code int NOT NULL,
  1323. dict_sort int DEFAULT ((0)) NULL,
  1324. dict_label nvarchar(100) DEFAULT (N'') NULL,
  1325. dict_value nvarchar(100) DEFAULT (N'') NULL,
  1326. dict_type nvarchar(100) DEFAULT (N'') NULL,
  1327. css_class nvarchar(100) DEFAULT NULL NULL,
  1328. list_class nvarchar(100) DEFAULT NULL NULL,
  1329. is_default nchar(1) DEFAULT (N'N') NULL,
  1330. status nchar(1) DEFAULT (N'0') NULL,
  1331. create_by nvarchar(64) DEFAULT (N'') NULL,
  1332. create_time datetime(6) DEFAULT NULL NULL,
  1333. update_by nvarchar(64) DEFAULT (N'') NULL,
  1334. update_time datetime(6) DEFAULT NULL NULL,
  1335. remark nvarchar(500) DEFAULT NULL NULL
  1336. )
  1337. ;
  1338. 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'性别男')
  1339. ;
  1340. 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'性别女')
  1341. ;
  1342. 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'性别未知')
  1343. ;
  1344. 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'显示菜单')
  1345. ;
  1346. 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'隐藏菜单')
  1347. ;
  1348. 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'正常状态')
  1349. ;
  1350. 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'停用状态')
  1351. ;
  1352. 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'正常状态')
  1353. ;
  1354. 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'停用状态')
  1355. ;
  1356. 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'默认分组')
  1357. ;
  1358. 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'系统分组')
  1359. ;
  1360. 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'系统默认是')
  1361. ;
  1362. 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'系统默认否')
  1363. ;
  1364. 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'通知')
  1365. ;
  1366. 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'公告')
  1367. ;
  1368. 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'正常状态')
  1369. ;
  1370. 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'关闭状态')
  1371. ;
  1372. 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'新增操作')
  1373. ;
  1374. 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'修改操作')
  1375. ;
  1376. 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'删除操作')
  1377. ;
  1378. 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'授权操作')
  1379. ;
  1380. 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'导出操作')
  1381. ;
  1382. 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'导入操作')
  1383. ;
  1384. 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'强退操作')
  1385. ;
  1386. 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'生成操作')
  1387. ;
  1388. 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'清空操作')
  1389. ;
  1390. 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'正常状态')
  1391. ;
  1392. 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'停用状态')
  1393. ;
  1394. 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)
  1395. ;
  1396. 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)
  1397. ;
  1398. 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'')
  1399. ;
  1400. 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)
  1401. ;
  1402. 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)
  1403. ;
  1404. 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)
  1405. ;
  1406. 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)
  1407. ;
  1408. 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)
  1409. ;
  1410. 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)
  1411. ;
  1412. 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)
  1413. ;
  1414. 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)
  1415. ;
  1416. 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)
  1417. ;
  1418. 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)
  1419. ;
  1420. 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'')
  1421. ;
  1422. 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'')
  1423. ;
  1424. 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)
  1425. ;
  1426. 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)
  1427. ;
  1428. 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)
  1429. ;
  1430. 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'')
  1431. ;
  1432. 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)
  1433. ;
  1434. 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'')
  1435. ;
  1436. 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)
  1437. ;
  1438. 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)
  1439. ;
  1440. 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'')
  1441. ;
  1442. 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)
  1443. ;
  1444. 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)
  1445. ;
  1446. 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'')
  1447. ;
  1448. 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)
  1449. ;
  1450. 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)
  1451. ;
  1452. 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)
  1453. ;
  1454. 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)
  1455. ;
  1456. 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'')
  1457. ;
  1458. 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)
  1459. ;
  1460. 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)
  1461. ;
  1462. 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)
  1463. ;
  1464. 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'')
  1465. ;
  1466. 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'')
  1467. ;
  1468. 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)
  1469. ;
  1470. 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)
  1471. ;
  1472. 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)
  1473. ;
  1474. 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'')
  1475. ;
  1476. 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'')
  1477. ;
  1478. 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'')
  1479. ;
  1480. 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'')
  1481. ;
  1482. 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'')
  1483. ;
  1484. CREATE TABLE sys_dict_type (
  1485. dict_id int NOT NULL,
  1486. dict_name nvarchar(100) DEFAULT (N'') NULL,
  1487. dict_type nvarchar(100) DEFAULT (N'') NULL,
  1488. status nchar(1) DEFAULT (N'0') NULL,
  1489. create_by nvarchar(64) DEFAULT (N'') NULL,
  1490. create_time datetime(6) DEFAULT NULL NULL,
  1491. update_by nvarchar(64) DEFAULT (N'') NULL,
  1492. update_time datetime(6) DEFAULT NULL NULL,
  1493. remark nvarchar(500) DEFAULT NULL NULL
  1494. )
  1495. ;
  1496. 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'用户性别列表')
  1497. ;
  1498. 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'菜单状态列表')
  1499. ;
  1500. 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'系统开关列表')
  1501. ;
  1502. 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'任务状态列表')
  1503. ;
  1504. 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'任务分组列表')
  1505. ;
  1506. 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'系统是否列表')
  1507. ;
  1508. 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'通知类型列表')
  1509. ;
  1510. 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'通知状态列表')
  1511. ;
  1512. 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'操作类型列表')
  1513. ;
  1514. 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'登录状态列表')
  1515. ;
  1516. 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'')
  1517. ;
  1518. 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'施封、解封等')
  1519. ;
  1520. 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'工作流状态')
  1521. ;
  1522. 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卡、人工、系统远程')
  1523. ;
  1524. 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'车辆作业类型')
  1525. ;
  1526. 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)
  1527. ;
  1528. 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)
  1529. ;
  1530. 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'地址字典')
  1531. ;
  1532. 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'报警类型')
  1533. ;
  1534. 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'报警级别')
  1535. ;
  1536. 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)
  1537. ;
  1538. 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)
  1539. ;
  1540. 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)
  1541. ;
  1542. 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'')
  1543. ;
  1544. 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)
  1545. ;
  1546. 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)
  1547. ;
  1548. 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)
  1549. ;
  1550. 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)
  1551. ;
  1552. 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)
  1553. ;
  1554. CREATE TABLE sys_job (
  1555. job_id int NOT NULL,
  1556. job_name nvarchar(64) DEFAULT (N'') NOT NULL,
  1557. job_group nvarchar(64) DEFAULT (N'') NOT NULL,
  1558. invoke_target nvarchar(500) DEFAULT (N'') NOT NULL,
  1559. cron_expression nvarchar(255) DEFAULT (N'') NULL,
  1560. misfire_policy nvarchar(20) DEFAULT (N'3') NULL,
  1561. status nchar(1) DEFAULT (N'0') NULL,
  1562. create_by nvarchar(64) DEFAULT (N'') NULL,
  1563. create_time datetime(6) DEFAULT NULL NULL,
  1564. update_by nvarchar(64) DEFAULT (N'') NULL,
  1565. update_time datetime(6) DEFAULT NULL NULL,
  1566. remark nvarchar(500) DEFAULT (N'') NULL,
  1567. concurrent nchar(1) NULL
  1568. )
  1569. ;
  1570. 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')
  1571. ;
  1572. 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')
  1573. ;
  1574. 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')
  1575. ;
  1576. CREATE TABLE sys_job_log (
  1577. job_log_id int NOT NULL,
  1578. job_name nvarchar(64) NOT NULL,
  1579. job_group nvarchar(64) NOT NULL,
  1580. invoke_target nvarchar(500) DEFAULT NULL NULL,
  1581. job_message nvarchar(500) DEFAULT NULL NULL,
  1582. status nchar(1) DEFAULT (N'0') NULL,
  1583. exception_info nvarchar(2000) DEFAULT (N'') NULL,
  1584. create_time datetime(6) DEFAULT NULL NULL
  1585. )
  1586. ;
  1587. CREATE TABLE sys_logininfor (
  1588. info_id int NOT NULL,
  1589. login_name nvarchar(50) DEFAULT (N'') NULL,
  1590. ipaddr nvarchar(50) DEFAULT (N'') NULL,
  1591. login_location nvarchar(255) DEFAULT (N'') NULL,
  1592. browser nvarchar(50) DEFAULT (N'') NULL,
  1593. os nvarchar(50) DEFAULT (N'') NULL,
  1594. status nchar(1) DEFAULT (N'0') NULL,
  1595. msg nvarchar(255) DEFAULT (N'') NULL,
  1596. login_time datetime(6) DEFAULT NULL NULL
  1597. )
  1598. ;
  1599. CREATE TABLE sys_menu (
  1600. menu_id int NOT NULL,
  1601. menu_name nvarchar(50) NOT NULL,
  1602. parent_id int DEFAULT ((0)) NULL,
  1603. order_num int DEFAULT ((0)) NULL,
  1604. url nvarchar(200) DEFAULT (N'#') NULL,
  1605. menu_type nchar(1) DEFAULT (N'') NULL,
  1606. visible nchar(1) DEFAULT (N'0') NULL,
  1607. perms nvarchar(100) DEFAULT NULL NULL,
  1608. icon nvarchar(100) DEFAULT (N'#') NULL,
  1609. create_by nvarchar(64) DEFAULT (N'') NULL,
  1610. create_time datetime(6) DEFAULT NULL NULL,
  1611. update_by nvarchar(64) DEFAULT (N'') NULL,
  1612. update_time datetime(6) DEFAULT NULL NULL,
  1613. remark nvarchar(500) DEFAULT (N'') NULL,
  1614. target nvarchar(20) DEFAULT '' NULL
  1615. )
  1616. ;
  1617. 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')
  1618. ;
  1619. 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')
  1620. ;
  1621. 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')
  1622. ;
  1623. 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'')
  1624. ;
  1625. 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'')
  1626. ;
  1627. 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'')
  1628. ;
  1629. 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'')
  1630. ;
  1631. 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')
  1632. ;
  1633. 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'')
  1634. ;
  1635. 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'')
  1636. ;
  1637. 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'')
  1638. ;
  1639. 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'')
  1640. ;
  1641. 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'')
  1642. ;
  1643. 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'')
  1644. ;
  1645. 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'')
  1646. ;
  1647. 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'')
  1648. ;
  1649. 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'')
  1650. ;
  1651. 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'')
  1652. ;
  1653. 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'')
  1654. ;
  1655. 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'')
  1656. ;
  1657. 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'')
  1658. ;
  1659. 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'')
  1660. ;
  1661. 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'')
  1662. ;
  1663. 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'')
  1664. ;
  1665. 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'')
  1666. ;
  1667. 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'')
  1668. ;
  1669. 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'')
  1670. ;
  1671. 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'')
  1672. ;
  1673. 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'')
  1674. ;
  1675. 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'')
  1676. ;
  1677. 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'')
  1678. ;
  1679. 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'')
  1680. ;
  1681. 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'')
  1682. ;
  1683. 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'')
  1684. ;
  1685. 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'')
  1686. ;
  1687. 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'')
  1688. ;
  1689. 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'')
  1690. ;
  1691. 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'')
  1692. ;
  1693. 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'')
  1694. ;
  1695. 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'')
  1696. ;
  1697. 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'')
  1698. ;
  1699. 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'')
  1700. ;
  1701. 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'')
  1702. ;
  1703. 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'')
  1704. ;
  1705. 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'')
  1706. ;
  1707. 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'')
  1708. ;
  1709. 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'')
  1710. ;
  1711. 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'')
  1712. ;
  1713. 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'')
  1714. ;
  1715. 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'')
  1716. ;
  1717. 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'')
  1718. ;
  1719. 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'')
  1720. ;
  1721. 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'')
  1722. ;
  1723. 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'')
  1724. ;
  1725. 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'')
  1726. ;
  1727. 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'')
  1728. ;
  1729. 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'')
  1730. ;
  1731. 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'')
  1732. ;
  1733. 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'')
  1734. ;
  1735. 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'')
  1736. ;
  1737. 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'')
  1738. ;
  1739. 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'')
  1740. ;
  1741. 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'')
  1742. ;
  1743. 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'')
  1744. ;
  1745. 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'')
  1746. ;
  1747. 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'')
  1748. ;
  1749. 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'')
  1750. ;
  1751. 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'')
  1752. ;
  1753. 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'')
  1754. ;
  1755. 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'')
  1756. ;
  1757. 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'')
  1758. ;
  1759. 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'')
  1760. ;
  1761. 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'')
  1762. ;
  1763. 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'')
  1764. ;
  1765. 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'')
  1766. ;
  1767. 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'')
  1768. ;
  1769. 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'')
  1770. ;
  1771. 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'')
  1772. ;
  1773. 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'')
  1774. ;
  1775. 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'')
  1776. ;
  1777. 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'')
  1778. ;
  1779. 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'')
  1780. ;
  1781. 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')
  1782. ;
  1783. 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')
  1784. ;
  1785. 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'')
  1786. ;
  1787. 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'')
  1788. ;
  1789. 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'')
  1790. ;
  1791. 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'')
  1792. ;
  1793. 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'')
  1794. ;
  1795. 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')
  1796. ;
  1797. 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'')
  1798. ;
  1799. 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'')
  1800. ;
  1801. 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'')
  1802. ;
  1803. 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'')
  1804. ;
  1805. 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'')
  1806. ;
  1807. 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')
  1808. ;
  1809. 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'')
  1810. ;
  1811. 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'')
  1812. ;
  1813. 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'')
  1814. ;
  1815. 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'')
  1816. ;
  1817. 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'')
  1818. ;
  1819. 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')
  1820. ;
  1821. 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'')
  1822. ;
  1823. 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'')
  1824. ;
  1825. 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'')
  1826. ;
  1827. 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'')
  1828. ;
  1829. 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'')
  1830. ;
  1831. 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')
  1832. ;
  1833. 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'')
  1834. ;
  1835. 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'')
  1836. ;
  1837. 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'')
  1838. ;
  1839. 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'')
  1840. ;
  1841. 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'')
  1842. ;
  1843. 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')
  1844. ;
  1845. 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'')
  1846. ;
  1847. 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'')
  1848. ;
  1849. 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'')
  1850. ;
  1851. 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'')
  1852. ;
  1853. 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'')
  1854. ;
  1855. 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')
  1856. ;
  1857. 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')
  1858. ;
  1859. 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'')
  1860. ;
  1861. 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')
  1862. ;
  1863. 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'')
  1864. ;
  1865. 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'')
  1866. ;
  1867. 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'')
  1868. ;
  1869. 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'')
  1870. ;
  1871. 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'')
  1872. ;
  1873. 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'')
  1874. ;
  1875. 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'')
  1876. ;
  1877. 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'')
  1878. ;
  1879. 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'')
  1880. ;
  1881. 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')
  1882. ;
  1883. 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'')
  1884. ;
  1885. 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'')
  1886. ;
  1887. 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'')
  1888. ;
  1889. 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'')
  1890. ;
  1891. 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'')
  1892. ;
  1893. 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')
  1894. ;
  1895. 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'')
  1896. ;
  1897. 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'')
  1898. ;
  1899. 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'')
  1900. ;
  1901. 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'')
  1902. ;
  1903. 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'')
  1904. ;
  1905. 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')
  1906. ;
  1907. 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'')
  1908. ;
  1909. 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'')
  1910. ;
  1911. 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'')
  1912. ;
  1913. 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'')
  1914. ;
  1915. 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'')
  1916. ;
  1917. 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')
  1918. ;
  1919. 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'')
  1920. ;
  1921. 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'')
  1922. ;
  1923. 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'')
  1924. ;
  1925. 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'')
  1926. ;
  1927. 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'')
  1928. ;
  1929. 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')
  1930. ;
  1931. 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'')
  1932. ;
  1933. 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'')
  1934. ;
  1935. 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'')
  1936. ;
  1937. 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'')
  1938. ;
  1939. 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'')
  1940. ;
  1941. 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')
  1942. ;
  1943. 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'')
  1944. ;
  1945. 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'')
  1946. ;
  1947. 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'')
  1948. ;
  1949. 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'')
  1950. ;
  1951. 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'')
  1952. ;
  1953. 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'')
  1954. ;
  1955. 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')
  1956. ;
  1957. 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'')
  1958. ;
  1959. 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'')
  1960. ;
  1961. 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'')
  1962. ;
  1963. 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'')
  1964. ;
  1965. 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'')
  1966. ;
  1967. 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'')
  1968. ;
  1969. 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'')
  1970. ;
  1971. 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'')
  1972. ;
  1973. 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')
  1974. ;
  1975. 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')
  1976. ;
  1977. 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'')
  1978. ;
  1979. 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'')
  1980. ;
  1981. 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'')
  1982. ;
  1983. CREATE TABLE sys_notice (
  1984. notice_id int NOT NULL,
  1985. notice_title nvarchar(50) NOT NULL,
  1986. notice_type nchar(1) NOT NULL,
  1987. notice_content nvarchar(2000) DEFAULT NULL NULL,
  1988. status nchar(1) DEFAULT (N'0') NULL,
  1989. create_by nvarchar(64) DEFAULT (N'') NULL,
  1990. create_time datetime(6) DEFAULT NULL NULL,
  1991. update_by nvarchar(64) DEFAULT (N'') NULL,
  1992. update_time datetime(6) DEFAULT NULL NULL,
  1993. remark nvarchar(255) DEFAULT NULL NULL
  1994. )
  1995. ;
  1996. 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'管理员')
  1997. ;
  1998. 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'管理员')
  1999. ;
  2000. CREATE TABLE sys_oper_log (
  2001. oper_id int NOT NULL,
  2002. title nvarchar(50) DEFAULT (N'') NULL,
  2003. business_type int DEFAULT ((0)) NULL,
  2004. method nvarchar(100) DEFAULT (N'') NULL,
  2005. operator_type int DEFAULT ((0)) NULL,
  2006. oper_name nvarchar(50) DEFAULT (N'') NULL,
  2007. dept_name nvarchar(50) DEFAULT (N'') NULL,
  2008. oper_url nvarchar(255) DEFAULT (N'') NULL,
  2009. oper_ip nvarchar(50) DEFAULT (N'') NULL,
  2010. oper_location nvarchar(255) DEFAULT (N'') NULL,
  2011. oper_param nvarchar(2000) DEFAULT (N'') NULL,
  2012. status int DEFAULT ((0)) NULL,
  2013. error_msg nvarchar(2000) DEFAULT (N'') NULL,
  2014. oper_time datetime(6) ,
  2015. request_method nvarchar(10) DEFAULT '' NULL,
  2016. json_result nvarchar(2000) DEFAULT '' NULL
  2017. )
  2018. ;
  2019. 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'{
  2020. "deviceId" : "000021526137" ,
  2021. "carNo" : "TEST001" ,
  2022. "carType" : "B2" ,
  2023. "origin" : "DXA" ,
  2024. "destination" : "DXA" ,
  2025. "overtTime" : "" ,
  2026. "stopCarTime" : "" ,
  2027. "efId" : "" ,
  2028. "remark" : "" ,
  2029. "status" : "20" ,
  2030. "endStatus" : "0" ,
  2031. "addressEfIds" : ""
  2032. }', N'0', NULL, N'2022-03-03 03:15:23.4200000', N'POST', N'{
  2033. "msg" : "操作成功",
  2034. "code" : 0
  2035. }')
  2036. ;
  2037. CREATE TABLE sys_post (
  2038. post_id int NOT NULL,
  2039. post_code nvarchar(64) NOT NULL,
  2040. post_name nvarchar(50) NOT NULL,
  2041. post_sort int NOT NULL,
  2042. status nchar(1) NOT NULL,
  2043. create_by nvarchar(64) DEFAULT (N'') NULL,
  2044. create_time datetime(6) DEFAULT NULL NULL,
  2045. update_by nvarchar(64) DEFAULT (N'') NULL,
  2046. update_time datetime(6) DEFAULT NULL NULL,
  2047. remark nvarchar(500) DEFAULT NULL NULL
  2048. )
  2049. ;
  2050. 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'')
  2051. ;
  2052. 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'')
  2053. ;
  2054. 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'')
  2055. ;
  2056. 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'')
  2057. ;
  2058. CREATE TABLE sys_role (
  2059. role_id int NOT NULL,
  2060. role_name nvarchar(30) NOT NULL,
  2061. role_key nvarchar(100) NOT NULL,
  2062. role_sort int NOT NULL,
  2063. data_scope nchar(1) DEFAULT (N'1') NULL,
  2064. status nchar(1) NOT NULL,
  2065. del_flag nchar(1) DEFAULT (N'0') NULL,
  2066. create_by nvarchar(64) DEFAULT (N'') NULL,
  2067. create_time datetime(6) DEFAULT NULL NULL,
  2068. update_by nvarchar(64) DEFAULT (N'') NULL,
  2069. update_time datetime(6) DEFAULT NULL NULL,
  2070. remark nvarchar(500) DEFAULT NULL NULL
  2071. )
  2072. ;
  2073. 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'管理员')
  2074. ;
  2075. 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'负责车辆绑定、施封、关锁管理,组织机构属于广西北投建设投资有限公司')
  2076. ;
  2077. 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'')
  2078. ;
  2079. 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')
  2080. ;
  2081. 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')
  2082. ;
  2083. 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')
  2084. ;
  2085. 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'负责监管在途监控,组织机构属于东兴海关')
  2086. ;
  2087. 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'')
  2088. ;
  2089. 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'负责解封、关锁管理,组织机构属于广西北投建设投资有限公司')
  2090. ;
  2091. CREATE TABLE sys_role_dept (
  2092. role_id int NOT NULL,
  2093. dept_id int NOT NULL
  2094. )
  2095. ;
  2096. CREATE TABLE sys_role_menu (
  2097. role_id int NOT NULL,
  2098. menu_id int NOT NULL
  2099. )
  2100. ;
  2101. INSERT INTO sys_role_menu VALUES (N'108', N'3112')
  2102. ;
  2103. INSERT INTO sys_role_menu VALUES (N'108', N'3062')
  2104. ;
  2105. INSERT INTO sys_role_menu VALUES (N'108', N'3074')
  2106. ;
  2107. INSERT INTO sys_role_menu VALUES (N'108', N'3075')
  2108. ;
  2109. INSERT INTO sys_role_menu VALUES (N'108', N'3076')
  2110. ;
  2111. INSERT INTO sys_role_menu VALUES (N'108', N'3077')
  2112. ;
  2113. INSERT INTO sys_role_menu VALUES (N'108', N'3078')
  2114. ;
  2115. INSERT INTO sys_role_menu VALUES (N'108', N'2054')
  2116. ;
  2117. INSERT INTO sys_role_menu VALUES (N'108', N'2055')
  2118. ;
  2119. INSERT INTO sys_role_menu VALUES (N'108', N'2056')
  2120. ;
  2121. INSERT INTO sys_role_menu VALUES (N'108', N'2057')
  2122. ;
  2123. INSERT INTO sys_role_menu VALUES (N'108', N'2058')
  2124. ;
  2125. INSERT INTO sys_role_menu VALUES (N'108', N'2059')
  2126. ;
  2127. INSERT INTO sys_role_menu VALUES (N'108', N'2045')
  2128. ;
  2129. INSERT INTO sys_role_menu VALUES (N'108', N'3113')
  2130. ;
  2131. INSERT INTO sys_role_menu VALUES (N'108', N'3114')
  2132. ;
  2133. INSERT INTO sys_role_menu VALUES (N'108', N'3115')
  2134. ;
  2135. INSERT INTO sys_role_menu VALUES (N'108', N'3116')
  2136. ;
  2137. INSERT INTO sys_role_menu VALUES (N'108', N'3117')
  2138. ;
  2139. INSERT INTO sys_role_menu VALUES (N'108', N'3118')
  2140. ;
  2141. INSERT INTO sys_role_menu VALUES (N'108', N'2066')
  2142. ;
  2143. INSERT INTO sys_role_menu VALUES (N'108', N'2067')
  2144. ;
  2145. INSERT INTO sys_role_menu VALUES (N'108', N'2068')
  2146. ;
  2147. INSERT INTO sys_role_menu VALUES (N'108', N'2069')
  2148. ;
  2149. INSERT INTO sys_role_menu VALUES (N'108', N'2070')
  2150. ;
  2151. INSERT INTO sys_role_menu VALUES (N'108', N'2071')
  2152. ;
  2153. INSERT INTO sys_role_menu VALUES (N'108', N'2060')
  2154. ;
  2155. INSERT INTO sys_role_menu VALUES (N'108', N'2061')
  2156. ;
  2157. INSERT INTO sys_role_menu VALUES (N'108', N'2062')
  2158. ;
  2159. INSERT INTO sys_role_menu VALUES (N'108', N'2063')
  2160. ;
  2161. INSERT INTO sys_role_menu VALUES (N'108', N'2064')
  2162. ;
  2163. INSERT INTO sys_role_menu VALUES (N'108', N'2065')
  2164. ;
  2165. INSERT INTO sys_role_menu VALUES (N'108', N'3079')
  2166. ;
  2167. INSERT INTO sys_role_menu VALUES (N'108', N'3080')
  2168. ;
  2169. INSERT INTO sys_role_menu VALUES (N'108', N'3081')
  2170. ;
  2171. INSERT INTO sys_role_menu VALUES (N'108', N'3082')
  2172. ;
  2173. INSERT INTO sys_role_menu VALUES (N'108', N'3083')
  2174. ;
  2175. INSERT INTO sys_role_menu VALUES (N'108', N'3084')
  2176. ;
  2177. INSERT INTO sys_role_menu VALUES (N'108', N'3085')
  2178. ;
  2179. INSERT INTO sys_role_menu VALUES (N'108', N'2078')
  2180. ;
  2181. INSERT INTO sys_role_menu VALUES (N'108', N'2079')
  2182. ;
  2183. INSERT INTO sys_role_menu VALUES (N'108', N'2080')
  2184. ;
  2185. INSERT INTO sys_role_menu VALUES (N'108', N'2081')
  2186. ;
  2187. INSERT INTO sys_role_menu VALUES (N'108', N'2082')
  2188. ;
  2189. INSERT INTO sys_role_menu VALUES (N'108', N'2083')
  2190. ;
  2191. INSERT INTO sys_role_menu VALUES (N'108', N'2072')
  2192. ;
  2193. INSERT INTO sys_role_menu VALUES (N'108', N'2073')
  2194. ;
  2195. INSERT INTO sys_role_menu VALUES (N'108', N'2074')
  2196. ;
  2197. INSERT INTO sys_role_menu VALUES (N'108', N'2075')
  2198. ;
  2199. INSERT INTO sys_role_menu VALUES (N'108', N'2076')
  2200. ;
  2201. INSERT INTO sys_role_menu VALUES (N'108', N'2077')
  2202. ;
  2203. INSERT INTO sys_role_menu VALUES (N'108', N'2084')
  2204. ;
  2205. INSERT INTO sys_role_menu VALUES (N'108', N'2085')
  2206. ;
  2207. INSERT INTO sys_role_menu VALUES (N'108', N'2086')
  2208. ;
  2209. INSERT INTO sys_role_menu VALUES (N'108', N'2087')
  2210. ;
  2211. INSERT INTO sys_role_menu VALUES (N'108', N'2088')
  2212. ;
  2213. INSERT INTO sys_role_menu VALUES (N'108', N'2089')
  2214. ;
  2215. INSERT INTO sys_role_menu VALUES (N'108', N'3120')
  2216. ;
  2217. INSERT INTO sys_role_menu VALUES (N'109', N'3112')
  2218. ;
  2219. INSERT INTO sys_role_menu VALUES (N'109', N'2054')
  2220. ;
  2221. INSERT INTO sys_role_menu VALUES (N'109', N'2055')
  2222. ;
  2223. INSERT INTO sys_role_menu VALUES (N'2', N'3112')
  2224. ;
  2225. INSERT INTO sys_role_menu VALUES (N'2', N'3062')
  2226. ;
  2227. INSERT INTO sys_role_menu VALUES (N'2', N'3074')
  2228. ;
  2229. INSERT INTO sys_role_menu VALUES (N'2', N'2054')
  2230. ;
  2231. INSERT INTO sys_role_menu VALUES (N'2', N'2055')
  2232. ;
  2233. INSERT INTO sys_role_menu VALUES (N'2', N'2045')
  2234. ;
  2235. INSERT INTO sys_role_menu VALUES (N'2', N'2066')
  2236. ;
  2237. INSERT INTO sys_role_menu VALUES (N'2', N'2067')
  2238. ;
  2239. INSERT INTO sys_role_menu VALUES (N'2', N'2068')
  2240. ;
  2241. INSERT INTO sys_role_menu VALUES (N'2', N'2069')
  2242. ;
  2243. INSERT INTO sys_role_menu VALUES (N'2', N'2070')
  2244. ;
  2245. INSERT INTO sys_role_menu VALUES (N'107', N'3112')
  2246. ;
  2247. INSERT INTO sys_role_menu VALUES (N'107', N'3062')
  2248. ;
  2249. INSERT INTO sys_role_menu VALUES (N'107', N'3074')
  2250. ;
  2251. INSERT INTO sys_role_menu VALUES (N'107', N'3075')
  2252. ;
  2253. INSERT INTO sys_role_menu VALUES (N'107', N'3076')
  2254. ;
  2255. INSERT INTO sys_role_menu VALUES (N'107', N'3077')
  2256. ;
  2257. INSERT INTO sys_role_menu VALUES (N'107', N'3078')
  2258. ;
  2259. INSERT INTO sys_role_menu VALUES (N'107', N'2054')
  2260. ;
  2261. INSERT INTO sys_role_menu VALUES (N'107', N'2055')
  2262. ;
  2263. INSERT INTO sys_role_menu VALUES (N'107', N'2056')
  2264. ;
  2265. INSERT INTO sys_role_menu VALUES (N'107', N'2057')
  2266. ;
  2267. INSERT INTO sys_role_menu VALUES (N'107', N'2058')
  2268. ;
  2269. INSERT INTO sys_role_menu VALUES (N'107', N'2059')
  2270. ;
  2271. INSERT INTO sys_role_menu VALUES (N'107', N'2045')
  2272. ;
  2273. INSERT INTO sys_role_menu VALUES (N'107', N'3113')
  2274. ;
  2275. INSERT INTO sys_role_menu VALUES (N'107', N'3114')
  2276. ;
  2277. INSERT INTO sys_role_menu VALUES (N'107', N'3115')
  2278. ;
  2279. INSERT INTO sys_role_menu VALUES (N'107', N'3116')
  2280. ;
  2281. INSERT INTO sys_role_menu VALUES (N'107', N'3117')
  2282. ;
  2283. INSERT INTO sys_role_menu VALUES (N'107', N'3118')
  2284. ;
  2285. INSERT INTO sys_role_menu VALUES (N'107', N'2066')
  2286. ;
  2287. INSERT INTO sys_role_menu VALUES (N'107', N'2067')
  2288. ;
  2289. INSERT INTO sys_role_menu VALUES (N'107', N'2068')
  2290. ;
  2291. INSERT INTO sys_role_menu VALUES (N'107', N'2069')
  2292. ;
  2293. INSERT INTO sys_role_menu VALUES (N'107', N'2070')
  2294. ;
  2295. INSERT INTO sys_role_menu VALUES (N'107', N'2071')
  2296. ;
  2297. INSERT INTO sys_role_menu VALUES (N'107', N'2060')
  2298. ;
  2299. INSERT INTO sys_role_menu VALUES (N'107', N'2061')
  2300. ;
  2301. INSERT INTO sys_role_menu VALUES (N'107', N'2062')
  2302. ;
  2303. INSERT INTO sys_role_menu VALUES (N'107', N'2063')
  2304. ;
  2305. INSERT INTO sys_role_menu VALUES (N'107', N'2064')
  2306. ;
  2307. INSERT INTO sys_role_menu VALUES (N'107', N'2065')
  2308. ;
  2309. INSERT INTO sys_role_menu VALUES (N'107', N'3079')
  2310. ;
  2311. INSERT INTO sys_role_menu VALUES (N'107', N'3080')
  2312. ;
  2313. INSERT INTO sys_role_menu VALUES (N'107', N'3081')
  2314. ;
  2315. INSERT INTO sys_role_menu VALUES (N'107', N'3082')
  2316. ;
  2317. INSERT INTO sys_role_menu VALUES (N'107', N'3083')
  2318. ;
  2319. INSERT INTO sys_role_menu VALUES (N'107', N'3084')
  2320. ;
  2321. INSERT INTO sys_role_menu VALUES (N'107', N'3085')
  2322. ;
  2323. INSERT INTO sys_role_menu VALUES (N'107', N'2078')
  2324. ;
  2325. INSERT INTO sys_role_menu VALUES (N'107', N'2079')
  2326. ;
  2327. INSERT INTO sys_role_menu VALUES (N'107', N'2080')
  2328. ;
  2329. INSERT INTO sys_role_menu VALUES (N'107', N'2081')
  2330. ;
  2331. INSERT INTO sys_role_menu VALUES (N'107', N'2082')
  2332. ;
  2333. INSERT INTO sys_role_menu VALUES (N'107', N'2083')
  2334. ;
  2335. INSERT INTO sys_role_menu VALUES (N'107', N'2072')
  2336. ;
  2337. INSERT INTO sys_role_menu VALUES (N'107', N'2073')
  2338. ;
  2339. INSERT INTO sys_role_menu VALUES (N'107', N'2074')
  2340. ;
  2341. INSERT INTO sys_role_menu VALUES (N'107', N'2075')
  2342. ;
  2343. INSERT INTO sys_role_menu VALUES (N'107', N'2076')
  2344. ;
  2345. INSERT INTO sys_role_menu VALUES (N'107', N'2077')
  2346. ;
  2347. INSERT INTO sys_role_menu VALUES (N'107', N'2084')
  2348. ;
  2349. INSERT INTO sys_role_menu VALUES (N'107', N'2085')
  2350. ;
  2351. INSERT INTO sys_role_menu VALUES (N'107', N'2086')
  2352. ;
  2353. INSERT INTO sys_role_menu VALUES (N'107', N'2087')
  2354. ;
  2355. INSERT INTO sys_role_menu VALUES (N'107', N'2088')
  2356. ;
  2357. INSERT INTO sys_role_menu VALUES (N'107', N'2089')
  2358. ;
  2359. INSERT INTO sys_role_menu VALUES (N'107', N'3120')
  2360. ;
  2361. CREATE TABLE sys_user (
  2362. user_id int NOT NULL,
  2363. dept_id int DEFAULT NULL NULL,
  2364. login_name nvarchar(30) NOT NULL,
  2365. user_name nvarchar(30) NOT NULL,
  2366. user_type nvarchar(2) DEFAULT (N'00') NULL,
  2367. email nvarchar(50) DEFAULT (N'') NULL,
  2368. phonenumber nvarchar(11) DEFAULT (N'') NULL,
  2369. sex nchar(1) DEFAULT (N'0') NULL,
  2370. avatar nvarchar(100) DEFAULT (N'') NULL,
  2371. password nvarchar(50) DEFAULT (N'') NULL,
  2372. salt nvarchar(20) DEFAULT (N'') NULL,
  2373. status nchar(1) DEFAULT (N'0') NULL,
  2374. del_flag nchar(1) DEFAULT (N'0') NULL,
  2375. login_ip nvarchar(50) DEFAULT (N'') NULL,
  2376. login_date datetime(6) DEFAULT NULL NULL,
  2377. create_by nvarchar(64) DEFAULT (N'') NULL,
  2378. create_time datetime(6) DEFAULT NULL NULL,
  2379. update_by nvarchar(64) DEFAULT (N'') NULL,
  2380. update_time datetime(6) DEFAULT NULL NULL,
  2381. remark nvarchar(500) DEFAULT (N'') NULL
  2382. )
  2383. ;
  2384. 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'管理员')
  2385. ;
  2386. 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'')
  2387. ;
  2388. 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'')
  2389. ;
  2390. 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'')
  2391. ;
  2392. 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'')
  2393. ;
  2394. 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'')
  2395. ;
  2396. 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'')
  2397. ;
  2398. 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'')
  2399. ;
  2400. 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'')
  2401. ;
  2402. 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'')
  2403. ;
  2404. CREATE TABLE sys_user_online (
  2405. sessionId nvarchar(50) DEFAULT (N'') NOT NULL,
  2406. login_name nvarchar(50) DEFAULT (N'') NULL,
  2407. dept_name nvarchar(50) DEFAULT (N'') NULL,
  2408. ipaddr nvarchar(50) DEFAULT (N'') NULL,
  2409. login_location nvarchar(255) DEFAULT (N'') NULL,
  2410. browser nvarchar(50) DEFAULT (N'') NULL,
  2411. os nvarchar(50) DEFAULT (N'') NULL,
  2412. status nvarchar(10) DEFAULT (N'') NULL,
  2413. start_timestamp datetime(6) DEFAULT NULL NULL,
  2414. last_access_time datetime(6) DEFAULT NULL NULL,
  2415. expire_time int DEFAULT ((0)) NULL
  2416. )
  2417. ;
  2418. 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')
  2419. ;
  2420. CREATE TABLE sys_user_post (
  2421. user_id int NOT NULL,
  2422. post_id int NOT NULL
  2423. )
  2424. ;
  2425. INSERT INTO sys_user_post VALUES (N'1', N'1')
  2426. ;
  2427. INSERT INTO sys_user_post VALUES (N'2', N'2')
  2428. ;
  2429. INSERT INTO sys_user_post VALUES (N'104', N'1')
  2430. ;
  2431. INSERT INTO sys_user_post VALUES (N'105', N'1')
  2432. ;
  2433. INSERT INTO sys_user_post VALUES (N'106', N'1')
  2434. ;
  2435. INSERT INTO sys_user_post VALUES (N'106', N'3')
  2436. ;
  2437. INSERT INTO sys_user_post VALUES (N'106', N'4')
  2438. ;
  2439. INSERT INTO sys_user_post VALUES (N'102', N'1')
  2440. ;
  2441. INSERT INTO sys_user_post VALUES (N'105', N'2')
  2442. ;
  2443. INSERT INTO sys_user_post VALUES (N'110', N'1')
  2444. ;
  2445. CREATE TABLE sys_user_role (
  2446. user_id int NOT NULL,
  2447. role_id int NOT NULL
  2448. )
  2449. ;
  2450. INSERT INTO sys_user_role VALUES (N'2', N'2')
  2451. ;
  2452. INSERT INTO sys_user_role VALUES (N'104', N'1')
  2453. ;
  2454. INSERT INTO sys_user_role VALUES (N'106', N'108')
  2455. ;
  2456. INSERT INTO sys_user_role VALUES (N'107', N'2')
  2457. ;
  2458. INSERT INTO sys_user_role VALUES (N'101', N'107')
  2459. ;
  2460. INSERT INTO sys_user_role VALUES (N'102', N'2')
  2461. ;
  2462. INSERT INTO sys_user_role VALUES (N'103', N'107')
  2463. ;
  2464. INSERT INTO sys_user_role VALUES (N'104', N'2')
  2465. ;
  2466. INSERT INTO sys_user_role VALUES (N'105', N'2')
  2467. ;
  2468. INSERT INTO sys_user_role VALUES (N'111', N'2')
  2469. ;
  2470. INSERT INTO sys_user_role VALUES (N'110', N'2')
  2471. ;
  2472. INSERT INTO sys_user_role VALUES (N'108', N'109')
  2473. ;
  2474. INSERT INTO sys_user_role VALUES (N'111', N'109')
  2475. ;
  2476. INSERT INTO sys_user_role VALUES (N'109', N'2')
  2477. ;