ruian.sql 223 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957
  1. --
  2. -- Kingbase database dump
  3. --
  4. -- Dumped from database version 12.1
  5. -- Dumped by sys_dump version 12.1
  6. -- Started on 2024-10-23 14:41:15
  7. SET statement_timeout = 0;
  8. SET lock_timeout = 0;
  9. SET idle_in_transaction_session_timeout = 0;
  10. SET client_encoding = 'GBK';
  11. SET standard_conforming_strings = on;
  12. SELECT pg_catalog.set_config('search_path', 'public', false);
  13. SET check_function_bodies = false;
  14. SET xmloption = content;
  15. SET client_min_messages = warning;
  16. SET row_security = off;
  17. SET default_with_oids = off;
  18. SET default_with_rowid = off;
  19. --
  20. -- TOC entry 44 (class 2615 OID 16390)
  21. -- Name: ruian_oa; Type: SCHEMA; Schema: -; Owner: system
  22. --
  23. CREATE SCHEMA ruian_oa;
  24. ALTER SCHEMA ruian_oa OWNER TO system;
  25. SET default_tablespace = '';
  26. SET default_table_access_method = heap;
  27. --
  28. -- TOC entry 697 (class 1259 OID 16391)
  29. -- Name: infra_api_access_log; Type: TABLE; Schema: ruian_oa; Owner: system
  30. --
  31. SET escape = off;
  32. CREATE TABLE ruian_oa.infra_api_access_log (
  33. id numeric(20,0) NOT NULL,
  34. trace_id character varying(64 char),
  35. user_id character varying(36 char) DEFAULT 0,
  36. user_type numeric(4,0) DEFAULT 0,
  37. application_name character varying(50 char),
  38. request_method character varying(16 char),
  39. request_url character varying(255 char),
  40. request_params nclob,
  41. user_ip character varying(50 char),
  42. user_agent character varying(512 char),
  43. begin_time date,
  44. end_time date,
  45. duration numeric(11,0),
  46. result_code numeric(11,0),
  47. result_msg character varying(512 char),
  48. creator character varying(64 char),
  49. create_time date,
  50. updater character varying(64 char),
  51. update_time date,
  52. tenant_id numeric(20,0),
  53. deleted numeric(1,0) DEFAULT 0
  54. );
  55. ALTER TABLE ruian_oa.infra_api_access_log OWNER TO system;
  56. --
  57. -- TOC entry 748 (class 1259 OID 16760)
  58. -- Name: infra_api_access_log_seq; Type: SEQUENCE; Schema: ruian_oa; Owner: system
  59. --
  60. CREATE SEQUENCE ruian_oa.infra_api_access_log_seq
  61. START WITH 0
  62. INCREMENT BY 1
  63. MINVALUE 0
  64. MAXVALUE 99999
  65. CACHE 20;
  66. ALTER TABLE ruian_oa.infra_api_access_log_seq OWNER TO system;
  67. --
  68. -- TOC entry 698 (class 1259 OID 16400)
  69. -- Name: infra_api_error_log; Type: TABLE; Schema: ruian_oa; Owner: system
  70. --
  71. SET escape = off;
  72. CREATE TABLE ruian_oa.infra_api_error_log (
  73. id numeric(11,0) NOT NULL,
  74. trace_id character varying(64 char),
  75. user_id character varying(36 char),
  76. user_type numeric(4,0),
  77. application_name character varying(50 char),
  78. request_method character varying(16 char),
  79. request_url character varying(255 char),
  80. request_params nclob,
  81. user_ip character varying(50 char),
  82. user_agent character varying(512 char),
  83. exception_time date,
  84. exception_name character varying(128 char),
  85. exception_message nclob,
  86. exception_root_cause_message nclob,
  87. exception_stack_trace nclob,
  88. exception_class_name character varying(512 char),
  89. exception_file_name character varying(512 char),
  90. exception_method_name character varying(512 char),
  91. exception_line_number numeric(11,0),
  92. process_status numeric(4,0),
  93. process_time date,
  94. process_user_id numeric(11,0),
  95. creator character varying(64 char),
  96. create_time date,
  97. updater character varying(64 char),
  98. update_time date,
  99. tenant_id numeric(20,0),
  100. deleted numeric(1,0) DEFAULT 0
  101. );
  102. ALTER TABLE ruian_oa.infra_api_error_log OWNER TO system;
  103. --
  104. -- TOC entry 749 (class 1259 OID 16762)
  105. -- Name: infra_api_error_log_seq; Type: SEQUENCE; Schema: ruian_oa; Owner: system
  106. --
  107. CREATE SEQUENCE ruian_oa.infra_api_error_log_seq
  108. START WITH 0
  109. INCREMENT BY 1
  110. MINVALUE 0
  111. MAXVALUE 99999
  112. CACHE 20;
  113. ALTER TABLE ruian_oa.infra_api_error_log_seq OWNER TO system;
  114. --
  115. -- TOC entry 699 (class 1259 OID 16407)
  116. -- Name: infra_codegen_column; Type: TABLE; Schema: ruian_oa; Owner: system
  117. --
  118. SET escape = off;
  119. CREATE TABLE ruian_oa.infra_codegen_column (
  120. id numeric(20,0) NOT NULL,
  121. table_id numeric(20,0),
  122. column_name character varying(200 char),
  123. data_type character varying(100 char),
  124. column_comment character varying(500 char),
  125. nullable numeric(4,0),
  126. primary_key numeric(4,0),
  127. "auto_increment" numeric(4,0),
  128. ordinal_position numeric(11,0),
  129. java_type character varying(32 char),
  130. java_field character varying(64 char),
  131. dict_type character varying(200 char),
  132. example character varying(64 char),
  133. create_operation numeric(4,0),
  134. update_operation numeric(4,0),
  135. list_operation numeric(4,0),
  136. list_operation_condition character varying(32 char),
  137. list_operation_result numeric(4,0),
  138. html_type character varying(32 char),
  139. creator character varying(64 char),
  140. create_time date,
  141. updater character varying(64 char),
  142. update_time date,
  143. deleted numeric(4,0) DEFAULT 0
  144. );
  145. ALTER TABLE ruian_oa.infra_codegen_column OWNER TO system;
  146. --
  147. -- TOC entry 750 (class 1259 OID 16764)
  148. -- Name: infra_codegen_column_seq; Type: SEQUENCE; Schema: ruian_oa; Owner: system
  149. --
  150. CREATE SEQUENCE ruian_oa.infra_codegen_column_seq
  151. START WITH 0
  152. INCREMENT BY 1
  153. MINVALUE 0
  154. MAXVALUE 99999
  155. CACHE 20;
  156. ALTER TABLE ruian_oa.infra_codegen_column_seq OWNER TO system;
  157. --
  158. -- TOC entry 700 (class 1259 OID 16414)
  159. -- Name: infra_codegen_table; Type: TABLE; Schema: ruian_oa; Owner: system
  160. --
  161. SET escape = off;
  162. CREATE TABLE ruian_oa.infra_codegen_table (
  163. id numeric(20,0) NOT NULL,
  164. data_source_config_id numeric,
  165. scene numeric(4,0),
  166. table_name character varying(200 char),
  167. table_comment character varying(500 char),
  168. remark character varying(500 char),
  169. module_name character varying(30 char),
  170. business_name character varying(30 char),
  171. class_name character varying(100 char),
  172. class_comment character varying(50 char),
  173. author character varying(50 char),
  174. template_type numeric(4,0),
  175. parent_menu_id numeric(20,0),
  176. creator character varying(64 char),
  177. create_time date,
  178. updater character varying(64 char),
  179. update_time date,
  180. deleted numeric(4,0) DEFAULT 0,
  181. front_type numeric(4,0)
  182. );
  183. ALTER TABLE ruian_oa.infra_codegen_table OWNER TO system;
  184. --
  185. -- TOC entry 751 (class 1259 OID 16766)
  186. -- Name: infra_codegen_table_seq; Type: SEQUENCE; Schema: ruian_oa; Owner: system
  187. --
  188. CREATE SEQUENCE ruian_oa.infra_codegen_table_seq
  189. START WITH 0
  190. INCREMENT BY 1
  191. MINVALUE 0
  192. MAXVALUE 99999
  193. CACHE 20;
  194. ALTER TABLE ruian_oa.infra_codegen_table_seq OWNER TO system;
  195. --
  196. -- TOC entry 701 (class 1259 OID 16421)
  197. -- Name: infra_config; Type: TABLE; Schema: ruian_oa; Owner: system
  198. --
  199. SET escape = off;
  200. CREATE TABLE ruian_oa.infra_config (
  201. id numeric(11,0) NOT NULL,
  202. category character varying(50 char),
  203. type numeric(4,0),
  204. name character varying(100 char),
  205. config_key character varying(100 char),
  206. value character varying(500 char),
  207. visible numeric(4,0),
  208. remark character varying(500 char),
  209. creator character varying(64 char),
  210. create_time date,
  211. updater character varying(64 char),
  212. update_time date,
  213. deleted numeric(1,0) DEFAULT 0
  214. );
  215. ALTER TABLE ruian_oa.infra_config OWNER TO system;
  216. --
  217. -- TOC entry 752 (class 1259 OID 16768)
  218. -- Name: infra_config_seq; Type: SEQUENCE; Schema: ruian_oa; Owner: system
  219. --
  220. CREATE SEQUENCE ruian_oa.infra_config_seq
  221. START WITH 0
  222. INCREMENT BY 1
  223. MINVALUE 0
  224. MAXVALUE 99999
  225. CACHE 20;
  226. ALTER TABLE ruian_oa.infra_config_seq OWNER TO system;
  227. --
  228. -- TOC entry 702 (class 1259 OID 16428)
  229. -- Name: infra_data_source_config; Type: TABLE; Schema: ruian_oa; Owner: system
  230. --
  231. SET escape = off;
  232. CREATE TABLE ruian_oa.infra_data_source_config (
  233. id numeric NOT NULL,
  234. name character varying(100 char),
  235. url nclob,
  236. username character varying(255 char),
  237. password character varying(255 char),
  238. creator character varying(64 char),
  239. create_time date,
  240. updater character varying(64 char),
  241. update_time date,
  242. deleted numeric DEFAULT 0
  243. );
  244. ALTER TABLE ruian_oa.infra_data_source_config OWNER TO system;
  245. --
  246. -- TOC entry 753 (class 1259 OID 16770)
  247. -- Name: infra_data_source_config_seq; Type: SEQUENCE; Schema: ruian_oa; Owner: system
  248. --
  249. CREATE SEQUENCE ruian_oa.infra_data_source_config_seq
  250. START WITH 0
  251. INCREMENT BY 1
  252. MINVALUE 0
  253. MAXVALUE 99999
  254. CACHE 20;
  255. ALTER TABLE ruian_oa.infra_data_source_config_seq OWNER TO system;
  256. --
  257. -- TOC entry 703 (class 1259 OID 16435)
  258. -- Name: infra_file; Type: TABLE; Schema: ruian_oa; Owner: system
  259. --
  260. SET escape = off;
  261. CREATE TABLE ruian_oa.infra_file (
  262. id numeric(20,0) NOT NULL,
  263. config_id numeric(20,0),
  264. path character varying(512 char),
  265. url nclob,
  266. type character varying(128 char),
  267. size numeric(11,0),
  268. creator character varying(64 char),
  269. create_time date,
  270. updater character varying(64 char),
  271. update_time date,
  272. deleted numeric(1,0) DEFAULT 0,
  273. name character varying(512 char),
  274. project_id character varying(60 char)
  275. );
  276. ALTER TABLE ruian_oa.infra_file OWNER TO system;
  277. --
  278. -- TOC entry 704 (class 1259 OID 16442)
  279. -- Name: infra_file_config; Type: TABLE; Schema: ruian_oa; Owner: system
  280. --
  281. SET escape = off;
  282. CREATE TABLE ruian_oa.infra_file_config (
  283. id numeric(20,0) NOT NULL,
  284. name character varying(63 char),
  285. storage numeric(4,0),
  286. remark character varying(255 char),
  287. master numeric(4,0),
  288. config nclob,
  289. creator character varying(64 char),
  290. create_time date,
  291. updater character varying(64 char),
  292. update_time date,
  293. deleted numeric(4,0) DEFAULT 0
  294. );
  295. ALTER TABLE ruian_oa.infra_file_config OWNER TO system;
  296. --
  297. -- TOC entry 754 (class 1259 OID 16772)
  298. -- Name: infra_file_config_seq; Type: SEQUENCE; Schema: ruian_oa; Owner: system
  299. --
  300. CREATE SEQUENCE ruian_oa.infra_file_config_seq
  301. START WITH 0
  302. INCREMENT BY 1
  303. MINVALUE 0
  304. MAXVALUE 99999
  305. CACHE 20;
  306. ALTER TABLE ruian_oa.infra_file_config_seq OWNER TO system;
  307. --
  308. -- TOC entry 705 (class 1259 OID 16449)
  309. -- Name: infra_file_content; Type: TABLE; Schema: ruian_oa; Owner: system
  310. --
  311. SET escape = off;
  312. CREATE TABLE ruian_oa.infra_file_content (
  313. id numeric(20,0) NOT NULL,
  314. config_id numeric(20,0),
  315. path character varying(512 char),
  316. content blob,
  317. creator character varying(64 char),
  318. create_time date,
  319. updater character varying(64 char),
  320. update_time date,
  321. deleted numeric(4,0) DEFAULT 0
  322. );
  323. ALTER TABLE ruian_oa.infra_file_content OWNER TO system;
  324. --
  325. -- TOC entry 755 (class 1259 OID 16774)
  326. -- Name: infra_file_content_seq; Type: SEQUENCE; Schema: ruian_oa; Owner: system
  327. --
  328. CREATE SEQUENCE ruian_oa.infra_file_content_seq
  329. START WITH 0
  330. INCREMENT BY 1
  331. MINVALUE 0
  332. MAXVALUE 99999
  333. CACHE 20;
  334. ALTER TABLE ruian_oa.infra_file_content_seq OWNER TO system;
  335. --
  336. -- TOC entry 756 (class 1259 OID 16776)
  337. -- Name: infra_file_seq; Type: SEQUENCE; Schema: ruian_oa; Owner: system
  338. --
  339. CREATE SEQUENCE ruian_oa.infra_file_seq
  340. START WITH 0
  341. INCREMENT BY 1
  342. MINVALUE 0
  343. MAXVALUE 99999
  344. CACHE 20;
  345. ALTER TABLE ruian_oa.infra_file_seq OWNER TO system;
  346. --
  347. -- TOC entry 706 (class 1259 OID 16456)
  348. -- Name: infra_job; Type: TABLE; Schema: ruian_oa; Owner: system
  349. --
  350. SET escape = off;
  351. CREATE TABLE ruian_oa.infra_job (
  352. id numeric(20,0) NOT NULL,
  353. name character varying(32 char),
  354. status numeric(4,0),
  355. handler_name character varying(64 char),
  356. handler_param character varying(255 char),
  357. cron_expression character varying(32 char),
  358. retry_count numeric(11,0),
  359. retry_interval numeric(11,0),
  360. monitor_timeout numeric(11,0),
  361. creator character varying(64 char),
  362. create_time date,
  363. updater character varying(64 char),
  364. update_time date,
  365. deleted numeric(1,0) DEFAULT 0
  366. );
  367. ALTER TABLE ruian_oa.infra_job OWNER TO system;
  368. --
  369. -- TOC entry 707 (class 1259 OID 16463)
  370. -- Name: infra_job_log; Type: TABLE; Schema: ruian_oa; Owner: system
  371. --
  372. SET escape = off;
  373. CREATE TABLE ruian_oa.infra_job_log (
  374. id numeric(20,0) NOT NULL,
  375. job_id numeric(20,0),
  376. handler_name character varying(64 char),
  377. handler_param character varying(255 char),
  378. execute_index numeric(4,0),
  379. begin_time date,
  380. end_time date,
  381. duration numeric(11,0),
  382. status numeric(4,0),
  383. result nclob,
  384. creator character varying(64 char),
  385. create_time date,
  386. updater character varying(64 char),
  387. update_time date,
  388. deleted numeric(1,0) DEFAULT 0
  389. );
  390. ALTER TABLE ruian_oa.infra_job_log OWNER TO system;
  391. --
  392. -- TOC entry 757 (class 1259 OID 16778)
  393. -- Name: infra_job_log_seq; Type: SEQUENCE; Schema: ruian_oa; Owner: system
  394. --
  395. CREATE SEQUENCE ruian_oa.infra_job_log_seq
  396. START WITH 0
  397. INCREMENT BY 1
  398. MINVALUE 0
  399. MAXVALUE 99999
  400. CACHE 20;
  401. ALTER TABLE ruian_oa.infra_job_log_seq OWNER TO system;
  402. --
  403. -- TOC entry 758 (class 1259 OID 16780)
  404. -- Name: infra_job_seq; Type: SEQUENCE; Schema: ruian_oa; Owner: system
  405. --
  406. CREATE SEQUENCE ruian_oa.infra_job_seq
  407. START WITH 0
  408. INCREMENT BY 1
  409. MINVALUE 0
  410. MAXVALUE 99999
  411. CACHE 20;
  412. ALTER TABLE ruian_oa.infra_job_seq OWNER TO system;
  413. --
  414. -- TOC entry 708 (class 1259 OID 16470)
  415. -- Name: infra_msg_send_record; Type: TABLE; Schema: ruian_oa; Owner: system
  416. --
  417. SET escape = off;
  418. CREATE TABLE ruian_oa.infra_msg_send_record (
  419. id numeric NOT NULL,
  420. send_person_id character varying(64 byte),
  421. send_person character varying(64 byte),
  422. send_mobile character varying(32 byte),
  423. send_state numeric,
  424. send_type numeric,
  425. send_content character varying(2000 byte),
  426. send_result character varying(255 byte),
  427. third_id character varying(255 byte),
  428. send_time date,
  429. msg_type character varying(64 byte)
  430. );
  431. ALTER TABLE ruian_oa.infra_msg_send_record OWNER TO system;
  432. --
  433. -- TOC entry 759 (class 1259 OID 16782)
  434. -- Name: infra_msg_send_record_seq; Type: SEQUENCE; Schema: ruian_oa; Owner: system
  435. --
  436. CREATE SEQUENCE ruian_oa.infra_msg_send_record_seq
  437. START WITH 1
  438. INCREMENT BY 1
  439. NO MINVALUE
  440. MAXVALUE 999999999999999
  441. CACHE 20;
  442. ALTER TABLE ruian_oa.infra_msg_send_record_seq OWNER TO system;
  443. --
  444. -- TOC entry 709 (class 1259 OID 16476)
  445. -- Name: infra_test_demo; Type: TABLE; Schema: ruian_oa; Owner: system
  446. --
  447. SET escape = off;
  448. CREATE TABLE ruian_oa.infra_test_demo (
  449. id numeric(20,0) NOT NULL,
  450. name character varying(100 char),
  451. status numeric(4,0),
  452. type numeric(4,0),
  453. category numeric(4,0),
  454. remark character varying(500 char),
  455. creator character varying(64 char),
  456. create_time date,
  457. updater character varying(64 char),
  458. update_time date,
  459. deleted numeric DEFAULT 0
  460. );
  461. ALTER TABLE ruian_oa.infra_test_demo OWNER TO system;
  462. --
  463. -- TOC entry 760 (class 1259 OID 16784)
  464. -- Name: infra_test_demo_seq; Type: SEQUENCE; Schema: ruian_oa; Owner: system
  465. --
  466. CREATE SEQUENCE ruian_oa.infra_test_demo_seq
  467. START WITH 0
  468. INCREMENT BY 1
  469. MINVALUE 0
  470. MAXVALUE 99999
  471. CACHE 20;
  472. ALTER TABLE ruian_oa.infra_test_demo_seq OWNER TO system;
  473. --
  474. -- TOC entry 710 (class 1259 OID 16483)
  475. -- Name: message_info; Type: TABLE; Schema: ruian_oa; Owner: system
  476. --
  477. SET escape = off;
  478. CREATE TABLE ruian_oa.message_info (
  479. id character varying(36 byte) NOT NULL,
  480. message_id character varying(128 byte),
  481. create_time date,
  482. type numeric,
  483. status numeric,
  484. excute_time numeric,
  485. system_code character varying(52 byte),
  486. target_url character varying(256 byte),
  487. callback_url character varying(256 byte),
  488. ret_value character varying(2000 byte),
  489. request_ip character varying(24 byte),
  490. third_process_res numeric,
  491. isvalid numeric,
  492. create_worker character varying(36 byte),
  493. latest_modify_time date,
  494. latest_modify_worker character varying(36 byte),
  495. bz1 character varying(255 char),
  496. bz2 character varying(255 char),
  497. message_body clob
  498. );
  499. ALTER TABLE ruian_oa.message_info OWNER TO system;
  500. --
  501. -- TOC entry 711 (class 1259 OID 16531)
  502. -- Name: system_area; Type: TABLE; Schema: ruian_oa; Owner: system
  503. --
  504. SET escape = off;
  505. CREATE TABLE ruian_oa.system_area (
  506. id character varying(32 byte) NOT NULL,
  507. name character varying(255 byte),
  508. type character varying(10 byte),
  509. parent_id character varying(32 byte),
  510. full_name character varying(255 byte)
  511. );
  512. ALTER TABLE ruian_oa.system_area OWNER TO system;
  513. --
  514. -- TOC entry 712 (class 1259 OID 16534)
  515. -- Name: system_company; Type: TABLE; Schema: ruian_oa; Owner: system
  516. --
  517. SET escape = off;
  518. CREATE TABLE ruian_oa.system_company (
  519. id character varying(36 char) NOT NULL,
  520. parent_id character varying(36 char),
  521. name character varying(30 char),
  522. sort numeric(11,0),
  523. phone character varying(11 char),
  524. email character varying(50 char),
  525. status numeric(4,0),
  526. creator character varying(64 char),
  527. create_time date,
  528. updater character varying(64 char),
  529. update_time date,
  530. deleted numeric(1,0) DEFAULT 0,
  531. code character varying(10 byte)
  532. );
  533. ALTER TABLE ruian_oa.system_company OWNER TO system;
  534. --
  535. -- TOC entry 713 (class 1259 OID 16539)
  536. -- Name: system_dept; Type: TABLE; Schema: ruian_oa; Owner: system
  537. --
  538. SET escape = off;
  539. CREATE TABLE ruian_oa.system_dept (
  540. id character varying(36 char) NOT NULL,
  541. name character varying(30 char),
  542. parent_id_bak numeric(20,0),
  543. sort numeric(11,0),
  544. leader_user_id character varying(36 char),
  545. phone character varying(11 char),
  546. email character varying(50 char),
  547. status numeric(4,0),
  548. creator character varying(64 char),
  549. create_time date,
  550. updater character varying(64 char),
  551. update_time date,
  552. deleted numeric(1,0) DEFAULT 0,
  553. parent_id character varying(36 char),
  554. code character varying(32 byte),
  555. segment numeric(2,0)
  556. );
  557. ALTER TABLE ruian_oa.system_dept OWNER TO system;
  558. --
  559. -- TOC entry 714 (class 1259 OID 16543)
  560. -- Name: system_dept_leader; Type: TABLE; Schema: ruian_oa; Owner: system
  561. --
  562. SET escape = off;
  563. CREATE TABLE ruian_oa.system_dept_leader (
  564. id character varying(36 char) NOT NULL,
  565. dept_id character varying(36 char),
  566. user_id character varying(36 char),
  567. creator character varying(64 char),
  568. create_time date,
  569. updater character varying(64 char),
  570. update_time date,
  571. deleted numeric(1,0) DEFAULT 0
  572. );
  573. ALTER TABLE ruian_oa.system_dept_leader OWNER TO system;
  574. --
  575. -- TOC entry 761 (class 1259 OID 16786)
  576. -- Name: system_dept_seq; Type: SEQUENCE; Schema: ruian_oa; Owner: system
  577. --
  578. CREATE SEQUENCE ruian_oa.system_dept_seq
  579. START WITH 0
  580. INCREMENT BY 1
  581. MINVALUE 0
  582. MAXVALUE 99999
  583. CACHE 20;
  584. ALTER TABLE ruian_oa.system_dept_seq OWNER TO system;
  585. --
  586. -- TOC entry 715 (class 1259 OID 16547)
  587. -- Name: system_dict_data; Type: TABLE; Schema: ruian_oa; Owner: system
  588. --
  589. SET escape = off;
  590. CREATE TABLE ruian_oa.system_dict_data (
  591. id numeric(20,0) NOT NULL,
  592. sort numeric(11,0),
  593. label character varying(100 char),
  594. value character varying(100 char),
  595. dict_type character varying(100 char),
  596. status numeric(4,0),
  597. color_type character varying(100 char),
  598. css_class character varying(100 char),
  599. remark character varying(500 char),
  600. creator character varying(64 char),
  601. create_time date,
  602. updater character varying(64 char),
  603. update_time date,
  604. deleted numeric(1,0) DEFAULT 0
  605. );
  606. ALTER TABLE ruian_oa.system_dict_data OWNER TO system;
  607. --
  608. -- TOC entry 762 (class 1259 OID 16788)
  609. -- Name: system_dict_data_seq; Type: SEQUENCE; Schema: ruian_oa; Owner: system
  610. --
  611. CREATE SEQUENCE ruian_oa.system_dict_data_seq
  612. START WITH 0
  613. INCREMENT BY 1
  614. MINVALUE 0
  615. MAXVALUE 99999
  616. CACHE 20;
  617. ALTER TABLE ruian_oa.system_dict_data_seq OWNER TO system;
  618. --
  619. -- TOC entry 716 (class 1259 OID 16554)
  620. -- Name: system_dict_type; Type: TABLE; Schema: ruian_oa; Owner: system
  621. --
  622. SET escape = off;
  623. CREATE TABLE ruian_oa.system_dict_type (
  624. id numeric(20,0) NOT NULL,
  625. name character varying(100 char),
  626. type character varying(100 char),
  627. status numeric(4,0),
  628. remark character varying(500 char),
  629. creator character varying(64 char),
  630. create_time date,
  631. updater character varying(64 char),
  632. update_time date,
  633. deleted numeric(1,0) DEFAULT 0,
  634. deleted_time date
  635. );
  636. ALTER TABLE ruian_oa.system_dict_type OWNER TO system;
  637. --
  638. -- TOC entry 763 (class 1259 OID 16790)
  639. -- Name: system_dict_type_seq; Type: SEQUENCE; Schema: ruian_oa; Owner: system
  640. --
  641. CREATE SEQUENCE ruian_oa.system_dict_type_seq
  642. START WITH 0
  643. INCREMENT BY 1
  644. MINVALUE 0
  645. MAXVALUE 99999
  646. CACHE 20;
  647. ALTER TABLE ruian_oa.system_dict_type_seq OWNER TO system;
  648. --
  649. -- TOC entry 717 (class 1259 OID 16561)
  650. -- Name: system_district; Type: TABLE; Schema: ruian_oa; Owner: system
  651. --
  652. SET escape = off;
  653. CREATE TABLE ruian_oa.system_district (
  654. district_id character varying(36 char) NOT NULL,
  655. city_code character varying(16 char),
  656. city_name character varying(64 char),
  657. county_code character varying(16 char),
  658. county_name character varying(64 char),
  659. town_code character varying(16 char),
  660. town_name character varying(64 char),
  661. village_code character varying(16 char),
  662. village_name character varying(64 char),
  663. villagers_group_code character varying(16 char),
  664. villagers_group_name character varying(64 char),
  665. joincode character varying(64 char),
  666. short_name character varying(32 char),
  667. isvalid numeric(10,0),
  668. bz1 character varying(255 char),
  669. bz2 character varying(255 char),
  670. bz3 character varying(255 char),
  671. index_code numeric(10,0),
  672. province_code character varying(16 char),
  673. province_name character varying(64 char),
  674. qh character varying(36 char),
  675. creator character varying(64 char),
  676. create_time date,
  677. updater character varying(64 char),
  678. update_time date,
  679. deleted numeric(1,0) DEFAULT 0
  680. );
  681. ALTER TABLE ruian_oa.system_district OWNER TO system;
  682. --
  683. -- TOC entry 718 (class 1259 OID 16568)
  684. -- Name: system_error_code; Type: TABLE; Schema: ruian_oa; Owner: system
  685. --
  686. SET escape = off;
  687. CREATE TABLE ruian_oa.system_error_code (
  688. id numeric(20,0) NOT NULL,
  689. type numeric(4,0),
  690. application_name character varying(50 char),
  691. code numeric(11,0),
  692. message character varying(512 char),
  693. memo character varying(512 char),
  694. creator character varying(64 char),
  695. create_time date,
  696. updater character varying(64 char),
  697. update_time date,
  698. deleted numeric(1,0) DEFAULT 0
  699. );
  700. ALTER TABLE ruian_oa.system_error_code OWNER TO system;
  701. --
  702. -- TOC entry 764 (class 1259 OID 16792)
  703. -- Name: system_error_code_seq; Type: SEQUENCE; Schema: ruian_oa; Owner: system
  704. --
  705. CREATE SEQUENCE ruian_oa.system_error_code_seq
  706. START WITH 0
  707. INCREMENT BY 1
  708. MINVALUE 0
  709. MAXVALUE 99999
  710. CACHE 20;
  711. ALTER TABLE ruian_oa.system_error_code_seq OWNER TO system;
  712. --
  713. -- TOC entry 719 (class 1259 OID 16575)
  714. -- Name: system_login_log; Type: TABLE; Schema: ruian_oa; Owner: system
  715. --
  716. SET escape = off;
  717. CREATE TABLE ruian_oa.system_login_log (
  718. id numeric(20,0) NOT NULL,
  719. log_type numeric(20,0),
  720. trace_id character varying(64 char) DEFAULT NULL::varchar,
  721. user_id_bak numeric(20,0),
  722. user_type numeric(4,0),
  723. username character varying(50 char),
  724. result numeric(4,0),
  725. user_ip character varying(50 char),
  726. user_agent character varying(512 char),
  727. creator character varying(64 char),
  728. create_time date,
  729. updater character varying(64 char),
  730. update_time date,
  731. deleted numeric(1,0) DEFAULT 0,
  732. user_id character varying(36 byte)
  733. );
  734. ALTER TABLE ruian_oa.system_login_log OWNER TO system;
  735. --
  736. -- TOC entry 765 (class 1259 OID 16794)
  737. -- Name: system_login_log_seq; Type: SEQUENCE; Schema: ruian_oa; Owner: system
  738. --
  739. CREATE SEQUENCE ruian_oa.system_login_log_seq
  740. START WITH 0
  741. INCREMENT BY 1
  742. MINVALUE 0
  743. MAXVALUE 99999
  744. CACHE 20;
  745. ALTER TABLE ruian_oa.system_login_log_seq OWNER TO system;
  746. --
  747. -- TOC entry 720 (class 1259 OID 16583)
  748. -- Name: system_mail_account; Type: TABLE; Schema: ruian_oa; Owner: system
  749. --
  750. SET escape = off;
  751. CREATE TABLE ruian_oa.system_mail_account (
  752. id numeric(20,0) NOT NULL,
  753. mail character varying(255 char),
  754. username character varying(255 char),
  755. password character varying(255 char),
  756. host character varying(255 char),
  757. port numeric(11,0),
  758. ssl_enable character varying(1 byte),
  759. creator character varying(64 char),
  760. create_time date,
  761. updater character varying(64 char),
  762. update_time date,
  763. deleted numeric(1,0) DEFAULT 0
  764. );
  765. ALTER TABLE ruian_oa.system_mail_account OWNER TO system;
  766. --
  767. -- TOC entry 721 (class 1259 OID 16590)
  768. -- Name: system_mail_log; Type: TABLE; Schema: ruian_oa; Owner: system
  769. --
  770. SET escape = off;
  771. CREATE TABLE ruian_oa.system_mail_log (
  772. id numeric(20,0) NOT NULL,
  773. user_id character varying(36 char),
  774. user_type numeric(4,0),
  775. to_mail character varying(255 char),
  776. account_id numeric(20,0),
  777. from_mail character varying(255 char),
  778. template_id numeric(20,0),
  779. template_code character varying(63 char),
  780. template_nickname character varying(255 char),
  781. template_title character varying(255 char),
  782. template_content nclob,
  783. template_params character varying(255 char),
  784. send_status numeric(4,0),
  785. send_time date,
  786. send_message_id character varying(255 char),
  787. send_exception nclob,
  788. creator character varying(64 char),
  789. create_time date,
  790. updater character varying(64 char),
  791. update_time date,
  792. deleted character varying(1 byte)
  793. );
  794. ALTER TABLE ruian_oa.system_mail_log OWNER TO system;
  795. --
  796. -- TOC entry 722 (class 1259 OID 16596)
  797. -- Name: system_mail_template; Type: TABLE; Schema: ruian_oa; Owner: system
  798. --
  799. SET escape = off;
  800. CREATE TABLE ruian_oa.system_mail_template (
  801. id numeric(20,0) NOT NULL,
  802. name character varying(63 char),
  803. code character varying(63 char),
  804. account_id numeric(20,0),
  805. nickname character varying(255 char),
  806. title character varying(255 char),
  807. content nclob,
  808. params character varying(255 char),
  809. status numeric(4,0),
  810. remark character varying(255 char),
  811. creator character varying(64 char),
  812. create_time date,
  813. updater character varying(64 char),
  814. update_time date,
  815. deleted numeric(1,0) DEFAULT 0
  816. );
  817. ALTER TABLE ruian_oa.system_mail_template OWNER TO system;
  818. --
  819. -- TOC entry 723 (class 1259 OID 16603)
  820. -- Name: system_menu; Type: TABLE; Schema: ruian_oa; Owner: system
  821. --
  822. SET escape = off;
  823. CREATE TABLE ruian_oa.system_menu (
  824. id numeric(20,0) NOT NULL,
  825. name character varying(50 char),
  826. permission character varying(100 char) DEFAULT NULL::varchar,
  827. type numeric(4,0),
  828. sort numeric(11,0),
  829. parent_id numeric(20,0),
  830. path character varying(200 char),
  831. icon character varying(100 char),
  832. component character varying(255 char),
  833. component_name character varying(255 char),
  834. status numeric(4,0),
  835. visible character varying(1 byte),
  836. keep_alive character varying(1 byte),
  837. always_show character varying(1 byte),
  838. creator character varying(64 char),
  839. create_time date,
  840. updater character varying(64 char),
  841. update_time date,
  842. deleted numeric(1,0) DEFAULT 0
  843. );
  844. ALTER TABLE ruian_oa.system_menu OWNER TO system;
  845. --
  846. -- TOC entry 766 (class 1259 OID 16796)
  847. -- Name: system_menu_seq; Type: SEQUENCE; Schema: ruian_oa; Owner: system
  848. --
  849. CREATE SEQUENCE ruian_oa.system_menu_seq
  850. START WITH 0
  851. INCREMENT BY 1
  852. MINVALUE 0
  853. MAXVALUE 99999
  854. CACHE 20;
  855. ALTER TABLE ruian_oa.system_menu_seq OWNER TO system;
  856. --
  857. -- TOC entry 724 (class 1259 OID 16611)
  858. -- Name: system_notice; Type: TABLE; Schema: ruian_oa; Owner: system
  859. --
  860. SET escape = off;
  861. CREATE TABLE ruian_oa.system_notice (
  862. id numeric(20,0) NOT NULL,
  863. title character varying(50 char),
  864. content nclob,
  865. type numeric(4,0),
  866. status numeric(4,0),
  867. creator character varying(64 char),
  868. create_time date,
  869. updater character varying(64 char),
  870. update_time date,
  871. deleted numeric(1,0) DEFAULT 0
  872. );
  873. ALTER TABLE ruian_oa.system_notice OWNER TO system;
  874. --
  875. -- TOC entry 767 (class 1259 OID 16798)
  876. -- Name: system_notice_seq; Type: SEQUENCE; Schema: ruian_oa; Owner: system
  877. --
  878. CREATE SEQUENCE ruian_oa.system_notice_seq
  879. START WITH 0
  880. INCREMENT BY 1
  881. MINVALUE 0
  882. MAXVALUE 99999
  883. CACHE 20;
  884. ALTER TABLE ruian_oa.system_notice_seq OWNER TO system;
  885. --
  886. -- TOC entry 725 (class 1259 OID 16618)
  887. -- Name: system_notify_message; Type: TABLE; Schema: ruian_oa; Owner: system
  888. --
  889. SET escape = off;
  890. CREATE TABLE ruian_oa.system_notify_message (
  891. id numeric(20,0) NOT NULL,
  892. user_id character varying(36 char),
  893. user_type numeric(4,0),
  894. template_id numeric(20,0),
  895. template_code character varying(64 char),
  896. template_nickname character varying(63 char),
  897. template_content nclob,
  898. template_type numeric(11,0),
  899. template_params character varying(255 char),
  900. read_status boolean,
  901. read_time date,
  902. creator character varying(64 char),
  903. create_time date,
  904. updater character varying(64 char),
  905. update_time date,
  906. deleted numeric(1,0) DEFAULT 0
  907. );
  908. ALTER TABLE ruian_oa.system_notify_message OWNER TO system;
  909. --
  910. -- TOC entry 768 (class 1259 OID 16800)
  911. -- Name: system_notify_message_seq; Type: SEQUENCE; Schema: ruian_oa; Owner: system
  912. --
  913. CREATE SEQUENCE ruian_oa.system_notify_message_seq
  914. START WITH 1
  915. INCREMENT BY 1
  916. NO MINVALUE
  917. MAXVALUE 99999
  918. CACHE 20;
  919. ALTER TABLE ruian_oa.system_notify_message_seq OWNER TO system;
  920. --
  921. -- TOC entry 726 (class 1259 OID 16625)
  922. -- Name: system_notify_template; Type: TABLE; Schema: ruian_oa; Owner: system
  923. --
  924. SET escape = off;
  925. CREATE TABLE ruian_oa.system_notify_template (
  926. id numeric(20,0) NOT NULL,
  927. name character varying(63 char),
  928. code character varying(64 char),
  929. nickname character varying(255 char),
  930. content nclob,
  931. type numeric(4,0),
  932. params character varying(255 char),
  933. status numeric(4,0),
  934. remark character varying(255 char),
  935. creator character varying(64 char),
  936. create_time date,
  937. updater character varying(64 char),
  938. update_time date,
  939. deleted numeric(1,0) DEFAULT 0
  940. );
  941. ALTER TABLE ruian_oa.system_notify_template OWNER TO system;
  942. --
  943. -- TOC entry 769 (class 1259 OID 16802)
  944. -- Name: system_notify_template_seq; Type: SEQUENCE; Schema: ruian_oa; Owner: system
  945. --
  946. CREATE SEQUENCE ruian_oa.system_notify_template_seq
  947. START WITH 1
  948. INCREMENT BY 1
  949. NO MINVALUE
  950. MAXVALUE 99999
  951. CACHE 20;
  952. ALTER TABLE ruian_oa.system_notify_template_seq OWNER TO system;
  953. --
  954. -- TOC entry 727 (class 1259 OID 16632)
  955. -- Name: system_oauth2_access_token; Type: TABLE; Schema: ruian_oa; Owner: system
  956. --
  957. SET escape = off;
  958. CREATE TABLE ruian_oa.system_oauth2_access_token (
  959. id numeric(20,0),
  960. user_id_bak numeric(20,0),
  961. user_type numeric(4,0),
  962. access_token character varying(255 char),
  963. refresh_token character varying(32 char),
  964. client_id character varying(255 char),
  965. scopes character varying(255 char),
  966. expires_time date,
  967. creator character varying(64 char),
  968. create_time date,
  969. updater character varying(64 char),
  970. update_time date,
  971. deleted numeric(1,0) DEFAULT 0,
  972. user_id character varying(36 char)
  973. );
  974. ALTER TABLE ruian_oa.system_oauth2_access_token OWNER TO system;
  975. --
  976. -- TOC entry 770 (class 1259 OID 16804)
  977. -- Name: system_oauth2_access_token_seq; Type: SEQUENCE; Schema: ruian_oa; Owner: system
  978. --
  979. CREATE SEQUENCE ruian_oa.system_oauth2_access_token_seq
  980. START WITH 1
  981. INCREMENT BY 1
  982. NO MINVALUE
  983. MAXVALUE 99999
  984. CACHE 20;
  985. ALTER TABLE ruian_oa.system_oauth2_access_token_seq OWNER TO system;
  986. --
  987. -- TOC entry 728 (class 1259 OID 16639)
  988. -- Name: system_oauth2_approve; Type: TABLE; Schema: ruian_oa; Owner: system
  989. --
  990. SET escape = off;
  991. CREATE TABLE ruian_oa.system_oauth2_approve (
  992. id numeric(20,0) NOT NULL,
  993. user_id character varying(36 char),
  994. user_type numeric(4,0),
  995. client_id character varying(255 char),
  996. scope character varying(255 char),
  997. approved character varying(1 byte),
  998. expires_time date,
  999. creator character varying(64 char),
  1000. create_time date,
  1001. updater character varying(64 char),
  1002. update_time date,
  1003. deleted numeric(1,0) DEFAULT 0
  1004. );
  1005. ALTER TABLE ruian_oa.system_oauth2_approve OWNER TO system;
  1006. --
  1007. -- TOC entry 771 (class 1259 OID 16806)
  1008. -- Name: system_oauth2_approve_seq; Type: SEQUENCE; Schema: ruian_oa; Owner: system
  1009. --
  1010. CREATE SEQUENCE ruian_oa.system_oauth2_approve_seq
  1011. START WITH 1
  1012. INCREMENT BY 1
  1013. NO MINVALUE
  1014. MAXVALUE 99999
  1015. CACHE 20;
  1016. ALTER TABLE ruian_oa.system_oauth2_approve_seq OWNER TO system;
  1017. --
  1018. -- TOC entry 729 (class 1259 OID 16646)
  1019. -- Name: system_oauth2_client; Type: TABLE; Schema: ruian_oa; Owner: system
  1020. --
  1021. SET escape = off;
  1022. CREATE TABLE ruian_oa.system_oauth2_client (
  1023. id numeric(20,0) NOT NULL,
  1024. client_id character varying(255 char),
  1025. secret character varying(255 char),
  1026. name character varying(255 char),
  1027. logo character varying(255 char),
  1028. description character varying(255 char),
  1029. status numeric(4,0),
  1030. access_token_validity_seconds numeric(11,0),
  1031. refresh_token_validity_seconds numeric(11,0),
  1032. redirect_uris character varying(255 char),
  1033. authorized_grant_types character varying(255 char),
  1034. scopes character varying(255 char),
  1035. auto_approve_scopes character varying(255 char),
  1036. authorities character varying(255 char),
  1037. resource_ids character varying(255 char),
  1038. additional_information nclob,
  1039. creator character varying(64 char),
  1040. create_time date,
  1041. updater character varying(64 char),
  1042. update_time date,
  1043. deleted numeric(1,0) DEFAULT 0
  1044. );
  1045. ALTER TABLE ruian_oa.system_oauth2_client OWNER TO system;
  1046. --
  1047. -- TOC entry 772 (class 1259 OID 16808)
  1048. -- Name: system_oauth2_client_seq; Type: SEQUENCE; Schema: ruian_oa; Owner: system
  1049. --
  1050. CREATE SEQUENCE ruian_oa.system_oauth2_client_seq
  1051. START WITH 1
  1052. INCREMENT BY 1
  1053. NO MINVALUE
  1054. MAXVALUE 99999
  1055. CACHE 20;
  1056. ALTER TABLE ruian_oa.system_oauth2_client_seq OWNER TO system;
  1057. --
  1058. -- TOC entry 730 (class 1259 OID 16653)
  1059. -- Name: system_oauth2_code; Type: TABLE; Schema: ruian_oa; Owner: system
  1060. --
  1061. SET escape = off;
  1062. CREATE TABLE ruian_oa.system_oauth2_code (
  1063. id numeric(20,0) NOT NULL,
  1064. user_id character varying(36 char),
  1065. user_type numeric(4,0),
  1066. code character varying(32 char),
  1067. client_id character varying(255 char),
  1068. scopes character varying(255 char),
  1069. expires_time date,
  1070. redirect_uri character varying(255 char),
  1071. state character varying(255 char),
  1072. creator character varying(64 char),
  1073. create_time date,
  1074. updater character varying(64 char),
  1075. update_time date,
  1076. deleted numeric(1,0) DEFAULT 0
  1077. );
  1078. ALTER TABLE ruian_oa.system_oauth2_code OWNER TO system;
  1079. --
  1080. -- TOC entry 773 (class 1259 OID 16810)
  1081. -- Name: system_oauth2_code_seq; Type: SEQUENCE; Schema: ruian_oa; Owner: system
  1082. --
  1083. CREATE SEQUENCE ruian_oa.system_oauth2_code_seq
  1084. START WITH 1
  1085. INCREMENT BY 1
  1086. NO MINVALUE
  1087. MAXVALUE 99999
  1088. CACHE 20;
  1089. ALTER TABLE ruian_oa.system_oauth2_code_seq OWNER TO system;
  1090. --
  1091. -- TOC entry 731 (class 1259 OID 16660)
  1092. -- Name: system_oauth2_refresh_token; Type: TABLE; Schema: ruian_oa; Owner: system
  1093. --
  1094. SET escape = off;
  1095. CREATE TABLE ruian_oa.system_oauth2_refresh_token (
  1096. id numeric(20,0) NOT NULL,
  1097. user_id_bak numeric(20,0),
  1098. refresh_token character varying(32 char),
  1099. user_type numeric(4,0),
  1100. client_id character varying(255 char),
  1101. scopes character varying(255 char),
  1102. expires_time date,
  1103. creator character varying(64 char),
  1104. create_time date,
  1105. updater character varying(64 char),
  1106. update_time date,
  1107. deleted numeric(1,0) DEFAULT 0,
  1108. user_id character varying(36 char)
  1109. );
  1110. ALTER TABLE ruian_oa.system_oauth2_refresh_token OWNER TO system;
  1111. --
  1112. -- TOC entry 732 (class 1259 OID 16667)
  1113. -- Name: system_operate_log; Type: TABLE; Schema: ruian_oa; Owner: system
  1114. --
  1115. SET escape = off;
  1116. CREATE TABLE ruian_oa.system_operate_log (
  1117. id numeric(20,0) NOT NULL,
  1118. trace_id character varying(64 char) DEFAULT NULL::varchar,
  1119. user_id_bak numeric(20,0),
  1120. user_type numeric(4,0),
  1121. module character varying(50 char),
  1122. name character varying(50 char),
  1123. type numeric(20,0),
  1124. content nclob,
  1125. exts character varying(512 char) DEFAULT NULL::varchar,
  1126. request_method character varying(16 char),
  1127. request_url character varying(255 char),
  1128. user_ip character varying(50 char),
  1129. user_agent character varying(512 char),
  1130. java_method character varying(512 char),
  1131. java_method_args nclob,
  1132. start_time date,
  1133. duration numeric(11,0),
  1134. result_code numeric(11,0),
  1135. result_msg character varying(512 char),
  1136. result_data nclob,
  1137. creator character varying(64 char),
  1138. create_time date,
  1139. updater character varying(64 char),
  1140. update_time date,
  1141. deleted numeric(1,0) DEFAULT 0,
  1142. user_id character varying(36 char)
  1143. );
  1144. ALTER TABLE ruian_oa.system_operate_log OWNER TO system;
  1145. --
  1146. -- TOC entry 774 (class 1259 OID 16812)
  1147. -- Name: system_operate_log_seq; Type: SEQUENCE; Schema: ruian_oa; Owner: system
  1148. --
  1149. CREATE SEQUENCE ruian_oa.system_operate_log_seq
  1150. START WITH 0
  1151. INCREMENT BY 1
  1152. MINVALUE 0
  1153. MAXVALUE 99999
  1154. CACHE 20;
  1155. ALTER TABLE ruian_oa.system_operate_log_seq OWNER TO system;
  1156. --
  1157. -- TOC entry 733 (class 1259 OID 16676)
  1158. -- Name: system_post; Type: TABLE; Schema: ruian_oa; Owner: system
  1159. --
  1160. SET escape = off;
  1161. CREATE TABLE ruian_oa.system_post (
  1162. id numeric(20,0) NOT NULL,
  1163. code character varying(64 char),
  1164. name character varying(50 char),
  1165. sort numeric(11,0),
  1166. status numeric(4,0),
  1167. remark character varying(500 char),
  1168. creator character varying(64 char),
  1169. create_time date,
  1170. updater character varying(64 char),
  1171. update_time date,
  1172. deleted numeric(1,0) DEFAULT 0
  1173. );
  1174. ALTER TABLE ruian_oa.system_post OWNER TO system;
  1175. --
  1176. -- TOC entry 775 (class 1259 OID 16814)
  1177. -- Name: system_post_seq; Type: SEQUENCE; Schema: ruian_oa; Owner: system
  1178. --
  1179. CREATE SEQUENCE ruian_oa.system_post_seq
  1180. START WITH 0
  1181. INCREMENT BY 1
  1182. MINVALUE 0
  1183. MAXVALUE 99999
  1184. CACHE 20;
  1185. ALTER TABLE ruian_oa.system_post_seq OWNER TO system;
  1186. --
  1187. -- TOC entry 734 (class 1259 OID 16683)
  1188. -- Name: system_role; Type: TABLE; Schema: ruian_oa; Owner: system
  1189. --
  1190. SET escape = off;
  1191. CREATE TABLE ruian_oa.system_role (
  1192. id numeric(20,0) NOT NULL,
  1193. name character varying(30 char),
  1194. code character varying(100 char),
  1195. sort numeric(11,0),
  1196. data_scope numeric(4,0),
  1197. data_scope_dept_ids character varying(500 char),
  1198. status numeric(4,0),
  1199. type numeric(4,0),
  1200. remark character varying(500 char),
  1201. creator character varying(64 char),
  1202. create_time date,
  1203. updater character varying(64 char),
  1204. update_time date,
  1205. deleted numeric(1,0) DEFAULT 0,
  1206. flow_ids character varying(2000 char)
  1207. );
  1208. ALTER TABLE ruian_oa.system_role OWNER TO system;
  1209. --
  1210. -- TOC entry 735 (class 1259 OID 16690)
  1211. -- Name: system_role_menu; Type: TABLE; Schema: ruian_oa; Owner: system
  1212. --
  1213. SET escape = off;
  1214. CREATE TABLE ruian_oa.system_role_menu (
  1215. id numeric(20,0) NOT NULL,
  1216. role_id numeric(20,0),
  1217. menu_id numeric(20,0),
  1218. creator character varying(64 char),
  1219. create_time date,
  1220. updater character varying(64 char),
  1221. update_time date,
  1222. deleted numeric(1,0) DEFAULT 0
  1223. );
  1224. ALTER TABLE ruian_oa.system_role_menu OWNER TO system;
  1225. --
  1226. -- TOC entry 776 (class 1259 OID 16816)
  1227. -- Name: system_role_menu_seq; Type: SEQUENCE; Schema: ruian_oa; Owner: system
  1228. --
  1229. CREATE SEQUENCE ruian_oa.system_role_menu_seq
  1230. START WITH 0
  1231. INCREMENT BY 1
  1232. MINVALUE 0
  1233. MAXVALUE 99999
  1234. CACHE 20;
  1235. ALTER TABLE ruian_oa.system_role_menu_seq OWNER TO system;
  1236. --
  1237. -- TOC entry 777 (class 1259 OID 16818)
  1238. -- Name: system_role_seq; Type: SEQUENCE; Schema: ruian_oa; Owner: system
  1239. --
  1240. CREATE SEQUENCE ruian_oa.system_role_seq
  1241. START WITH 0
  1242. INCREMENT BY 1
  1243. MINVALUE 0
  1244. MAXVALUE 99999
  1245. CACHE 20;
  1246. ALTER TABLE ruian_oa.system_role_seq OWNER TO system;
  1247. --
  1248. -- TOC entry 736 (class 1259 OID 16695)
  1249. -- Name: system_sensitive_word; Type: TABLE; Schema: ruian_oa; Owner: system
  1250. --
  1251. SET escape = off;
  1252. CREATE TABLE ruian_oa.system_sensitive_word (
  1253. id numeric(20,0),
  1254. name character varying(255 char),
  1255. description character varying(512 char),
  1256. tags character varying(255 char),
  1257. status numeric(4,0),
  1258. creator character varying(64 char),
  1259. create_time date,
  1260. updater character varying(64 char),
  1261. update_time date,
  1262. deleted numeric(1,0) DEFAULT 0
  1263. );
  1264. ALTER TABLE ruian_oa.system_sensitive_word OWNER TO system;
  1265. --
  1266. -- TOC entry 778 (class 1259 OID 16820)
  1267. -- Name: system_sensitive_word_seq; Type: SEQUENCE; Schema: ruian_oa; Owner: system
  1268. --
  1269. CREATE SEQUENCE ruian_oa.system_sensitive_word_seq
  1270. START WITH 0
  1271. INCREMENT BY 1
  1272. MINVALUE 0
  1273. MAXVALUE 99999
  1274. CACHE 20;
  1275. ALTER TABLE ruian_oa.system_sensitive_word_seq OWNER TO system;
  1276. --
  1277. -- TOC entry 737 (class 1259 OID 16702)
  1278. -- Name: system_sms_channel; Type: TABLE; Schema: ruian_oa; Owner: system
  1279. --
  1280. SET escape = off;
  1281. CREATE TABLE ruian_oa.system_sms_channel (
  1282. id numeric(20,0),
  1283. signature character varying(12 char),
  1284. code character varying(63 char),
  1285. status numeric(4,0),
  1286. remark character varying(255 char),
  1287. api_key character varying(128 char),
  1288. api_secret character varying(128 char),
  1289. callback_url character varying(255 char),
  1290. creator character varying(64 char),
  1291. create_time date,
  1292. updater character varying(64 char),
  1293. update_time date,
  1294. deleted numeric(1,0) DEFAULT 0
  1295. );
  1296. ALTER TABLE ruian_oa.system_sms_channel OWNER TO system;
  1297. --
  1298. -- TOC entry 779 (class 1259 OID 16822)
  1299. -- Name: system_sms_channel_seq; Type: SEQUENCE; Schema: ruian_oa; Owner: system
  1300. --
  1301. CREATE SEQUENCE ruian_oa.system_sms_channel_seq
  1302. START WITH 0
  1303. INCREMENT BY 1
  1304. MINVALUE 0
  1305. MAXVALUE 99999
  1306. CACHE 20;
  1307. ALTER TABLE ruian_oa.system_sms_channel_seq OWNER TO system;
  1308. --
  1309. -- TOC entry 738 (class 1259 OID 16709)
  1310. -- Name: system_sms_code; Type: TABLE; Schema: ruian_oa; Owner: system
  1311. --
  1312. SET escape = off;
  1313. CREATE TABLE ruian_oa.system_sms_code (
  1314. id numeric(20,0),
  1315. mobile character varying(11 char),
  1316. code character varying(6 char),
  1317. create_ip character varying(15 char),
  1318. scene numeric(4,0),
  1319. today_index numeric(4,0),
  1320. used numeric(4,0),
  1321. used_time date,
  1322. used_ip character varying(255 char),
  1323. creator character varying(64 char),
  1324. create_time date,
  1325. updater character varying(64 char),
  1326. update_time date,
  1327. deleted numeric(1,0) DEFAULT 0
  1328. );
  1329. ALTER TABLE ruian_oa.system_sms_code OWNER TO system;
  1330. --
  1331. -- TOC entry 780 (class 1259 OID 16824)
  1332. -- Name: system_sms_code_seq; Type: SEQUENCE; Schema: ruian_oa; Owner: system
  1333. --
  1334. CREATE SEQUENCE ruian_oa.system_sms_code_seq
  1335. START WITH 0
  1336. INCREMENT BY 1
  1337. MINVALUE 0
  1338. MAXVALUE 99999
  1339. CACHE 20;
  1340. ALTER TABLE ruian_oa.system_sms_code_seq OWNER TO system;
  1341. --
  1342. -- TOC entry 739 (class 1259 OID 16713)
  1343. -- Name: system_sms_log; Type: TABLE; Schema: ruian_oa; Owner: system
  1344. --
  1345. SET escape = off;
  1346. CREATE TABLE ruian_oa.system_sms_log (
  1347. id numeric(20,0),
  1348. channel_id numeric(20,0),
  1349. channel_code character varying(63 char),
  1350. template_id numeric(20,0),
  1351. template_code character varying(63 char),
  1352. template_type numeric(4,0),
  1353. template_content character varying(255 char),
  1354. template_params character varying(255 char),
  1355. api_template_id character varying(63 char),
  1356. mobile character varying(11 char),
  1357. user_id numeric(20,0),
  1358. user_type numeric(4,0),
  1359. send_status numeric(4,0),
  1360. send_time date,
  1361. send_code numeric(11,0),
  1362. send_msg character varying(255 char),
  1363. api_send_code character varying(63 char),
  1364. api_send_msg character varying(255 char),
  1365. api_request_id character varying(255 char),
  1366. api_serial_no character varying(255 char),
  1367. receive_status numeric(4,0),
  1368. receive_time date,
  1369. api_receive_code character varying(63 char),
  1370. api_receive_msg character varying(255 char),
  1371. creator character varying(64 char),
  1372. create_time date,
  1373. updater character varying(64 char),
  1374. update_time date,
  1375. deleted numeric(1,0) DEFAULT 0
  1376. );
  1377. ALTER TABLE ruian_oa.system_sms_log OWNER TO system;
  1378. --
  1379. -- TOC entry 781 (class 1259 OID 16826)
  1380. -- Name: system_sms_log_seq; Type: SEQUENCE; Schema: ruian_oa; Owner: system
  1381. --
  1382. CREATE SEQUENCE ruian_oa.system_sms_log_seq
  1383. START WITH 0
  1384. INCREMENT BY 1
  1385. MINVALUE 0
  1386. MAXVALUE 99999
  1387. CACHE 20;
  1388. ALTER TABLE ruian_oa.system_sms_log_seq OWNER TO system;
  1389. --
  1390. -- TOC entry 740 (class 1259 OID 16720)
  1391. -- Name: system_sms_template; Type: TABLE; Schema: ruian_oa; Owner: system
  1392. --
  1393. SET escape = off;
  1394. CREATE TABLE ruian_oa.system_sms_template (
  1395. id numeric(20,0),
  1396. type numeric(4,0),
  1397. status numeric(4,0),
  1398. code character varying(63 char),
  1399. name character varying(63 char),
  1400. content character varying(255 char),
  1401. params character varying(255 char),
  1402. remark character varying(255 char),
  1403. api_template_id character varying(63 char),
  1404. channel_id numeric(20,0),
  1405. channel_code character varying(63 char),
  1406. creator character varying(64 char),
  1407. create_time date,
  1408. updater character varying(64 char),
  1409. update_time date,
  1410. deleted numeric(1,0) DEFAULT 0
  1411. );
  1412. ALTER TABLE ruian_oa.system_sms_template OWNER TO system;
  1413. --
  1414. -- TOC entry 782 (class 1259 OID 16828)
  1415. -- Name: system_sms_template_seq; Type: SEQUENCE; Schema: ruian_oa; Owner: system
  1416. --
  1417. CREATE SEQUENCE ruian_oa.system_sms_template_seq
  1418. START WITH 0
  1419. INCREMENT BY 1
  1420. MINVALUE 0
  1421. MAXVALUE 99999
  1422. CACHE 20;
  1423. ALTER TABLE ruian_oa.system_sms_template_seq OWNER TO system;
  1424. --
  1425. -- TOC entry 741 (class 1259 OID 16727)
  1426. -- Name: system_social_user; Type: TABLE; Schema: ruian_oa; Owner: system
  1427. --
  1428. SET escape = off;
  1429. CREATE TABLE ruian_oa.system_social_user (
  1430. id numeric(20,0) NOT NULL,
  1431. type numeric(4,0),
  1432. openid character varying(32 char),
  1433. token character varying(256 char),
  1434. raw_token_info nclob,
  1435. nickname character varying(32 char),
  1436. avatar character varying(255 char),
  1437. raw_user_info nclob,
  1438. code character varying(256 char),
  1439. state character varying(256 char),
  1440. creator character varying(64 char),
  1441. create_time date,
  1442. updater character varying(64 char),
  1443. update_time date,
  1444. deleted numeric(1,0) DEFAULT 0
  1445. );
  1446. ALTER TABLE ruian_oa.system_social_user OWNER TO system;
  1447. --
  1448. -- TOC entry 742 (class 1259 OID 16734)
  1449. -- Name: system_social_user_bind; Type: TABLE; Schema: ruian_oa; Owner: system
  1450. --
  1451. SET escape = off;
  1452. CREATE TABLE ruian_oa.system_social_user_bind (
  1453. id numeric(20,0) NOT NULL,
  1454. user_id_bak numeric(20,0),
  1455. user_type numeric(4,0),
  1456. social_type numeric(4,0),
  1457. social_user_id numeric(20,0),
  1458. creator character varying(64 char),
  1459. create_time date,
  1460. updater character varying(64 char),
  1461. update_time date,
  1462. deleted numeric(1,0) DEFAULT 0,
  1463. user_id character varying(36 char)
  1464. );
  1465. ALTER TABLE ruian_oa.system_social_user_bind OWNER TO system;
  1466. --
  1467. -- TOC entry 783 (class 1259 OID 16830)
  1468. -- Name: system_social_user_bind_seq; Type: SEQUENCE; Schema: ruian_oa; Owner: system
  1469. --
  1470. CREATE SEQUENCE ruian_oa.system_social_user_bind_seq
  1471. START WITH 0
  1472. INCREMENT BY 1
  1473. MINVALUE 0
  1474. MAXVALUE 99999
  1475. CACHE 20;
  1476. ALTER TABLE ruian_oa.system_social_user_bind_seq OWNER TO system;
  1477. --
  1478. -- TOC entry 784 (class 1259 OID 16832)
  1479. -- Name: system_social_user_seq; Type: SEQUENCE; Schema: ruian_oa; Owner: system
  1480. --
  1481. CREATE SEQUENCE ruian_oa.system_social_user_seq
  1482. START WITH 0
  1483. INCREMENT BY 1
  1484. MINVALUE 0
  1485. MAXVALUE 99999
  1486. CACHE 20;
  1487. ALTER TABLE ruian_oa.system_social_user_seq OWNER TO system;
  1488. --
  1489. -- TOC entry 785 (class 1259 OID 16834)
  1490. -- Name: system_tenant_package_seq; Type: SEQUENCE; Schema: ruian_oa; Owner: system
  1491. --
  1492. CREATE SEQUENCE ruian_oa.system_tenant_package_seq
  1493. START WITH 0
  1494. INCREMENT BY 1
  1495. MINVALUE 0
  1496. MAXVALUE 99999
  1497. CACHE 20;
  1498. ALTER TABLE ruian_oa.system_tenant_package_seq OWNER TO system;
  1499. --
  1500. -- TOC entry 786 (class 1259 OID 16836)
  1501. -- Name: system_tenant_seq; Type: SEQUENCE; Schema: ruian_oa; Owner: system
  1502. --
  1503. CREATE SEQUENCE ruian_oa.system_tenant_seq
  1504. START WITH 0
  1505. INCREMENT BY 1
  1506. MINVALUE 0
  1507. MAXVALUE 99999
  1508. CACHE 20;
  1509. ALTER TABLE ruian_oa.system_tenant_seq OWNER TO system;
  1510. --
  1511. -- TOC entry 744 (class 1259 OID 16746)
  1512. -- Name: system_user_dept; Type: TABLE; Schema: ruian_oa; Owner: system
  1513. --
  1514. SET escape = off;
  1515. CREATE TABLE ruian_oa.system_user_dept (
  1516. id numeric(20,0) NOT NULL,
  1517. user_id_bak numeric(20,0),
  1518. dept_id_bak numeric(20,0),
  1519. creator character varying(64 char),
  1520. create_time date,
  1521. updater character varying(64 char),
  1522. update_time date,
  1523. deleted numeric(1,0) DEFAULT 0,
  1524. dept_id character varying(36 char),
  1525. user_id character varying(36 char)
  1526. );
  1527. ALTER TABLE ruian_oa.system_user_dept OWNER TO system;
  1528. --
  1529. -- TOC entry 787 (class 1259 OID 16838)
  1530. -- Name: system_user_dept_seq; Type: SEQUENCE; Schema: ruian_oa; Owner: system
  1531. --
  1532. CREATE SEQUENCE ruian_oa.system_user_dept_seq
  1533. START WITH 0
  1534. INCREMENT BY 1
  1535. MINVALUE 0
  1536. MAXVALUE 99999
  1537. CACHE 20;
  1538. ALTER TABLE ruian_oa.system_user_dept_seq OWNER TO system;
  1539. --
  1540. -- TOC entry 745 (class 1259 OID 16750)
  1541. -- Name: system_user_post; Type: TABLE; Schema: ruian_oa; Owner: system
  1542. --
  1543. SET escape = off;
  1544. CREATE TABLE ruian_oa.system_user_post (
  1545. id numeric(20,0) NOT NULL,
  1546. user_id_bak numeric(20,0),
  1547. post_id numeric(20,0),
  1548. creator character varying(64 char),
  1549. create_time date,
  1550. updater character varying(64 char),
  1551. update_time date,
  1552. deleted numeric(1,0) DEFAULT 0,
  1553. user_id character varying(36 char)
  1554. );
  1555. ALTER TABLE ruian_oa.system_user_post OWNER TO system;
  1556. --
  1557. -- TOC entry 788 (class 1259 OID 16840)
  1558. -- Name: system_user_post_seq; Type: SEQUENCE; Schema: ruian_oa; Owner: system
  1559. --
  1560. CREATE SEQUENCE ruian_oa.system_user_post_seq
  1561. START WITH 0
  1562. INCREMENT BY 1
  1563. MINVALUE 0
  1564. MAXVALUE 99999
  1565. CACHE 20;
  1566. ALTER TABLE ruian_oa.system_user_post_seq OWNER TO system;
  1567. --
  1568. -- TOC entry 746 (class 1259 OID 16754)
  1569. -- Name: system_user_role; Type: TABLE; Schema: ruian_oa; Owner: system
  1570. --
  1571. SET escape = off;
  1572. CREATE TABLE ruian_oa.system_user_role (
  1573. id numeric(20,0) NOT NULL,
  1574. user_id_bak numeric(20,0),
  1575. role_id numeric(20,0),
  1576. creator character varying(64 char),
  1577. create_time date,
  1578. updater character varying(64 char),
  1579. update_time date,
  1580. deleted numeric(1,0) DEFAULT 0,
  1581. user_id character varying(36 char)
  1582. );
  1583. ALTER TABLE ruian_oa.system_user_role OWNER TO system;
  1584. --
  1585. -- TOC entry 789 (class 1259 OID 16842)
  1586. -- Name: system_user_role_seq; Type: SEQUENCE; Schema: ruian_oa; Owner: system
  1587. --
  1588. CREATE SEQUENCE ruian_oa.system_user_role_seq
  1589. START WITH 0
  1590. INCREMENT BY 1
  1591. MINVALUE 0
  1592. MAXVALUE 99999
  1593. CACHE 20;
  1594. ALTER TABLE ruian_oa.system_user_role_seq OWNER TO system;
  1595. --
  1596. -- TOC entry 790 (class 1259 OID 16844)
  1597. -- Name: system_user_seq; Type: SEQUENCE; Schema: ruian_oa; Owner: system
  1598. --
  1599. CREATE SEQUENCE ruian_oa.system_user_seq
  1600. START WITH 0
  1601. INCREMENT BY 1
  1602. MINVALUE 0
  1603. MAXVALUE 99999
  1604. CACHE 20;
  1605. ALTER TABLE ruian_oa.system_user_seq OWNER TO system;
  1606. --
  1607. -- TOC entry 747 (class 1259 OID 16758)
  1608. -- Name: system_user_session_seq; Type: SEQUENCE; Schema: ruian_oa; Owner: system
  1609. --
  1610. CREATE SEQUENCE ruian_oa.system_user_session_seq
  1611. START WITH 0
  1612. INCREMENT BY 1
  1613. MINVALUE 0
  1614. MAXVALUE 99999
  1615. CACHE 20;
  1616. ALTER TABLE ruian_oa.system_user_session_seq OWNER TO system;
  1617. --
  1618. -- TOC entry 743 (class 1259 OID 16738)
  1619. -- Name: system_users; Type: TABLE; Schema: ruian_oa; Owner: system
  1620. --
  1621. SET escape = off;
  1622. CREATE TABLE ruian_oa.system_users (
  1623. username character varying(30 char),
  1624. password character varying(100 char),
  1625. nickname character varying(30 char),
  1626. remark character varying(500 char),
  1627. post_ids character varying(255 char),
  1628. email character varying(50 char),
  1629. mobile character varying(11 char),
  1630. sex numeric(4,0),
  1631. avatar character varying(512 char),
  1632. status numeric(4,0),
  1633. login_ip character varying(50 char),
  1634. login_date date,
  1635. creator character varying(64 char),
  1636. create_time date,
  1637. updater character varying(64 char),
  1638. update_time date,
  1639. deleted numeric(1,0) DEFAULT 0,
  1640. tenant_id numeric(20,0),
  1641. id character varying(36 char) NOT NULL,
  1642. dept_ids character varying(512 char),
  1643. dept_id character varying(36 char),
  1644. dept_name character varying(128 char),
  1645. signature_url character varying(512 char),
  1646. attendance_flag numeric(1,0) DEFAULT 1
  1647. );
  1648. ALTER TABLE ruian_oa.system_users OWNER TO system;
  1649. --
  1650. -- TOC entry 6805 (class 0 OID 16391)
  1651. -- Dependencies: 697
  1652. -- Data for Name: infra_api_access_log; Type: TABLE DATA; Schema: ruian_oa; Owner: system
  1653. --
  1654. --
  1655. -- TOC entry 6806 (class 0 OID 16400)
  1656. -- Dependencies: 698
  1657. -- Data for Name: infra_api_error_log; Type: TABLE DATA; Schema: ruian_oa; Owner: system
  1658. --
  1659. INSERT INTO ruian_oa.infra_api_error_log VALUES (0, NULL, NULL, 2, 'system-server', 'POST', '/admin-api/system/oauth2/token', '{"query":{"password":"admin123","grant_type":"password","scope":"user.read user.write","client_secret":"admin123","client_id":"default","username":"admin"},"body":""}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/129.0.0.0 Safari/537.36', '2024-10-23 11:06:49', 'org.springframework.beans.factory.NoSuchBeanDefinitionException', 'NoSuchBeanDefinitionException: No qualifying bean of type ''org.springframework.transaction.TransactionManager'' available', 'NoSuchBeanDefinitionException: No qualifying bean of type ''org.springframework.transaction.TransactionManager'' available', 'org.springframework.beans.factory.NoSuchBeanDefinitionException: No qualifying bean of type ''org.springframework.transaction.TransactionManager'' available
  1660. at org.springframework.beans.factory.support.DefaultListableBeanFactory.getBean(DefaultListableBeanFactory.java:351)
  1661. at org.springframework.beans.factory.support.DefaultListableBeanFactory.getBean(DefaultListableBeanFactory.java:342)
  1662. at org.springframework.transaction.interceptor.TransactionAspectSupport.determineTransactionManager(TransactionAspectSupport.java:503)
  1663. at org.springframework.transaction.interceptor.TransactionAspectSupport.invokeWithinTransaction(TransactionAspectSupport.java:342)
  1664. at org.springframework.transaction.interceptor.TransactionInterceptor.invoke(TransactionInterceptor.java:119)
  1665. at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186)
  1666. at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763)
  1667. at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:708)
  1668. at com.zjugis.module.system.service.oauth2.OAuth2TokenServiceImpl$$EnhancerBySpringCGLIB$$9d4d583.createAccessToken(<generated>)
  1669. at com.zjugis.module.system.service.oauth2.OAuth2GrantServiceImpl.grantPassword(OAuth2GrantServiceImpl.java:79)
  1670. at com.zjugis.module.system.controller.admin.oauth2.OAuth2OpenController.postAccessToken(OAuth2OpenController.java:130)
  1671. at com.zjugis.module.system.controller.admin.oauth2.OAuth2OpenController$$FastClassBySpringCGLIB$$188afcf5.invoke(<generated>)
  1672. at org.springframework.cglib.proxy.MethodProxy.invoke(MethodProxy.java:218)
  1673. at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.invokeJoinpoint(CglibAopProxy.java:793)
  1674. at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:163)
  1675. at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763)
  1676. at org.springframework.validation.beanvalidation.MethodValidationInterceptor.invoke(MethodValidationInterceptor.java:123)
  1677. at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186)
  1678. at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763)
  1679. at org.springframework.aop.aspectj.MethodInvocationProceedingJoinPoint.proceed(MethodInvocationProceedingJoinPoint.java:89)
  1680. at com.zjugis.framework.operatelog.core.aop.OperateLogAspect.around0(OperateLogAspect.java:101)
  1681. at com.zjugis.framework.operatelog.core.aop.OperateLogAspect.around(OperateLogAspect.java:78)
  1682. at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
  1683. at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62)
  1684. at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
  1685. at java.lang.reflect.Method.invoke(Method.java:498)
  1686. at org.springframework.aop.asp', 'org.springframework.beans.factory.support.DefaultListableBeanFactory', 'DefaultListableBeanFactory.java', 'getBean', 351, 0, NULL, NULL, NULL, '2024-10-23 11:06:57', NULL, '2024-10-23 11:06:57', NULL, 0);
  1687. INSERT INTO ruian_oa.infra_api_error_log VALUES (1, NULL, NULL, 2, 'system-server', 'POST', '/admin-api/system/oauth2/token', '{"query":{"password":"admin123","grant_type":"password","scope":"user.read user.write","client_secret":"admin123","client_id":"default","username":"admin"},"body":""}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/129.0.0.0 Safari/537.36', '2024-10-23 11:14:44', 'org.springframework.beans.factory.NoSuchBeanDefinitionException', 'NoSuchBeanDefinitionException: No qualifying bean of type ''org.springframework.transaction.TransactionManager'' available', 'NoSuchBeanDefinitionException: No qualifying bean of type ''org.springframework.transaction.TransactionManager'' available', 'org.springframework.beans.factory.NoSuchBeanDefinitionException: No qualifying bean of type ''org.springframework.transaction.TransactionManager'' available
  1688. at org.springframework.beans.factory.support.DefaultListableBeanFactory.getBean(DefaultListableBeanFactory.java:351)
  1689. at org.springframework.beans.factory.support.DefaultListableBeanFactory.getBean(DefaultListableBeanFactory.java:342)
  1690. at org.springframework.transaction.interceptor.TransactionAspectSupport.determineTransactionManager(TransactionAspectSupport.java:503)
  1691. at org.springframework.transaction.interceptor.TransactionAspectSupport.invokeWithinTransaction(TransactionAspectSupport.java:342)
  1692. at org.springframework.transaction.interceptor.TransactionInterceptor.invoke(TransactionInterceptor.java:119)
  1693. at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186)
  1694. at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763)
  1695. at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:708)
  1696. at com.zjugis.module.system.service.oauth2.OAuth2TokenServiceImpl$$EnhancerBySpringCGLIB$$aacfdcae.createAccessToken(<generated>)
  1697. at com.zjugis.module.system.service.oauth2.OAuth2GrantServiceImpl.grantPassword(OAuth2GrantServiceImpl.java:79)
  1698. at com.zjugis.module.system.controller.admin.oauth2.OAuth2OpenController.postAccessToken(OAuth2OpenController.java:130)
  1699. at com.zjugis.module.system.controller.admin.oauth2.OAuth2OpenController$$FastClassBySpringCGLIB$$188afcf5.invoke(<generated>)
  1700. at org.springframework.cglib.proxy.MethodProxy.invoke(MethodProxy.java:218)
  1701. at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.invokeJoinpoint(CglibAopProxy.java:793)
  1702. at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:163)
  1703. at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763)
  1704. at org.springframework.validation.beanvalidation.MethodValidationInterceptor.invoke(MethodValidationInterceptor.java:123)
  1705. at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186)
  1706. at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763)
  1707. at org.springframework.aop.aspectj.MethodInvocationProceedingJoinPoint.proceed(MethodInvocationProceedingJoinPoint.java:89)
  1708. at com.zjugis.framework.operatelog.core.aop.OperateLogAspect.around0(OperateLogAspect.java:101)
  1709. at com.zjugis.framework.operatelog.core.aop.OperateLogAspect.around(OperateLogAspect.java:78)
  1710. at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
  1711. at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62)
  1712. at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
  1713. at java.lang.reflect.Method.invoke(Method.java:498)
  1714. at org.springframework.aop.as', 'org.springframework.beans.factory.support.DefaultListableBeanFactory', 'DefaultListableBeanFactory.java', 'getBean', 351, 0, NULL, NULL, NULL, '2024-10-23 11:14:44', NULL, '2024-10-23 11:14:44', NULL, 0);
  1715. INSERT INTO ruian_oa.infra_api_error_log VALUES (2, NULL, '1', 2, 'system-server', 'GET', '/admin-api/system/notify-message/get-unread-count', '{"query":{},"body":""}', '0:0:0:0:0:0:0:1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/129.0.0.0 Safari/537.36', '2024-10-23 11:18:45', 'org.springframework.jdbc.BadSqlGrammarException', 'BadSqlGrammarException:
  1716. ### Error querying database. Cause: org.postgresql.util.PSQLException: ERROR: 操作符不是唯一的: varcharbyte = boolean
  1717. 建议:无法选择最佳候选操作符. 您也许需要增加显式的类型转换.
  1718. 位置:97
  1719. ### The error may exist in com/zjugis/module/system/dal/mysql/notify/NotifyMessageMapper.java (best guess)
  1720. ### The error may involve defaultParameterMap
  1721. ### The error occurred while setting parameters
  1722. ### SQL: SELECT COUNT( * ) AS total FROM system_notify_message WHERE deleted=0 AND (read_status = ? AND user_id = ? AND user_type = ?)
  1723. ### Cause: org.postgresql.util.PSQLException: ERROR: 操作符不是唯一的: varcharbyte = boolean
  1724. 建议:无法选择最佳候选操作符. 您也许需要增加显式的类型转换.
  1725. 位置:97
  1726. ; bad SQL grammar []; nested exception is org.postgresql.util.PSQLException: ERROR: 操作符不是唯一的: varcharbyte = boolean
  1727. 建议:无法选择最佳候选操作符. 您也许需要增加显式的类型转换.
  1728. 位置:97', 'PSQLException: ERROR: 操作符不是唯一的: varcharbyte = boolean
  1729. 建议:无法选择最佳候选操作符. 您也许需要增加显式的类型转换.
  1730. 位置:97', 'org.springframework.jdbc.BadSqlGrammarException:
  1731. ### Error querying database. Cause: org.postgresql.util.PSQLException: ERROR: 操作符不是唯一的: varcharbyte = boolean
  1732. 建议:无法选择最佳候选操作符. 您也许需要增加显式的类型转换.
  1733. 位置:97
  1734. ### The error may exist in com/zjugis/module/system/dal/mysql/notify/NotifyMessageMapper.java (best guess)
  1735. ### The error may involve defaultParameterMap
  1736. ### The error occurred while setting parameters
  1737. ### SQL: SELECT COUNT( * ) AS total FROM system_notify_message WHERE deleted=0 AND (read_status = ? AND user_id = ? AND user_type = ?)
  1738. ### Cause: org.postgresql.util.PSQLException: ERROR: 操作符不是唯一的: varcharbyte = boolean
  1739. 建议:无法选择最佳候选操作符. 您也许需要增加显式的类型转换.
  1740. 位置:97
  1741. ; bad SQL grammar []; nested exception is org.postgresql.util.PSQLException: ERROR: 操作符不是唯一的: varcharbyte = boolean
  1742. 建议:无法选择最佳候选操作符. 您也许需要增加显式的类型转换.
  1743. 位置:97
  1744. at org.springframework.jdbc.support.SQLStateSQLExceptionTranslator.doTranslate(SQLStateSQLExceptionTranslator.java:101)
  1745. at org.springframework.jdbc.support.AbstractFallbackSQLExceptionTranslator.translate(AbstractFallbackSQLExceptionTranslator.java:70)
  1746. at org.springframework.jdbc.support.AbstractFallbackSQLExceptionTranslator.translate(AbstractFallbackSQLExceptionTranslator.java:79)
  1747. at org.springframework.jdbc.support.AbstractFallbackSQLExceptionTranslator.translate(AbstractFallbackSQLExceptionTranslator.java:79)
  1748. at org.mybatis.spring.MyBatisExceptionTranslator.translateExceptionIfPossible(MyBatisExceptionTranslator.java:92)
  1749. at org.mybatis.spring.SqlSessionTemplate$SqlSessionInterceptor.invoke(SqlSessionTemplate.java:439)
  1750. at com.sun.proxy.$Proxy201.selectOne(Unknown Source)
  1751. at org.mybatis.spring.SqlSessionTemplate.selectOne(SqlSessionTemplate.java:160)
  1752. at com.baomidou.mybatisplus.core.override.MybatisMapperMethod.execute(MybatisMapperMethod.java:89)
  1753. at com.baomidou.mybatisplus.core.override.MybatisMapperProxy$PlainMethodInvoker.invoke(MybatisMapperProxy.java:148)
  1754. at com.baomidou.mybatisplus.core.override.MybatisMapperProxy.invoke(MybatisMapperProxy.java:89)
  1755. at com.sun.proxy.$Proxy257.selectCount(Unknown Source)
  1756. at com.zjugis.module.system.dal.mysql.notify.NotifyMessageMapper.selectUnreadCountByUserIdAndUserType(NotifyMessageMapper.java:64)
  1757. at java.lang.invoke.MethodHandle.invokeWithArguments(MethodHandle.java:627)
  1758. at com.baomidou.mybatisplus.core.override.MybatisMapperProxy$DefaultMethodInvoker.invoke(MybatisMapperProxy.java:162)
  1759. at com.baomidou.mybatisplus.core.override.MybatisMapperProxy.invoke(MybatisMapperProxy.java:89)
  1760. at com.sun.proxy.$Proxy257.selectUnreadCountByUserIdAndUserType(Unknown Source)
  1761. at com.zjugis.module.system.service.notify.NotifyMessageServiceImpl.getUnreadNotifyMessageCount(NotifyMessageServiceImpl.java:62)
  1762. at com.zjugis.module.system.service.notify.NotifyMessageServiceImpl$$FastClassBySpringCGLIB$$f65b8551.invoke(<generated>)
  1763. at org.springframework.cglib.proxy.MethodProxy.invoke(MethodProxy.java:218)
  1764. at org.springframework.aop.framework.CglibAopProxy$CglibMet', 'org.springframework.jdbc.support.SQLStateSQLExceptionTranslator', 'SQLStateSQLExceptionTranslator.java', 'doTranslate', 101, 0, NULL, NULL, '1', '2024-10-23 11:18:45', '1', '2024-10-23 11:18:45', NULL, 0);
  1765. INSERT INTO ruian_oa.infra_api_error_log VALUES (3, NULL, '1', 2, 'system-server', 'GET', '/admin-api/system/user/page', '{"query":{"pageNo":"1","deptId":"100","pageSize":"10","status":"0"},"body":""}', '0:0:0:0:0:0:0:1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/129.0.0.0 Safari/537.36', '2024-10-23 11:18:57', 'org.springframework.jdbc.BadSqlGrammarException', 'BadSqlGrammarException:
  1766. ### Error querying database. Cause: org.postgresql.util.PSQLException: ERROR: 关系 "system_dept" 不存在
  1767. 位置:130
  1768. ### The error may exist in com/zjugis/module/system/dal/mysql/dept/DeptMapper.java (best guess)
  1769. ### The error may involve defaultParameterMap
  1770. ### The error occurred while setting parameters
  1771. ### SQL: SELECT id,name,parent_id,sort,leader_user_id,phone,email,status,code,create_time,update_time,creator,updater,deleted FROM system_dept WHERE deleted=0 AND (parent_id IN (?))
  1772. ### Cause: org.postgresql.util.PSQLException: ERROR: 关系 "system_dept" 不存在
  1773. 位置:130
  1774. ; bad SQL grammar []; nested exception is org.postgresql.util.PSQLException: ERROR: 关系 "system_dept" 不存在
  1775. 位置:130', 'PSQLException: ERROR: 关系 "system_dept" 不存在
  1776. 位置:130', 'org.springframework.jdbc.BadSqlGrammarException:
  1777. ### Error querying database. Cause: org.postgresql.util.PSQLException: ERROR: 关系 "system_dept" 不存在
  1778. 位置:130
  1779. ### The error may exist in com/zjugis/module/system/dal/mysql/dept/DeptMapper.java (best guess)
  1780. ### The error may involve defaultParameterMap
  1781. ### The error occurred while setting parameters
  1782. ### SQL: SELECT id,name,parent_id,sort,leader_user_id,phone,email,status,code,create_time,update_time,creator,updater,deleted FROM system_dept WHERE deleted=0 AND (parent_id IN (?))
  1783. ### Cause: org.postgresql.util.PSQLException: ERROR: 关系 "system_dept" 不存在
  1784. 位置:130
  1785. ; bad SQL grammar []; nested exception is org.postgresql.util.PSQLException: ERROR: 关系 "system_dept" 不存在
  1786. 位置:130
  1787. at org.springframework.jdbc.support.SQLErrorCodeSQLExceptionTranslator.doTranslate(SQLErrorCodeSQLExceptionTranslator.java:239)
  1788. at org.springframework.jdbc.support.AbstractFallbackSQLExceptionTranslator.translate(AbstractFallbackSQLExceptionTranslator.java:70)
  1789. at org.mybatis.spring.MyBatisExceptionTranslator.translateExceptionIfPossible(MyBatisExceptionTranslator.java:92)
  1790. at org.mybatis.spring.SqlSessionTemplate$SqlSessionInterceptor.invoke(SqlSessionTemplate.java:439)
  1791. at com.sun.proxy.$Proxy201.selectList(Unknown Source)
  1792. at org.mybatis.spring.SqlSessionTemplate.selectList(SqlSessionTemplate.java:224)
  1793. at com.baomidou.mybatisplus.core.override.MybatisMapperMethod.executeForMany(MybatisMapperMethod.java:166)
  1794. at com.baomidou.mybatisplus.core.override.MybatisMapperMethod.execute(MybatisMapperMethod.java:77)
  1795. at com.baomidou.mybatisplus.core.override.MybatisMapperProxy$PlainMethodInvoker.invoke(MybatisMapperProxy.java:148)
  1796. at com.baomidou.mybatisplus.core.override.MybatisMapperProxy.invoke(MybatisMapperProxy.java:89)
  1797. at com.sun.proxy.$Proxy210.selectList(Unknown Source)
  1798. at com.zjugis.framework.mybatis.core.mapper.BaseMapperX.selectList(BaseMapperX.java:83)
  1799. at java.lang.invoke.MethodHandle.invokeWithArguments(MethodHandle.java:627)
  1800. at com.baomidou.mybatisplus.core.override.MybatisMapperProxy$DefaultMethodInvoker.invoke(MybatisMapperProxy.java:162)
  1801. at com.baomidou.mybatisplus.core.override.MybatisMapperProxy.invoke(MybatisMapperProxy.java:89)
  1802. at com.sun.proxy.$Proxy210.selectList(Unknown Source)
  1803. at com.zjugis.module.system.dal.mysql.dept.DeptMapper.selectListByParentId(DeptMapper.java:31)
  1804. at java.lang.invoke.MethodHandle.invokeWithArguments(MethodHandle.java:627)
  1805. at com.baomidou.mybatisplus.core.override.MybatisMapperProxy$DefaultMethodInvoker.invoke(MybatisMapperProxy.java:162)
  1806. at com.baomidou.mybatisplus.core.override.MybatisMapperProxy.invoke(MybatisMapperProxy.java:89)
  1807. at com.sun.proxy.$Proxy210.selectListByParentId(Unknown Source)
  1808. at com.zjugis.module.system.service.dept.DeptServiceImpl.getChildDeptList(DeptServiceImpl.java:196)
  1809. at com.zjugis.module.system.service.dept.DeptServiceImpl$$FastClassBySpringCGLIB$$49188932.invoke(<generated>)
  1810. at org.springframework.cglib.p', 'org.springframework.jdbc.support.SQLErrorCodeSQLExceptionTranslator', 'SQLErrorCodeSQLExceptionTranslator.java', 'doTranslate', 239, 0, NULL, NULL, '1', '2024-10-23 11:18:57', '1', '2024-10-23 11:18:57', NULL, 0);
  1811. INSERT INTO ruian_oa.infra_api_error_log VALUES (4, NULL, '1', 2, 'system-server', 'GET', '/rpc-api/system/permission/has-any-permissions', '{"query":{"permissions":"system:role:query","userId":"1"},"body":""}', '2.0.0.1', 'Java/1.8.0_91', '2024-10-23 11:19:27', 'org.springframework.jdbc.BadSqlGrammarException', 'BadSqlGrammarException:
  1812. ### Error querying database. Cause: org.postgresql.util.PSQLException: ERROR: 关系 "system_menu" 不存在
  1813. 位置:180
  1814. ### The error may exist in com/zjugis/module/system/dal/mysql/permission/MenuMapper.java (best guess)
  1815. ### The error may involve defaultParameterMap
  1816. ### The error occurred while setting parameters
  1817. ### SQL: SELECT id,name,permission,type,sort,parent_id,path,icon,component,component_name,status,visible,keep_alive,always_show,create_time,update_time,creator,updater,deleted FROM system_menu WHERE deleted=0 AND (permission = ?)
  1818. ### Cause: org.postgresql.util.PSQLException: ERROR: 关系 "system_menu" 不存在
  1819. 位置:180
  1820. ; bad SQL grammar []; nested exception is org.postgresql.util.PSQLException: ERROR: 关系 "system_menu" 不存在
  1821. 位置:180', 'PSQLException: ERROR: 关系 "system_menu" 不存在
  1822. 位置:180', 'org.springframework.jdbc.BadSqlGrammarException:
  1823. ### Error querying database. Cause: org.postgresql.util.PSQLException: ERROR: 关系 "system_menu" 不存在
  1824. 位置:180
  1825. ### The error may exist in com/zjugis/module/system/dal/mysql/permission/MenuMapper.java (best guess)
  1826. ### The error may involve defaultParameterMap
  1827. ### The error occurred while setting parameters
  1828. ### SQL: SELECT id,name,permission,type,sort,parent_id,path,icon,component,component_name,status,visible,keep_alive,always_show,create_time,update_time,creator,updater,deleted FROM system_menu WHERE deleted=0 AND (permission = ?)
  1829. ### Cause: org.postgresql.util.PSQLException: ERROR: 关系 "system_menu" 不存在
  1830. 位置:180
  1831. ; bad SQL grammar []; nested exception is org.postgresql.util.PSQLException: ERROR: 关系 "system_menu" 不存在
  1832. 位置:180
  1833. at org.springframework.jdbc.support.SQLErrorCodeSQLExceptionTranslator.doTranslate(SQLErrorCodeSQLExceptionTranslator.java:239)
  1834. at org.springframework.jdbc.support.AbstractFallbackSQLExceptionTranslator.translate(AbstractFallbackSQLExceptionTranslator.java:70)
  1835. at org.mybatis.spring.MyBatisExceptionTranslator.translateExceptionIfPossible(MyBatisExceptionTranslator.java:92)
  1836. at org.mybatis.spring.SqlSessionTemplate$SqlSessionInterceptor.invoke(SqlSessionTemplate.java:439)
  1837. at com.sun.proxy.$Proxy201.selectList(Unknown Source)
  1838. at org.mybatis.spring.SqlSessionTemplate.selectList(SqlSessionTemplate.java:224)
  1839. at com.baomidou.mybatisplus.core.override.MybatisMapperMethod.executeForMany(MybatisMapperMethod.java:166)
  1840. at com.baomidou.mybatisplus.core.override.MybatisMapperMethod.execute(MybatisMapperMethod.java:77)
  1841. at com.baomidou.mybatisplus.core.override.MybatisMapperProxy$PlainMethodInvoker.invoke(MybatisMapperProxy.java:148)
  1842. at com.baomidou.mybatisplus.core.override.MybatisMapperProxy.invoke(MybatisMapperProxy.java:89)
  1843. at com.sun.proxy.$Proxy229.selectList(Unknown Source)
  1844. at com.zjugis.framework.mybatis.core.mapper.BaseMapperX.selectList(BaseMapperX.java:69)
  1845. at java.lang.invoke.MethodHandle.invokeWithArguments(MethodHandle.java:627)
  1846. at com.baomidou.mybatisplus.core.override.MybatisMapperProxy$DefaultMethodInvoker.invoke(MybatisMapperProxy.java:162)
  1847. at com.baomidou.mybatisplus.core.override.MybatisMapperProxy.invoke(MybatisMapperProxy.java:89)
  1848. at com.sun.proxy.$Proxy229.selectList(Unknown Source)
  1849. at com.zjugis.module.system.dal.mysql.permission.MenuMapper.selectListByPermission(MenuMapper.java:29)
  1850. at java.lang.invoke.MethodHandle.invokeWithArguments(MethodHandle.java:627)
  1851. at com.baomidou.mybatisplus.core.override.MybatisMapperProxy$DefaultMethodInvoker.invoke(MybatisMapperProxy.java:162)
  1852. at com.baomidou.mybatisplus.core.override.MybatisMapperProxy.invoke(MybatisMapperProxy.java:89)
  1853. at com.sun.proxy.$Proxy229.selectListByPermission(Unknown Source)
  1854. at com.zjugis.module.system.service.permission.MenuServiceImpl.getMenuIdListByPermissionFromCache(MenuServiceImpl.java:119)
  1855. at com.zjugis.module.system.service.permission.MenuServ', 'org.springframework.jdbc.support.SQLErrorCodeSQLExceptionTranslator', 'SQLErrorCodeSQLExceptionTranslator.java', 'doTranslate', 239, 0, NULL, NULL, '1', '2024-10-23 11:19:27', '1', '2024-10-23 11:19:27', NULL, 0);
  1856. INSERT INTO ruian_oa.infra_api_error_log VALUES (5, NULL, '1', 2, 'system-server', 'GET', '/admin-api/system/role/page', '{"query":{"code":"","pageNo":"1","name":"","pageSize":"10"},"body":""}', '0:0:0:0:0:0:0:1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/129.0.0.0 Safari/537.36', '2024-10-23 11:19:27', 'com.google.common.util.concurrent.UncheckedExecutionException', 'UncheckedExecutionException: ServiceException(super=com.zjugis.framework.common.exception.ServiceException: 系统异常, code=500, message=系统异常)', 'ServiceException: 系统异常', 'com.google.common.util.concurrent.UncheckedExecutionException: ServiceException(super=com.zjugis.framework.common.exception.ServiceException: 系统异常, code=500, message=系统异常)
  1857. at com.google.common.cache.LocalCache$Segment.get(LocalCache.java:2085)
  1858. at com.google.common.cache.LocalCache.get(LocalCache.java:4011)
  1859. at com.google.common.cache.LocalCache.getOrLoad(LocalCache.java:4034)
  1860. at com.google.common.cache.LocalCache$LocalLoadingCache.get(LocalCache.java:5010)
  1861. at com.zjugis.framework.security.core.service.SecurityFrameworkServiceImpl.hasAnyPermissions(SecurityFrameworkServiceImpl.java:71)
  1862. at com.zjugis.framework.security.core.service.SecurityFrameworkServiceImpl.hasPermission(SecurityFrameworkServiceImpl.java:65)
  1863. at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
  1864. at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62)
  1865. at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
  1866. at java.lang.reflect.Method.invoke(Method.java:498)
  1867. at org.springframework.expression.spel.support.ReflectiveMethodExecutor.execute(ReflectiveMethodExecutor.java:139)
  1868. at org.springframework.expression.spel.ast.MethodReference.getValueInternal(MethodReference.java:139)
  1869. at org.springframework.expression.spel.ast.MethodReference.access$000(MethodReference.java:55)
  1870. at org.springframework.expression.spel.ast.MethodReference$MethodValueRef.getValue(MethodReference.java:383)
  1871. at org.springframework.expression.spel.ast.CompoundExpression.getValueInternal(CompoundExpression.java:93)
  1872. at org.springframework.expression.spel.ast.SpelNodeImpl.getTypedValue(SpelNodeImpl.java:119)
  1873. at org.springframework.expression.spel.standard.SpelExpression.getValue(SpelExpression.java:309)
  1874. at org.springframework.security.access.expression.ExpressionUtils.evaluateAsBoolean(ExpressionUtils.java:30)
  1875. at org.springframework.security.access.expression.method.ExpressionBasedPreInvocationAdvice.before(ExpressionBasedPreInvocationAdvice.java:51)
  1876. at org.springframework.security.access.prepost.PreInvocationAuthorizationAdviceVoter.vote(PreInvocationAuthorizationAdviceVoter.java:71)
  1877. at org.springframework.security.access.prepost.PreInvocationAuthorizationAdviceVoter.vote(PreInvocationAuthorizationAdviceVoter.java:42)
  1878. at org.springframework.security.access.vote.AffirmativeBased.decide(AffirmativeBased.java:60)
  1879. at org.springframework.security.access.intercept.AbstractSecurityInterceptor.attemptAuthorization(AbstractSecurityInterceptor.java:239)
  1880. at org.springframework.security.access.intercept.AbstractSecurityInterceptor.beforeInvocation(AbstractSecurityInterceptor.java:208)
  1881. at org.springframework.security.access.intercept.aopalliance.MethodSecurityInterceptor.invoke(MethodSecurityInterceptor.java:58)
  1882. at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186)
  1883. at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java', 'com.google.common.cache.LocalCache$Segment', 'LocalCache.java', 'get', 2085, 0, NULL, NULL, '1', '2024-10-23 11:19:27', '1', '2024-10-23 11:19:27', NULL, 0);
  1884. INSERT INTO ruian_oa.infra_api_error_log VALUES (6, NULL, '1', 2, 'system-server', 'GET', '/admin-api/system/dept/list-all-simple', '{"query":{},"body":""}', '0:0:0:0:0:0:0:1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/129.0.0.0 Safari/537.36', '2024-10-23 11:19:48', 'org.springframework.jdbc.BadSqlGrammarException', 'BadSqlGrammarException:
  1885. ### Error querying database. Cause: org.postgresql.util.PSQLException: ERROR: 关系 "system_dept" 不存在
  1886. 位置:130
  1887. ### The error may exist in com/zjugis/module/system/dal/mysql/dept/DeptMapper.java (best guess)
  1888. ### The error may involve defaultParameterMap
  1889. ### The error occurred while setting parameters
  1890. ### SQL: SELECT id,name,parent_id,sort,leader_user_id,phone,email,status,code,create_time,update_time,creator,updater,deleted FROM system_dept WHERE deleted=0 AND (status = ?)
  1891. ### Cause: org.postgresql.util.PSQLException: ERROR: 关系 "system_dept" 不存在
  1892. 位置:130
  1893. ; bad SQL grammar []; nested exception is org.postgresql.util.PSQLException: ERROR: 关系 "system_dept" 不存在
  1894. 位置:130', 'PSQLException: ERROR: 关系 "system_dept" 不存在
  1895. 位置:130', 'org.springframework.jdbc.BadSqlGrammarException:
  1896. ### Error querying database. Cause: org.postgresql.util.PSQLException: ERROR: 关系 "system_dept" 不存在
  1897. 位置:130
  1898. ### The error may exist in com/zjugis/module/system/dal/mysql/dept/DeptMapper.java (best guess)
  1899. ### The error may involve defaultParameterMap
  1900. ### The error occurred while setting parameters
  1901. ### SQL: SELECT id,name,parent_id,sort,leader_user_id,phone,email,status,code,create_time,update_time,creator,updater,deleted FROM system_dept WHERE deleted=0 AND (status = ?)
  1902. ### Cause: org.postgresql.util.PSQLException: ERROR: 关系 "system_dept" 不存在
  1903. 位置:130
  1904. ; bad SQL grammar []; nested exception is org.postgresql.util.PSQLException: ERROR: 关系 "system_dept" 不存在
  1905. 位置:130
  1906. at org.springframework.jdbc.support.SQLErrorCodeSQLExceptionTranslator.doTranslate(SQLErrorCodeSQLExceptionTranslator.java:239)
  1907. at org.springframework.jdbc.support.AbstractFallbackSQLExceptionTranslator.translate(AbstractFallbackSQLExceptionTranslator.java:70)
  1908. at org.mybatis.spring.MyBatisExceptionTranslator.translateExceptionIfPossible(MyBatisExceptionTranslator.java:92)
  1909. at org.mybatis.spring.SqlSessionTemplate$SqlSessionInterceptor.invoke(SqlSessionTemplate.java:439)
  1910. at com.sun.proxy.$Proxy201.selectList(Unknown Source)
  1911. at org.mybatis.spring.SqlSessionTemplate.selectList(SqlSessionTemplate.java:224)
  1912. at com.baomidou.mybatisplus.core.override.MybatisMapperMethod.executeForMany(MybatisMapperMethod.java:166)
  1913. at com.baomidou.mybatisplus.core.override.MybatisMapperMethod.execute(MybatisMapperMethod.java:77)
  1914. at com.baomidou.mybatisplus.core.override.MybatisMapperProxy$PlainMethodInvoker.invoke(MybatisMapperProxy.java:148)
  1915. at com.baomidou.mybatisplus.core.override.MybatisMapperProxy.invoke(MybatisMapperProxy.java:89)
  1916. at com.sun.proxy.$Proxy210.selectList(Unknown Source)
  1917. at com.zjugis.module.system.dal.mysql.dept.DeptMapper.selectList(DeptMapper.java:16)
  1918. at java.lang.invoke.MethodHandle.invokeWithArguments(MethodHandle.java:627)
  1919. at com.baomidou.mybatisplus.core.override.MybatisMapperProxy$DefaultMethodInvoker.invoke(MybatisMapperProxy.java:162)
  1920. at com.baomidou.mybatisplus.core.override.MybatisMapperProxy.invoke(MybatisMapperProxy.java:89)
  1921. at com.sun.proxy.$Proxy210.selectList(Unknown Source)
  1922. at com.zjugis.module.system.service.dept.DeptServiceImpl.getDeptList(DeptServiceImpl.java:186)
  1923. at com.zjugis.module.system.service.dept.DeptServiceImpl$$FastClassBySpringCGLIB$$49188932.invoke(<generated>)
  1924. at org.springframework.cglib.proxy.MethodProxy.invoke(MethodProxy.java:218)
  1925. at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.invokeJoinpoint(CglibAopProxy.java:793)
  1926. at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:163)
  1927. at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763)
  1928. at org.springframework.validation.beanvalidation.MethodValidationInterceptor.invoke(MethodVa', 'org.springframework.jdbc.support.SQLErrorCodeSQLExceptionTranslator', 'SQLErrorCodeSQLExceptionTranslator.java', 'doTranslate', 239, 0, NULL, NULL, '1', '2024-10-23 11:19:48', '1', '2024-10-23 11:19:48', NULL, 0);
  1929. INSERT INTO ruian_oa.infra_api_error_log VALUES (7, NULL, '1', 2, 'system-server', 'GET', '/admin-api/system/user/page', '{"query":{"pageNo":"1","pageSize":"10","status":"0"},"body":""}', '0:0:0:0:0:0:0:1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/129.0.0.0 Safari/537.36', '2024-10-23 11:19:48', 'org.springframework.jdbc.BadSqlGrammarException', 'BadSqlGrammarException:
  1930. ### Error querying database. Cause: org.postgresql.util.PSQLException: ERROR: 关系 "system_users" 不存在
  1931. 位置:31
  1932. ### The error may exist in com/zjugis/module/system/dal/mysql/user/AdminUserMapper.java (best guess)
  1933. ### The error may involve defaultParameterMap
  1934. ### The error occurred while setting parameters
  1935. ### SQL: SELECT COUNT(*) AS total FROM system_users WHERE deleted = 0 AND (status = ?)
  1936. ### Cause: org.postgresql.util.PSQLException: ERROR: 关系 "system_users" 不存在
  1937. 位置:31
  1938. ; bad SQL grammar []; nested exception is org.postgresql.util.PSQLException: ERROR: 关系 "system_users" 不存在
  1939. 位置:31', 'PSQLException: ERROR: 关系 "system_users" 不存在
  1940. 位置:31', 'org.springframework.jdbc.BadSqlGrammarException:
  1941. ### Error querying database. Cause: org.postgresql.util.PSQLException: ERROR: 关系 "system_users" 不存在
  1942. 位置:31
  1943. ### The error may exist in com/zjugis/module/system/dal/mysql/user/AdminUserMapper.java (best guess)
  1944. ### The error may involve defaultParameterMap
  1945. ### The error occurred while setting parameters
  1946. ### SQL: SELECT COUNT(*) AS total FROM system_users WHERE deleted = 0 AND (status = ?)
  1947. ### Cause: org.postgresql.util.PSQLException: ERROR: 关系 "system_users" 不存在
  1948. 位置:31
  1949. ; bad SQL grammar []; nested exception is org.postgresql.util.PSQLException: ERROR: 关系 "system_users" 不存在
  1950. 位置:31
  1951. at org.springframework.jdbc.support.SQLErrorCodeSQLExceptionTranslator.doTranslate(SQLErrorCodeSQLExceptionTranslator.java:239)
  1952. at org.springframework.jdbc.support.AbstractFallbackSQLExceptionTranslator.translate(AbstractFallbackSQLExceptionTranslator.java:70)
  1953. at org.mybatis.spring.MyBatisExceptionTranslator.translateExceptionIfPossible(MyBatisExceptionTranslator.java:92)
  1954. at org.mybatis.spring.SqlSessionTemplate$SqlSessionInterceptor.invoke(SqlSessionTemplate.java:439)
  1955. at com.sun.proxy.$Proxy201.selectList(Unknown Source)
  1956. at org.mybatis.spring.SqlSessionTemplate.selectList(SqlSessionTemplate.java:224)
  1957. at com.baomidou.mybatisplus.core.override.MybatisMapperMethod.executeForMany(MybatisMapperMethod.java:166)
  1958. at com.baomidou.mybatisplus.core.override.MybatisMapperMethod.execute(MybatisMapperMethod.java:77)
  1959. at com.baomidou.mybatisplus.core.override.MybatisMapperProxy$PlainMethodInvoker.invoke(MybatisMapperProxy.java:148)
  1960. at com.baomidou.mybatisplus.core.override.MybatisMapperProxy.invoke(MybatisMapperProxy.java:89)
  1961. at com.sun.proxy.$Proxy212.selectList(Unknown Source)
  1962. at com.baomidou.mybatisplus.core.mapper.BaseMapper.selectPage(BaseMapper.java:272)
  1963. at java.lang.invoke.MethodHandle.invokeWithArguments(MethodHandle.java:627)
  1964. at com.baomidou.mybatisplus.core.override.MybatisMapperProxy$DefaultMethodInvoker.invoke(MybatisMapperProxy.java:162)
  1965. at com.baomidou.mybatisplus.core.override.MybatisMapperProxy.invoke(MybatisMapperProxy.java:89)
  1966. at com.sun.proxy.$Proxy212.selectPage(Unknown Source)
  1967. at com.zjugis.framework.mybatis.core.mapper.BaseMapperX.selectPage(BaseMapperX.java:27)
  1968. at java.lang.invoke.MethodHandle.invokeWithArguments(MethodHandle.java:627)
  1969. at com.baomidou.mybatisplus.core.override.MybatisMapperProxy$DefaultMethodInvoker.invoke(MybatisMapperProxy.java:162)
  1970. at com.baomidou.mybatisplus.core.override.MybatisMapperProxy.invoke(MybatisMapperProxy.java:89)
  1971. at com.sun.proxy.$Proxy212.selectPage(Unknown Source)
  1972. at com.zjugis.module.system.dal.mysql.user.AdminUserMapper.selectPage(AdminUserMapper.java:52)
  1973. at java.lang.invoke.MethodHandle.invokeWithArguments(MethodHandle.java:627)
  1974. at com.baomidou.mybatisplus.core.override.MybatisMapperProxy$DefaultMethodInvoker.invoke(MybatisMapperProxy.java:162)
  1975. at com.baomidou.mybatisplus.core.override.MybatisMapperProxy.invoke(MybatisMa', 'org.springframework.jdbc.support.SQLErrorCodeSQLExceptionTranslator', 'SQLErrorCodeSQLExceptionTranslator.java', 'doTranslate', 239, 0, NULL, NULL, '1', '2024-10-23 11:19:48', '1', '2024-10-23 11:19:48', NULL, 0);
  1976. INSERT INTO ruian_oa.infra_api_error_log VALUES (8, NULL, '1', 2, 'system-server', 'GET', '/admin-api/system/dict-type/page', '{"query":{"pageNo":"1","name":"","pageSize":"10","type":""},"body":""}', '0:0:0:0:0:0:0:1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/129.0.0.0 Safari/537.36', '2024-10-23 11:19:56', 'com.google.common.util.concurrent.UncheckedExecutionException', 'UncheckedExecutionException: ServiceException(super=com.zjugis.framework.common.exception.ServiceException: 系统异常, code=500, message=系统异常)', 'ServiceException: 系统异常', 'com.google.common.util.concurrent.UncheckedExecutionException: ServiceException(super=com.zjugis.framework.common.exception.ServiceException: 系统异常, code=500, message=系统异常)
  1977. at com.google.common.cache.LocalCache$Segment.get(LocalCache.java:2085)
  1978. at com.google.common.cache.LocalCache.get(LocalCache.java:4011)
  1979. at com.google.common.cache.LocalCache.getOrLoad(LocalCache.java:4034)
  1980. at com.google.common.cache.LocalCache$LocalLoadingCache.get(LocalCache.java:5010)
  1981. at com.zjugis.framework.security.core.service.SecurityFrameworkServiceImpl.hasAnyPermissions(SecurityFrameworkServiceImpl.java:71)
  1982. at com.zjugis.framework.security.core.service.SecurityFrameworkServiceImpl.hasPermission(SecurityFrameworkServiceImpl.java:65)
  1983. at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
  1984. at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62)
  1985. at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
  1986. at java.lang.reflect.Method.invoke(Method.java:498)
  1987. at org.springframework.expression.spel.support.ReflectiveMethodExecutor.execute(ReflectiveMethodExecutor.java:139)
  1988. at org.springframework.expression.spel.ast.MethodReference.getValueInternal(MethodReference.java:139)
  1989. at org.springframework.expression.spel.ast.MethodReference.access$000(MethodReference.java:55)
  1990. at org.springframework.expression.spel.ast.MethodReference$MethodValueRef.getValue(MethodReference.java:383)
  1991. at org.springframework.expression.spel.ast.CompoundExpression.getValueInternal(CompoundExpression.java:93)
  1992. at org.springframework.expression.spel.ast.SpelNodeImpl.getTypedValue(SpelNodeImpl.java:119)
  1993. at org.springframework.expression.spel.standard.SpelExpression.getValue(SpelExpression.java:309)
  1994. at org.springframework.security.access.expression.ExpressionUtils.evaluateAsBoolean(ExpressionUtils.java:30)
  1995. at org.springframework.security.access.expression.method.ExpressionBasedPreInvocationAdvice.before(ExpressionBasedPreInvocationAdvice.java:51)
  1996. at org.springframework.security.access.prepost.PreInvocationAuthorizationAdviceVoter.vote(PreInvocationAuthorizationAdviceVoter.java:71)
  1997. at org.springframework.security.access.prepost.PreInvocationAuthorizationAdviceVoter.vote(PreInvocationAuthorizationAdviceVoter.java:42)
  1998. at org.springframework.security.access.vote.AffirmativeBased.decide(AffirmativeBased.java:60)
  1999. at org.springframework.security.access.intercept.AbstractSecurityInterceptor.attemptAuthorization(AbstractSecurityInterceptor.java:239)
  2000. at org.springframework.security.access.intercept.AbstractSecurityInterceptor.beforeInvocation(AbstractSecurityInterceptor.java:208)
  2001. at org.springframework.security.access.intercept.aopalliance.MethodSecurityInterceptor.invoke(MethodSecurityInterceptor.java:58)
  2002. at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186)
  2003. at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java', 'com.google.common.cache.LocalCache$Segment', 'LocalCache.java', 'get', 2085, 0, NULL, NULL, '1', '2024-10-23 11:19:56', '1', '2024-10-23 11:19:56', NULL, 0);
  2004. INSERT INTO ruian_oa.infra_api_error_log VALUES (9, NULL, '1', 2, 'system-server', 'GET', '/admin-api/system/notify-message/get-unread-count', '{"query":{},"body":""}', '0:0:0:0:0:0:0:1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/129.0.0.0 Safari/537.36', '2024-10-23 11:33:21', 'org.springframework.jdbc.BadSqlGrammarException', 'BadSqlGrammarException:
  2005. ### Error querying database. Cause: org.postgresql.util.PSQLException: ERROR: 操作符不是唯一的: varcharbyte = boolean
  2006. 建议:无法选择最佳候选操作符. 您也许需要增加显式的类型转换.
  2007. 位置:97
  2008. ### The error may exist in com/zjugis/module/system/dal/mysql/notify/NotifyMessageMapper.java (best guess)
  2009. ### The error may involve defaultParameterMap
  2010. ### The error occurred while setting parameters
  2011. ### SQL: SELECT COUNT( * ) AS total FROM system_notify_message WHERE deleted=0 AND (read_status = ? AND user_id = ? AND user_type = ?)
  2012. ### Cause: org.postgresql.util.PSQLException: ERROR: 操作符不是唯一的: varcharbyte = boolean
  2013. 建议:无法选择最佳候选操作符. 您也许需要增加显式的类型转换.
  2014. 位置:97
  2015. ; bad SQL grammar []; nested exception is org.postgresql.util.PSQLException: ERROR: 操作符不是唯一的: varcharbyte = boolean
  2016. 建议:无法选择最佳候选操作符. 您也许需要增加显式的类型转换.
  2017. 位置:97', 'PSQLException: ERROR: 操作符不是唯一的: varcharbyte = boolean
  2018. 建议:无法选择最佳候选操作符. 您也许需要增加显式的类型转换.
  2019. 位置:97', 'org.springframework.jdbc.BadSqlGrammarException:
  2020. ### Error querying database. Cause: org.postgresql.util.PSQLException: ERROR: 操作符不是唯一的: varcharbyte = boolean
  2021. 建议:无法选择最佳候选操作符. 您也许需要增加显式的类型转换.
  2022. 位置:97
  2023. ### The error may exist in com/zjugis/module/system/dal/mysql/notify/NotifyMessageMapper.java (best guess)
  2024. ### The error may involve defaultParameterMap
  2025. ### The error occurred while setting parameters
  2026. ### SQL: SELECT COUNT( * ) AS total FROM system_notify_message WHERE deleted=0 AND (read_status = ? AND user_id = ? AND user_type = ?)
  2027. ### Cause: org.postgresql.util.PSQLException: ERROR: 操作符不是唯一的: varcharbyte = boolean
  2028. 建议:无法选择最佳候选操作符. 您也许需要增加显式的类型转换.
  2029. 位置:97
  2030. ; bad SQL grammar []; nested exception is org.postgresql.util.PSQLException: ERROR: 操作符不是唯一的: varcharbyte = boolean
  2031. 建议:无法选择最佳候选操作符. 您也许需要增加显式的类型转换.
  2032. 位置:97
  2033. at org.springframework.jdbc.support.SQLStateSQLExceptionTranslator.doTranslate(SQLStateSQLExceptionTranslator.java:101)
  2034. at org.springframework.jdbc.support.AbstractFallbackSQLExceptionTranslator.translate(AbstractFallbackSQLExceptionTranslator.java:70)
  2035. at org.springframework.jdbc.support.AbstractFallbackSQLExceptionTranslator.translate(AbstractFallbackSQLExceptionTranslator.java:79)
  2036. at org.springframework.jdbc.support.AbstractFallbackSQLExceptionTranslator.translate(AbstractFallbackSQLExceptionTranslator.java:79)
  2037. at org.mybatis.spring.MyBatisExceptionTranslator.translateExceptionIfPossible(MyBatisExceptionTranslator.java:92)
  2038. at org.mybatis.spring.SqlSessionTemplate$SqlSessionInterceptor.invoke(SqlSessionTemplate.java:439)
  2039. at com.sun.proxy.$Proxy201.selectOne(Unknown Source)
  2040. at org.mybatis.spring.SqlSessionTemplate.selectOne(SqlSessionTemplate.java:160)
  2041. at com.baomidou.mybatisplus.core.override.MybatisMapperMethod.execute(MybatisMapperMethod.java:89)
  2042. at com.baomidou.mybatisplus.core.override.MybatisMapperProxy$PlainMethodInvoker.invoke(MybatisMapperProxy.java:148)
  2043. at com.baomidou.mybatisplus.core.override.MybatisMapperProxy.invoke(MybatisMapperProxy.java:89)
  2044. at com.sun.proxy.$Proxy257.selectCount(Unknown Source)
  2045. at com.zjugis.module.system.dal.mysql.notify.NotifyMessageMapper.selectUnreadCountByUserIdAndUserType(NotifyMessageMapper.java:64)
  2046. at java.lang.invoke.MethodHandle.invokeWithArguments(MethodHandle.java:627)
  2047. at com.baomidou.mybatisplus.core.override.MybatisMapperProxy$DefaultMethodInvoker.invoke(MybatisMapperProxy.java:162)
  2048. at com.baomidou.mybatisplus.core.override.MybatisMapperProxy.invoke(MybatisMapperProxy.java:89)
  2049. at com.sun.proxy.$Proxy257.selectUnreadCountByUserIdAndUserType(Unknown Source)
  2050. at com.zjugis.module.system.service.notify.NotifyMessageServiceImpl.getUnreadNotifyMessageCount(NotifyMessageServiceImpl.java:62)
  2051. at com.zjugis.module.system.service.notify.NotifyMessageServiceImpl$$FastClassBySpringCGLIB$$f65b8551.invoke(<generated>)
  2052. at org.springframework.cglib.proxy.MethodProxy.invoke(MethodProxy.java:218)
  2053. at org.springframework.aop.framework.CglibAopProxy$CglibMet', 'org.springframework.jdbc.support.SQLStateSQLExceptionTranslator', 'SQLStateSQLExceptionTranslator.java', 'doTranslate', 101, 0, NULL, NULL, '1', '2024-10-23 11:33:22', '1', '2024-10-23 11:33:22', NULL, 0);
  2054. INSERT INTO ruian_oa.infra_api_error_log VALUES (10, NULL, '1', 2, 'system-server', 'GET', '/admin-api/system/notify-message/get-unread-count', '{"query":{},"body":""}', '0:0:0:0:0:0:0:1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/129.0.0.0 Safari/537.36', '2024-10-23 11:35:21', 'org.springframework.jdbc.BadSqlGrammarException', 'BadSqlGrammarException:
  2055. ### Error querying database. Cause: org.postgresql.util.PSQLException: ERROR: 操作符不是唯一的: varcharbyte = boolean
  2056. 建议:无法选择最佳候选操作符. 您也许需要增加显式的类型转换.
  2057. 位置:97
  2058. ### The error may exist in com/zjugis/module/system/dal/mysql/notify/NotifyMessageMapper.java (best guess)
  2059. ### The error may involve defaultParameterMap
  2060. ### The error occurred while setting parameters
  2061. ### SQL: SELECT COUNT( * ) AS total FROM system_notify_message WHERE deleted=0 AND (read_status = ? AND user_id = ? AND user_type = ?)
  2062. ### Cause: org.postgresql.util.PSQLException: ERROR: 操作符不是唯一的: varcharbyte = boolean
  2063. 建议:无法选择最佳候选操作符. 您也许需要增加显式的类型转换.
  2064. 位置:97
  2065. ; bad SQL grammar []; nested exception is org.postgresql.util.PSQLException: ERROR: 操作符不是唯一的: varcharbyte = boolean
  2066. 建议:无法选择最佳候选操作符. 您也许需要增加显式的类型转换.
  2067. 位置:97', 'PSQLException: ERROR: 操作符不是唯一的: varcharbyte = boolean
  2068. 建议:无法选择最佳候选操作符. 您也许需要增加显式的类型转换.
  2069. 位置:97', 'org.springframework.jdbc.BadSqlGrammarException:
  2070. ### Error querying database. Cause: org.postgresql.util.PSQLException: ERROR: 操作符不是唯一的: varcharbyte = boolean
  2071. 建议:无法选择最佳候选操作符. 您也许需要增加显式的类型转换.
  2072. 位置:97
  2073. ### The error may exist in com/zjugis/module/system/dal/mysql/notify/NotifyMessageMapper.java (best guess)
  2074. ### The error may involve defaultParameterMap
  2075. ### The error occurred while setting parameters
  2076. ### SQL: SELECT COUNT( * ) AS total FROM system_notify_message WHERE deleted=0 AND (read_status = ? AND user_id = ? AND user_type = ?)
  2077. ### Cause: org.postgresql.util.PSQLException: ERROR: 操作符不是唯一的: varcharbyte = boolean
  2078. 建议:无法选择最佳候选操作符. 您也许需要增加显式的类型转换.
  2079. 位置:97
  2080. ; bad SQL grammar []; nested exception is org.postgresql.util.PSQLException: ERROR: 操作符不是唯一的: varcharbyte = boolean
  2081. 建议:无法选择最佳候选操作符. 您也许需要增加显式的类型转换.
  2082. 位置:97
  2083. at org.springframework.jdbc.support.SQLStateSQLExceptionTranslator.doTranslate(SQLStateSQLExceptionTranslator.java:101)
  2084. at org.springframework.jdbc.support.AbstractFallbackSQLExceptionTranslator.translate(AbstractFallbackSQLExceptionTranslator.java:70)
  2085. at org.springframework.jdbc.support.AbstractFallbackSQLExceptionTranslator.translate(AbstractFallbackSQLExceptionTranslator.java:79)
  2086. at org.springframework.jdbc.support.AbstractFallbackSQLExceptionTranslator.translate(AbstractFallbackSQLExceptionTranslator.java:79)
  2087. at org.mybatis.spring.MyBatisExceptionTranslator.translateExceptionIfPossible(MyBatisExceptionTranslator.java:92)
  2088. at org.mybatis.spring.SqlSessionTemplate$SqlSessionInterceptor.invoke(SqlSessionTemplate.java:439)
  2089. at com.sun.proxy.$Proxy201.selectOne(Unknown Source)
  2090. at org.mybatis.spring.SqlSessionTemplate.selectOne(SqlSessionTemplate.java:160)
  2091. at com.baomidou.mybatisplus.core.override.MybatisMapperMethod.execute(MybatisMapperMethod.java:89)
  2092. at com.baomidou.mybatisplus.core.override.MybatisMapperProxy$PlainMethodInvoker.invoke(MybatisMapperProxy.java:148)
  2093. at com.baomidou.mybatisplus.core.override.MybatisMapperProxy.invoke(MybatisMapperProxy.java:89)
  2094. at com.sun.proxy.$Proxy257.selectCount(Unknown Source)
  2095. at com.zjugis.module.system.dal.mysql.notify.NotifyMessageMapper.selectUnreadCountByUserIdAndUserType(NotifyMessageMapper.java:64)
  2096. at java.lang.invoke.MethodHandle.invokeWithArguments(MethodHandle.java:627)
  2097. at com.baomidou.mybatisplus.core.override.MybatisMapperProxy$DefaultMethodInvoker.invoke(MybatisMapperProxy.java:162)
  2098. at com.baomidou.mybatisplus.core.override.MybatisMapperProxy.invoke(MybatisMapperProxy.java:89)
  2099. at com.sun.proxy.$Proxy257.selectUnreadCountByUserIdAndUserType(Unknown Source)
  2100. at com.zjugis.module.system.service.notify.NotifyMessageServiceImpl.getUnreadNotifyMessageCount(NotifyMessageServiceImpl.java:62)
  2101. at com.zjugis.module.system.service.notify.NotifyMessageServiceImpl$$FastClassBySpringCGLIB$$f65b8551.invoke(<generated>)
  2102. at org.springframework.cglib.proxy.MethodProxy.invoke(MethodProxy.java:218)
  2103. at org.springframework.aop.framework.CglibAopProxy$CglibMet', 'org.springframework.jdbc.support.SQLStateSQLExceptionTranslator', 'SQLStateSQLExceptionTranslator.java', 'doTranslate', 101, 0, NULL, NULL, '1', '2024-10-23 11:35:21', '1', '2024-10-23 11:35:21', NULL, 0);
  2104. INSERT INTO ruian_oa.infra_api_error_log VALUES (11, NULL, '1', 2, 'system-server', 'GET', '/admin-api/system/notify-message/get-unread-count', '{"query":{},"body":""}', '0:0:0:0:0:0:0:1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/129.0.0.0 Safari/537.36', '2024-10-23 11:37:21', 'org.springframework.jdbc.BadSqlGrammarException', 'BadSqlGrammarException:
  2105. ### Error querying database. Cause: org.postgresql.util.PSQLException: ERROR: 操作符不是唯一的: varcharbyte = boolean
  2106. 建议:无法选择最佳候选操作符. 您也许需要增加显式的类型转换.
  2107. 位置:97
  2108. ### The error may exist in com/zjugis/module/system/dal/mysql/notify/NotifyMessageMapper.java (best guess)
  2109. ### The error may involve defaultParameterMap
  2110. ### The error occurred while setting parameters
  2111. ### SQL: SELECT COUNT( * ) AS total FROM system_notify_message WHERE deleted=0 AND (read_status = ? AND user_id = ? AND user_type = ?)
  2112. ### Cause: org.postgresql.util.PSQLException: ERROR: 操作符不是唯一的: varcharbyte = boolean
  2113. 建议:无法选择最佳候选操作符. 您也许需要增加显式的类型转换.
  2114. 位置:97
  2115. ; bad SQL grammar []; nested exception is org.postgresql.util.PSQLException: ERROR: 操作符不是唯一的: varcharbyte = boolean
  2116. 建议:无法选择最佳候选操作符. 您也许需要增加显式的类型转换.
  2117. 位置:97', 'PSQLException: ERROR: 操作符不是唯一的: varcharbyte = boolean
  2118. 建议:无法选择最佳候选操作符. 您也许需要增加显式的类型转换.
  2119. 位置:97', 'org.springframework.jdbc.BadSqlGrammarException:
  2120. ### Error querying database. Cause: org.postgresql.util.PSQLException: ERROR: 操作符不是唯一的: varcharbyte = boolean
  2121. 建议:无法选择最佳候选操作符. 您也许需要增加显式的类型转换.
  2122. 位置:97
  2123. ### The error may exist in com/zjugis/module/system/dal/mysql/notify/NotifyMessageMapper.java (best guess)
  2124. ### The error may involve defaultParameterMap
  2125. ### The error occurred while setting parameters
  2126. ### SQL: SELECT COUNT( * ) AS total FROM system_notify_message WHERE deleted=0 AND (read_status = ? AND user_id = ? AND user_type = ?)
  2127. ### Cause: org.postgresql.util.PSQLException: ERROR: 操作符不是唯一的: varcharbyte = boolean
  2128. 建议:无法选择最佳候选操作符. 您也许需要增加显式的类型转换.
  2129. 位置:97
  2130. ; bad SQL grammar []; nested exception is org.postgresql.util.PSQLException: ERROR: 操作符不是唯一的: varcharbyte = boolean
  2131. 建议:无法选择最佳候选操作符. 您也许需要增加显式的类型转换.
  2132. 位置:97
  2133. at org.springframework.jdbc.support.SQLStateSQLExceptionTranslator.doTranslate(SQLStateSQLExceptionTranslator.java:101)
  2134. at org.springframework.jdbc.support.AbstractFallbackSQLExceptionTranslator.translate(AbstractFallbackSQLExceptionTranslator.java:70)
  2135. at org.springframework.jdbc.support.AbstractFallbackSQLExceptionTranslator.translate(AbstractFallbackSQLExceptionTranslator.java:79)
  2136. at org.springframework.jdbc.support.AbstractFallbackSQLExceptionTranslator.translate(AbstractFallbackSQLExceptionTranslator.java:79)
  2137. at org.mybatis.spring.MyBatisExceptionTranslator.translateExceptionIfPossible(MyBatisExceptionTranslator.java:92)
  2138. at org.mybatis.spring.SqlSessionTemplate$SqlSessionInterceptor.invoke(SqlSessionTemplate.java:439)
  2139. at com.sun.proxy.$Proxy201.selectOne(Unknown Source)
  2140. at org.mybatis.spring.SqlSessionTemplate.selectOne(SqlSessionTemplate.java:160)
  2141. at com.baomidou.mybatisplus.core.override.MybatisMapperMethod.execute(MybatisMapperMethod.java:89)
  2142. at com.baomidou.mybatisplus.core.override.MybatisMapperProxy$PlainMethodInvoker.invoke(MybatisMapperProxy.java:148)
  2143. at com.baomidou.mybatisplus.core.override.MybatisMapperProxy.invoke(MybatisMapperProxy.java:89)
  2144. at com.sun.proxy.$Proxy257.selectCount(Unknown Source)
  2145. at com.zjugis.module.system.dal.mysql.notify.NotifyMessageMapper.selectUnreadCountByUserIdAndUserType(NotifyMessageMapper.java:64)
  2146. at java.lang.invoke.MethodHandle.invokeWithArguments(MethodHandle.java:627)
  2147. at com.baomidou.mybatisplus.core.override.MybatisMapperProxy$DefaultMethodInvoker.invoke(MybatisMapperProxy.java:162)
  2148. at com.baomidou.mybatisplus.core.override.MybatisMapperProxy.invoke(MybatisMapperProxy.java:89)
  2149. at com.sun.proxy.$Proxy257.selectUnreadCountByUserIdAndUserType(Unknown Source)
  2150. at com.zjugis.module.system.service.notify.NotifyMessageServiceImpl.getUnreadNotifyMessageCount(NotifyMessageServiceImpl.java:62)
  2151. at com.zjugis.module.system.service.notify.NotifyMessageServiceImpl$$FastClassBySpringCGLIB$$f65b8551.invoke(<generated>)
  2152. at org.springframework.cglib.proxy.MethodProxy.invoke(MethodProxy.java:218)
  2153. at org.springframework.aop.framework.CglibAopProxy$CglibMet', 'org.springframework.jdbc.support.SQLStateSQLExceptionTranslator', 'SQLStateSQLExceptionTranslator.java', 'doTranslate', 101, 0, NULL, NULL, '1', '2024-10-23 11:37:21', '1', '2024-10-23 11:37:21', NULL, 0);
  2154. INSERT INTO ruian_oa.infra_api_error_log VALUES (12, NULL, NULL, 2, 'system-server', 'GET', '/rpc-api/system/oauth2/token/check', '{"query":{"accessToken":"2dc53edf7bf84c7da0e08f2ed95f44af"},"body":""}', '2.0.0.1', 'ReactorNetty/1.0.35', '2024-10-23 11:39:21', 'org.springframework.jdbc.BadSqlGrammarException', 'BadSqlGrammarException:
  2155. ### Error querying database. Cause: org.postgresql.util.PSQLException: ERROR: 关系 "system_oauth2_access_token" 不存在
  2156. 位置:146
  2157. ### The error may exist in com/zjugis/module/system/dal/mysql/oauth2/OAuth2AccessTokenMapper.java (best guess)
  2158. ### The error may involve defaultParameterMap
  2159. ### The error occurred while setting parameters
  2160. ### SQL: SELECT id,access_token,refresh_token,user_id,user_type,client_id,scopes,expires_time,create_time,update_time,creator,updater,deleted FROM system_oauth2_access_token WHERE deleted=0 AND (access_token = ?)
  2161. ### Cause: org.postgresql.util.PSQLException: ERROR: 关系 "system_oauth2_access_token" 不存在
  2162. 位置:146
  2163. ; bad SQL grammar []; nested exception is org.postgresql.util.PSQLException: ERROR: 关系 "system_oauth2_access_token" 不存在
  2164. 位置:146', 'PSQLException: ERROR: 关系 "system_oauth2_access_token" 不存在
  2165. 位置:146', 'org.springframework.jdbc.BadSqlGrammarException:
  2166. ### Error querying database. Cause: org.postgresql.util.PSQLException: ERROR: 关系 "system_oauth2_access_token" 不存在
  2167. 位置:146
  2168. ### The error may exist in com/zjugis/module/system/dal/mysql/oauth2/OAuth2AccessTokenMapper.java (best guess)
  2169. ### The error may involve defaultParameterMap
  2170. ### The error occurred while setting parameters
  2171. ### SQL: SELECT id,access_token,refresh_token,user_id,user_type,client_id,scopes,expires_time,create_time,update_time,creator,updater,deleted FROM system_oauth2_access_token WHERE deleted=0 AND (access_token = ?)
  2172. ### Cause: org.postgresql.util.PSQLException: ERROR: 关系 "system_oauth2_access_token" 不存在
  2173. 位置:146
  2174. ; bad SQL grammar []; nested exception is org.postgresql.util.PSQLException: ERROR: 关系 "system_oauth2_access_token" 不存在
  2175. 位置:146
  2176. at org.springframework.jdbc.support.SQLErrorCodeSQLExceptionTranslator.doTranslate(SQLErrorCodeSQLExceptionTranslator.java:239)
  2177. at org.springframework.jdbc.support.AbstractFallbackSQLExceptionTranslator.translate(AbstractFallbackSQLExceptionTranslator.java:70)
  2178. at org.mybatis.spring.MyBatisExceptionTranslator.translateExceptionIfPossible(MyBatisExceptionTranslator.java:92)
  2179. at org.mybatis.spring.SqlSessionTemplate$SqlSessionInterceptor.invoke(SqlSessionTemplate.java:439)
  2180. at com.sun.proxy.$Proxy201.selectList(Unknown Source)
  2181. at org.mybatis.spring.SqlSessionTemplate.selectList(SqlSessionTemplate.java:224)
  2182. at com.baomidou.mybatisplus.core.override.MybatisMapperMethod.executeForMany(MybatisMapperMethod.java:166)
  2183. at com.baomidou.mybatisplus.core.override.MybatisMapperMethod.execute(MybatisMapperMethod.java:77)
  2184. at com.baomidou.mybatisplus.core.override.MybatisMapperProxy$PlainMethodInvoker.invoke(MybatisMapperProxy.java:148)
  2185. at com.baomidou.mybatisplus.core.override.MybatisMapperProxy.invoke(MybatisMapperProxy.java:89)
  2186. at com.sun.proxy.$Proxy259.selectList(Unknown Source)
  2187. at com.baomidou.mybatisplus.core.mapper.BaseMapper.selectOne(BaseMapper.java:191)
  2188. at java.lang.invoke.MethodHandle.invokeWithArguments(MethodHandle.java:627)
  2189. at com.baomidou.mybatisplus.core.override.MybatisMapperProxy$DefaultMethodInvoker.invoke(MybatisMapperProxy.java:162)
  2190. at com.baomidou.mybatisplus.core.override.MybatisMapperProxy.invoke(MybatisMapperProxy.java:89)
  2191. at com.sun.proxy.$Proxy259.selectOne(Unknown Source)
  2192. at com.baomidou.mybatisplus.core.mapper.BaseMapper.selectOne(BaseMapper.java:180)
  2193. at java.lang.invoke.MethodHandle.invokeWithArguments(MethodHandle.java:627)
  2194. at com.baomidou.mybatisplus.core.override.MybatisMapperProxy$DefaultMethodInvoker.invoke(MybatisMapperProxy.java:162)
  2195. at com.baomidou.mybatisplus.core.override.MybatisMapperProxy.invoke(MybatisMapperProxy.java:89)
  2196. at com.sun.proxy.$Proxy259.selectOne(Unknown Source)
  2197. at com.zjugis.framework.mybatis.core.mapper.BaseMapperX.selectOne(BaseMapperX.java:37)
  2198. at java.lang.invoke.MethodHandle.invokeWithArguments(MethodHandle.java:627)
  2199. at com.baomidou.my', 'org.springframework.jdbc.support.SQLErrorCodeSQLExceptionTranslator', 'SQLErrorCodeSQLExceptionTranslator.java', 'doTranslate', 239, 0, NULL, NULL, NULL, '2024-10-23 11:39:21', NULL, '2024-10-23 11:39:21', NULL, 0);
  2200. INSERT INTO ruian_oa.infra_api_error_log VALUES (13, NULL, '1', 2, 'system-server', 'GET', '/admin-api/system/notify-message/get-unread-count', '{"query":{},"body":""}', '0:0:0:0:0:0:0:1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/129.0.0.0 Safari/537.36', '2024-10-23 14:12:43', 'org.springframework.jdbc.BadSqlGrammarException', 'BadSqlGrammarException:
  2201. ### Error querying database. Cause: org.postgresql.util.PSQLException: ERROR: 操作符不是唯一的: varcharbyte = boolean
  2202. 建议:无法选择最佳候选操作符. 您也许需要增加显式的类型转换.
  2203. 位置:97
  2204. ### The error may exist in com/zjugis/module/system/dal/mysql/notify/NotifyMessageMapper.java (best guess)
  2205. ### The error may involve defaultParameterMap
  2206. ### The error occurred while setting parameters
  2207. ### SQL: SELECT COUNT( * ) AS total FROM system_notify_message WHERE deleted=0 AND (read_status = ? AND user_id = ? AND user_type = ?)
  2208. ### Cause: org.postgresql.util.PSQLException: ERROR: 操作符不是唯一的: varcharbyte = boolean
  2209. 建议:无法选择最佳候选操作符. 您也许需要增加显式的类型转换.
  2210. 位置:97
  2211. ; bad SQL grammar []; nested exception is org.postgresql.util.PSQLException: ERROR: 操作符不是唯一的: varcharbyte = boolean
  2212. 建议:无法选择最佳候选操作符. 您也许需要增加显式的类型转换.
  2213. 位置:97', 'PSQLException: ERROR: 操作符不是唯一的: varcharbyte = boolean
  2214. 建议:无法选择最佳候选操作符. 您也许需要增加显式的类型转换.
  2215. 位置:97', 'org.springframework.jdbc.BadSqlGrammarException:
  2216. ### Error querying database. Cause: org.postgresql.util.PSQLException: ERROR: 操作符不是唯一的: varcharbyte = boolean
  2217. 建议:无法选择最佳候选操作符. 您也许需要增加显式的类型转换.
  2218. 位置:97
  2219. ### The error may exist in com/zjugis/module/system/dal/mysql/notify/NotifyMessageMapper.java (best guess)
  2220. ### The error may involve defaultParameterMap
  2221. ### The error occurred while setting parameters
  2222. ### SQL: SELECT COUNT( * ) AS total FROM system_notify_message WHERE deleted=0 AND (read_status = ? AND user_id = ? AND user_type = ?)
  2223. ### Cause: org.postgresql.util.PSQLException: ERROR: 操作符不是唯一的: varcharbyte = boolean
  2224. 建议:无法选择最佳候选操作符. 您也许需要增加显式的类型转换.
  2225. 位置:97
  2226. ; bad SQL grammar []; nested exception is org.postgresql.util.PSQLException: ERROR: 操作符不是唯一的: varcharbyte = boolean
  2227. 建议:无法选择最佳候选操作符. 您也许需要增加显式的类型转换.
  2228. 位置:97
  2229. at org.springframework.jdbc.support.SQLStateSQLExceptionTranslator.doTranslate(SQLStateSQLExceptionTranslator.java:101)
  2230. at org.springframework.jdbc.support.AbstractFallbackSQLExceptionTranslator.translate(AbstractFallbackSQLExceptionTranslator.java:70)
  2231. at org.springframework.jdbc.support.AbstractFallbackSQLExceptionTranslator.translate(AbstractFallbackSQLExceptionTranslator.java:79)
  2232. at org.springframework.jdbc.support.AbstractFallbackSQLExceptionTranslator.translate(AbstractFallbackSQLExceptionTranslator.java:79)
  2233. at org.mybatis.spring.MyBatisExceptionTranslator.translateExceptionIfPossible(MyBatisExceptionTranslator.java:92)
  2234. at org.mybatis.spring.SqlSessionTemplate$SqlSessionInterceptor.invoke(SqlSessionTemplate.java:439)
  2235. at com.sun.proxy.$Proxy201.selectOne(Unknown Source)
  2236. at org.mybatis.spring.SqlSessionTemplate.selectOne(SqlSessionTemplate.java:160)
  2237. at com.baomidou.mybatisplus.core.override.MybatisMapperMethod.execute(MybatisMapperMethod.java:89)
  2238. at com.baomidou.mybatisplus.core.override.MybatisMapperProxy$PlainMethodInvoker.invoke(MybatisMapperProxy.java:148)
  2239. at com.baomidou.mybatisplus.core.override.MybatisMapperProxy.invoke(MybatisMapperProxy.java:89)
  2240. at com.sun.proxy.$Proxy257.selectCount(Unknown Source)
  2241. at com.zjugis.module.system.dal.mysql.notify.NotifyMessageMapper.selectUnreadCountByUserIdAndUserType(NotifyMessageMapper.java:64)
  2242. at java.lang.invoke.MethodHandle.invokeWithArguments(MethodHandle.java:627)
  2243. at com.baomidou.mybatisplus.core.override.MybatisMapperProxy$DefaultMethodInvoker.invoke(MybatisMapperProxy.java:162)
  2244. at com.baomidou.mybatisplus.core.override.MybatisMapperProxy.invoke(MybatisMapperProxy.java:89)
  2245. at com.sun.proxy.$Proxy257.selectUnreadCountByUserIdAndUserType(Unknown Source)
  2246. at com.zjugis.module.system.service.notify.NotifyMessageServiceImpl.getUnreadNotifyMessageCount(NotifyMessageServiceImpl.java:62)
  2247. at com.zjugis.module.system.service.notify.NotifyMessageServiceImpl$$FastClassBySpringCGLIB$$f65b8551.invoke(<generated>)
  2248. at org.springframework.cglib.proxy.MethodProxy.invoke(MethodProxy.java:218)
  2249. at org.springframework.aop.framework.CglibAopProxy$CglibMet', 'org.springframework.jdbc.support.SQLStateSQLExceptionTranslator', 'SQLStateSQLExceptionTranslator.java', 'doTranslate', 101, 0, NULL, NULL, '1', '2024-10-23 14:12:45', '1', '2024-10-23 14:12:45', NULL, 0);
  2250. INSERT INTO ruian_oa.infra_api_error_log VALUES (14, NULL, '1', 2, 'system-server', 'GET', '/admin-api/system/notify-message/get-unread-count', '{"query":{},"body":""}', '0:0:0:0:0:0:0:1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/129.0.0.0 Safari/537.36', '2024-10-23 14:16:53', 'org.springframework.jdbc.BadSqlGrammarException', 'BadSqlGrammarException:
  2251. ### Error querying database. Cause: org.postgresql.util.PSQLException: ERROR: 操作符不是唯一的: varcharbyte = boolean
  2252. 建议:无法选择最佳候选操作符. 您也许需要增加显式的类型转换.
  2253. 位置:97
  2254. ### The error may exist in com/zjugis/module/system/dal/mysql/notify/NotifyMessageMapper.java (best guess)
  2255. ### The error may involve defaultParameterMap
  2256. ### The error occurred while setting parameters
  2257. ### SQL: SELECT COUNT( * ) AS total FROM system_notify_message WHERE deleted=0 AND (read_status = ? AND user_id = ? AND user_type = ?)
  2258. ### Cause: org.postgresql.util.PSQLException: ERROR: 操作符不是唯一的: varcharbyte = boolean
  2259. 建议:无法选择最佳候选操作符. 您也许需要增加显式的类型转换.
  2260. 位置:97
  2261. ; bad SQL grammar []; nested exception is org.postgresql.util.PSQLException: ERROR: 操作符不是唯一的: varcharbyte = boolean
  2262. 建议:无法选择最佳候选操作符. 您也许需要增加显式的类型转换.
  2263. 位置:97', 'PSQLException: ERROR: 操作符不是唯一的: varcharbyte = boolean
  2264. 建议:无法选择最佳候选操作符. 您也许需要增加显式的类型转换.
  2265. 位置:97', 'org.springframework.jdbc.BadSqlGrammarException:
  2266. ### Error querying database. Cause: org.postgresql.util.PSQLException: ERROR: 操作符不是唯一的: varcharbyte = boolean
  2267. 建议:无法选择最佳候选操作符. 您也许需要增加显式的类型转换.
  2268. 位置:97
  2269. ### The error may exist in com/zjugis/module/system/dal/mysql/notify/NotifyMessageMapper.java (best guess)
  2270. ### The error may involve defaultParameterMap
  2271. ### The error occurred while setting parameters
  2272. ### SQL: SELECT COUNT( * ) AS total FROM system_notify_message WHERE deleted=0 AND (read_status = ? AND user_id = ? AND user_type = ?)
  2273. ### Cause: org.postgresql.util.PSQLException: ERROR: 操作符不是唯一的: varcharbyte = boolean
  2274. 建议:无法选择最佳候选操作符. 您也许需要增加显式的类型转换.
  2275. 位置:97
  2276. ; bad SQL grammar []; nested exception is org.postgresql.util.PSQLException: ERROR: 操作符不是唯一的: varcharbyte = boolean
  2277. 建议:无法选择最佳候选操作符. 您也许需要增加显式的类型转换.
  2278. 位置:97
  2279. at org.springframework.jdbc.support.SQLStateSQLExceptionTranslator.doTranslate(SQLStateSQLExceptionTranslator.java:101)
  2280. at org.springframework.jdbc.support.AbstractFallbackSQLExceptionTranslator.translate(AbstractFallbackSQLExceptionTranslator.java:70)
  2281. at org.springframework.jdbc.support.AbstractFallbackSQLExceptionTranslator.translate(AbstractFallbackSQLExceptionTranslator.java:79)
  2282. at org.springframework.jdbc.support.AbstractFallbackSQLExceptionTranslator.translate(AbstractFallbackSQLExceptionTranslator.java:79)
  2283. at org.mybatis.spring.MyBatisExceptionTranslator.translateExceptionIfPossible(MyBatisExceptionTranslator.java:92)
  2284. at org.mybatis.spring.SqlSessionTemplate$SqlSessionInterceptor.invoke(SqlSessionTemplate.java:439)
  2285. at com.sun.proxy.$Proxy201.selectOne(Unknown Source)
  2286. at org.mybatis.spring.SqlSessionTemplate.selectOne(SqlSessionTemplate.java:160)
  2287. at com.baomidou.mybatisplus.core.override.MybatisMapperMethod.execute(MybatisMapperMethod.java:89)
  2288. at com.baomidou.mybatisplus.core.override.MybatisMapperProxy$PlainMethodInvoker.invoke(MybatisMapperProxy.java:148)
  2289. at com.baomidou.mybatisplus.core.override.MybatisMapperProxy.invoke(MybatisMapperProxy.java:89)
  2290. at com.sun.proxy.$Proxy257.selectCount(Unknown Source)
  2291. at com.zjugis.module.system.dal.mysql.notify.NotifyMessageMapper.selectUnreadCountByUserIdAndUserType(NotifyMessageMapper.java:64)
  2292. at java.lang.invoke.MethodHandle.invokeWithArguments(MethodHandle.java:627)
  2293. at com.baomidou.mybatisplus.core.override.MybatisMapperProxy$DefaultMethodInvoker.invoke(MybatisMapperProxy.java:162)
  2294. at com.baomidou.mybatisplus.core.override.MybatisMapperProxy.invoke(MybatisMapperProxy.java:89)
  2295. at com.sun.proxy.$Proxy257.selectUnreadCountByUserIdAndUserType(Unknown Source)
  2296. at com.zjugis.module.system.service.notify.NotifyMessageServiceImpl.getUnreadNotifyMessageCount(NotifyMessageServiceImpl.java:62)
  2297. at com.zjugis.module.system.service.notify.NotifyMessageServiceImpl$$FastClassBySpringCGLIB$$f65b8551.invoke(<generated>)
  2298. at org.springframework.cglib.proxy.MethodProxy.invoke(MethodProxy.java:218)
  2299. at org.springframework.aop.framework.CglibAopProxy$CglibMet', 'org.springframework.jdbc.support.SQLStateSQLExceptionTranslator', 'SQLStateSQLExceptionTranslator.java', 'doTranslate', 101, 0, NULL, NULL, '1', '2024-10-23 14:16:53', '1', '2024-10-23 14:16:53', NULL, 0);
  2300. INSERT INTO ruian_oa.infra_api_error_log VALUES (15, NULL, '1', 2, 'system-server', 'GET', '/admin-api/system/notify-message/get-unread-count', '{"query":{},"body":""}', '0:0:0:0:0:0:0:1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/129.0.0.0 Safari/537.36', '2024-10-23 14:18:53', 'org.springframework.jdbc.BadSqlGrammarException', 'BadSqlGrammarException:
  2301. ### Error querying database. Cause: org.postgresql.util.PSQLException: ERROR: 操作符不是唯一的: varcharbyte = boolean
  2302. 建议:无法选择最佳候选操作符. 您也许需要增加显式的类型转换.
  2303. 位置:97
  2304. ### The error may exist in com/zjugis/module/system/dal/mysql/notify/NotifyMessageMapper.java (best guess)
  2305. ### The error may involve defaultParameterMap
  2306. ### The error occurred while setting parameters
  2307. ### SQL: SELECT COUNT( * ) AS total FROM system_notify_message WHERE deleted=0 AND (read_status = ? AND user_id = ? AND user_type = ?)
  2308. ### Cause: org.postgresql.util.PSQLException: ERROR: 操作符不是唯一的: varcharbyte = boolean
  2309. 建议:无法选择最佳候选操作符. 您也许需要增加显式的类型转换.
  2310. 位置:97
  2311. ; bad SQL grammar []; nested exception is org.postgresql.util.PSQLException: ERROR: 操作符不是唯一的: varcharbyte = boolean
  2312. 建议:无法选择最佳候选操作符. 您也许需要增加显式的类型转换.
  2313. 位置:97', 'PSQLException: ERROR: 操作符不是唯一的: varcharbyte = boolean
  2314. 建议:无法选择最佳候选操作符. 您也许需要增加显式的类型转换.
  2315. 位置:97', 'org.springframework.jdbc.BadSqlGrammarException:
  2316. ### Error querying database. Cause: org.postgresql.util.PSQLException: ERROR: 操作符不是唯一的: varcharbyte = boolean
  2317. 建议:无法选择最佳候选操作符. 您也许需要增加显式的类型转换.
  2318. 位置:97
  2319. ### The error may exist in com/zjugis/module/system/dal/mysql/notify/NotifyMessageMapper.java (best guess)
  2320. ### The error may involve defaultParameterMap
  2321. ### The error occurred while setting parameters
  2322. ### SQL: SELECT COUNT( * ) AS total FROM system_notify_message WHERE deleted=0 AND (read_status = ? AND user_id = ? AND user_type = ?)
  2323. ### Cause: org.postgresql.util.PSQLException: ERROR: 操作符不是唯一的: varcharbyte = boolean
  2324. 建议:无法选择最佳候选操作符. 您也许需要增加显式的类型转换.
  2325. 位置:97
  2326. ; bad SQL grammar []; nested exception is org.postgresql.util.PSQLException: ERROR: 操作符不是唯一的: varcharbyte = boolean
  2327. 建议:无法选择最佳候选操作符. 您也许需要增加显式的类型转换.
  2328. 位置:97
  2329. at org.springframework.jdbc.support.SQLStateSQLExceptionTranslator.doTranslate(SQLStateSQLExceptionTranslator.java:101)
  2330. at org.springframework.jdbc.support.AbstractFallbackSQLExceptionTranslator.translate(AbstractFallbackSQLExceptionTranslator.java:70)
  2331. at org.springframework.jdbc.support.AbstractFallbackSQLExceptionTranslator.translate(AbstractFallbackSQLExceptionTranslator.java:79)
  2332. at org.springframework.jdbc.support.AbstractFallbackSQLExceptionTranslator.translate(AbstractFallbackSQLExceptionTranslator.java:79)
  2333. at org.mybatis.spring.MyBatisExceptionTranslator.translateExceptionIfPossible(MyBatisExceptionTranslator.java:92)
  2334. at org.mybatis.spring.SqlSessionTemplate$SqlSessionInterceptor.invoke(SqlSessionTemplate.java:439)
  2335. at com.sun.proxy.$Proxy201.selectOne(Unknown Source)
  2336. at org.mybatis.spring.SqlSessionTemplate.selectOne(SqlSessionTemplate.java:160)
  2337. at com.baomidou.mybatisplus.core.override.MybatisMapperMethod.execute(MybatisMapperMethod.java:89)
  2338. at com.baomidou.mybatisplus.core.override.MybatisMapperProxy$PlainMethodInvoker.invoke(MybatisMapperProxy.java:148)
  2339. at com.baomidou.mybatisplus.core.override.MybatisMapperProxy.invoke(MybatisMapperProxy.java:89)
  2340. at com.sun.proxy.$Proxy257.selectCount(Unknown Source)
  2341. at com.zjugis.module.system.dal.mysql.notify.NotifyMessageMapper.selectUnreadCountByUserIdAndUserType(NotifyMessageMapper.java:64)
  2342. at java.lang.invoke.MethodHandle.invokeWithArguments(MethodHandle.java:627)
  2343. at com.baomidou.mybatisplus.core.override.MybatisMapperProxy$DefaultMethodInvoker.invoke(MybatisMapperProxy.java:162)
  2344. at com.baomidou.mybatisplus.core.override.MybatisMapperProxy.invoke(MybatisMapperProxy.java:89)
  2345. at com.sun.proxy.$Proxy257.selectUnreadCountByUserIdAndUserType(Unknown Source)
  2346. at com.zjugis.module.system.service.notify.NotifyMessageServiceImpl.getUnreadNotifyMessageCount(NotifyMessageServiceImpl.java:62)
  2347. at com.zjugis.module.system.service.notify.NotifyMessageServiceImpl$$FastClassBySpringCGLIB$$f65b8551.invoke(<generated>)
  2348. at org.springframework.cglib.proxy.MethodProxy.invoke(MethodProxy.java:218)
  2349. at org.springframework.aop.framework.CglibAopProxy$CglibMet', 'org.springframework.jdbc.support.SQLStateSQLExceptionTranslator', 'SQLStateSQLExceptionTranslator.java', 'doTranslate', 101, 0, NULL, NULL, '1', '2024-10-23 14:18:53', '1', '2024-10-23 14:18:53', NULL, 0);
  2350. INSERT INTO ruian_oa.infra_api_error_log VALUES (16, NULL, '1', 2, 'system-server', 'GET', '/admin-api/system/notify-message/get-unread-count', '{"query":{},"body":""}', '0:0:0:0:0:0:0:1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/129.0.0.0 Safari/537.36', '2024-10-23 14:20:53', 'org.springframework.jdbc.BadSqlGrammarException', 'BadSqlGrammarException:
  2351. ### Error querying database. Cause: org.postgresql.util.PSQLException: ERROR: 操作符不是唯一的: varcharbyte = boolean
  2352. 建议:无法选择最佳候选操作符. 您也许需要增加显式的类型转换.
  2353. 位置:97
  2354. ### The error may exist in com/zjugis/module/system/dal/mysql/notify/NotifyMessageMapper.java (best guess)
  2355. ### The error may involve defaultParameterMap
  2356. ### The error occurred while setting parameters
  2357. ### SQL: SELECT COUNT( * ) AS total FROM system_notify_message WHERE deleted=0 AND (read_status = ? AND user_id = ? AND user_type = ?)
  2358. ### Cause: org.postgresql.util.PSQLException: ERROR: 操作符不是唯一的: varcharbyte = boolean
  2359. 建议:无法选择最佳候选操作符. 您也许需要增加显式的类型转换.
  2360. 位置:97
  2361. ; bad SQL grammar []; nested exception is org.postgresql.util.PSQLException: ERROR: 操作符不是唯一的: varcharbyte = boolean
  2362. 建议:无法选择最佳候选操作符. 您也许需要增加显式的类型转换.
  2363. 位置:97', 'PSQLException: ERROR: 操作符不是唯一的: varcharbyte = boolean
  2364. 建议:无法选择最佳候选操作符. 您也许需要增加显式的类型转换.
  2365. 位置:97', 'org.springframework.jdbc.BadSqlGrammarException:
  2366. ### Error querying database. Cause: org.postgresql.util.PSQLException: ERROR: 操作符不是唯一的: varcharbyte = boolean
  2367. 建议:无法选择最佳候选操作符. 您也许需要增加显式的类型转换.
  2368. 位置:97
  2369. ### The error may exist in com/zjugis/module/system/dal/mysql/notify/NotifyMessageMapper.java (best guess)
  2370. ### The error may involve defaultParameterMap
  2371. ### The error occurred while setting parameters
  2372. ### SQL: SELECT COUNT( * ) AS total FROM system_notify_message WHERE deleted=0 AND (read_status = ? AND user_id = ? AND user_type = ?)
  2373. ### Cause: org.postgresql.util.PSQLException: ERROR: 操作符不是唯一的: varcharbyte = boolean
  2374. 建议:无法选择最佳候选操作符. 您也许需要增加显式的类型转换.
  2375. 位置:97
  2376. ; bad SQL grammar []; nested exception is org.postgresql.util.PSQLException: ERROR: 操作符不是唯一的: varcharbyte = boolean
  2377. 建议:无法选择最佳候选操作符. 您也许需要增加显式的类型转换.
  2378. 位置:97
  2379. at org.springframework.jdbc.support.SQLStateSQLExceptionTranslator.doTranslate(SQLStateSQLExceptionTranslator.java:101)
  2380. at org.springframework.jdbc.support.AbstractFallbackSQLExceptionTranslator.translate(AbstractFallbackSQLExceptionTranslator.java:70)
  2381. at org.springframework.jdbc.support.AbstractFallbackSQLExceptionTranslator.translate(AbstractFallbackSQLExceptionTranslator.java:79)
  2382. at org.springframework.jdbc.support.AbstractFallbackSQLExceptionTranslator.translate(AbstractFallbackSQLExceptionTranslator.java:79)
  2383. at org.mybatis.spring.MyBatisExceptionTranslator.translateExceptionIfPossible(MyBatisExceptionTranslator.java:92)
  2384. at org.mybatis.spring.SqlSessionTemplate$SqlSessionInterceptor.invoke(SqlSessionTemplate.java:439)
  2385. at com.sun.proxy.$Proxy201.selectOne(Unknown Source)
  2386. at org.mybatis.spring.SqlSessionTemplate.selectOne(SqlSessionTemplate.java:160)
  2387. at com.baomidou.mybatisplus.core.override.MybatisMapperMethod.execute(MybatisMapperMethod.java:89)
  2388. at com.baomidou.mybatisplus.core.override.MybatisMapperProxy$PlainMethodInvoker.invoke(MybatisMapperProxy.java:148)
  2389. at com.baomidou.mybatisplus.core.override.MybatisMapperProxy.invoke(MybatisMapperProxy.java:89)
  2390. at com.sun.proxy.$Proxy257.selectCount(Unknown Source)
  2391. at com.zjugis.module.system.dal.mysql.notify.NotifyMessageMapper.selectUnreadCountByUserIdAndUserType(NotifyMessageMapper.java:64)
  2392. at java.lang.invoke.MethodHandle.invokeWithArguments(MethodHandle.java:627)
  2393. at com.baomidou.mybatisplus.core.override.MybatisMapperProxy$DefaultMethodInvoker.invoke(MybatisMapperProxy.java:162)
  2394. at com.baomidou.mybatisplus.core.override.MybatisMapperProxy.invoke(MybatisMapperProxy.java:89)
  2395. at com.sun.proxy.$Proxy257.selectUnreadCountByUserIdAndUserType(Unknown Source)
  2396. at com.zjugis.module.system.service.notify.NotifyMessageServiceImpl.getUnreadNotifyMessageCount(NotifyMessageServiceImpl.java:62)
  2397. at com.zjugis.module.system.service.notify.NotifyMessageServiceImpl$$FastClassBySpringCGLIB$$f65b8551.invoke(<generated>)
  2398. at org.springframework.cglib.proxy.MethodProxy.invoke(MethodProxy.java:218)
  2399. at org.springframework.aop.framework.CglibAopProxy$CglibMet', 'org.springframework.jdbc.support.SQLStateSQLExceptionTranslator', 'SQLStateSQLExceptionTranslator.java', 'doTranslate', 101, 0, NULL, NULL, '1', '2024-10-23 14:20:53', '1', '2024-10-23 14:20:53', NULL, 0);
  2400. --
  2401. -- TOC entry 6807 (class 0 OID 16407)
  2402. -- Dependencies: 699
  2403. -- Data for Name: infra_codegen_column; Type: TABLE DATA; Schema: ruian_oa; Owner: system
  2404. --
  2405. --
  2406. -- TOC entry 6808 (class 0 OID 16414)
  2407. -- Dependencies: 700
  2408. -- Data for Name: infra_codegen_table; Type: TABLE DATA; Schema: ruian_oa; Owner: system
  2409. --
  2410. --
  2411. -- TOC entry 6809 (class 0 OID 16421)
  2412. -- Dependencies: 701
  2413. -- Data for Name: infra_config; Type: TABLE DATA; Schema: ruian_oa; Owner: system
  2414. --
  2415. INSERT INTO ruian_oa.infra_config VALUES (1, 'ui', 1, '主框架页-默认皮肤样式名称', 'sys.index.skinName', 'skin-blue', 0, '蓝色 skin-blue、绿色 skin-green、紫色 skin-purple、红色 skin-red、黄色 skin-yellow', 'admin', '2021-01-05 17:03:48', '1', '2022-03-26 23:10:31', 0);
  2416. INSERT INTO ruian_oa.infra_config VALUES (2, 'biz', 1, '用户管理-账号初始密码', 'sys.user.init-password', '123456', 0, '初始化密码 123456', 'admin', '2021-01-05 17:03:48', '1', '2022-03-20 02:25:51', 0);
  2417. INSERT INTO ruian_oa.infra_config VALUES (3, 'ui', 1, '主框架页-侧边栏主题', 'sys.index.sideTheme', 'theme-dark', 0, '深色主题theme-dark,浅色主题theme-light', 'admin', '2021-01-05 17:03:48', NULL, '2021-01-19 03:05:21', 0);
  2418. INSERT INTO ruian_oa.infra_config VALUES (4, '1', 2, 'xxx', 'demo.test', '10', 0, '5', NULL, '2021-01-19 03:10:26', NULL, '2021-01-20 09:25:55', 0);
  2419. INSERT INTO ruian_oa.infra_config VALUES (5, 'xxx', 2, 'xxx', 'xxx', 'xxx', 1, 'xxx', NULL, '2021-02-09 20:06:47', NULL, '2021-02-09 20:06:47', 0);
  2420. INSERT INTO ruian_oa.infra_config VALUES (6, 'biz', 2, '登陆验证码的开关', 'zjugis.captcha.enable', 'true', 1, NULL, '1', '2022-02-17 00:03:11', '1', '2022-04-04 12:51:40', 0);
  2421. --
  2422. -- TOC entry 6810 (class 0 OID 16428)
  2423. -- Dependencies: 702
  2424. -- Data for Name: infra_data_source_config; Type: TABLE DATA; Schema: ruian_oa; Owner: system
  2425. --
  2426. --
  2427. -- TOC entry 6811 (class 0 OID 16435)
  2428. -- Dependencies: 703
  2429. -- Data for Name: infra_file; Type: TABLE DATA; Schema: ruian_oa; Owner: system
  2430. --
  2431. --
  2432. -- TOC entry 6812 (class 0 OID 16442)
  2433. -- Dependencies: 704
  2434. -- Data for Name: infra_file_config; Type: TABLE DATA; Schema: ruian_oa; Owner: system
  2435. --
  2436. INSERT INTO ruian_oa.infra_file_config VALUES (4, '数据库', 1, '我是数据库', 1, '{"@class":"com.zjugis.framework.file.core.client.db.DBFileClientConfig","domain":"http://127.0.0.1:48080"}', '1', '2022-03-15 23:56:24', '1', '2022-03-26 21:39:26', 0);
  2437. INSERT INTO ruian_oa.infra_file_config VALUES (5, '本地磁盘', 10, '测试下本地存储', 0, '{"@class":"com.zjugis.framework.file.core.client.local.LocalFileClientConfig","basePath":"/Users/yunai/file_test","domain":"http://127.0.0.1:48080"}', '1', '2022-03-15 23:57:00', '1', '2022-03-26 21:39:26', 0);
  2438. INSERT INTO ruian_oa.infra_file_config VALUES (11, 'S3 - 七牛云', 20, NULL, 0, '{"@class":"com.zjugis.framework.file.core.client.s3.S3FileClientConfig","endpoint":"s3-cn-south-1.qiniucs.com","domain":"http://test.zjugis.iocoder.cn","bucket":"ruoyi-vue-pro","accessKey":"b7yvuhBSAGjmtPhMFcn9iMOxUOY_I06cA_p0ZUx8","accessSecret":"kXM1l5ia1RvSX3QaOEcwI3RLz3Y2rmNszWonKZtP"}', '1', '2022-03-19 18:00:03', '1', '2022-05-26 00:03:47', 0);
  2439. --
  2440. -- TOC entry 6813 (class 0 OID 16449)
  2441. -- Dependencies: 705
  2442. -- Data for Name: infra_file_content; Type: TABLE DATA; Schema: ruian_oa; Owner: system
  2443. --
  2444. --
  2445. -- TOC entry 6814 (class 0 OID 16456)
  2446. -- Dependencies: 706
  2447. -- Data for Name: infra_job; Type: TABLE DATA; Schema: ruian_oa; Owner: system
  2448. --
  2449. --
  2450. -- TOC entry 6815 (class 0 OID 16463)
  2451. -- Dependencies: 707
  2452. -- Data for Name: infra_job_log; Type: TABLE DATA; Schema: ruian_oa; Owner: system
  2453. --
  2454. --
  2455. -- TOC entry 6816 (class 0 OID 16470)
  2456. -- Dependencies: 708
  2457. -- Data for Name: infra_msg_send_record; Type: TABLE DATA; Schema: ruian_oa; Owner: system
  2458. --
  2459. --
  2460. -- TOC entry 6817 (class 0 OID 16476)
  2461. -- Dependencies: 709
  2462. -- Data for Name: infra_test_demo; Type: TABLE DATA; Schema: ruian_oa; Owner: system
  2463. --
  2464. --
  2465. -- TOC entry 6818 (class 0 OID 16483)
  2466. -- Dependencies: 710
  2467. -- Data for Name: message_info; Type: TABLE DATA; Schema: ruian_oa; Owner: system
  2468. --
  2469. --
  2470. -- TOC entry 6819 (class 0 OID 16531)
  2471. -- Dependencies: 711
  2472. -- Data for Name: system_area; Type: TABLE DATA; Schema: ruian_oa; Owner: system
  2473. --
  2474. --
  2475. -- TOC entry 6820 (class 0 OID 16534)
  2476. -- Dependencies: 712
  2477. -- Data for Name: system_company; Type: TABLE DATA; Schema: ruian_oa; Owner: system
  2478. --
  2479. --
  2480. -- TOC entry 6821 (class 0 OID 16539)
  2481. -- Dependencies: 713
  2482. -- Data for Name: system_dept; Type: TABLE DATA; Schema: ruian_oa; Owner: system
  2483. --
  2484. INSERT INTO ruian_oa.system_dept VALUES ('103', '研发部门', NULL, 1, '104', '15888888888', 'ry@qq.com', 0, 'admin', '2021-01-05 17:03:47', '103', '2022-01-14 01:04:14', 0, '101', NULL, NULL);
  2485. INSERT INTO ruian_oa.system_dept VALUES ('104', '市场部门', NULL, 2, NULL, '15888888888', 'ry@qq.com', 0, 'admin', '2021-01-05 17:03:47', NULL, '2021-12-15 05:01:38', 0, '101', NULL, NULL);
  2486. INSERT INTO ruian_oa.system_dept VALUES ('105', '测试部门', NULL, 3, NULL, '15888888888', 'ry@qq.com', 0, 'admin', '2021-01-05 17:03:47', NULL, '2021-12-15 05:01:37', 0, '101', NULL, NULL);
  2487. INSERT INTO ruian_oa.system_dept VALUES ('106', '财务部门', NULL, 4, '103', '15888888888', 'ry@qq.com', 0, 'admin', '2021-01-05 17:03:47', '103', '2022-01-15 21:32:22', 0, '101', NULL, NULL);
  2488. INSERT INTO ruian_oa.system_dept VALUES ('107', '运维部门', NULL, 5, NULL, '15888888888', 'ry@qq.com', 0, 'admin', '2021-01-05 17:03:47', NULL, '2021-12-15 05:01:33', 0, '101', NULL, NULL);
  2489. INSERT INTO ruian_oa.system_dept VALUES ('108', '市场部门', NULL, 1, NULL, '15888888888', 'ry@qq.com', 0, 'admin', '2021-01-05 17:03:47', '1', '2022-02-16 08:35:45', 1, '102', NULL, NULL);
  2490. INSERT INTO ruian_oa.system_dept VALUES ('109', '财务部门', NULL, 2, NULL, '15888888888', 'ry@qq.com', 0, 'admin', '2021-01-05 17:03:47', NULL, '2021-12-15 05:01:29', 1, '102', NULL, NULL);
  2491. INSERT INTO ruian_oa.system_dept VALUES ('102', '长沙分公司', NULL, 2, NULL, '15888888888', 'ry@qq.com', 0, 'admin', '2021-01-05 17:03:47', NULL, '2021-12-15 05:01:40', 1, '100', NULL, NULL);
  2492. INSERT INTO ruian_oa.system_dept VALUES ('101', '分公司', NULL, 1, '104', '15888888888', 'ry@qq.com', 0, 'admin', '2021-01-05 17:03:47', '1', '2024-10-23 14:30:45', 0, '100', NULL, NULL);
  2493. INSERT INTO ruian_oa.system_dept VALUES ('100', '顶级部门', NULL, 0, NULL, '15888888888', 'ry@qq.com', 0, 'admin', '2021-01-05 17:03:47', '1', '2024-10-23 14:30:54', 0, '0', NULL, NULL);
  2494. --
  2495. -- TOC entry 6822 (class 0 OID 16543)
  2496. -- Dependencies: 714
  2497. -- Data for Name: system_dept_leader; Type: TABLE DATA; Schema: ruian_oa; Owner: system
  2498. --
  2499. INSERT INTO ruian_oa.system_dept_leader VALUES ('52a8b7c92c26d64518374303f204c99b', '101', NULL, '1', '2024-10-23 14:30:45', '1', '2024-10-23 14:30:45', 0);
  2500. INSERT INTO ruian_oa.system_dept_leader VALUES ('2b16b8bfe5cbcbb3c4c8a8a590279904', '100', NULL, '1', '2024-10-23 14:30:26', '1', '2024-10-23 14:30:26', 0);
  2501. --
  2502. -- TOC entry 6823 (class 0 OID 16547)
  2503. -- Dependencies: 715
  2504. -- Data for Name: system_dict_data; Type: TABLE DATA; Schema: ruian_oa; Owner: system
  2505. --
  2506. INSERT INTO ruian_oa.system_dict_data VALUES (1, 1, '男', '1', 'system_user_sex', 0, 'default', 'A', '性别男', 'admin', '2021-01-05 17:03:48', '1', '2022-03-29 00:14:39', 0);
  2507. INSERT INTO ruian_oa.system_dict_data VALUES (2, 2, '女', '2', 'system_user_sex', 1, 'success', NULL, '性别女', 'admin', '2021-01-05 17:03:48', '1', '2022-02-16 01:30:51', 0);
  2508. INSERT INTO ruian_oa.system_dict_data VALUES (8, 1, '正常', '1', 'infra_job_status', 0, 'success', NULL, '正常状态', 'admin', '2021-01-05 17:03:48', '1', '2022-02-16 19:33:38', 0);
  2509. INSERT INTO ruian_oa.system_dict_data VALUES (9, 2, '暂停', '2', 'infra_job_status', 0, 'danger', NULL, '停用状态', 'admin', '2021-01-05 17:03:48', '1', '2022-02-16 19:33:45', 0);
  2510. INSERT INTO ruian_oa.system_dict_data VALUES (12, 1, '系统内置', '1', 'infra_config_type', 0, 'danger', NULL, '参数类型 - 系统内置', 'admin', '2021-01-05 17:03:48', '1', '2022-02-16 19:06:02', 0);
  2511. INSERT INTO ruian_oa.system_dict_data VALUES (13, 2, '自定义', '2', 'infra_config_type', 0, 'primary', NULL, '参数类型 - 自定义', 'admin', '2021-01-05 17:03:48', '1', '2022-02-16 19:06:07', 0);
  2512. INSERT INTO ruian_oa.system_dict_data VALUES (14, 1, '通知', '1', 'system_notice_type', 0, 'success', NULL, '通知', 'admin', '2021-01-05 17:03:48', '1', '2022-02-16 13:05:57', 0);
  2513. INSERT INTO ruian_oa.system_dict_data VALUES (15, 2, '公告', '2', 'system_notice_type', 0, 'info', NULL, '公告', 'admin', '2021-01-05 17:03:48', '1', '2022-02-16 13:06:01', 0);
  2514. INSERT INTO ruian_oa.system_dict_data VALUES (16, 0, '其它', '0', 'system_operate_type', 0, 'default', NULL, '其它操作', 'admin', '2021-01-05 17:03:48', '1', '2022-02-16 09:32:46', 0);
  2515. INSERT INTO ruian_oa.system_dict_data VALUES (17, 1, '查询', '1', 'system_operate_type', 0, 'info', NULL, '查询操作', 'admin', '2021-01-05 17:03:48', '1', '2022-02-16 09:33:16', 0);
  2516. INSERT INTO ruian_oa.system_dict_data VALUES (18, 2, '新增', '2', 'system_operate_type', 0, 'primary', NULL, '新增操作', 'admin', '2021-01-05 17:03:48', '1', '2022-02-16 09:33:13', 0);
  2517. INSERT INTO ruian_oa.system_dict_data VALUES (19, 3, '修改', '3', 'system_operate_type', 0, 'warning', NULL, '修改操作', 'admin', '2021-01-05 17:03:48', '1', '2022-02-16 09:33:22', 0);
  2518. INSERT INTO ruian_oa.system_dict_data VALUES (20, 4, '删除', '4', 'system_operate_type', 0, 'danger', NULL, '删除操作', 'admin', '2021-01-05 17:03:48', '1', '2022-02-16 09:33:27', 0);
  2519. INSERT INTO ruian_oa.system_dict_data VALUES (22, 5, '导出', '5', 'system_operate_type', 0, 'default', NULL, '导出操作', 'admin', '2021-01-05 17:03:48', '1', '2022-02-16 09:33:32', 0);
  2520. INSERT INTO ruian_oa.system_dict_data VALUES (23, 6, '导入', '6', 'system_operate_type', 0, 'default', NULL, '导入操作', 'admin', '2021-01-05 17:03:48', '1', '2022-02-16 09:33:35', 0);
  2521. INSERT INTO ruian_oa.system_dict_data VALUES (27, 1, '开启', '0', 'common_status', 0, 'primary', NULL, '开启状态', 'admin', '2021-01-05 17:03:48', '1', '2022-02-16 08:00:39', 0);
  2522. INSERT INTO ruian_oa.system_dict_data VALUES (28, 2, '关闭', '1', 'common_status', 0, 'info', NULL, '关闭状态', 'admin', '2021-01-05 17:03:48', '1', '2022-02-16 08:00:44', 0);
  2523. INSERT INTO ruian_oa.system_dict_data VALUES (29, 1, '目录', '1', 'system_menu_type', 0, NULL, NULL, '目录', 'admin', '2021-01-05 17:03:48', NULL, '2022-02-01 16:43:45', 0);
  2524. INSERT INTO ruian_oa.system_dict_data VALUES (30, 2, '菜单', '2', 'system_menu_type', 0, NULL, NULL, '菜单', 'admin', '2021-01-05 17:03:48', NULL, '2022-02-01 16:43:41', 0);
  2525. INSERT INTO ruian_oa.system_dict_data VALUES (31, 3, '按钮', '3', 'system_menu_type', 0, NULL, NULL, '按钮', 'admin', '2021-01-05 17:03:48', NULL, '2022-02-01 16:43:39', 0);
  2526. INSERT INTO ruian_oa.system_dict_data VALUES (32, 1, '内置', '1', 'system_role_type', 0, 'danger', NULL, '内置角色', 'admin', '2021-01-05 17:03:48', '1', '2022-02-16 13:02:08', 0);
  2527. INSERT INTO ruian_oa.system_dict_data VALUES (33, 2, '自定义', '2', 'system_role_type', 0, 'primary', NULL, '自定义角色', 'admin', '2021-01-05 17:03:48', '1', '2022-02-16 13:02:12', 0);
  2528. INSERT INTO ruian_oa.system_dict_data VALUES (34, 1, '全部数据权限', '1', 'system_data_scope', 0, NULL, NULL, '全部数据权限', 'admin', '2021-01-05 17:03:48', NULL, '2022-02-01 16:47:17', 0);
  2529. INSERT INTO ruian_oa.system_dict_data VALUES (35, 2, '指定部门数据权限', '2', 'system_data_scope', 0, NULL, NULL, '指定部门数据权限', 'admin', '2021-01-05 17:03:48', NULL, '2022-02-01 16:47:18', 0);
  2530. INSERT INTO ruian_oa.system_dict_data VALUES (36, 3, '本部门数据权限', '3', 'system_data_scope', 0, NULL, NULL, '本部门数据权限', 'admin', '2021-01-05 17:03:48', NULL, '2022-02-01 16:47:16', 0);
  2531. INSERT INTO ruian_oa.system_dict_data VALUES (37, 4, '本部门及以下数据权限', '4', 'system_data_scope', 0, NULL, NULL, '本部门及以下数据权限', 'admin', '2021-01-05 17:03:48', NULL, '2022-02-01 16:47:21', 0);
  2532. INSERT INTO ruian_oa.system_dict_data VALUES (38, 5, '仅本人数据权限', '5', 'system_data_scope', 0, NULL, NULL, '仅本人数据权限', 'admin', '2021-01-05 17:03:48', NULL, '2022-02-01 16:47:23', 0);
  2533. INSERT INTO ruian_oa.system_dict_data VALUES (39, 0, '成功', '0', 'system_login_result', 0, 'success', NULL, '登陆结果 - 成功', NULL, '2021-01-18 06:17:36', '1', '2022-02-16 13:23:49', 0);
  2534. INSERT INTO ruian_oa.system_dict_data VALUES (40, 10, '账号或密码不正确', '10', 'system_login_result', 0, 'primary', NULL, '登陆结果 - 账号或密码不正确', NULL, '2021-01-18 06:17:54', '1', '2022-02-16 13:24:27', 0);
  2535. INSERT INTO ruian_oa.system_dict_data VALUES (41, 20, '用户被禁用', '20', 'system_login_result', 0, 'warning', NULL, '登陆结果 - 用户被禁用', NULL, '2021-01-18 06:17:54', '1', '2022-02-16 13:23:57', 0);
  2536. INSERT INTO ruian_oa.system_dict_data VALUES (42, 30, '验证码不存在', '30', 'system_login_result', 0, 'info', NULL, '登陆结果 - 验证码不存在', NULL, '2021-01-18 06:17:54', '1', '2022-02-16 13:24:07', 0);
  2537. INSERT INTO ruian_oa.system_dict_data VALUES (43, 31, '验证码不正确', '31', 'system_login_result', 0, 'info', NULL, '登陆结果 - 验证码不正确', NULL, '2021-01-18 06:17:54', '1', '2022-02-16 13:24:11', 0);
  2538. INSERT INTO ruian_oa.system_dict_data VALUES (44, 100, '未知异常', '100', 'system_login_result', 0, 'danger', NULL, '登陆结果 - 未知异常', NULL, '2021-01-18 06:17:54', '1', '2022-02-16 13:24:23', 0);
  2539. INSERT INTO ruian_oa.system_dict_data VALUES (45, 1, '是', 'true', 'infra_boolean_string', 0, 'danger', NULL, 'Boolean 是否类型 - 是', NULL, '2021-01-19 03:20:55', '1', '2022-03-15 23:01:45', 0);
  2540. INSERT INTO ruian_oa.system_dict_data VALUES (46, 1, '否', 'false', 'infra_boolean_string', 0, 'info', NULL, 'Boolean 是否类型 - 否', NULL, '2021-01-19 03:20:55', '1', '2022-03-15 23:09:45', 0);
  2541. INSERT INTO ruian_oa.system_dict_data VALUES (47, 1, '永不超时', '1', 'infra_redis_timeout_type', 0, 'primary', NULL, 'Redis 未设置超时的情况', NULL, '2021-01-26 00:53:17', '1', '2022-02-16 19:03:35', 0);
  2542. INSERT INTO ruian_oa.system_dict_data VALUES (48, 1, '动态超时', '2', 'infra_redis_timeout_type', 0, 'info', NULL, '程序里动态传入超时时间,无法固定', NULL, '2021-01-26 00:55:00', '1', '2022-02-16 19:03:41', 0);
  2543. INSERT INTO ruian_oa.system_dict_data VALUES (49, 3, '固定超时', '3', 'infra_redis_timeout_type', 0, 'success', NULL, 'Redis 设置了过期时间', NULL, '2021-01-26 00:55:26', '1', '2022-02-16 19:03:45', 0);
  2544. INSERT INTO ruian_oa.system_dict_data VALUES (50, 1, '单表(增删改查)', '1', 'infra_codegen_template_type', 0, NULL, NULL, NULL, NULL, '2021-02-05 07:09:06', NULL, '2022-03-10 16:33:15', 0);
  2545. INSERT INTO ruian_oa.system_dict_data VALUES (51, 2, '树表(增删改查)', '2', 'infra_codegen_template_type', 0, NULL, NULL, NULL, NULL, '2021-02-05 07:14:46', NULL, '2022-03-10 16:33:19', 0);
  2546. INSERT INTO ruian_oa.system_dict_data VALUES (53, 0, '初始化中', '0', 'infra_job_status', 0, 'primary', NULL, NULL, NULL, '2021-02-07 07:46:49', '1', '2022-02-16 19:33:29', 0);
  2547. INSERT INTO ruian_oa.system_dict_data VALUES (57, 0, '运行中', '0', 'infra_job_log_status', 0, 'primary', NULL, 'RUNNING', NULL, '2021-02-08 10:04:24', '1', '2022-02-16 19:07:48', 0);
  2548. INSERT INTO ruian_oa.system_dict_data VALUES (58, 1, '成功', '1', 'infra_job_log_status', 0, 'success', NULL, NULL, NULL, '2021-02-08 10:06:57', '1', '2022-02-16 19:07:52', 0);
  2549. INSERT INTO ruian_oa.system_dict_data VALUES (59, 2, '失败', '2', 'infra_job_log_status', 0, 'warning', NULL, '失败', NULL, '2021-02-08 10:07:38', '1', '2022-02-16 19:07:56', 0);
  2550. INSERT INTO ruian_oa.system_dict_data VALUES (60, 1, '会员', '1', 'user_type', 0, 'primary', NULL, NULL, NULL, '2021-02-26 00:16:27', '1', '2022-02-16 10:22:19', 0);
  2551. INSERT INTO ruian_oa.system_dict_data VALUES (61, 2, '管理员', '2', 'user_type', 0, 'success', NULL, NULL, NULL, '2021-02-26 00:16:34', '1', '2022-02-16 10:22:22', 0);
  2552. INSERT INTO ruian_oa.system_dict_data VALUES (62, 0, '未处理', '0', 'infra_api_error_log_process_status', 0, 'primary', NULL, NULL, NULL, '2021-02-26 07:07:19', '1', '2022-02-16 20:14:17', 0);
  2553. INSERT INTO ruian_oa.system_dict_data VALUES (63, 1, '已处理', '1', 'infra_api_error_log_process_status', 0, 'success', NULL, NULL, NULL, '2021-02-26 07:07:26', '1', '2022-02-16 20:14:08', 0);
  2554. INSERT INTO ruian_oa.system_dict_data VALUES (64, 2, '已忽略', '2', 'infra_api_error_log_process_status', 0, 'danger', NULL, NULL, NULL, '2021-02-26 07:07:34', '1', '2022-02-16 20:14:14', 0);
  2555. INSERT INTO ruian_oa.system_dict_data VALUES (66, 2, '阿里云', 'ALIYUN', 'system_sms_channel_code', 0, 'primary', NULL, NULL, '1', '2021-04-05 01:05:26', '1', '2022-02-16 10:09:52', 0);
  2556. INSERT INTO ruian_oa.system_dict_data VALUES (67, 1, '验证码', '1', 'system_sms_template_type', 0, 'warning', NULL, NULL, '1', '2021-04-05 21:50:57', '1', '2022-02-16 12:48:30', 0);
  2557. INSERT INTO ruian_oa.system_dict_data VALUES (68, 2, '通知', '2', 'system_sms_template_type', 0, 'primary', NULL, NULL, '1', '2021-04-05 21:51:08', '1', '2022-02-16 12:48:27', 0);
  2558. INSERT INTO ruian_oa.system_dict_data VALUES (69, 0, '营销', '3', 'system_sms_template_type', 0, 'danger', NULL, NULL, '1', '2021-04-05 21:51:15', '1', '2022-02-16 12:48:22', 0);
  2559. INSERT INTO ruian_oa.system_dict_data VALUES (70, 0, '初始化', '0', 'system_sms_send_status', 0, 'primary', NULL, NULL, '1', '2021-04-11 20:18:33', '1', '2022-02-16 10:26:07', 0);
  2560. INSERT INTO ruian_oa.system_dict_data VALUES (71, 1, '发送成功', '10', 'system_sms_send_status', 0, 'success', NULL, NULL, '1', '2021-04-11 20:18:43', '1', '2022-02-16 10:25:56', 0);
  2561. INSERT INTO ruian_oa.system_dict_data VALUES (72, 2, '发送失败', '20', 'system_sms_send_status', 0, 'danger', NULL, NULL, '1', '2021-04-11 20:18:49', '1', '2022-02-16 10:26:03', 0);
  2562. INSERT INTO ruian_oa.system_dict_data VALUES (73, 3, '不发送', '30', 'system_sms_send_status', 0, 'info', NULL, NULL, '1', '2021-04-11 20:19:44', '1', '2022-02-16 10:26:10', 0);
  2563. INSERT INTO ruian_oa.system_dict_data VALUES (74, 0, '等待结果', '0', 'system_sms_receive_status', 0, 'primary', NULL, NULL, '1', '2021-04-11 20:27:43', '1', '2022-02-16 10:28:24', 0);
  2564. INSERT INTO ruian_oa.system_dict_data VALUES (75, 1, '接收成功', '10', 'system_sms_receive_status', 0, 'success', NULL, NULL, '1', '2021-04-11 20:29:25', '1', '2022-02-16 10:28:28', 0);
  2565. INSERT INTO ruian_oa.system_dict_data VALUES (76, 2, '接收失败', '20', 'system_sms_receive_status', 0, 'danger', NULL, NULL, '1', '2021-04-11 20:29:31', '1', '2022-02-16 10:28:32', 0);
  2566. INSERT INTO ruian_oa.system_dict_data VALUES (77, 0, '调试(钉钉)', 'DEBUG_DING_TALK', 'system_sms_channel_code', 0, 'info', NULL, NULL, '1', '2021-04-13 00:20:37', '1', '2022-02-16 10:10:00', 0);
  2567. INSERT INTO ruian_oa.system_dict_data VALUES (78, 1, '自动生成', '1', 'system_error_code_type', 0, 'warning', NULL, NULL, '1', '2021-04-21 00:06:48', '1', '2022-02-16 13:57:20', 0);
  2568. INSERT INTO ruian_oa.system_dict_data VALUES (79, 2, '手动编辑', '2', 'system_error_code_type', 0, 'primary', NULL, NULL, '1', '2021-04-21 00:07:14', '1', '2022-02-16 13:57:24', 0);
  2569. INSERT INTO ruian_oa.system_dict_data VALUES (80, 100, '账号登录', '100', 'system_login_type', 0, 'primary', NULL, '账号登录', '1', '2021-10-06 00:52:02', '1', '2022-02-16 13:11:34', 0);
  2570. INSERT INTO ruian_oa.system_dict_data VALUES (81, 101, '社交登录', '101', 'system_login_type', 0, 'info', NULL, '社交登录', '1', '2021-10-06 00:52:17', '1', '2022-02-16 13:11:40', 0);
  2571. INSERT INTO ruian_oa.system_dict_data VALUES (83, 200, '主动登出', '200', 'system_login_type', 0, 'primary', NULL, '主动登出', '1', '2021-10-06 00:52:58', '1', '2022-02-16 13:11:49', 0);
  2572. INSERT INTO ruian_oa.system_dict_data VALUES (85, 202, '强制登出', '202', 'system_login_type', 0, 'danger', NULL, '强制退出', '1', '2021-10-06 00:53:41', '1', '2022-02-16 13:11:57', 0);
  2573. INSERT INTO ruian_oa.system_dict_data VALUES (1145, 1, '管理后台', '1', 'infra_codegen_scene', 0, NULL, NULL, '代码生成的场景枚举 - 管理后台', '1', '2022-02-02 13:15:06', '1', '2022-03-10 16:32:59', 0);
  2574. INSERT INTO ruian_oa.system_dict_data VALUES (1146, 2, '用户 APP', '2', 'infra_codegen_scene', 0, NULL, NULL, '代码生成的场景枚举 - 用户 APP', '1', '2022-02-02 13:15:19', '1', '2022-03-10 16:33:03', 0);
  2575. INSERT INTO ruian_oa.system_dict_data VALUES (1150, 1, '数据库', '1', 'infra_file_storage', 0, 'default', NULL, NULL, '1', '2022-03-15 00:25:28', '1', '2022-03-15 00:25:28', 0);
  2576. INSERT INTO ruian_oa.system_dict_data VALUES (1151, 10, '本地磁盘', '10', 'infra_file_storage', 0, 'default', NULL, NULL, '1', '2022-03-15 00:25:41', '1', '2022-03-15 00:25:56', 0);
  2577. INSERT INTO ruian_oa.system_dict_data VALUES (1152, 11, 'FTP 服务器', '11', 'infra_file_storage', 0, 'default', NULL, NULL, '1', '2022-03-15 00:26:06', '1', '2022-03-15 00:26:10', 0);
  2578. INSERT INTO ruian_oa.system_dict_data VALUES (1153, 12, 'SFTP 服务器', '12', 'infra_file_storage', 0, 'default', NULL, NULL, '1', '2022-03-15 00:26:22', '1', '2022-03-15 00:26:22', 0);
  2579. INSERT INTO ruian_oa.system_dict_data VALUES (1154, 20, 'S3 对象存储', '20', 'infra_file_storage', 0, 'default', NULL, NULL, '1', '2022-03-15 00:26:31', '1', '2022-03-15 00:26:45', 0);
  2580. INSERT INTO ruian_oa.system_dict_data VALUES (1155, 103, '短信登录', '103', 'system_login_type', 0, 'default', NULL, NULL, '1', '2022-05-09 23:57:58', '1', '2022-05-09 23:58:09', 0);
  2581. INSERT INTO ruian_oa.system_dict_data VALUES (1156, 1, 'password', 'password', 'system_oauth2_grant_type', 0, 'default', NULL, '密码模式', '1', '2022-05-12 00:22:05', '1', '2022-05-11 16:26:01', 0);
  2582. INSERT INTO ruian_oa.system_dict_data VALUES (1157, 2, 'authorization_code', 'authorization_code', 'system_oauth2_grant_type', 0, 'primary', NULL, '授权码模式', '1', '2022-05-12 00:22:59', '1', '2022-05-11 16:26:02', 0);
  2583. INSERT INTO ruian_oa.system_dict_data VALUES (1158, 3, 'implicit', 'implicit', 'system_oauth2_grant_type', 0, 'success', NULL, '简化模式', '1', '2022-05-12 00:23:40', '1', '2022-05-11 16:26:05', 0);
  2584. INSERT INTO ruian_oa.system_dict_data VALUES (1159, 4, 'client_credentials', 'client_credentials', 'system_oauth2_grant_type', 0, 'default', NULL, '客户端模式', '1', '2022-05-12 00:23:51', '1', '2022-05-11 16:26:08', 0);
  2585. INSERT INTO ruian_oa.system_dict_data VALUES (1160, 5, 'refresh_token', 'refresh_token', 'system_oauth2_grant_type', 0, 'info', NULL, '刷新模式', '1', '2022-05-12 00:24:02', '1', '2022-05-11 16:26:11', 0);
  2586. INSERT INTO ruian_oa.system_dict_data VALUES (1161, 4, 'Vue 3 Vben', '30', 'infra_codegen_front_type', 0, NULL, NULL, NULL, '1', '2023-06-14 15:24:37', '1', '2023-06-14 15:24:37', 0);
  2587. INSERT INTO ruian_oa.system_dict_data VALUES (1162, 3, 'Vue 3 Schema', '21', 'infra_codegen_front_type', 0, NULL, NULL, 'Vue 3 Element Plus Schema', '1', '2023-06-14 15:24:19', '1', '2023-06-14 15:36:40', 0);
  2588. INSERT INTO ruian_oa.system_dict_data VALUES (1163, 2, 'Vue 3', '20', 'infra_codegen_front_type', 0, NULL, NULL, 'Vue 3 Element Plus', '1', '2023-06-14 15:24:06', '1', '2023-06-14 15:24:06', 0);
  2589. INSERT INTO ruian_oa.system_dict_data VALUES (1164, 1, 'Vue 2', '10', 'infra_codegen_front_type', 0, NULL, NULL, 'Vue 2', '1', '2023-06-14 15:23:12', '1', '2023-06-14 15:23:58', 0);
  2590. --
  2591. -- TOC entry 6824 (class 0 OID 16554)
  2592. -- Dependencies: 716
  2593. -- Data for Name: system_dict_type; Type: TABLE DATA; Schema: ruian_oa; Owner: system
  2594. --
  2595. INSERT INTO ruian_oa.system_dict_type VALUES (1, '用户性别', 'system_user_sex', 0, NULL, 'admin', '2021-01-05 17:03:48', NULL, '2022-02-01 16:30:31', 0, NULL);
  2596. INSERT INTO ruian_oa.system_dict_type VALUES (6, '参数类型', 'infra_config_type', 0, NULL, 'admin', '2021-01-05 17:03:48', NULL, '2022-02-01 16:36:54', 0, NULL);
  2597. INSERT INTO ruian_oa.system_dict_type VALUES (7, '通知类型', 'system_notice_type', 0, NULL, 'admin', '2021-01-05 17:03:48', NULL, '2022-02-01 16:35:26', 0, NULL);
  2598. INSERT INTO ruian_oa.system_dict_type VALUES (9, '操作类型', 'system_operate_type', 0, NULL, 'admin', '2021-01-05 17:03:48', '1', '2022-02-16 09:32:21', 0, NULL);
  2599. INSERT INTO ruian_oa.system_dict_type VALUES (10, '系统状态', 'common_status', 0, NULL, 'admin', '2021-01-05 17:03:48', NULL, '2022-02-01 16:21:28', 0, NULL);
  2600. INSERT INTO ruian_oa.system_dict_type VALUES (11, 'Boolean 是否类型', 'infra_boolean_string', 0, 'boolean 转是否', NULL, '2021-01-19 03:20:08', NULL, '2022-02-01 16:37:10', 0, NULL);
  2601. INSERT INTO ruian_oa.system_dict_type VALUES (104, '登陆结果', 'system_login_result', 0, '登陆结果', NULL, '2021-01-18 06:17:11', NULL, '2022-02-01 16:36:00', 0, NULL);
  2602. INSERT INTO ruian_oa.system_dict_type VALUES (105, 'Redis 超时类型', 'infra_redis_timeout_type', 0, 'RedisKeyDefine.TimeoutTypeEnum', NULL, '2021-01-26 00:52:50', NULL, '2022-02-01 16:50:29', 0, NULL);
  2603. INSERT INTO ruian_oa.system_dict_type VALUES (106, '代码生成模板类型', 'infra_codegen_template_type', 0, NULL, NULL, '2021-02-05 07:08:06', NULL, '2022-03-10 16:33:42', 0, NULL);
  2604. INSERT INTO ruian_oa.system_dict_type VALUES (107, '定时任务状态', 'infra_job_status', 0, NULL, NULL, '2021-02-07 07:44:16', NULL, '2022-02-01 16:51:11', 0, NULL);
  2605. INSERT INTO ruian_oa.system_dict_type VALUES (108, '定时任务日志状态', 'infra_job_log_status', 0, NULL, NULL, '2021-02-08 10:03:51', NULL, '2022-02-01 16:50:43', 0, NULL);
  2606. INSERT INTO ruian_oa.system_dict_type VALUES (109, '用户类型', 'user_type', 0, NULL, NULL, '2021-02-26 00:15:51', NULL, '2021-02-26 00:15:51', 0, NULL);
  2607. INSERT INTO ruian_oa.system_dict_type VALUES (110, 'API 异常数据的处理状态', 'infra_api_error_log_process_status', 0, NULL, NULL, '2021-02-26 07:07:01', NULL, '2022-02-01 16:50:53', 0, NULL);
  2608. INSERT INTO ruian_oa.system_dict_type VALUES (111, '短信渠道编码', 'system_sms_channel_code', 0, NULL, '1', '2021-04-05 01:04:50', '1', '2022-02-16 02:09:08', 0, NULL);
  2609. INSERT INTO ruian_oa.system_dict_type VALUES (112, '短信模板的类型', 'system_sms_template_type', 0, NULL, '1', '2021-04-05 21:50:43', '1', '2022-02-01 16:35:06', 0, NULL);
  2610. INSERT INTO ruian_oa.system_dict_type VALUES (113, '短信发送状态', 'system_sms_send_status', 0, NULL, '1', '2021-04-11 20:18:03', '1', '2022-02-01 16:35:09', 0, NULL);
  2611. INSERT INTO ruian_oa.system_dict_type VALUES (114, '短信接收状态', 'system_sms_receive_status', 0, NULL, '1', '2021-04-11 20:27:14', '1', '2022-02-01 16:35:14', 0, NULL);
  2612. INSERT INTO ruian_oa.system_dict_type VALUES (115, '错误码的类型', 'system_error_code_type', 0, NULL, '1', '2021-04-21 00:06:30', '1', '2022-02-01 16:36:49', 0, NULL);
  2613. INSERT INTO ruian_oa.system_dict_type VALUES (116, '登陆日志的类型', 'system_login_type', 0, '登陆日志的类型', '1', '2021-10-06 00:50:46', '1', '2022-02-01 16:35:56', 0, NULL);
  2614. INSERT INTO ruian_oa.system_dict_type VALUES (144, '代码生成的场景枚举', 'infra_codegen_scene', 0, '代码生成的场景枚举', '1', '2022-02-02 13:14:45', '1', '2022-03-10 16:33:46', 0, NULL);
  2615. INSERT INTO ruian_oa.system_dict_type VALUES (145, '角色类型', 'system_role_type', 0, '角色类型', '1', '2022-02-16 13:01:46', '1', '2022-02-16 13:01:46', 0, NULL);
  2616. INSERT INTO ruian_oa.system_dict_type VALUES (146, '文件存储器', 'infra_file_storage', 0, '文件存储器', '1', '2022-03-15 00:24:38', '1', '2022-03-15 00:24:38', 0, NULL);
  2617. INSERT INTO ruian_oa.system_dict_type VALUES (147, 'OAuth 2.0 授权类型', 'system_oauth2_grant_type', 0, 'OAuth 2.0 授权类型(模式)', '1', '2022-05-12 00:20:52', '1', '2022-05-11 16:25:49', 0, NULL);
  2618. INSERT INTO ruian_oa.system_dict_type VALUES (148, '生成前端代码类型', 'infra_codegen_front_type', 0, '生成前端代码类型', '1', '2023-06-14 16:07:35', '1', '2023-06-14 16:07:39', 0, NULL);
  2619. --
  2620. -- TOC entry 6825 (class 0 OID 16561)
  2621. -- Dependencies: 717
  2622. -- Data for Name: system_district; Type: TABLE DATA; Schema: ruian_oa; Owner: system
  2623. --
  2624. --
  2625. -- TOC entry 6826 (class 0 OID 16568)
  2626. -- Dependencies: 718
  2627. -- Data for Name: system_error_code; Type: TABLE DATA; Schema: ruian_oa; Owner: system
  2628. --
  2629. --
  2630. -- TOC entry 6827 (class 0 OID 16575)
  2631. -- Dependencies: 719
  2632. -- Data for Name: system_login_log; Type: TABLE DATA; Schema: ruian_oa; Owner: system
  2633. --
  2634. INSERT INTO ruian_oa.system_login_log VALUES (0, 100, NULL, NULL, 2, 'admin', 0, '0:0:0:0:0:0:0:1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/129.0.0.0 Safari/537.36', NULL, '2024-10-23 11:05:20', NULL, '2024-10-23 11:05:20', 0, '1');
  2635. INSERT INTO ruian_oa.system_login_log VALUES (1, 100, NULL, NULL, 2, 'admin', 0, '0:0:0:0:0:0:0:1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/129.0.0.0 Safari/537.36', NULL, '2024-10-23 11:17:45', NULL, '2024-10-23 11:17:45', 0, '1');
  2636. INSERT INTO ruian_oa.system_login_log VALUES (2, 200, NULL, NULL, 2, 'admin', 0, '0:0:0:0:0:0:0:1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/129.0.0.0 Safari/537.36', '1', '2024-10-23 11:17:56', '1', '2024-10-23 11:17:56', 0, '1');
  2637. INSERT INTO ruian_oa.system_login_log VALUES (3, 100, NULL, NULL, 2, 'admin', 0, '0:0:0:0:0:0:0:1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/129.0.0.0 Safari/537.36', NULL, '2024-10-23 11:18:41', NULL, '2024-10-23 11:18:41', 0, '1');
  2638. INSERT INTO ruian_oa.system_login_log VALUES (4, 100, NULL, NULL, 2, 'admin', 0, '0:0:0:0:0:0:0:1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/129.0.0.0 Safari/537.36', NULL, '2024-10-23 11:33:14', NULL, '2024-10-23 11:33:14', 0, '1');
  2639. INSERT INTO ruian_oa.system_login_log VALUES (5, 100, NULL, NULL, 2, 'admin', 0, '0:0:0:0:0:0:0:1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/129.0.0.0 Safari/537.36', NULL, '2024-10-23 14:08:40', NULL, '2024-10-23 14:08:40', 0, '1');
  2640. INSERT INTO ruian_oa.system_login_log VALUES (6, 100, NULL, NULL, 2, 'admin', 0, '0:0:0:0:0:0:0:1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/129.0.0.0 Safari/537.36', NULL, '2024-10-23 14:16:51', NULL, '2024-10-23 14:16:51', 0, '1');
  2641. INSERT INTO ruian_oa.system_login_log VALUES (7, 100, NULL, NULL, 2, 'admin', 0, '0:0:0:0:0:0:0:1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/129.0.0.0 Safari/537.36', NULL, '2024-10-23 14:25:14', NULL, '2024-10-23 14:25:14', 0, '1');
  2642. INSERT INTO ruian_oa.system_login_log VALUES (8, 100, NULL, NULL, 2, 'admin', 0, '0:0:0:0:0:0:0:1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/129.0.0.0 Safari/537.36', NULL, '2024-10-23 14:29:01', NULL, '2024-10-23 14:29:01', 0, '1');
  2643. INSERT INTO ruian_oa.system_login_log VALUES (9, 200, NULL, NULL, 2, 'admin', 0, '0:0:0:0:0:0:0:1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/129.0.0.0 Safari/537.36', '1', '2024-10-23 14:32:26', '1', '2024-10-23 14:32:26', 0, '1');
  2644. INSERT INTO ruian_oa.system_login_log VALUES (10, 100, NULL, NULL, 2, 'admin', 0, '0:0:0:0:0:0:0:1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/129.0.0.0 Safari/537.36', NULL, '2024-10-23 14:32:34', NULL, '2024-10-23 14:32:34', 0, '1');
  2645. INSERT INTO ruian_oa.system_login_log VALUES (11, 100, NULL, NULL, 2, 'admin', 0, '0:0:0:0:0:0:0:1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/129.0.0.0 Safari/537.36', NULL, '2024-10-23 14:37:41', NULL, '2024-10-23 14:37:41', 0, '1');
  2646. INSERT INTO ruian_oa.system_login_log VALUES (12, 202, NULL, NULL, 2, 'admin', 0, '0:0:0:0:0:0:0:1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/129.0.0.0 Safari/537.36', '1', '2024-10-23 14:38:38', '1', '2024-10-23 14:38:38', 0, '1');
  2647. INSERT INTO ruian_oa.system_login_log VALUES (13, 100, NULL, NULL, 2, 'admin', 0, '0:0:0:0:0:0:0:1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/129.0.0.0 Safari/537.36', NULL, '2024-10-23 14:40:00', NULL, '2024-10-23 14:40:00', 0, '1');
  2648. --
  2649. -- TOC entry 6828 (class 0 OID 16583)
  2650. -- Dependencies: 720
  2651. -- Data for Name: system_mail_account; Type: TABLE DATA; Schema: ruian_oa; Owner: system
  2652. --
  2653. --
  2654. -- TOC entry 6829 (class 0 OID 16590)
  2655. -- Dependencies: 721
  2656. -- Data for Name: system_mail_log; Type: TABLE DATA; Schema: ruian_oa; Owner: system
  2657. --
  2658. --
  2659. -- TOC entry 6830 (class 0 OID 16596)
  2660. -- Dependencies: 722
  2661. -- Data for Name: system_mail_template; Type: TABLE DATA; Schema: ruian_oa; Owner: system
  2662. --
  2663. --
  2664. -- TOC entry 6831 (class 0 OID 16603)
  2665. -- Dependencies: 723
  2666. -- Data for Name: system_menu; Type: TABLE DATA; Schema: ruian_oa; Owner: system
  2667. --
  2668. INSERT INTO ruian_oa.system_menu VALUES (1, '系统管理', NULL, 1, 10, 0, '/system', 'system', NULL, NULL, 0, 't', 't', '1', 'admin', '2021-01-05 17:03:48', '1', '2022-05-13 01:02:57', 0);
  2669. INSERT INTO ruian_oa.system_menu VALUES (2, '基础设施', NULL, 1, 20, 0, '/infra', 'monitor', NULL, NULL, 0, 't', 't', '1', 'admin', '2021-01-05 17:03:48', '1', '2022-04-20 17:03:10', 0);
  2670. INSERT INTO ruian_oa.system_menu VALUES (5, 'OA 示例', NULL, 1, 40, 1185, 'oa', 'people', NULL, NULL, 0, 't', 't', '1', 'admin', '2021-09-20 16:26:19', '1', '2022-04-20 17:03:10', 0);
  2671. INSERT INTO ruian_oa.system_menu VALUES (100, '用户管理', 'system:user:list', 2, 1, 1, 'user', 'user', 'system/user/index', 'User', 0, 't', 't', '1', 'admin', '2021-01-05 17:03:48', NULL, '2022-04-20 17:03:10', 0);
  2672. INSERT INTO ruian_oa.system_menu VALUES (101, '角色管理', NULL, 2, 2, 1, 'role', 'peoples', 'system/role/index', NULL, 0, 't', 't', '1', 'admin', '2021-01-05 17:03:48', '1', '2022-04-20 17:03:10', 0);
  2673. INSERT INTO ruian_oa.system_menu VALUES (102, '菜单管理', NULL, 2, 3, 1, 'menu', 'tree-table', 'system/menu/index', NULL, 0, 't', 't', '1', 'admin', '2021-01-05 17:03:48', '1', '2022-04-20 17:03:10', 0);
  2674. INSERT INTO ruian_oa.system_menu VALUES (103, '部门管理', NULL, 2, 4, 1, 'dept', 'tree', 'system/dept/index', NULL, 0, 't', 't', '1', 'admin', '2021-01-05 17:03:48', '1', '2022-04-20 17:03:10', 0);
  2675. INSERT INTO ruian_oa.system_menu VALUES (104, '岗位管理', NULL, 2, 5, 1, 'post', 'post', 'system/post/index', NULL, 0, 't', 't', '1', 'admin', '2021-01-05 17:03:48', '1', '2022-04-20 17:03:10', 0);
  2676. INSERT INTO ruian_oa.system_menu VALUES (105, '字典管理', NULL, 2, 6, 1, 'dict', 'dict', 'system/dict/index', NULL, 0, 't', 't', '1', 'admin', '2021-01-05 17:03:48', '1', '2022-04-20 17:03:10', 0);
  2677. INSERT INTO ruian_oa.system_menu VALUES (106, '配置管理', NULL, 2, 6, 2, 'config', 'edit', 'infra/config/index', NULL, 0, 't', 't', '1', 'admin', '2021-01-05 17:03:48', '1', '2022-04-20 17:03:10', 0);
  2678. INSERT INTO ruian_oa.system_menu VALUES (107, '通知公告', NULL, 2, 8, 1, 'notice', 'message', 'system/notice/index', NULL, 0, 't', 't', '1', 'admin', '2021-01-05 17:03:48', '1', '2022-04-20 17:03:10', 0);
  2679. INSERT INTO ruian_oa.system_menu VALUES (108, '审计日志', NULL, 1, 9, 1, 'log', 'log', NULL, NULL, 0, 't', 't', '1', 'admin', '2021-01-05 17:03:48', '1', '2022-04-20 17:03:10', 0);
  2680. INSERT INTO ruian_oa.system_menu VALUES (109, '令牌管理', NULL, 2, 2, 1261, 'token', 'online', 'system/oauth2/token/index', NULL, 0, 't', 't', '1', 'admin', '2021-01-05 17:03:48', '1', '2022-05-11 23:31:42', 0);
  2681. INSERT INTO ruian_oa.system_menu VALUES (110, '定时任务', NULL, 2, 12, 2, 'job', 'job', 'infra/job/index', NULL, 0, 't', 't', '1', 'admin', '2021-01-05 17:03:48', '1', '2022-04-20 17:03:10', 0);
  2682. INSERT INTO ruian_oa.system_menu VALUES (111, 'MySQL 监控', NULL, 2, 9, 2, 'druid', 'druid', 'infra/druid/index', NULL, 0, 't', 't', '1', 'admin', '2021-01-05 17:03:48', '1', '2022-04-20 17:03:10', 0);
  2683. INSERT INTO ruian_oa.system_menu VALUES (112, 'Java 监控', NULL, 2, 11, 2, 'admin-server', 'server', 'infra/server/index', NULL, 0, 't', 't', '1', 'admin', '2021-01-05 17:03:48', '1', '2022-04-20 17:03:10', 0);
  2684. INSERT INTO ruian_oa.system_menu VALUES (113, 'Redis 监控', NULL, 2, 10, 2, 'redis', 'redis', 'infra/redis/index', NULL, 0, 't', 't', '1', 'admin', '2021-01-05 17:03:48', '1', '2022-04-20 17:03:10', 0);
  2685. INSERT INTO ruian_oa.system_menu VALUES (114, '表单构建', 'infra:build:list', 2, 2, 2, 'build', 'build', 'infra/build/index', NULL, 0, 't', 't', '1', 'admin', '2021-01-05 17:03:48', '1', '2022-04-20 17:03:10', 0);
  2686. INSERT INTO ruian_oa.system_menu VALUES (115, '代码生成', 'infra:codegen:query', 2, 1, 2, 'codegen', 'code', 'infra/codegen/index', NULL, 0, 't', 't', '1', 'admin', '2021-01-05 17:03:48', '1', '2022-04-20 17:03:10', 0);
  2687. INSERT INTO ruian_oa.system_menu VALUES (116, '系统接口', 'infra:swagger:list', 2, 3, 2, 'swagger', 'swagger', 'infra/swagger/index', NULL, 0, 't', 't', '1', 'admin', '2021-01-05 17:03:48', '1', '2022-04-20 17:03:10', 0);
  2688. INSERT INTO ruian_oa.system_menu VALUES (500, '操作日志', NULL, 2, 1, 108, 'operate-log', 'form', 'system/operatelog/index', NULL, 0, 't', 't', '1', 'admin', '2021-01-05 17:03:48', '1', '2022-04-20 17:03:10', 0);
  2689. INSERT INTO ruian_oa.system_menu VALUES (501, '登录日志', NULL, 2, 2, 108, 'login-log', 'logininfor', 'system/loginlog/index', NULL, 0, 't', 't', '1', 'admin', '2021-01-05 17:03:48', '1', '2022-04-20 17:03:10', 0);
  2690. INSERT INTO ruian_oa.system_menu VALUES (1001, '用户查询', 'system:user:query', 3, 1, 100, NULL, '#', NULL, NULL, 0, 't', 't', '1', 'admin', '2021-01-05 17:03:48', NULL, '2022-04-20 17:03:10', 0);
  2691. INSERT INTO ruian_oa.system_menu VALUES (1002, '用户新增', 'system:user:create', 3, 2, 100, NULL, NULL, NULL, NULL, 0, 't', 't', '1', 'admin', '2021-01-05 17:03:48', '1', '2022-04-20 17:03:10', 0);
  2692. INSERT INTO ruian_oa.system_menu VALUES (1003, '用户修改', 'system:user:update', 3, 3, 100, NULL, NULL, NULL, NULL, 0, 't', 't', '1', 'admin', '2021-01-05 17:03:48', '1', '2022-04-20 17:03:10', 0);
  2693. INSERT INTO ruian_oa.system_menu VALUES (1004, '用户删除', 'system:user:delete', 3, 4, 100, NULL, NULL, NULL, NULL, 0, 't', 't', '1', 'admin', '2021-01-05 17:03:48', '1', '2022-04-20 17:03:10', 0);
  2694. INSERT INTO ruian_oa.system_menu VALUES (1005, '用户导出', 'system:user:export', 3, 5, 100, NULL, '#', NULL, NULL, 0, 't', 't', '1', 'admin', '2021-01-05 17:03:48', NULL, '2022-04-20 17:03:10', 0);
  2695. INSERT INTO ruian_oa.system_menu VALUES (1006, '用户导入', 'system:user:import', 3, 6, 100, NULL, '#', NULL, NULL, 0, 't', 't', '1', 'admin', '2021-01-05 17:03:48', NULL, '2022-04-20 17:03:10', 0);
  2696. INSERT INTO ruian_oa.system_menu VALUES (1007, '重置密码', 'system:user:update-password', 3, 7, 100, NULL, NULL, NULL, NULL, 0, 't', 't', '1', 'admin', '2021-01-05 17:03:48', '1', '2022-04-20 17:03:10', 0);
  2697. INSERT INTO ruian_oa.system_menu VALUES (1008, '角色查询', 'system:role:query', 3, 1, 101, NULL, '#', NULL, NULL, 0, 't', 't', '1', 'admin', '2021-01-05 17:03:48', NULL, '2022-04-20 17:03:10', 0);
  2698. INSERT INTO ruian_oa.system_menu VALUES (1009, '角色新增', 'system:role:create', 3, 2, 101, NULL, NULL, NULL, NULL, 0, 't', 't', '1', 'admin', '2021-01-05 17:03:48', '1', '2022-04-20 17:03:10', 0);
  2699. INSERT INTO ruian_oa.system_menu VALUES (1010, '角色修改', 'system:role:update', 3, 3, 101, NULL, NULL, NULL, NULL, 0, 't', 't', '1', 'admin', '2021-01-05 17:03:48', '1', '2022-04-20 17:03:10', 0);
  2700. INSERT INTO ruian_oa.system_menu VALUES (1011, '角色删除', 'system:role:delete', 3, 4, 101, NULL, NULL, NULL, NULL, 0, 't', 't', '1', 'admin', '2021-01-05 17:03:48', '1', '2022-04-20 17:03:10', 0);
  2701. INSERT INTO ruian_oa.system_menu VALUES (1012, '角色导出', 'system:role:export', 3, 5, 101, NULL, '#', NULL, NULL, 0, 't', 't', '1', 'admin', '2021-01-05 17:03:48', NULL, '2022-04-20 17:03:10', 0);
  2702. INSERT INTO ruian_oa.system_menu VALUES (1013, '菜单查询', 'system:menu:query', 3, 1, 102, NULL, '#', NULL, NULL, 0, 't', 't', '1', 'admin', '2021-01-05 17:03:48', NULL, '2022-04-20 17:03:10', 0);
  2703. INSERT INTO ruian_oa.system_menu VALUES (1014, '菜单新增', 'system:menu:create', 3, 2, 102, NULL, '#', NULL, NULL, 0, 't', 't', '1', 'admin', '2021-01-05 17:03:48', NULL, '2022-04-20 17:03:10', 0);
  2704. INSERT INTO ruian_oa.system_menu VALUES (1015, '菜单修改', 'system:menu:update', 3, 3, 102, NULL, '#', NULL, NULL, 0, 't', 't', '1', 'admin', '2021-01-05 17:03:48', NULL, '2022-04-20 17:03:10', 0);
  2705. INSERT INTO ruian_oa.system_menu VALUES (1016, '菜单删除', 'system:menu:delete', 3, 4, 102, NULL, '#', NULL, NULL, 0, 't', 't', '1', 'admin', '2021-01-05 17:03:48', NULL, '2022-04-20 17:03:10', 0);
  2706. INSERT INTO ruian_oa.system_menu VALUES (1017, '部门查询', 'system:dept:query', 3, 1, 103, NULL, '#', NULL, NULL, 0, 't', 't', '1', 'admin', '2021-01-05 17:03:48', NULL, '2022-04-20 17:03:10', 0);
  2707. INSERT INTO ruian_oa.system_menu VALUES (1018, '部门新增', 'system:dept:create', 3, 2, 103, NULL, NULL, NULL, NULL, 0, 't', 't', '1', 'admin', '2021-01-05 17:03:48', '1', '2022-04-20 17:03:10', 0);
  2708. INSERT INTO ruian_oa.system_menu VALUES (1019, '部门修改', 'system:dept:update', 3, 3, 103, NULL, NULL, NULL, NULL, 0, 't', 't', '1', 'admin', '2021-01-05 17:03:48', '1', '2022-04-20 17:03:10', 0);
  2709. INSERT INTO ruian_oa.system_menu VALUES (1020, '部门删除', 'system:dept:delete', 3, 4, 103, NULL, NULL, NULL, NULL, 0, 't', 't', '1', 'admin', '2021-01-05 17:03:48', '1', '2022-04-20 17:03:10', 0);
  2710. INSERT INTO ruian_oa.system_menu VALUES (1021, '岗位查询', 'system:post:query', 3, 1, 104, NULL, '#', NULL, NULL, 0, 't', 't', '1', 'admin', '2021-01-05 17:03:48', NULL, '2022-04-20 17:03:10', 0);
  2711. INSERT INTO ruian_oa.system_menu VALUES (1022, '岗位新增', 'system:post:create', 3, 2, 104, NULL, NULL, NULL, NULL, 0, 't', 't', '1', 'admin', '2021-01-05 17:03:48', '1', '2022-04-20 17:03:10', 0);
  2712. INSERT INTO ruian_oa.system_menu VALUES (1023, '岗位修改', 'system:post:update', 3, 3, 104, NULL, NULL, NULL, NULL, 0, 't', 't', '1', 'admin', '2021-01-05 17:03:48', '1', '2022-04-20 17:03:10', 0);
  2713. INSERT INTO ruian_oa.system_menu VALUES (1024, '岗位删除', 'system:post:delete', 3, 4, 104, NULL, NULL, NULL, NULL, 0, 't', 't', '1', 'admin', '2021-01-05 17:03:48', '1', '2022-04-20 17:03:10', 0);
  2714. INSERT INTO ruian_oa.system_menu VALUES (1025, '岗位导出', 'system:post:export', 3, 5, 104, NULL, '#', NULL, NULL, 0, 't', 't', '1', 'admin', '2021-01-05 17:03:48', NULL, '2022-04-20 17:03:10', 0);
  2715. INSERT INTO ruian_oa.system_menu VALUES (1026, '字典查询', 'system:dict:query', 3, 1, 105, '#', '#', NULL, NULL, 0, 't', 't', '1', 'admin', '2021-01-05 17:03:48', NULL, '2022-04-20 17:03:10', 0);
  2716. INSERT INTO ruian_oa.system_menu VALUES (1027, '字典新增', 'system:dict:create', 3, 2, 105, NULL, NULL, NULL, NULL, 0, 't', 't', '1', 'admin', '2021-01-05 17:03:48', '1', '2022-04-20 17:03:10', 0);
  2717. INSERT INTO ruian_oa.system_menu VALUES (1028, '字典修改', 'system:dict:update', 3, 3, 105, NULL, NULL, NULL, NULL, 0, 't', 't', '1', 'admin', '2021-01-05 17:03:48', '1', '2022-04-20 17:03:10', 0);
  2718. INSERT INTO ruian_oa.system_menu VALUES (1029, '字典删除', 'system:dict:delete', 3, 4, 105, NULL, NULL, NULL, NULL, 0, 't', 't', '1', 'admin', '2021-01-05 17:03:48', '1', '2022-04-20 17:03:10', 0);
  2719. INSERT INTO ruian_oa.system_menu VALUES (1030, '字典导出', 'system:dict:export', 3, 5, 105, '#', '#', NULL, NULL, 0, 't', 't', '1', 'admin', '2021-01-05 17:03:48', NULL, '2022-04-20 17:03:10', 0);
  2720. INSERT INTO ruian_oa.system_menu VALUES (1031, '配置查询', 'infra:config:query', 3, 1, 106, NULL, NULL, NULL, NULL, 0, 't', 't', '1', 'admin', '2021-01-05 17:03:48', NULL, '2022-04-20 17:03:10', 0);
  2721. INSERT INTO ruian_oa.system_menu VALUES (1032, '配置新增', 'infra:config:create', 3, 2, 106, NULL, NULL, NULL, NULL, 0, 't', 't', '1', 'admin', '2021-01-05 17:03:48', '1', '2022-04-20 17:03:10', 0);
  2722. INSERT INTO ruian_oa.system_menu VALUES (1033, '配置修改', 'infra:config:update', 3, 3, 106, NULL, NULL, NULL, NULL, 0, 't', 't', '1', 'admin', '2021-01-05 17:03:48', '1', '2022-04-20 17:03:10', 0);
  2723. INSERT INTO ruian_oa.system_menu VALUES (1034, '配置删除', 'infra:config:delete', 3, 4, 106, NULL, NULL, NULL, NULL, 0, 't', 't', '1', 'admin', '2021-01-05 17:03:48', '1', '2022-04-20 17:03:10', 0);
  2724. INSERT INTO ruian_oa.system_menu VALUES (1035, '配置导出', 'infra:config:export', 3, 5, 106, NULL, NULL, NULL, NULL, 0, 't', 't', '1', 'admin', '2021-01-05 17:03:48', NULL, '2022-04-20 17:03:10', 0);
  2725. INSERT INTO ruian_oa.system_menu VALUES (1036, '公告查询', 'system:notice:query', 3, 1, 107, '#', '#', NULL, NULL, 0, 't', 't', '1', 'admin', '2021-01-05 17:03:48', NULL, '2022-04-20 17:03:10', 0);
  2726. INSERT INTO ruian_oa.system_menu VALUES (1037, '公告新增', 'system:notice:create', 3, 2, 107, NULL, NULL, NULL, NULL, 0, 't', 't', '1', 'admin', '2021-01-05 17:03:48', '1', '2022-04-20 17:03:10', 0);
  2727. INSERT INTO ruian_oa.system_menu VALUES (1038, '公告修改', 'system:notice:update', 3, 3, 107, NULL, NULL, NULL, NULL, 0, 't', 't', '1', 'admin', '2021-01-05 17:03:48', '1', '2022-04-20 17:03:10', 0);
  2728. INSERT INTO ruian_oa.system_menu VALUES (1039, '公告删除', 'system:notice:delete', 3, 4, 107, NULL, NULL, NULL, NULL, 0, 't', 't', '1', 'admin', '2021-01-05 17:03:48', '1', '2022-04-20 17:03:10', 0);
  2729. INSERT INTO ruian_oa.system_menu VALUES (1040, '操作查询', 'system:operate-log:query', 3, 1, 500, NULL, NULL, NULL, NULL, 0, 't', 't', '1', 'admin', '2021-01-05 17:03:48', NULL, '2022-04-20 17:03:10', 0);
  2730. INSERT INTO ruian_oa.system_menu VALUES (1042, '日志导出', 'system:operate-log:export', 3, 2, 500, NULL, NULL, NULL, NULL, 0, 't', 't', '1', 'admin', '2021-01-05 17:03:48', NULL, '2022-04-20 17:03:10', 0);
  2731. INSERT INTO ruian_oa.system_menu VALUES (1043, '登录查询', 'system:login-log:query', 3, 1, 501, '#', '#', NULL, NULL, 0, 't', 't', '1', 'admin', '2021-01-05 17:03:48', NULL, '2022-04-20 17:03:10', 0);
  2732. INSERT INTO ruian_oa.system_menu VALUES (1045, '日志导出', 'system:login-log:export', 3, 3, 501, '#', '#', NULL, NULL, 0, 't', 't', '1', 'admin', '2021-01-05 17:03:48', NULL, '2022-04-20 17:03:10', 0);
  2733. INSERT INTO ruian_oa.system_menu VALUES (1046, '令牌列表', 'system:oauth2-token:page', 3, 1, 109, NULL, NULL, NULL, NULL, 0, 't', 't', '1', 'admin', '2021-01-05 17:03:48', '1', '2022-05-09 23:54:42', 0);
  2734. INSERT INTO ruian_oa.system_menu VALUES (1048, '令牌删除', 'system:oauth2-token:delete', 3, 2, 109, NULL, NULL, NULL, NULL, 0, 't', 't', '1', 'admin', '2021-01-05 17:03:48', '1', '2022-05-09 23:54:53', 0);
  2735. INSERT INTO ruian_oa.system_menu VALUES (1050, '任务新增', 'infra:job:create', 3, 2, 110, NULL, NULL, NULL, NULL, 0, 't', 't', '1', 'admin', '2021-01-05 17:03:48', NULL, '2022-04-20 17:03:10', 0);
  2736. INSERT INTO ruian_oa.system_menu VALUES (1051, '任务修改', 'infra:job:update', 3, 3, 110, NULL, NULL, NULL, NULL, 0, 't', 't', '1', 'admin', '2021-01-05 17:03:48', NULL, '2022-04-20 17:03:10', 0);
  2737. INSERT INTO ruian_oa.system_menu VALUES (1052, '任务删除', 'infra:job:delete', 3, 4, 110, NULL, NULL, NULL, NULL, 0, 't', 't', '1', 'admin', '2021-01-05 17:03:48', NULL, '2022-04-20 17:03:10', 0);
  2738. INSERT INTO ruian_oa.system_menu VALUES (1053, '状态修改', 'infra:job:update', 3, 5, 110, NULL, NULL, NULL, NULL, 0, 't', 't', '1', 'admin', '2021-01-05 17:03:48', NULL, '2022-04-20 17:03:10', 0);
  2739. INSERT INTO ruian_oa.system_menu VALUES (1054, '任务导出', 'infra:job:export', 3, 7, 110, NULL, NULL, NULL, NULL, 0, 't', 't', '1', 'admin', '2021-01-05 17:03:48', NULL, '2022-04-20 17:03:10', 0);
  2740. INSERT INTO ruian_oa.system_menu VALUES (1056, '生成修改', 'infra:codegen:update', 3, 2, 115, NULL, NULL, NULL, NULL, 0, 't', 't', '1', 'admin', '2021-01-05 17:03:48', '1', '2022-04-20 17:03:10', 0);
  2741. INSERT INTO ruian_oa.system_menu VALUES (1057, '生成删除', 'infra:codegen:delete', 3, 3, 115, NULL, NULL, NULL, NULL, 0, 't', 't', '1', 'admin', '2021-01-05 17:03:48', '1', '2022-04-20 17:03:10', 0);
  2742. INSERT INTO ruian_oa.system_menu VALUES (1058, '导入代码', 'infra:codegen:create', 3, 2, 115, NULL, NULL, NULL, NULL, 0, 't', 't', '1', 'admin', '2021-01-05 17:03:48', '1', '2022-04-20 17:03:10', 0);
  2743. INSERT INTO ruian_oa.system_menu VALUES (1059, '预览代码', 'infra:codegen:preview', 3, 4, 115, NULL, NULL, NULL, NULL, 0, 't', 't', '1', 'admin', '2021-01-05 17:03:48', '1', '2022-04-20 17:03:10', 0);
  2744. INSERT INTO ruian_oa.system_menu VALUES (1060, '生成代码', 'infra:codegen:download', 3, 5, 115, NULL, NULL, NULL, NULL, 0, 't', 't', '1', 'admin', '2021-01-05 17:03:48', '1', '2022-04-20 17:03:10', 0);
  2745. INSERT INTO ruian_oa.system_menu VALUES (1063, '设置角色菜单权限', 'system:permission:assign-role-menu', 3, 6, 101, NULL, NULL, NULL, NULL, 0, 't', 't', '1', NULL, '2021-01-06 17:53:44', NULL, '2022-04-20 17:03:10', 0);
  2746. INSERT INTO ruian_oa.system_menu VALUES (1064, '设置角色数据权限', 'system:permission:assign-role-data-scope', 3, 7, 101, NULL, NULL, NULL, NULL, 0, 't', 't', '1', NULL, '2021-01-06 17:56:31', NULL, '2022-04-20 17:03:10', 0);
  2747. INSERT INTO ruian_oa.system_menu VALUES (1065, '设置用户角色', 'system:permission:assign-user-role', 3, 8, 101, NULL, NULL, NULL, NULL, 0, 't', 't', '1', NULL, '2021-01-07 10:23:28', NULL, '2022-04-20 17:03:10', 0);
  2748. INSERT INTO ruian_oa.system_menu VALUES (1066, '获得 Redis 监控信息', 'infra:redis:get-monitor-info', 3, 1, 113, NULL, NULL, NULL, NULL, 0, 't', 't', '1', NULL, '2021-01-26 01:02:31', NULL, '2022-04-20 17:03:10', 0);
  2749. INSERT INTO ruian_oa.system_menu VALUES (1067, '获得 Redis Key 列表', 'infra:redis:get-key-list', 3, 2, 113, NULL, NULL, NULL, NULL, 0, 't', 't', '1', NULL, '2021-01-26 01:02:52', NULL, '2022-04-20 17:03:10', 0);
  2750. INSERT INTO ruian_oa.system_menu VALUES (1070, '代码生成示例', 'infra:test-demo:query', 2, 1, 2, 'test-demo', 'validCode', 'infra/testDemo/index', NULL, 0, 't', 't', '1', NULL, '2021-02-06 12:42:49', '1', '2022-04-20 17:03:10', 0);
  2751. INSERT INTO ruian_oa.system_menu VALUES (1071, '测试示例表创建', 'infra:test-demo:create', 3, 1, 1070, NULL, NULL, NULL, NULL, 0, 't', 't', '1', NULL, '2021-02-06 12:42:49', '1', '2022-04-20 17:03:10', 0);
  2752. INSERT INTO ruian_oa.system_menu VALUES (1072, '测试示例表更新', 'infra:test-demo:update', 3, 2, 1070, NULL, NULL, NULL, NULL, 0, 't', 't', '1', NULL, '2021-02-06 12:42:49', '1', '2022-04-20 17:03:10', 0);
  2753. INSERT INTO ruian_oa.system_menu VALUES (1073, '测试示例表删除', 'infra:test-demo:delete', 3, 3, 1070, NULL, NULL, NULL, NULL, 0, 't', 't', '1', NULL, '2021-02-06 12:42:49', '1', '2022-04-20 17:03:10', 0);
  2754. INSERT INTO ruian_oa.system_menu VALUES (1074, '测试示例表导出', 'infra:test-demo:export', 3, 4, 1070, NULL, NULL, NULL, NULL, 0, 't', 't', '1', NULL, '2021-02-06 12:42:49', '1', '2022-04-20 17:03:10', 0);
  2755. INSERT INTO ruian_oa.system_menu VALUES (1075, '任务触发', 'infra:job:trigger', 3, 8, 110, NULL, NULL, NULL, NULL, 0, 't', 't', '1', NULL, '2021-02-07 13:03:10', NULL, '2022-04-20 17:03:10', 0);
  2756. INSERT INTO ruian_oa.system_menu VALUES (1076, '数据库文档', NULL, 2, 4, 2, 'db-doc', 'table', 'infra/dbDoc/index', NULL, 0, 't', 't', '1', NULL, '2021-02-08 01:41:47', '1', '2022-04-20 17:03:10', 0);
  2757. INSERT INTO ruian_oa.system_menu VALUES (1077, '监控平台', NULL, 2, 13, 2, 'skywalking', 'eye-open', 'infra/skywalking/index', NULL, 0, 't', 't', '1', NULL, '2021-02-08 20:41:31', '1', '2022-04-20 17:03:10', 0);
  2758. INSERT INTO ruian_oa.system_menu VALUES (1078, '访问日志', NULL, 2, 1, 1083, 'api-access-log', 'log', 'infra/apiAccessLog/index', NULL, 0, 't', 't', '1', NULL, '2021-02-26 01:32:59', '1', '2022-04-20 17:03:10', 0);
  2759. INSERT INTO ruian_oa.system_menu VALUES (1082, '日志导出', 'infra:api-access-log:export', 3, 2, 1078, NULL, NULL, NULL, NULL, 0, 't', 't', '1', NULL, '2021-02-26 01:32:59', '1', '2022-04-20 17:03:10', 0);
  2760. INSERT INTO ruian_oa.system_menu VALUES (1083, 'API 日志', NULL, 2, 8, 2, 'log', 'log', NULL, NULL, 0, 't', 't', '1', NULL, '2021-02-26 02:18:24', '1', '2022-04-20 17:03:10', 0);
  2761. INSERT INTO ruian_oa.system_menu VALUES (1084, '错误日志', 'infra:api-error-log:query', 2, 2, 1083, 'api-error-log', 'log', 'infra/apiErrorLog/index', NULL, 0, 't', 't', '1', NULL, '2021-02-26 07:53:20', NULL, '2022-04-20 17:03:10', 0);
  2762. INSERT INTO ruian_oa.system_menu VALUES (1085, '日志处理', 'infra:api-error-log:update-status', 3, 2, 1084, NULL, NULL, NULL, NULL, 0, 't', 't', '1', NULL, '2021-02-26 07:53:20', '1', '2022-04-20 17:03:10', 0);
  2763. INSERT INTO ruian_oa.system_menu VALUES (1086, '日志导出', 'infra:api-error-log:export', 3, 3, 1084, NULL, NULL, NULL, NULL, 0, 't', 't', '1', NULL, '2021-02-26 07:53:20', '1', '2022-04-20 17:03:10', 0);
  2764. INSERT INTO ruian_oa.system_menu VALUES (1087, '任务查询', 'infra:job:query', 3, 1, 110, NULL, NULL, NULL, NULL, 0, 't', 't', '1', '1', '2021-03-10 01:26:19', '1', '2022-04-20 17:03:10', 0);
  2765. INSERT INTO ruian_oa.system_menu VALUES (1088, '日志查询', 'infra:api-access-log:query', 3, 1, 1078, NULL, NULL, NULL, NULL, 0, 't', 't', '1', '1', '2021-03-10 01:28:04', '1', '2022-04-20 17:03:10', 0);
  2766. INSERT INTO ruian_oa.system_menu VALUES (1089, '日志查询', 'infra:api-error-log:query', 3, 1, 1084, NULL, NULL, NULL, NULL, 0, 't', 't', '1', '1', '2021-03-10 01:29:09', '1', '2022-04-20 17:03:10', 0);
  2767. INSERT INTO ruian_oa.system_menu VALUES (1090, '文件列表', NULL, 2, 5, 1243, 'file', 'upload', 'infra/file/index', NULL, 0, 't', 't', '1', NULL, '2021-03-12 20:16:20', '1', '2022-04-20 17:03:10', 0);
  2768. INSERT INTO ruian_oa.system_menu VALUES (1091, '文件查询', 'infra:file:query', 3, 1, 1090, NULL, NULL, NULL, NULL, 0, 't', 't', '1', NULL, '2021-03-12 20:16:20', NULL, '2022-04-20 17:03:10', 0);
  2769. INSERT INTO ruian_oa.system_menu VALUES (1092, '文件删除', 'infra:file:delete', 3, 4, 1090, NULL, NULL, NULL, NULL, 0, 't', 't', '1', NULL, '2021-03-12 20:16:20', NULL, '2022-04-20 17:03:10', 0);
  2770. INSERT INTO ruian_oa.system_menu VALUES (1093, '短信管理', NULL, 1, 11, 1, 'sms', 'validCode', NULL, NULL, 0, 't', 't', '1', '1', '2021-04-05 01:10:16', '1', '2022-04-20 17:03:10', 0);
  2771. INSERT INTO ruian_oa.system_menu VALUES (1094, '短信渠道', NULL, 2, 0, 1093, 'sms-channel', 'phone', 'system/sms/channel', NULL, 0, 't', 't', '1', NULL, '2021-04-01 11:07:15', '1', '2022-04-20 17:03:10', 0);
  2772. INSERT INTO ruian_oa.system_menu VALUES (1095, '短信渠道查询', 'system:sms-channel:query', 3, 1, 1094, NULL, NULL, NULL, NULL, 0, 't', 't', '1', NULL, '2021-04-01 11:07:15', NULL, '2022-04-20 17:03:10', 0);
  2773. INSERT INTO ruian_oa.system_menu VALUES (1096, '短信渠道创建', 'system:sms-channel:create', 3, 2, 1094, NULL, NULL, NULL, NULL, 0, 't', 't', '1', NULL, '2021-04-01 11:07:15', NULL, '2022-04-20 17:03:10', 0);
  2774. INSERT INTO ruian_oa.system_menu VALUES (1097, '短信渠道更新', 'system:sms-channel:update', 3, 3, 1094, NULL, NULL, NULL, NULL, 0, 't', 't', '1', NULL, '2021-04-01 11:07:15', NULL, '2022-04-20 17:03:10', 0);
  2775. INSERT INTO ruian_oa.system_menu VALUES (1098, '短信渠道删除', 'system:sms-channel:delete', 3, 4, 1094, NULL, NULL, NULL, NULL, 0, 't', 't', '1', NULL, '2021-04-01 11:07:15', NULL, '2022-04-20 17:03:10', 0);
  2776. INSERT INTO ruian_oa.system_menu VALUES (1100, '短信模板', NULL, 2, 1, 1093, 'sms-template', 'phone', 'system/sms/template', NULL, 0, 't', 't', '1', NULL, '2021-04-01 17:35:17', '1', '2022-04-20 17:03:10', 0);
  2777. INSERT INTO ruian_oa.system_menu VALUES (1101, '短信模板查询', 'system:sms-template:query', 3, 1, 1100, NULL, NULL, NULL, NULL, 0, 't', 't', '1', NULL, '2021-04-01 17:35:17', NULL, '2022-04-20 17:03:10', 0);
  2778. INSERT INTO ruian_oa.system_menu VALUES (1102, '短信模板创建', 'system:sms-template:create', 3, 2, 1100, NULL, NULL, NULL, NULL, 0, 't', 't', '1', NULL, '2021-04-01 17:35:17', NULL, '2022-04-20 17:03:10', 0);
  2779. INSERT INTO ruian_oa.system_menu VALUES (1103, '短信模板更新', 'system:sms-template:update', 3, 3, 1100, NULL, NULL, NULL, NULL, 0, 't', 't', '1', NULL, '2021-04-01 17:35:17', NULL, '2022-04-20 17:03:10', 0);
  2780. INSERT INTO ruian_oa.system_menu VALUES (1104, '短信模板删除', 'system:sms-template:delete', 3, 4, 1100, NULL, NULL, NULL, NULL, 0, 't', 't', '1', NULL, '2021-04-01 17:35:17', NULL, '2022-04-20 17:03:10', 0);
  2781. INSERT INTO ruian_oa.system_menu VALUES (1105, '短信模板导出', 'system:sms-template:export', 3, 5, 1100, NULL, NULL, NULL, NULL, 0, 't', 't', '1', NULL, '2021-04-01 17:35:17', NULL, '2022-04-20 17:03:10', 0);
  2782. INSERT INTO ruian_oa.system_menu VALUES (1106, '发送测试短信', 'system:sms-template:send-sms', 3, 6, 1100, NULL, NULL, NULL, NULL, 0, 't', 't', '1', '1', '2021-04-11 00:26:40', '1', '2022-04-20 17:03:10', 0);
  2783. INSERT INTO ruian_oa.system_menu VALUES (1107, '短信日志', NULL, 2, 2, 1093, 'sms-log', 'phone', 'system/sms/log', NULL, 0, 't', 't', '1', NULL, '2021-04-11 08:37:05', '1', '2022-04-20 17:03:10', 0);
  2784. INSERT INTO ruian_oa.system_menu VALUES (1108, '短信日志查询', 'system:sms-log:query', 3, 1, 1107, NULL, NULL, NULL, NULL, 0, 't', 't', '1', NULL, '2021-04-11 08:37:05', NULL, '2022-04-20 17:03:10', 0);
  2785. INSERT INTO ruian_oa.system_menu VALUES (1109, '短信日志导出', 'system:sms-log:export', 3, 5, 1107, NULL, NULL, NULL, NULL, 0, 't', 't', '1', NULL, '2021-04-11 08:37:05', NULL, '2022-04-20 17:03:10', 0);
  2786. INSERT INTO ruian_oa.system_menu VALUES (1110, '错误码管理', NULL, 2, 12, 1, 'error-code', 'code', 'system/errorCode/index', NULL, 0, 't', 't', '1', NULL, '2021-04-13 21:46:42', '1', '2022-04-20 17:03:10', 0);
  2787. INSERT INTO ruian_oa.system_menu VALUES (1111, '错误码查询', 'system:error-code:query', 3, 1, 1110, NULL, NULL, NULL, NULL, 0, 't', 't', '1', NULL, '2021-04-13 21:46:42', NULL, '2022-04-20 17:03:10', 0);
  2788. INSERT INTO ruian_oa.system_menu VALUES (1112, '错误码创建', 'system:error-code:create', 3, 2, 1110, NULL, NULL, NULL, NULL, 0, 't', 't', '1', NULL, '2021-04-13 21:46:42', NULL, '2022-04-20 17:03:10', 0);
  2789. INSERT INTO ruian_oa.system_menu VALUES (1113, '错误码更新', 'system:error-code:update', 3, 3, 1110, NULL, NULL, NULL, NULL, 0, 't', 't', '1', NULL, '2021-04-13 21:46:42', NULL, '2022-04-20 17:03:10', 0);
  2790. INSERT INTO ruian_oa.system_menu VALUES (1114, '错误码删除', 'system:error-code:delete', 3, 4, 1110, NULL, NULL, NULL, NULL, 0, 't', 't', '1', NULL, '2021-04-13 21:46:42', NULL, '2022-04-20 17:03:10', 0);
  2791. INSERT INTO ruian_oa.system_menu VALUES (1115, '错误码导出', 'system:error-code:export', 3, 5, 1110, NULL, NULL, NULL, NULL, 0, 't', 't', '1', NULL, '2021-04-13 21:46:42', NULL, '2022-04-20 17:03:10', 0);
  2792. INSERT INTO ruian_oa.system_menu VALUES (1237, '文件配置', NULL, 2, 0, 1243, 'file-config', 'config', 'infra/fileConfig/index', NULL, 0, 't', 't', '1', NULL, '2022-03-15 14:35:28', '1', '2022-04-20 17:03:10', 0);
  2793. INSERT INTO ruian_oa.system_menu VALUES (1238, '文件配置查询', 'infra:file-config:query', 3, 1, 1237, NULL, NULL, NULL, NULL, 0, 't', 't', '1', NULL, '2022-03-15 14:35:28', NULL, '2022-04-20 17:03:10', 0);
  2794. INSERT INTO ruian_oa.system_menu VALUES (1239, '文件配置创建', 'infra:file-config:create', 3, 2, 1237, NULL, NULL, NULL, NULL, 0, 't', 't', '1', NULL, '2022-03-15 14:35:28', NULL, '2022-04-20 17:03:10', 0);
  2795. INSERT INTO ruian_oa.system_menu VALUES (1240, '文件配置更新', 'infra:file-config:update', 3, 3, 1237, NULL, NULL, NULL, NULL, 0, 't', 't', '1', NULL, '2022-03-15 14:35:28', NULL, '2022-04-20 17:03:10', 0);
  2796. INSERT INTO ruian_oa.system_menu VALUES (1241, '文件配置删除', 'infra:file-config:delete', 3, 4, 1237, NULL, NULL, NULL, NULL, 0, 't', 't', '1', NULL, '2022-03-15 14:35:28', NULL, '2022-04-20 17:03:10', 0);
  2797. INSERT INTO ruian_oa.system_menu VALUES (1242, '文件配置导出', 'infra:file-config:export', 3, 5, 1237, NULL, NULL, NULL, NULL, 0, 't', 't', '1', NULL, '2022-03-15 14:35:28', NULL, '2022-04-20 17:03:10', 0);
  2798. INSERT INTO ruian_oa.system_menu VALUES (1243, '文件管理', NULL, 2, 5, 2, 'file', 'download', NULL, NULL, 0, 't', 't', '1', '1', '2022-03-16 23:47:40', '1', '2022-04-20 17:03:10', 0);
  2799. INSERT INTO ruian_oa.system_menu VALUES (1247, '敏感词管理', NULL, 2, 13, 1, 'sensitive-word', 'education', 'system/sensitiveWord/index', NULL, 0, 't', 't', '1', NULL, '2022-04-07 16:55:03', '1', '2022-04-20 17:03:10', 0);
  2800. INSERT INTO ruian_oa.system_menu VALUES (1248, '敏感词查询', 'system:sensitive-word:query', 3, 1, 1247, NULL, NULL, NULL, NULL, 0, 't', 't', '1', NULL, '2022-04-07 16:55:03', NULL, '2022-04-20 17:03:10', 0);
  2801. INSERT INTO ruian_oa.system_menu VALUES (1249, '敏感词创建', 'system:sensitive-word:create', 3, 2, 1247, NULL, NULL, NULL, NULL, 0, 't', 't', '1', NULL, '2022-04-07 16:55:03', NULL, '2022-04-20 17:03:10', 0);
  2802. INSERT INTO ruian_oa.system_menu VALUES (1250, '敏感词更新', 'system:sensitive-word:update', 3, 3, 1247, NULL, NULL, NULL, NULL, 0, 't', 't', '1', NULL, '2022-04-07 16:55:03', NULL, '2022-04-20 17:03:10', 0);
  2803. INSERT INTO ruian_oa.system_menu VALUES (1251, '敏感词删除', 'system:sensitive-word:delete', 3, 4, 1247, NULL, NULL, NULL, NULL, 0, 't', 't', '1', NULL, '2022-04-07 16:55:03', NULL, '2022-04-20 17:03:10', 0);
  2804. INSERT INTO ruian_oa.system_menu VALUES (1252, '敏感词导出', 'system:sensitive-word:export', 3, 5, 1247, NULL, NULL, NULL, NULL, 0, 't', 't', '1', NULL, '2022-04-07 16:55:03', NULL, '2022-04-20 17:03:10', 0);
  2805. INSERT INTO ruian_oa.system_menu VALUES (1255, '数据源配置', NULL, 2, 1, 2, 'data-source-config', 'rate', 'infra/dataSourceConfig/index', NULL, 0, 't', 't', '1', NULL, '2022-04-27 14:37:32', '1', '2022-04-27 22:42:06', 0);
  2806. INSERT INTO ruian_oa.system_menu VALUES (1256, '数据源配置查询', 'infra:data-source-config:query', 3, 1, 1255, NULL, NULL, NULL, NULL, 0, 't', 't', '1', NULL, '2022-04-27 14:37:32', NULL, '2022-04-27 14:37:32', 0);
  2807. INSERT INTO ruian_oa.system_menu VALUES (1257, '数据源配置创建', 'infra:data-source-config:create', 3, 2, 1255, NULL, NULL, NULL, NULL, 0, 't', 't', '1', NULL, '2022-04-27 14:37:32', NULL, '2022-04-27 14:37:32', 0);
  2808. INSERT INTO ruian_oa.system_menu VALUES (1258, '数据源配置更新', 'infra:data-source-config:update', 3, 3, 1255, NULL, NULL, NULL, NULL, 0, 't', 't', '1', NULL, '2022-04-27 14:37:32', NULL, '2022-04-27 14:37:32', 0);
  2809. INSERT INTO ruian_oa.system_menu VALUES (1259, '数据源配置删除', 'infra:data-source-config:delete', 3, 4, 1255, NULL, NULL, NULL, NULL, 0, 't', 't', '1', NULL, '2022-04-27 14:37:32', NULL, '2022-04-27 14:37:32', 0);
  2810. INSERT INTO ruian_oa.system_menu VALUES (1260, '数据源配置导出', 'infra:data-source-config:export', 3, 5, 1255, NULL, NULL, NULL, NULL, 0, 't', 't', '1', NULL, '2022-04-27 14:37:32', NULL, '2022-04-27 14:37:32', 0);
  2811. INSERT INTO ruian_oa.system_menu VALUES (1261, 'OAuth 2.0', NULL, 1, 10, 1, 'oauth2', 'people', NULL, NULL, 0, 't', 't', '1', '1', '2022-05-09 23:38:17', '1', '2022-05-11 23:51:46', 0);
  2812. INSERT INTO ruian_oa.system_menu VALUES (1263, '应用管理', NULL, 2, 0, 1261, 'oauth2/application', 'tool', 'system/oauth2/client/index', NULL, 0, 't', 't', '1', NULL, '2022-05-10 16:26:33', '1', '2022-05-11 23:31:36', 0);
  2813. INSERT INTO ruian_oa.system_menu VALUES (1264, '客户端查询', 'system:oauth2-client:query', 3, 1, 1263, NULL, NULL, NULL, NULL, 0, 't', 't', '1', NULL, '2022-05-10 16:26:33', '1', '2022-05-11 00:31:06', 0);
  2814. INSERT INTO ruian_oa.system_menu VALUES (1265, '客户端创建', 'system:oauth2-client:create', 3, 2, 1263, NULL, NULL, NULL, NULL, 0, 't', 't', '1', NULL, '2022-05-10 16:26:33', '1', '2022-05-11 00:31:23', 0);
  2815. INSERT INTO ruian_oa.system_menu VALUES (1266, '客户端更新', 'system:oauth2-client:update', 3, 3, 1263, NULL, NULL, NULL, NULL, 0, 't', 't', '1', NULL, '2022-05-10 16:26:33', '1', '2022-05-11 00:31:28', 0);
  2816. INSERT INTO ruian_oa.system_menu VALUES (1267, '客户端删除', 'system:oauth2-client:delete', 3, 4, 1263, NULL, NULL, NULL, NULL, 0, 't', 't', '1', NULL, '2022-05-10 16:26:33', '1', '2022-05-11 00:31:33', 0);
  2817. INSERT INTO ruian_oa.system_menu VALUES (1254, '作者动态', NULL, 1, 0, 0, 'https://www.iocoder.cn', 'people', NULL, NULL, 0, 't', 't', '1', '1', '2022-04-23 01:03:15', '1', '2022-04-23 01:03:15', 1);
  2818. INSERT INTO ruian_oa.system_menu VALUES (1227, '租户套餐创建', 'system:tenant-package:create', 3, 2, 1225, NULL, NULL, NULL, NULL, 0, 't', 't', '1', NULL, '2022-02-19 17:44:06', NULL, '2022-04-20 17:03:10', 1);
  2819. INSERT INTO ruian_oa.system_menu VALUES (1228, '租户套餐更新', 'system:tenant-package:update', 3, 3, 1225, NULL, NULL, NULL, NULL, 0, 't', 't', '1', NULL, '2022-02-19 17:44:06', NULL, '2022-04-20 17:03:10', 1);
  2820. INSERT INTO ruian_oa.system_menu VALUES (1229, '租户套餐删除', 'system:tenant-package:delete', 3, 4, 1225, NULL, NULL, NULL, NULL, 0, 't', 't', '1', NULL, '2022-02-19 17:44:06', NULL, '2022-04-20 17:03:10', 1);
  2821. --
  2822. -- TOC entry 6832 (class 0 OID 16611)
  2823. -- Dependencies: 724
  2824. -- Data for Name: system_notice; Type: TABLE DATA; Schema: ruian_oa; Owner: system
  2825. --
  2826. --
  2827. -- TOC entry 6833 (class 0 OID 16618)
  2828. -- Dependencies: 725
  2829. -- Data for Name: system_notify_message; Type: TABLE DATA; Schema: ruian_oa; Owner: system
  2830. --
  2831. --
  2832. -- TOC entry 6834 (class 0 OID 16625)
  2833. -- Dependencies: 726
  2834. -- Data for Name: system_notify_template; Type: TABLE DATA; Schema: ruian_oa; Owner: system
  2835. --
  2836. --
  2837. -- TOC entry 6835 (class 0 OID 16632)
  2838. -- Dependencies: 727
  2839. -- Data for Name: system_oauth2_access_token; Type: TABLE DATA; Schema: ruian_oa; Owner: system
  2840. --
  2841. INSERT INTO ruian_oa.system_oauth2_access_token VALUES (2, NULL, 2, 'a9a4c4ee6c1c4348880f63eda6b6da37', '1b35d3e562674633a14bea3b0ece52c6', 'default', '["user.read","user.write"]', '2024-10-22 14:35:04', NULL, '2024-10-22 14:32:04', NULL, '2024-10-22 14:32:04', 0, '1');
  2842. INSERT INTO ruian_oa.system_oauth2_access_token VALUES (4, NULL, 2, 'de485c0c6f904df8b999d9b10e21178e', '8e1279573910434bbb1f9736c6a2ab83', 'default', '["user.read","user.write"]', '2024-10-22 14:43:09', NULL, '2024-10-22 14:40:09', NULL, '2024-10-22 14:40:09', 0, '1');
  2843. INSERT INTO ruian_oa.system_oauth2_access_token VALUES (6, NULL, 2, '3c9ba43deda74771b397ff967f85e548', 'ec3bbff895ef40439359e3aeb6c01dc4', 'default', '["user.read","user.write"]', '2024-10-22 14:44:50', NULL, '2024-10-22 14:41:50', NULL, '2024-10-22 14:41:50', 0, '1');
  2844. INSERT INTO ruian_oa.system_oauth2_access_token VALUES (8, NULL, 2, 'ee3ed862d4fe4055b8741349c8da9af5', '4be20c68acc14633987629da2e295b9c', 'default', '["user.read","user.write"]', '2024-10-22 14:50:37', NULL, '2024-10-22 14:47:37', NULL, '2024-10-22 14:47:37', 0, '1');
  2845. INSERT INTO ruian_oa.system_oauth2_access_token VALUES (10, NULL, 2, 'c9f43287f58e4c0297612a67d7b02083', 'cb37d3560be54d94aef57a1c56bfb6a3', 'default', '["user.read","user.write"]', '2024-10-23 11:20:39', NULL, '2024-10-23 11:17:39', NULL, '2024-10-23 11:17:39', 0, '1');
  2846. INSERT INTO ruian_oa.system_oauth2_access_token VALUES (12, NULL, 2, 'b9849f836d3840b48632ad6e8cf07b17', '76fc2b0c887d40a48c467bf56919de98', 'default', NULL, '2024-10-23 11:20:45', NULL, '2024-10-23 11:17:45', NULL, '2024-10-23 11:17:45', 1, '1');
  2847. INSERT INTO ruian_oa.system_oauth2_access_token VALUES (14, NULL, 2, 'bb76352eafac45668688859db2401574', '983333a4186342058e5486dc9325cab4', 'default', NULL, '2024-10-23 11:21:41', NULL, '2024-10-23 11:18:41', NULL, '2024-10-23 11:18:41', 0, '1');
  2848. INSERT INTO ruian_oa.system_oauth2_access_token VALUES (16, NULL, 2, '2dc53edf7bf84c7da0e08f2ed95f44af', '8239819390e240d8b2e6da11b0190fca', 'default', NULL, '2024-10-23 11:36:14', NULL, '2024-10-23 11:33:14', NULL, '2024-10-23 11:33:14', 0, '1');
  2849. INSERT INTO ruian_oa.system_oauth2_access_token VALUES (18, NULL, 2, '7a3484d6efa347ca86d44b5bb7f9a72a', 'e1a25aca2e844287a2550daa56a55361', 'default', '["user.read","user.write"]', '2024-10-23 14:11:34', NULL, '2024-10-23 14:08:34', NULL, '2024-10-23 14:08:34', 0, '1');
  2850. INSERT INTO ruian_oa.system_oauth2_access_token VALUES (20, NULL, 2, 'dbc3f5b714744035ac09715ea8a57770', 'b4cadad0b2ec40e3bcc7718f9541fc9d', 'default', NULL, '2024-10-23 14:11:41', NULL, '2024-10-23 14:08:41', NULL, '2024-10-23 14:08:41', 0, '1');
  2851. INSERT INTO ruian_oa.system_oauth2_access_token VALUES (22, NULL, 2, '5dcf1e9194704e61815b2072a4343b1a', 'dc6771ca1981408084bc88ac423df2bf', 'default', '["user.read","user.write"]', '2024-10-23 14:16:15', NULL, '2024-10-23 14:13:15', NULL, '2024-10-23 14:13:15', 0, '1');
  2852. INSERT INTO ruian_oa.system_oauth2_access_token VALUES (24, NULL, 2, '72c078fdaae24289969c648f7f06d0dd', '2ebf28df3ce84b5aa725ac02c10d72c1', 'default', '["user.read","user.write"]', '2024-10-23 14:18:31', NULL, '2024-10-23 14:15:31', NULL, '2024-10-23 14:15:31', 0, '1');
  2853. INSERT INTO ruian_oa.system_oauth2_access_token VALUES (26, NULL, 2, 'abdc7e3cd0d34f45b9f7c88bb9f5d3a5', '5523c71aba3a47dbba80413d491860f4', 'default', '["user.read","user.write"]', '2024-10-23 14:19:25', NULL, '2024-10-23 14:16:25', NULL, '2024-10-23 14:16:25', 0, '1');
  2854. INSERT INTO ruian_oa.system_oauth2_access_token VALUES (28, NULL, 2, '6cf2e15adf584d15aed55db81a555dda', 'bcd6ee8cbb5045a39fe77a2b3bf4d424', 'default', NULL, '2024-10-23 14:19:51', NULL, '2024-10-23 14:16:51', NULL, '2024-10-23 14:16:51', 0, '1');
  2855. INSERT INTO ruian_oa.system_oauth2_access_token VALUES (30, NULL, 2, 'abe9d9bb4c4246e7abaaef4cbed430e6', '9619e5523332477c87eae4c0b8269db4', 'default', NULL, '2024-10-23 14:28:14', NULL, '2024-10-23 14:25:14', NULL, '2024-10-23 14:25:14', 0, '1');
  2856. INSERT INTO ruian_oa.system_oauth2_access_token VALUES (32, NULL, 2, 'c8a49e20e684411186f6be0ef143dcc1', '7a8c84f00e964952ac07a7dcf8f2fe0d', 'default', NULL, '2024-10-23 14:32:01', NULL, '2024-10-23 14:29:01', NULL, '2024-10-23 14:29:01', 1, '1');
  2857. INSERT INTO ruian_oa.system_oauth2_access_token VALUES (34, NULL, 2, 'eeb6b351df6b4da587fa72cacadaa8bc', 'ce996503b75446889acd7efe4828ea4c', 'default', NULL, '2024-10-23 14:35:34', NULL, '2024-10-23 14:32:34', NULL, '2024-10-23 14:32:34', 0, '1');
  2858. INSERT INTO ruian_oa.system_oauth2_access_token VALUES (36, NULL, 2, '61d86a705fbc4ad09a0e9da59b5f47ee', '506bb70ed89e41b0a05e237aa9d729b3', 'default', NULL, '2024-10-23 14:40:41', NULL, '2024-10-23 14:37:41', NULL, '2024-10-23 14:37:41', 1, '1');
  2859. INSERT INTO ruian_oa.system_oauth2_access_token VALUES (38, NULL, 2, '1a45c5c30a6241808af2b6a0eac5a07a', '6027b88a73794a90b129e2bc066ea7d2', 'default', NULL, '2024-10-24 02:40:00', NULL, '2024-10-23 14:40:00', NULL, '2024-10-23 14:40:00', 0, '1');
  2860. --
  2861. -- TOC entry 6836 (class 0 OID 16639)
  2862. -- Dependencies: 728
  2863. -- Data for Name: system_oauth2_approve; Type: TABLE DATA; Schema: ruian_oa; Owner: system
  2864. --
  2865. --
  2866. -- TOC entry 6837 (class 0 OID 16646)
  2867. -- Dependencies: 729
  2868. -- Data for Name: system_oauth2_client; Type: TABLE DATA; Schema: ruian_oa; Owner: system
  2869. --
  2870. INSERT INTO ruian_oa.system_oauth2_client VALUES (40, 'test', 'test2', 'biubiu', 'http://test.zjugis.iocoder.cn/277a899d573723f1fcdfb57340f00379.png', NULL, 0, 43200, 43200, '["https://www.iocoder.cn"]', '["password","authorization_code","implicit"]', '[]', '[]', '[]', '[]', '{}', '1', '2022-05-12 00:28:20', '1', '2024-10-23 14:38:11', 0);
  2871. INSERT INTO ruian_oa.system_oauth2_client VALUES (1, 'default', 'admin123', '芋道源码', 'http://test.zjugis.iocoder.cn/a5e2e244368878a366b516805a4aabf1.png', '我是描述', 0, 43200, 43200, '["https://www.iocoder.cn","https://doc.iocoder.cn"]', '["password","authorization_code","implicit","refresh_token"]', '["user.read","user.write"]', NULL, '["system:user:query"]', '[]', '{}', '1', '2022-05-11 21:47:12', '1', '2024-10-23 14:38:28', 0);
  2872. --
  2873. -- TOC entry 6838 (class 0 OID 16653)
  2874. -- Dependencies: 730
  2875. -- Data for Name: system_oauth2_code; Type: TABLE DATA; Schema: ruian_oa; Owner: system
  2876. --
  2877. --
  2878. -- TOC entry 6839 (class 0 OID 16660)
  2879. -- Dependencies: 731
  2880. -- Data for Name: system_oauth2_refresh_token; Type: TABLE DATA; Schema: ruian_oa; Owner: system
  2881. --
  2882. INSERT INTO ruian_oa.system_oauth2_refresh_token VALUES (1, NULL, '1b35d3e562674633a14bea3b0ece52c6', 2, 'default', '["user.read","user.write"]', '2024-10-22 16:56:04', NULL, '2024-10-22 14:32:04', NULL, '2024-10-22 14:32:04', 0, '1');
  2883. INSERT INTO ruian_oa.system_oauth2_refresh_token VALUES (3, NULL, '8e1279573910434bbb1f9736c6a2ab83', 2, 'default', '["user.read","user.write"]', '2024-10-22 17:04:09', NULL, '2024-10-22 14:40:09', NULL, '2024-10-22 14:40:09', 0, '1');
  2884. INSERT INTO ruian_oa.system_oauth2_refresh_token VALUES (5, NULL, 'ec3bbff895ef40439359e3aeb6c01dc4', 2, 'default', '["user.read","user.write"]', '2024-10-22 17:05:50', NULL, '2024-10-22 14:41:50', NULL, '2024-10-22 14:41:50', 0, '1');
  2885. INSERT INTO ruian_oa.system_oauth2_refresh_token VALUES (7, NULL, '4be20c68acc14633987629da2e295b9c', 2, 'default', '["user.read","user.write"]', '2024-10-22 17:11:37', NULL, '2024-10-22 14:47:37', NULL, '2024-10-22 14:47:37', 0, '1');
  2886. INSERT INTO ruian_oa.system_oauth2_refresh_token VALUES (9, NULL, 'cb37d3560be54d94aef57a1c56bfb6a3', 2, 'default', '["user.read","user.write"]', '2024-10-23 13:41:39', NULL, '2024-10-23 11:17:39', NULL, '2024-10-23 11:17:39', 0, '1');
  2887. INSERT INTO ruian_oa.system_oauth2_refresh_token VALUES (11, NULL, '76fc2b0c887d40a48c467bf56919de98', 2, 'default', NULL, '2024-10-23 13:41:45', NULL, '2024-10-23 11:17:45', NULL, '2024-10-23 11:17:45', 1, '1');
  2888. INSERT INTO ruian_oa.system_oauth2_refresh_token VALUES (13, NULL, '983333a4186342058e5486dc9325cab4', 2, 'default', NULL, '2024-10-23 13:42:41', NULL, '2024-10-23 11:18:41', NULL, '2024-10-23 11:18:41', 0, '1');
  2889. INSERT INTO ruian_oa.system_oauth2_refresh_token VALUES (15, NULL, '8239819390e240d8b2e6da11b0190fca', 2, 'default', NULL, '2024-10-23 13:57:14', NULL, '2024-10-23 11:33:14', NULL, '2024-10-23 11:33:14', 0, '1');
  2890. INSERT INTO ruian_oa.system_oauth2_refresh_token VALUES (17, NULL, 'e1a25aca2e844287a2550daa56a55361', 2, 'default', '["user.read","user.write"]', '2024-10-23 16:32:34', NULL, '2024-10-23 14:08:34', NULL, '2024-10-23 14:08:34', 0, '1');
  2891. INSERT INTO ruian_oa.system_oauth2_refresh_token VALUES (19, NULL, 'b4cadad0b2ec40e3bcc7718f9541fc9d', 2, 'default', NULL, '2024-10-23 16:32:41', NULL, '2024-10-23 14:08:41', NULL, '2024-10-23 14:08:41', 0, '1');
  2892. INSERT INTO ruian_oa.system_oauth2_refresh_token VALUES (21, NULL, 'dc6771ca1981408084bc88ac423df2bf', 2, 'default', '["user.read","user.write"]', '2024-10-23 16:37:15', NULL, '2024-10-23 14:13:15', NULL, '2024-10-23 14:13:15', 0, '1');
  2893. INSERT INTO ruian_oa.system_oauth2_refresh_token VALUES (23, NULL, '2ebf28df3ce84b5aa725ac02c10d72c1', 2, 'default', '["user.read","user.write"]', '2024-10-23 16:39:31', NULL, '2024-10-23 14:15:31', NULL, '2024-10-23 14:15:31', 0, '1');
  2894. INSERT INTO ruian_oa.system_oauth2_refresh_token VALUES (25, NULL, '5523c71aba3a47dbba80413d491860f4', 2, 'default', '["user.read","user.write"]', '2024-10-23 16:40:25', NULL, '2024-10-23 14:16:25', NULL, '2024-10-23 14:16:25', 0, '1');
  2895. INSERT INTO ruian_oa.system_oauth2_refresh_token VALUES (27, NULL, 'bcd6ee8cbb5045a39fe77a2b3bf4d424', 2, 'default', NULL, '2024-10-23 16:40:51', NULL, '2024-10-23 14:16:51', NULL, '2024-10-23 14:16:51', 0, '1');
  2896. INSERT INTO ruian_oa.system_oauth2_refresh_token VALUES (29, NULL, '9619e5523332477c87eae4c0b8269db4', 2, 'default', NULL, '2024-10-23 16:49:14', NULL, '2024-10-23 14:25:14', NULL, '2024-10-23 14:25:14', 0, '1');
  2897. INSERT INTO ruian_oa.system_oauth2_refresh_token VALUES (31, NULL, '7a8c84f00e964952ac07a7dcf8f2fe0d', 2, 'default', NULL, '2024-10-23 16:53:01', NULL, '2024-10-23 14:29:01', NULL, '2024-10-23 14:29:01', 1, '1');
  2898. INSERT INTO ruian_oa.system_oauth2_refresh_token VALUES (33, NULL, 'ce996503b75446889acd7efe4828ea4c', 2, 'default', NULL, '2024-10-23 16:56:34', NULL, '2024-10-23 14:32:34', NULL, '2024-10-23 14:32:34', 0, '1');
  2899. INSERT INTO ruian_oa.system_oauth2_refresh_token VALUES (35, NULL, '506bb70ed89e41b0a05e237aa9d729b3', 2, 'default', NULL, '2024-10-23 17:01:41', NULL, '2024-10-23 14:37:41', NULL, '2024-10-23 14:37:41', 1, '1');
  2900. INSERT INTO ruian_oa.system_oauth2_refresh_token VALUES (37, NULL, '6027b88a73794a90b129e2bc066ea7d2', 2, 'default', NULL, '2024-10-24 02:40:00', NULL, '2024-10-23 14:40:00', NULL, '2024-10-23 14:40:00', 0, '1');
  2901. --
  2902. -- TOC entry 6840 (class 0 OID 16667)
  2903. -- Dependencies: 732
  2904. -- Data for Name: system_operate_log; Type: TABLE DATA; Schema: ruian_oa; Owner: system
  2905. --
  2906. INSERT INTO ruian_oa.system_operate_log VALUES (0, NULL, NULL, 2, '管理后台 - 部门', '删除部门', 4, NULL, NULL, 'DELETE', '/admin-api/system/dept/delete', '0:0:0:0:0:0:0:1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/129.0.0.0 Safari/537.36', 'CommonResult com.zjugis.module.system.controller.admin.dept.DeptController.deleteDept(String)', '{"id":"102"}', '2024-10-23 14:29:24', 34, 500, 'ServiceException: 存在子部门,无法删除', 'null', '1', '2024-10-23 14:29:24', '1', '2024-10-23 14:29:24', 0, '1');
  2907. INSERT INTO ruian_oa.system_operate_log VALUES (1, NULL, NULL, 2, '管理后台 - 部门', '删除部门', 4, NULL, NULL, 'DELETE', '/admin-api/system/dept/delete', '0:0:0:0:0:0:0:1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/129.0.0.0 Safari/537.36', 'CommonResult com.zjugis.module.system.controller.admin.dept.DeptController.deleteDept(String)', '{"id":"108"}', '2024-10-23 14:29:27', 61, 0, 'success', 'true', '1', '2024-10-23 14:29:27', '1', '2024-10-23 14:29:27', 0, '1');
  2908. INSERT INTO ruian_oa.system_operate_log VALUES (2, NULL, NULL, 2, '管理后台 - 部门', '删除部门', 4, NULL, NULL, 'DELETE', '/admin-api/system/dept/delete', '0:0:0:0:0:0:0:1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/129.0.0.0 Safari/537.36', 'CommonResult com.zjugis.module.system.controller.admin.dept.DeptController.deleteDept(String)', '{"id":"109"}', '2024-10-23 14:29:30', 33, 0, 'success', 'true', '1', '2024-10-23 14:29:30', '1', '2024-10-23 14:29:30', 0, '1');
  2909. INSERT INTO ruian_oa.system_operate_log VALUES (3, NULL, NULL, 2, '管理后台 - 部门', '删除部门', 4, NULL, NULL, 'DELETE', '/admin-api/system/dept/delete', '0:0:0:0:0:0:0:1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/129.0.0.0 Safari/537.36', 'CommonResult com.zjugis.module.system.controller.admin.dept.DeptController.deleteDept(String)', '{"id":"102"}', '2024-10-23 14:29:33', 38, 0, 'success', 'true', '1', '2024-10-23 14:29:33', '1', '2024-10-23 14:29:33', 0, '1');
  2910. INSERT INTO ruian_oa.system_operate_log VALUES (4, NULL, NULL, 2, '管理后台 - 部门', '更新部门', 3, NULL, NULL, 'PUT', '/admin-api/system/dept/update', '0:0:0:0:0:0:0:1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/129.0.0.0 Safari/537.36', 'CommonResult com.zjugis.module.system.controller.admin.dept.DeptController.updateDept(DeptUpdateReqVO)', '{"reqVO":{"name":"顶级部门","parentId":"0","sort":0,"leaderUserId":"1","phone":"15888888888","email":"ry@qq.com","status":0,"code":null,"id":"100","deptLeaderUserId":null}}', '2024-10-23 14:30:26', 42, 0, 'success', 'true', '1', '2024-10-23 14:30:27', '1', '2024-10-23 14:30:27', 0, '1');
  2911. INSERT INTO ruian_oa.system_operate_log VALUES (5, NULL, NULL, 2, '管理后台 - 部门', '更新部门', 3, NULL, NULL, 'PUT', '/admin-api/system/dept/update', '0:0:0:0:0:0:0:1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/129.0.0.0 Safari/537.36', 'CommonResult com.zjugis.module.system.controller.admin.dept.DeptController.updateDept(DeptUpdateReqVO)', '{"reqVO":{"name":"分公司","parentId":"100","sort":1,"leaderUserId":"104","phone":"15888888888","email":"ry@qq.com","status":0,"code":null,"id":"101","deptLeaderUserId":null}}', '2024-10-23 14:30:45', 72, 0, 'success', 'true', '1', '2024-10-23 14:30:45', '1', '2024-10-23 14:30:45', 0, '1');
  2912. INSERT INTO ruian_oa.system_operate_log VALUES (6, NULL, NULL, 2, '管理后台 - 部门', '更新部门', 3, NULL, NULL, 'PUT', '/admin-api/system/dept/update', '0:0:0:0:0:0:0:1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/129.0.0.0 Safari/537.36', 'CommonResult com.zjugis.module.system.controller.admin.dept.DeptController.updateDept(DeptUpdateReqVO)', '{"reqVO":{"name":"顶级部门","parentId":"0","sort":0,"leaderUserId":"","phone":"15888888888","email":"ry@qq.com","status":0,"code":null,"id":"100","deptLeaderUserId":null}}', '2024-10-23 14:30:54', 24, 0, 'success', 'true', '1', '2024-10-23 14:30:54', '1', '2024-10-23 14:30:54', 0, '1');
  2913. INSERT INTO ruian_oa.system_operate_log VALUES (7, NULL, NULL, 2, '管理后台 - 用户', '修改用户', 3, NULL, NULL, 'PUT', '/admin-api/system/user/update', '0:0:0:0:0:0:0:1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/129.0.0.0 Safari/537.36', 'CommonResult com.zjugis.module.system.controller.admin.user.UserController.updateUser(UserUpdateReqVO)', '{"reqVO":{"username":"admin","nickname":"管理员","remark":"管理员","deptId":"103","deptName":"研发部门","deptIds":null,"postIds":[1],"email":"aoteman@126.com","mobile":"15612345678","sex":1,"avatar":null,"signatureUrl":null,"attendanceFlag":true,"id":"1"}}', '2024-10-23 14:31:10', 58, 0, 'success', 'true', '1', '2024-10-23 14:31:10', '1', '2024-10-23 14:31:10', 0, '1');
  2914. INSERT INTO ruian_oa.system_operate_log VALUES (8, NULL, NULL, 2, '管理后台 - 用户', '修改用户', 3, NULL, NULL, 'PUT', '/admin-api/system/user/update', '0:0:0:0:0:0:0:1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/129.0.0.0 Safari/537.36', 'CommonResult com.zjugis.module.system.controller.admin.user.UserController.updateUser(UserUpdateReqVO)', '{"reqVO":{"username":"admin","nickname":"管理员","remark":"管理员","deptId":"100","deptName":"顶级部门","deptIds":null,"postIds":[1],"email":"aoteman@126.com","mobile":"15612345678","sex":1,"avatar":null,"signatureUrl":null,"attendanceFlag":true,"id":"1"}}', '2024-10-23 14:31:16', 42, 0, 'success', 'true', '1', '2024-10-23 14:31:16', '1', '2024-10-23 14:31:16', 0, '1');
  2915. INSERT INTO ruian_oa.system_operate_log VALUES (9, NULL, NULL, 2, '管理后台 - 菜单', '删除菜单', 4, NULL, NULL, 'DELETE', '/admin-api/system/menu/delete', '0:0:0:0:0:0:0:1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/129.0.0.0 Safari/537.36', 'CommonResult com.zjugis.module.system.controller.admin.permission.MenuController.deleteMenu(Long)', '{"id":1254}', '2024-10-23 14:31:41', 87, 0, 'success', 'true', '1', '2024-10-23 14:31:41', '1', '2024-10-23 14:31:41', 0, '1');
  2916. INSERT INTO ruian_oa.system_operate_log VALUES (10, NULL, NULL, 2, '管理后台 - 菜单', '删除菜单', 4, NULL, NULL, 'DELETE', '/admin-api/system/menu/delete', '0:0:0:0:0:0:0:1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/129.0.0.0 Safari/537.36', 'CommonResult com.zjugis.module.system.controller.admin.permission.MenuController.deleteMenu(Long)', '{"id":1227}', '2024-10-23 14:31:55', 116, 0, 'success', 'true', '1', '2024-10-23 14:31:56', '1', '2024-10-23 14:31:56', 0, '1');
  2917. INSERT INTO ruian_oa.system_operate_log VALUES (11, NULL, NULL, 2, '管理后台 - 菜单', '删除菜单', 4, NULL, NULL, 'DELETE', '/admin-api/system/menu/delete', '0:0:0:0:0:0:0:1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/129.0.0.0 Safari/537.36', 'CommonResult com.zjugis.module.system.controller.admin.permission.MenuController.deleteMenu(Long)', '{"id":1228}', '2024-10-23 14:32:02', 19, 0, 'success', 'true', '1', '2024-10-23 14:32:02', '1', '2024-10-23 14:32:02', 0, '1');
  2918. INSERT INTO ruian_oa.system_operate_log VALUES (12, NULL, NULL, 2, '管理后台 - 菜单', '删除菜单', 4, NULL, NULL, 'DELETE', '/admin-api/system/menu/delete', '0:0:0:0:0:0:0:1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/129.0.0.0 Safari/537.36', 'CommonResult com.zjugis.module.system.controller.admin.permission.MenuController.deleteMenu(Long)', '{"id":1229}', '2024-10-23 14:32:06', 19, 0, 'success', 'true', '1', '2024-10-23 14:32:06', '1', '2024-10-23 14:32:06', 0, '1');
  2919. INSERT INTO ruian_oa.system_operate_log VALUES (13, NULL, NULL, 2, '管理后台 - OAuth2 客户端', '更新 OAuth2 客户端', 3, NULL, NULL, 'PUT', '/admin-api/system/oauth2-client/update', '0:0:0:0:0:0:0:1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/129.0.0.0 Safari/537.36', 'CommonResult com.zjugis.module.system.controller.admin.oauth2.OAuth2ClientController.updateOAuth2Client(OAuth2ClientUpdateReqVO)', '{"updateReqVO":{"clientId":"test","secret":"test2","name":"biubiu","logo":"http://test.zjugis.iocoder.cn/277a899d573723f1fcdfb57340f00379.png","description":null,"status":0,"accessTokenValiditySeconds":43200,"refreshTokenValiditySeconds":43200,"redirectUris":["https://www.iocoder.cn"],"authorizedGrantTypes":["password","authorization_code","implicit"],"scopes":[],"autoApproveScopes":[],"authorities":[],"resourceIds":[],"additionalInformation":"{}","id":40,"additionalInformationJson":true}}', '2024-10-23 14:38:11', 25, 0, 'success', 'true', '1', '2024-10-23 14:38:11', '1', '2024-10-23 14:38:11', 0, '1');
  2920. INSERT INTO ruian_oa.system_operate_log VALUES (14, NULL, NULL, 2, '管理后台 - OAuth2 客户端', '更新 OAuth2 客户端', 3, NULL, NULL, 'PUT', '/admin-api/system/oauth2-client/update', '0:0:0:0:0:0:0:1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/129.0.0.0 Safari/537.36', 'CommonResult com.zjugis.module.system.controller.admin.oauth2.OAuth2ClientController.updateOAuth2Client(OAuth2ClientUpdateReqVO)', '{"updateReqVO":{"clientId":"default","secret":"admin123","name":"芋道源码","logo":"http://test.zjugis.iocoder.cn/a5e2e244368878a366b516805a4aabf1.png","description":"我是描述","status":0,"accessTokenValiditySeconds":43200,"refreshTokenValiditySeconds":43200,"redirectUris":["https://www.iocoder.cn","https://doc.iocoder.cn"],"authorizedGrantTypes":["password","authorization_code","implicit","refresh_token"],"scopes":["user.read","user.write"],"autoApproveScopes":null,"authorities":["system:user:query"],"resourceIds":[],"additionalInformation":"{}","id":1,"additionalInformationJson":true}}', '2024-10-23 14:38:28', 17, 0, 'success', 'true', '1', '2024-10-23 14:38:28', '1', '2024-10-23 14:38:28', 0, '1');
  2921. INSERT INTO ruian_oa.system_operate_log VALUES (15, NULL, NULL, 2, '管理后台 - OAuth2.0 令牌', '删除访问令牌', 4, NULL, NULL, 'DELETE', '/admin-api/system/oauth2-token/delete', '0:0:0:0:0:0:0:1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/129.0.0.0 Safari/537.36', 'CommonResult com.zjugis.module.system.controller.admin.oauth2.OAuth2TokenController.deleteAccessToken(String)', '{"accessToken":"61d86a705fbc4ad09a0e9da59b5f47ee"}', '2024-10-23 14:38:38', 19, 0, 'success', 'true', '1', '2024-10-23 14:38:38', '1', '2024-10-23 14:38:38', 0, '1');
  2922. --
  2923. -- TOC entry 6841 (class 0 OID 16676)
  2924. -- Dependencies: 733
  2925. -- Data for Name: system_post; Type: TABLE DATA; Schema: ruian_oa; Owner: system
  2926. --
  2927. INSERT INTO ruian_oa.system_post VALUES (1, 'ceo', '董事长', 1, 0, NULL, 'admin', '2021-01-06 17:03:48', '1', '2022-04-19 16:53:39', 0);
  2928. INSERT INTO ruian_oa.system_post VALUES (2, 'se', '项目经理', 2, 0, NULL, 'admin', '2021-01-05 17:03:48', '1', '2021-12-12 10:47:47', 0);
  2929. INSERT INTO ruian_oa.system_post VALUES (4, 'user', '普通员工', 4, 0, '111', 'admin', '2021-01-05 17:03:48', '1', '2022-05-04 22:46:35', 0);
  2930. --
  2931. -- TOC entry 6842 (class 0 OID 16683)
  2932. -- Dependencies: 734
  2933. -- Data for Name: system_role; Type: TABLE DATA; Schema: ruian_oa; Owner: system
  2934. --
  2935. INSERT INTO ruian_oa.system_role VALUES (1, '超级管理员', 'super_admin', 1, 1, NULL, 0, 1, '超级管理员', 'admin', '2021-01-05 17:03:48', NULL, '2022-02-22 05:08:21', 0, NULL);
  2936. INSERT INTO ruian_oa.system_role VALUES (2, '普通角色', 'common', 2, 2, NULL, 0, 1, '普通角色', 'admin', '2021-01-05 17:03:48', NULL, '2022-02-22 05:08:20', 0, NULL);
  2937. INSERT INTO ruian_oa.system_role VALUES (101, '测试账号', 'test', 0, 1, '[]', 0, 2, '132', NULL, '2021-01-06 13:49:35', '1', '2022-04-01 21:37:13', 0, NULL);
  2938. --
  2939. -- TOC entry 6843 (class 0 OID 16690)
  2940. -- Dependencies: 735
  2941. -- Data for Name: system_role_menu; Type: TABLE DATA; Schema: ruian_oa; Owner: system
  2942. --
  2943. --
  2944. -- TOC entry 6844 (class 0 OID 16695)
  2945. -- Dependencies: 736
  2946. -- Data for Name: system_sensitive_word; Type: TABLE DATA; Schema: ruian_oa; Owner: system
  2947. --
  2948. --
  2949. -- TOC entry 6845 (class 0 OID 16702)
  2950. -- Dependencies: 737
  2951. -- Data for Name: system_sms_channel; Type: TABLE DATA; Schema: ruian_oa; Owner: system
  2952. --
  2953. --
  2954. -- TOC entry 6846 (class 0 OID 16709)
  2955. -- Dependencies: 738
  2956. -- Data for Name: system_sms_code; Type: TABLE DATA; Schema: ruian_oa; Owner: system
  2957. --
  2958. --
  2959. -- TOC entry 6847 (class 0 OID 16713)
  2960. -- Dependencies: 739
  2961. -- Data for Name: system_sms_log; Type: TABLE DATA; Schema: ruian_oa; Owner: system
  2962. --
  2963. --
  2964. -- TOC entry 6848 (class 0 OID 16720)
  2965. -- Dependencies: 740
  2966. -- Data for Name: system_sms_template; Type: TABLE DATA; Schema: ruian_oa; Owner: system
  2967. --
  2968. --
  2969. -- TOC entry 6849 (class 0 OID 16727)
  2970. -- Dependencies: 741
  2971. -- Data for Name: system_social_user; Type: TABLE DATA; Schema: ruian_oa; Owner: system
  2972. --
  2973. --
  2974. -- TOC entry 6850 (class 0 OID 16734)
  2975. -- Dependencies: 742
  2976. -- Data for Name: system_social_user_bind; Type: TABLE DATA; Schema: ruian_oa; Owner: system
  2977. --
  2978. --
  2979. -- TOC entry 6852 (class 0 OID 16746)
  2980. -- Dependencies: 744
  2981. -- Data for Name: system_user_dept; Type: TABLE DATA; Schema: ruian_oa; Owner: system
  2982. --
  2983. --
  2984. -- TOC entry 6853 (class 0 OID 16750)
  2985. -- Dependencies: 745
  2986. -- Data for Name: system_user_post; Type: TABLE DATA; Schema: ruian_oa; Owner: system
  2987. --
  2988. INSERT INTO ruian_oa.system_user_post VALUES (112, NULL, 1, 'admin', '2022-05-02 07:25:24', 'admin', '2022-05-02 07:25:24', 0, '1');
  2989. INSERT INTO ruian_oa.system_user_post VALUES (113, NULL, 1, 'admin', '2022-05-02 07:25:24', 'admin', '2022-05-02 07:25:24', 0, '100');
  2990. INSERT INTO ruian_oa.system_user_post VALUES (114, NULL, 3, 'admin', '2022-05-02 07:25:24', 'admin', '2022-05-02 07:25:24', 0, '114');
  2991. --
  2992. -- TOC entry 6854 (class 0 OID 16754)
  2993. -- Dependencies: 746
  2994. -- Data for Name: system_user_role; Type: TABLE DATA; Schema: ruian_oa; Owner: system
  2995. --
  2996. INSERT INTO ruian_oa.system_user_role VALUES (1, NULL, 1, NULL, '2022-01-11 13:19:45', NULL, '2022-05-12 12:35:17', 0, '1');
  2997. INSERT INTO ruian_oa.system_user_role VALUES (2, NULL, 2, NULL, '2022-01-11 13:19:45', NULL, '2022-05-12 12:35:13', 0, '2');
  2998. INSERT INTO ruian_oa.system_user_role VALUES (4, NULL, 101, NULL, '2022-01-11 13:19:45', NULL, '2022-05-12 12:35:13', 0, '100');
  2999. INSERT INTO ruian_oa.system_user_role VALUES (5, NULL, 1, NULL, '2022-01-11 13:19:45', NULL, '2022-05-12 12:35:12', 0, '100');
  3000. INSERT INTO ruian_oa.system_user_role VALUES (6, NULL, 2, NULL, '2022-01-11 13:19:45', NULL, '2022-05-12 12:35:11', 0, '100');
  3001. INSERT INTO ruian_oa.system_user_role VALUES (7, NULL, 101, NULL, '2022-01-11 13:19:45', NULL, '2022-05-12 12:35:11', 0, '104');
  3002. INSERT INTO ruian_oa.system_user_role VALUES (10, NULL, 1, '1', '2022-01-11 13:19:45', '1', '2022-01-11 13:19:45', 0, '103');
  3003. INSERT INTO ruian_oa.system_user_role VALUES (17, NULL, 101, '1', '2022-03-19 21:51:13', '1', '2022-03-19 21:51:13', 0, '114');
  3004. INSERT INTO ruian_oa.system_user_role VALUES (18, NULL, 2, '1', '2022-05-12 20:39:29', '1', '2022-05-12 20:39:29', 0, '1');
  3005. --
  3006. -- TOC entry 6851 (class 0 OID 16738)
  3007. -- Dependencies: 743
  3008. -- Data for Name: system_users; Type: TABLE DATA; Schema: ruian_oa; Owner: system
  3009. --
  3010. INSERT INTO ruian_oa.system_users VALUES ('admin', '$2a$10$0acJOIk2D25/oC87nyclE..0lzeu9DtQ/n3geP4fkun/zIVRhHJIO', '管理员', '管理员', '[1]', 'aoteman@126.com', '15612345678', 1, NULL, 0, '0:0:0:0:0:0:0:1', '2024-10-23 14:40:00', 'admin', '2021-01-05 17:03:47', NULL, '2024-10-23 14:40:00', 0, NULL, '1', NULL, '100', '顶级部门', NULL, 1);
  3011. --
  3012. -- TOC entry 6905 (class 0 OID 0)
  3013. -- Dependencies: 748
  3014. -- Name: infra_api_access_log_seq; Type: SEQUENCE SET; Schema: ruian_oa; Owner: system
  3015. --
  3016. SELECT pg_catalog.setval('ruian_oa.infra_api_access_log_seq', 0, false);
  3017. --
  3018. -- TOC entry 6906 (class 0 OID 0)
  3019. -- Dependencies: 749
  3020. -- Name: infra_api_error_log_seq; Type: SEQUENCE SET; Schema: ruian_oa; Owner: system
  3021. --
  3022. SELECT pg_catalog.setval('ruian_oa.infra_api_error_log_seq', 16, true);
  3023. --
  3024. -- TOC entry 6907 (class 0 OID 0)
  3025. -- Dependencies: 750
  3026. -- Name: infra_codegen_column_seq; Type: SEQUENCE SET; Schema: ruian_oa; Owner: system
  3027. --
  3028. SELECT pg_catalog.setval('ruian_oa.infra_codegen_column_seq', 0, false);
  3029. --
  3030. -- TOC entry 6908 (class 0 OID 0)
  3031. -- Dependencies: 751
  3032. -- Name: infra_codegen_table_seq; Type: SEQUENCE SET; Schema: ruian_oa; Owner: system
  3033. --
  3034. SELECT pg_catalog.setval('ruian_oa.infra_codegen_table_seq', 0, false);
  3035. --
  3036. -- TOC entry 6909 (class 0 OID 0)
  3037. -- Dependencies: 752
  3038. -- Name: infra_config_seq; Type: SEQUENCE SET; Schema: ruian_oa; Owner: system
  3039. --
  3040. SELECT pg_catalog.setval('ruian_oa.infra_config_seq', 0, false);
  3041. --
  3042. -- TOC entry 6910 (class 0 OID 0)
  3043. -- Dependencies: 753
  3044. -- Name: infra_data_source_config_seq; Type: SEQUENCE SET; Schema: ruian_oa; Owner: system
  3045. --
  3046. SELECT pg_catalog.setval('ruian_oa.infra_data_source_config_seq', 0, false);
  3047. --
  3048. -- TOC entry 6911 (class 0 OID 0)
  3049. -- Dependencies: 754
  3050. -- Name: infra_file_config_seq; Type: SEQUENCE SET; Schema: ruian_oa; Owner: system
  3051. --
  3052. SELECT pg_catalog.setval('ruian_oa.infra_file_config_seq', 0, false);
  3053. --
  3054. -- TOC entry 6912 (class 0 OID 0)
  3055. -- Dependencies: 755
  3056. -- Name: infra_file_content_seq; Type: SEQUENCE SET; Schema: ruian_oa; Owner: system
  3057. --
  3058. SELECT pg_catalog.setval('ruian_oa.infra_file_content_seq', 0, false);
  3059. --
  3060. -- TOC entry 6913 (class 0 OID 0)
  3061. -- Dependencies: 756
  3062. -- Name: infra_file_seq; Type: SEQUENCE SET; Schema: ruian_oa; Owner: system
  3063. --
  3064. SELECT pg_catalog.setval('ruian_oa.infra_file_seq', 0, false);
  3065. --
  3066. -- TOC entry 6914 (class 0 OID 0)
  3067. -- Dependencies: 757
  3068. -- Name: infra_job_log_seq; Type: SEQUENCE SET; Schema: ruian_oa; Owner: system
  3069. --
  3070. SELECT pg_catalog.setval('ruian_oa.infra_job_log_seq', 0, false);
  3071. --
  3072. -- TOC entry 6915 (class 0 OID 0)
  3073. -- Dependencies: 758
  3074. -- Name: infra_job_seq; Type: SEQUENCE SET; Schema: ruian_oa; Owner: system
  3075. --
  3076. SELECT pg_catalog.setval('ruian_oa.infra_job_seq', 0, false);
  3077. --
  3078. -- TOC entry 6916 (class 0 OID 0)
  3079. -- Dependencies: 759
  3080. -- Name: infra_msg_send_record_seq; Type: SEQUENCE SET; Schema: ruian_oa; Owner: system
  3081. --
  3082. SELECT pg_catalog.setval('ruian_oa.infra_msg_send_record_seq', 1, false);
  3083. --
  3084. -- TOC entry 6917 (class 0 OID 0)
  3085. -- Dependencies: 760
  3086. -- Name: infra_test_demo_seq; Type: SEQUENCE SET; Schema: ruian_oa; Owner: system
  3087. --
  3088. SELECT pg_catalog.setval('ruian_oa.infra_test_demo_seq', 0, false);
  3089. --
  3090. -- TOC entry 6918 (class 0 OID 0)
  3091. -- Dependencies: 761
  3092. -- Name: system_dept_seq; Type: SEQUENCE SET; Schema: ruian_oa; Owner: system
  3093. --
  3094. SELECT pg_catalog.setval('ruian_oa.system_dept_seq', 0, false);
  3095. --
  3096. -- TOC entry 6919 (class 0 OID 0)
  3097. -- Dependencies: 762
  3098. -- Name: system_dict_data_seq; Type: SEQUENCE SET; Schema: ruian_oa; Owner: system
  3099. --
  3100. SELECT pg_catalog.setval('ruian_oa.system_dict_data_seq', 0, false);
  3101. --
  3102. -- TOC entry 6920 (class 0 OID 0)
  3103. -- Dependencies: 763
  3104. -- Name: system_dict_type_seq; Type: SEQUENCE SET; Schema: ruian_oa; Owner: system
  3105. --
  3106. SELECT pg_catalog.setval('ruian_oa.system_dict_type_seq', 0, false);
  3107. --
  3108. -- TOC entry 6921 (class 0 OID 0)
  3109. -- Dependencies: 764
  3110. -- Name: system_error_code_seq; Type: SEQUENCE SET; Schema: ruian_oa; Owner: system
  3111. --
  3112. SELECT pg_catalog.setval('ruian_oa.system_error_code_seq', 0, false);
  3113. --
  3114. -- TOC entry 6922 (class 0 OID 0)
  3115. -- Dependencies: 765
  3116. -- Name: system_login_log_seq; Type: SEQUENCE SET; Schema: ruian_oa; Owner: system
  3117. --
  3118. SELECT pg_catalog.setval('ruian_oa.system_login_log_seq', 13, true);
  3119. --
  3120. -- TOC entry 6923 (class 0 OID 0)
  3121. -- Dependencies: 766
  3122. -- Name: system_menu_seq; Type: SEQUENCE SET; Schema: ruian_oa; Owner: system
  3123. --
  3124. SELECT pg_catalog.setval('ruian_oa.system_menu_seq', 0, false);
  3125. --
  3126. -- TOC entry 6924 (class 0 OID 0)
  3127. -- Dependencies: 767
  3128. -- Name: system_notice_seq; Type: SEQUENCE SET; Schema: ruian_oa; Owner: system
  3129. --
  3130. SELECT pg_catalog.setval('ruian_oa.system_notice_seq', 0, false);
  3131. --
  3132. -- TOC entry 6925 (class 0 OID 0)
  3133. -- Dependencies: 768
  3134. -- Name: system_notify_message_seq; Type: SEQUENCE SET; Schema: ruian_oa; Owner: system
  3135. --
  3136. SELECT pg_catalog.setval('ruian_oa.system_notify_message_seq', 1, false);
  3137. --
  3138. -- TOC entry 6926 (class 0 OID 0)
  3139. -- Dependencies: 769
  3140. -- Name: system_notify_template_seq; Type: SEQUENCE SET; Schema: ruian_oa; Owner: system
  3141. --
  3142. SELECT pg_catalog.setval('ruian_oa.system_notify_template_seq', 1, false);
  3143. --
  3144. -- TOC entry 6927 (class 0 OID 0)
  3145. -- Dependencies: 770
  3146. -- Name: system_oauth2_access_token_seq; Type: SEQUENCE SET; Schema: ruian_oa; Owner: system
  3147. --
  3148. SELECT pg_catalog.setval('ruian_oa.system_oauth2_access_token_seq', 38, true);
  3149. --
  3150. -- TOC entry 6928 (class 0 OID 0)
  3151. -- Dependencies: 771
  3152. -- Name: system_oauth2_approve_seq; Type: SEQUENCE SET; Schema: ruian_oa; Owner: system
  3153. --
  3154. SELECT pg_catalog.setval('ruian_oa.system_oauth2_approve_seq', 1, false);
  3155. --
  3156. -- TOC entry 6929 (class 0 OID 0)
  3157. -- Dependencies: 772
  3158. -- Name: system_oauth2_client_seq; Type: SEQUENCE SET; Schema: ruian_oa; Owner: system
  3159. --
  3160. SELECT pg_catalog.setval('ruian_oa.system_oauth2_client_seq', 1, false);
  3161. --
  3162. -- TOC entry 6930 (class 0 OID 0)
  3163. -- Dependencies: 773
  3164. -- Name: system_oauth2_code_seq; Type: SEQUENCE SET; Schema: ruian_oa; Owner: system
  3165. --
  3166. SELECT pg_catalog.setval('ruian_oa.system_oauth2_code_seq', 1, false);
  3167. --
  3168. -- TOC entry 6931 (class 0 OID 0)
  3169. -- Dependencies: 774
  3170. -- Name: system_operate_log_seq; Type: SEQUENCE SET; Schema: ruian_oa; Owner: system
  3171. --
  3172. SELECT pg_catalog.setval('ruian_oa.system_operate_log_seq', 15, true);
  3173. --
  3174. -- TOC entry 6932 (class 0 OID 0)
  3175. -- Dependencies: 775
  3176. -- Name: system_post_seq; Type: SEQUENCE SET; Schema: ruian_oa; Owner: system
  3177. --
  3178. SELECT pg_catalog.setval('ruian_oa.system_post_seq', 0, false);
  3179. --
  3180. -- TOC entry 6933 (class 0 OID 0)
  3181. -- Dependencies: 776
  3182. -- Name: system_role_menu_seq; Type: SEQUENCE SET; Schema: ruian_oa; Owner: system
  3183. --
  3184. SELECT pg_catalog.setval('ruian_oa.system_role_menu_seq', 0, false);
  3185. --
  3186. -- TOC entry 6934 (class 0 OID 0)
  3187. -- Dependencies: 777
  3188. -- Name: system_role_seq; Type: SEQUENCE SET; Schema: ruian_oa; Owner: system
  3189. --
  3190. SELECT pg_catalog.setval('ruian_oa.system_role_seq', 0, false);
  3191. --
  3192. -- TOC entry 6935 (class 0 OID 0)
  3193. -- Dependencies: 778
  3194. -- Name: system_sensitive_word_seq; Type: SEQUENCE SET; Schema: ruian_oa; Owner: system
  3195. --
  3196. SELECT pg_catalog.setval('ruian_oa.system_sensitive_word_seq', 0, false);
  3197. --
  3198. -- TOC entry 6936 (class 0 OID 0)
  3199. -- Dependencies: 779
  3200. -- Name: system_sms_channel_seq; Type: SEQUENCE SET; Schema: ruian_oa; Owner: system
  3201. --
  3202. SELECT pg_catalog.setval('ruian_oa.system_sms_channel_seq', 0, false);
  3203. --
  3204. -- TOC entry 6937 (class 0 OID 0)
  3205. -- Dependencies: 780
  3206. -- Name: system_sms_code_seq; Type: SEQUENCE SET; Schema: ruian_oa; Owner: system
  3207. --
  3208. SELECT pg_catalog.setval('ruian_oa.system_sms_code_seq', 0, false);
  3209. --
  3210. -- TOC entry 6938 (class 0 OID 0)
  3211. -- Dependencies: 781
  3212. -- Name: system_sms_log_seq; Type: SEQUENCE SET; Schema: ruian_oa; Owner: system
  3213. --
  3214. SELECT pg_catalog.setval('ruian_oa.system_sms_log_seq', 0, false);
  3215. --
  3216. -- TOC entry 6939 (class 0 OID 0)
  3217. -- Dependencies: 782
  3218. -- Name: system_sms_template_seq; Type: SEQUENCE SET; Schema: ruian_oa; Owner: system
  3219. --
  3220. SELECT pg_catalog.setval('ruian_oa.system_sms_template_seq', 0, false);
  3221. --
  3222. -- TOC entry 6940 (class 0 OID 0)
  3223. -- Dependencies: 783
  3224. -- Name: system_social_user_bind_seq; Type: SEQUENCE SET; Schema: ruian_oa; Owner: system
  3225. --
  3226. SELECT pg_catalog.setval('ruian_oa.system_social_user_bind_seq', 0, false);
  3227. --
  3228. -- TOC entry 6941 (class 0 OID 0)
  3229. -- Dependencies: 784
  3230. -- Name: system_social_user_seq; Type: SEQUENCE SET; Schema: ruian_oa; Owner: system
  3231. --
  3232. SELECT pg_catalog.setval('ruian_oa.system_social_user_seq', 0, false);
  3233. --
  3234. -- TOC entry 6942 (class 0 OID 0)
  3235. -- Dependencies: 785
  3236. -- Name: system_tenant_package_seq; Type: SEQUENCE SET; Schema: ruian_oa; Owner: system
  3237. --
  3238. SELECT pg_catalog.setval('ruian_oa.system_tenant_package_seq', 0, false);
  3239. --
  3240. -- TOC entry 6943 (class 0 OID 0)
  3241. -- Dependencies: 786
  3242. -- Name: system_tenant_seq; Type: SEQUENCE SET; Schema: ruian_oa; Owner: system
  3243. --
  3244. SELECT pg_catalog.setval('ruian_oa.system_tenant_seq', 0, false);
  3245. --
  3246. -- TOC entry 6944 (class 0 OID 0)
  3247. -- Dependencies: 787
  3248. -- Name: system_user_dept_seq; Type: SEQUENCE SET; Schema: ruian_oa; Owner: system
  3249. --
  3250. SELECT pg_catalog.setval('ruian_oa.system_user_dept_seq', 0, false);
  3251. --
  3252. -- TOC entry 6945 (class 0 OID 0)
  3253. -- Dependencies: 788
  3254. -- Name: system_user_post_seq; Type: SEQUENCE SET; Schema: ruian_oa; Owner: system
  3255. --
  3256. SELECT pg_catalog.setval('ruian_oa.system_user_post_seq', 0, false);
  3257. --
  3258. -- TOC entry 6946 (class 0 OID 0)
  3259. -- Dependencies: 789
  3260. -- Name: system_user_role_seq; Type: SEQUENCE SET; Schema: ruian_oa; Owner: system
  3261. --
  3262. SELECT pg_catalog.setval('ruian_oa.system_user_role_seq', 0, false);
  3263. --
  3264. -- TOC entry 6947 (class 0 OID 0)
  3265. -- Dependencies: 790
  3266. -- Name: system_user_seq; Type: SEQUENCE SET; Schema: ruian_oa; Owner: system
  3267. --
  3268. SELECT pg_catalog.setval('ruian_oa.system_user_seq', 0, false);
  3269. --
  3270. -- TOC entry 6948 (class 0 OID 0)
  3271. -- Dependencies: 747
  3272. -- Name: system_user_session_seq; Type: SEQUENCE SET; Schema: ruian_oa; Owner: system
  3273. --
  3274. SELECT pg_catalog.setval('ruian_oa.system_user_session_seq', 0, false);
  3275. --
  3276. -- TOC entry 6904 (class 0 OID 0)
  3277. -- Dependencies: 44
  3278. -- Name: SCHEMA ruian_oa; Type: ACL; Schema: -; Owner: system
  3279. --
  3280. GRANT ALL ON SCHEMA ruian_oa TO ruian_oa;
  3281. -- Completed on 2024-10-23 14:41:17
  3282. --
  3283. -- Kingbase database dump complete
  3284. --