postgres_ry_cloud.sql 104 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506
  1. -- ----------------------------
  2. -- 第三方平台授权表
  3. -- ----------------------------
  4. create table sys_social
  5. (
  6. id int8 not null,
  7. user_id int8 not null,
  8. tenant_id varchar(20) default '000000'::varchar,
  9. auth_id varchar(255) not null,
  10. source varchar(255) not null,
  11. open_id varchar(255) default null::varchar,
  12. user_name varchar(30) not null,
  13. nick_name varchar(30) default ''::varchar,
  14. email varchar(255) default ''::varchar,
  15. avatar varchar(500) default ''::varchar,
  16. access_token varchar(2000) not null,
  17. expire_in int8 default null,
  18. refresh_token varchar(2000) default null::varchar,
  19. access_code varchar(255) default null::varchar,
  20. union_id varchar(255) default null::varchar,
  21. scope varchar(255) default null::varchar,
  22. token_type varchar(255) default null::varchar,
  23. id_token varchar(2000) default null::varchar,
  24. mac_algorithm varchar(255) default null::varchar,
  25. mac_key varchar(255) default null::varchar,
  26. code varchar(255) default null::varchar,
  27. oauth_token varchar(255) default null::varchar,
  28. oauth_token_secret varchar(255) default null::varchar,
  29. create_dept int8,
  30. create_by int8,
  31. create_time timestamp,
  32. update_by int8,
  33. update_time timestamp,
  34. del_flag char default '0'::bpchar,
  35. constraint "pk_sys_social" primary key (id)
  36. );
  37. comment on table sys_social is '社会化关系表';
  38. comment on column sys_social.id is '主键';
  39. comment on column sys_social.user_id is '用户ID';
  40. comment on column sys_social.tenant_id is '租户id';
  41. comment on column sys_social.auth_id is '平台+平台唯一id';
  42. comment on column sys_social.source is '用户来源';
  43. comment on column sys_social.open_id is '平台编号唯一id';
  44. comment on column sys_social.user_name is '登录账号';
  45. comment on column sys_social.nick_name is '用户昵称';
  46. comment on column sys_social.email is '用户邮箱';
  47. comment on column sys_social.avatar is '头像地址';
  48. comment on column sys_social.access_token is '用户的授权令牌';
  49. comment on column sys_social.expire_in is '用户的授权令牌的有效期,部分平台可能没有';
  50. comment on column sys_social.refresh_token is '刷新令牌,部分平台可能没有';
  51. comment on column sys_social.access_code is '平台的授权信息,部分平台可能没有';
  52. comment on column sys_social.union_id is '用户的 unionid';
  53. comment on column sys_social.scope is '授予的权限,部分平台可能没有';
  54. comment on column sys_social.token_type is '个别平台的授权信息,部分平台可能没有';
  55. comment on column sys_social.id_token is 'id token,部分平台可能没有';
  56. comment on column sys_social.mac_algorithm is '小米平台用户的附带属性,部分平台可能没有';
  57. comment on column sys_social.mac_key is '小米平台用户的附带属性,部分平台可能没有';
  58. comment on column sys_social.code is '用户的授权code,部分平台可能没有';
  59. comment on column sys_social.oauth_token is 'Twitter平台用户的附带属性,部分平台可能没有';
  60. comment on column sys_social.oauth_token_secret is 'Twitter平台用户的附带属性,部分平台可能没有';
  61. comment on column sys_social.create_dept is '创建部门';
  62. comment on column sys_social.create_by is '创建者';
  63. comment on column sys_social.create_time is '创建时间';
  64. comment on column sys_social.update_by is '更新者';
  65. comment on column sys_social.update_time is '更新时间';
  66. comment on column sys_social.del_flag is '删除标志(0代表存在 1代表删除)';
  67. -- ----------------------------
  68. -- 租户表
  69. -- ----------------------------
  70. create table if not exists sys_tenant
  71. (
  72. id int8,
  73. tenant_id varchar(20) not null,
  74. contact_user_name varchar(20) default null::varchar,
  75. contact_phone varchar(20) default null::varchar,
  76. company_name varchar(30) default null::varchar,
  77. license_number varchar(30) default null::varchar,
  78. address varchar(200) default null::varchar,
  79. intro varchar(200) default null::varchar,
  80. domain varchar(200) default null::varchar,
  81. remark varchar(200) default null::varchar,
  82. package_id int8,
  83. expire_time timestamp,
  84. account_count int4 default -1,
  85. status char default '0'::bpchar,
  86. del_flag char default '0'::bpchar,
  87. create_dept int8,
  88. create_by int8,
  89. create_time timestamp,
  90. update_by int8,
  91. update_time timestamp,
  92. constraint "pk_sys_tenant" primary key (id)
  93. );
  94. comment on table sys_tenant is '租户表';
  95. comment on column sys_tenant.tenant_id is '租户编号';
  96. comment on column sys_tenant.contact_phone is '联系电话';
  97. comment on column sys_tenant.company_name is '企业名称';
  98. comment on column sys_tenant.company_name is '联系人';
  99. comment on column sys_tenant.license_number is '统一社会信用代码';
  100. comment on column sys_tenant.address is '地址';
  101. comment on column sys_tenant.intro is '企业简介';
  102. comment on column sys_tenant.domain is '域名';
  103. comment on column sys_tenant.remark is '备注';
  104. comment on column sys_tenant.package_id is '租户套餐编号';
  105. comment on column sys_tenant.expire_time is '过期时间';
  106. comment on column sys_tenant.account_count is '用户数量(-1不限制)';
  107. comment on column sys_tenant.status is '租户状态(0正常 1停用)';
  108. comment on column sys_tenant.del_flag is '删除标志(0代表存在 1代表删除)';
  109. comment on column sys_tenant.create_dept is '创建部门';
  110. comment on column sys_tenant.create_by is '创建者';
  111. comment on column sys_tenant.create_time is '创建时间';
  112. comment on column sys_tenant.update_by is '更新者';
  113. comment on column sys_tenant.update_time is '更新时间';
  114. -- ----------------------------
  115. -- 初始化-租户表数据
  116. -- ----------------------------
  117. insert into sys_tenant values(1, '000000', '管理组', '15888888888', 'XXX有限公司', null, null, '多租户通用后台管理管理系统', null, null, null, null, -1, '0', '0', 103, 1, now(), null, null);
  118. -- ----------------------------
  119. -- 租户套餐表
  120. -- ----------------------------
  121. create table if not exists sys_tenant_package
  122. (
  123. package_id int8,
  124. package_name varchar(20) default ''::varchar,
  125. menu_ids varchar(3000) default ''::varchar,
  126. remark varchar(200) default ''::varchar,
  127. menu_check_strictly bool default true,
  128. status char default '0'::bpchar,
  129. del_flag char default '0'::bpchar,
  130. create_dept int8,
  131. create_by int8,
  132. create_time timestamp,
  133. update_by int8,
  134. update_time timestamp,
  135. constraint "pk_sys_tenant_package" primary key (package_id)
  136. );
  137. comment on table sys_tenant_package is '租户套餐表';
  138. comment on column sys_tenant_package.package_id is '租户套餐id';
  139. comment on column sys_tenant_package.package_name is '套餐名称';
  140. comment on column sys_tenant_package.menu_ids is '关联菜单id';
  141. comment on column sys_tenant_package.remark is '备注';
  142. comment on column sys_tenant_package.status is '状态(0正常 1停用)';
  143. comment on column sys_tenant_package.del_flag is '删除标志(0代表存在 1代表删除)';
  144. comment on column sys_tenant_package.create_dept is '创建部门';
  145. comment on column sys_tenant_package.create_by is '创建者';
  146. comment on column sys_tenant_package.create_time is '创建时间';
  147. comment on column sys_tenant_package.update_by is '更新者';
  148. comment on column sys_tenant_package.update_time is '更新时间';
  149. -- ----------------------------
  150. -- 1、部门表
  151. -- ----------------------------
  152. create table if not exists sys_dept
  153. (
  154. dept_id int8,
  155. tenant_id varchar(20) default '000000'::varchar,
  156. parent_id int8 default 0,
  157. ancestors varchar(500)default ''::varchar,
  158. dept_name varchar(30) default ''::varchar,
  159. dept_category varchar(100) default null::varchar,
  160. order_num int4 default 0,
  161. leader int8 default null,
  162. phone varchar(11) default null::varchar,
  163. email varchar(50) default null::varchar,
  164. status char default '0'::bpchar,
  165. del_flag char default '0'::bpchar,
  166. create_dept int8,
  167. create_by int8,
  168. create_time timestamp,
  169. update_by int8,
  170. update_time timestamp,
  171. constraint "sys_dept_pk" primary key (dept_id)
  172. );
  173. comment on table sys_dept is '部门表';
  174. comment on column sys_dept.dept_id is '部门ID';
  175. comment on column sys_dept.tenant_id is '租户编号';
  176. comment on column sys_dept.parent_id is '父部门ID';
  177. comment on column sys_dept.ancestors is '祖级列表';
  178. comment on column sys_dept.dept_name is '部门名称';
  179. comment on column sys_dept.dept_category is '部门类别编码';
  180. comment on column sys_dept.order_num is '显示顺序';
  181. comment on column sys_dept.leader is '负责人';
  182. comment on column sys_dept.phone is '联系电话';
  183. comment on column sys_dept.email is '邮箱';
  184. comment on column sys_dept.status is '部门状态(0正常 1停用)';
  185. comment on column sys_dept.del_flag is '删除标志(0代表存在 1代表删除)';
  186. comment on column sys_dept.create_dept is '创建部门';
  187. comment on column sys_dept.create_by is '创建者';
  188. comment on column sys_dept.create_time is '创建时间';
  189. comment on column sys_dept.update_by is '更新者';
  190. comment on column sys_dept.update_time is '更新时间';
  191. -- ----------------------------
  192. -- 初始化-部门表数据
  193. -- ----------------------------
  194. insert into sys_dept values(100, '000000', 0, '0', 'XXX科技', null, 0, null, '15888888888', 'xxx@qq.com', '0', '0', 103, 1, now(), null, null);
  195. insert into sys_dept values(101, '000000', 100, '0,100', '深圳总公司', null, 1, null, '15888888888', 'xxx@qq.com', '0', '0', 103, 1, now(), null, null);
  196. insert into sys_dept values(102, '000000', 100, '0,100', '长沙分公司', null, 2, null, '15888888888', 'xxx@qq.com', '0', '0', 103, 1, now(), null, null);
  197. insert into sys_dept values(103, '000000', 101, '0,100,101', '研发部门', null, 1, 1, '15888888888', 'xxx@qq.com', '0', '0', 103, 1, now(), null, null);
  198. insert into sys_dept values(104, '000000', 101, '0,100,101', '市场部门', null, 2, null, '15888888888', 'xxx@qq.com', '0', '0', 103, 1, now(), null, null);
  199. insert into sys_dept values(105, '000000', 101, '0,100,101', '测试部门', null, 3, null, '15888888888', 'xxx@qq.com', '0', '0', 103, 1, now(), null, null);
  200. insert into sys_dept values(106, '000000', 101, '0,100,101', '财务部门', null, 4, null, '15888888888', 'xxx@qq.com', '0', '0', 103, 1, now(), null, null);
  201. insert into sys_dept values(107, '000000', 101, '0,100,101', '运维部门', null, 5, null, '15888888888', 'xxx@qq.com', '0', '0', 103, 1, now(), null, null);
  202. insert into sys_dept values(108, '000000', 102, '0,100,102', '市场部门', null, 1, null, '15888888888', 'xxx@qq.com', '0', '0', 103, 1, now(), null, null);
  203. insert into sys_dept values(109, '000000', 102, '0,100,102', '财务部门', null, 2, null, '15888888888', 'xxx@qq.com', '0', '0', 103, 1, now(), null, null);
  204. -- ----------------------------
  205. -- 2、用户信息表
  206. -- ----------------------------
  207. create table if not exists sys_user
  208. (
  209. user_id int8,
  210. tenant_id varchar(20) default '000000'::varchar,
  211. dept_id int8,
  212. user_name varchar(30) not null,
  213. nick_name varchar(30) not null,
  214. user_type varchar(10) default 'sys_user'::varchar,
  215. email varchar(50) default ''::varchar,
  216. phonenumber varchar(11) default ''::varchar,
  217. sex char default '0'::bpchar,
  218. avatar int8,
  219. password varchar(100) default ''::varchar,
  220. status char default '0'::bpchar,
  221. del_flag char default '0'::bpchar,
  222. login_ip varchar(128) default ''::varchar,
  223. login_date timestamp,
  224. create_dept int8,
  225. create_by int8,
  226. create_time timestamp,
  227. update_by int8,
  228. update_time timestamp,
  229. remark varchar(500) default null::varchar,
  230. constraint "sys_user_pk" primary key (user_id)
  231. );
  232. comment on table sys_user is '用户信息表';
  233. comment on column sys_user.user_id is '用户ID';
  234. comment on column sys_user.tenant_id is '租户编号';
  235. comment on column sys_user.dept_id is '部门ID';
  236. comment on column sys_user.user_name is '用户账号';
  237. comment on column sys_user.nick_name is '用户昵称';
  238. comment on column sys_user.user_type is '用户类型(sys_user系统用户)';
  239. comment on column sys_user.email is '用户邮箱';
  240. comment on column sys_user.phonenumber is '手机号码';
  241. comment on column sys_user.sex is '用户性别(0男 1女 2未知)';
  242. comment on column sys_user.avatar is '头像地址';
  243. comment on column sys_user.password is '密码';
  244. comment on column sys_user.status is '账号状态(0正常 1停用)';
  245. comment on column sys_user.del_flag is '删除标志(0代表存在 1代表删除)';
  246. comment on column sys_user.login_ip is '最后登陆IP';
  247. comment on column sys_user.login_date is '最后登陆时间';
  248. comment on column sys_user.create_dept is '创建部门';
  249. comment on column sys_user.create_by is '创建者';
  250. comment on column sys_user.create_time is '创建时间';
  251. comment on column sys_user.update_by is '更新者';
  252. comment on column sys_user.update_time is '更新时间';
  253. comment on column sys_user.remark is '备注';
  254. -- ----------------------------
  255. -- 初始化-用户信息表数据
  256. -- ----------------------------
  257. insert into sys_user values(1, '000000', 103, 'admin', '疯狂的狮子Li', 'sys_user', 'crazyLionLi@163.com', '15888888888', '1', null, '$2a$10$7JB720yubVSZvUI0rEqK/.VqGOZTH.ulu33dHOiBE8ByOhJIrdAu2', '0', '0', '127.0.0.1', now(), 103, 1, now(), null, null, '管理员');
  258. insert into sys_user values(3, '000000', 108, 'test', '本部门及以下 密码666666', 'sys_user', '', '', '0', null, '$2a$10$b8yUzN0C71sbz.PhNOCgJe.Tu1yWC3RNrTyjSQ8p1W0.aaUXUJ.Ne', '0', '0', '127.0.0.1', now(), 103, 1, now(), 3, now(), NULL);
  259. insert into sys_user values(4, '000000', 102, 'test1', '仅本人 密码666666', 'sys_user', '', '', '0', null, '$2a$10$b8yUzN0C71sbz.PhNOCgJe.Tu1yWC3RNrTyjSQ8p1W0.aaUXUJ.Ne', '0', '0', '127.0.0.1', now(), 103, 1, now(), 4, now(), NULL);
  260. -- ----------------------------
  261. -- 3、岗位信息表
  262. -- ----------------------------
  263. create table if not exists sys_post
  264. (
  265. post_id int8,
  266. tenant_id varchar(20) default '000000'::varchar,
  267. dept_id int8,
  268. post_code varchar(64) not null,
  269. post_category varchar(100) default null,
  270. post_name varchar(50) not null,
  271. post_sort int4 not null,
  272. status char not null,
  273. create_dept int8,
  274. create_by int8,
  275. create_time timestamp,
  276. update_by int8,
  277. update_time timestamp,
  278. remark varchar(500) default null::varchar,
  279. constraint "sys_post_pk" primary key (post_id)
  280. );
  281. comment on table sys_post is '岗位信息表';
  282. comment on column sys_post.post_id is '岗位ID';
  283. comment on column sys_post.tenant_id is '租户编号';
  284. comment on column sys_post.dept_id is '部门id';
  285. comment on column sys_post.post_code is '岗位编码';
  286. comment on column sys_post.post_category is '岗位类别编码';
  287. comment on column sys_post.post_name is '岗位名称';
  288. comment on column sys_post.post_sort is '显示顺序';
  289. comment on column sys_post.status is '状态(0正常 1停用)';
  290. comment on column sys_post.create_dept is '创建部门';
  291. comment on column sys_post.create_by is '创建者';
  292. comment on column sys_post.create_time is '创建时间';
  293. comment on column sys_post.update_by is '更新者';
  294. comment on column sys_post.update_time is '更新时间';
  295. comment on column sys_post.remark is '备注';
  296. -- ----------------------------
  297. -- 初始化-岗位信息表数据
  298. -- ----------------------------
  299. insert into sys_post values(1, '000000', 103, 'ceo', null, '董事长', 1, '0', 103, 1, now(), null, null, '');
  300. insert into sys_post values(2, '000000', 100, 'se', null, '项目经理', 2, '0', 103, 1, now(), null, null, '');
  301. insert into sys_post values(3, '000000', 100, 'hr', null, '人力资源', 3, '0', 103, 1, now(), null, null, '');
  302. insert into sys_post values(4, '000000', 100, 'user', null, '普通员工', 4, '0', 103, 1, now(), null, null, '');
  303. -- ----------------------------
  304. -- 4、角色信息表
  305. -- ----------------------------
  306. create table if not exists sys_role
  307. (
  308. role_id int8,
  309. tenant_id varchar(20) default '000000'::varchar,
  310. role_name varchar(30) not null,
  311. role_key varchar(100) not null,
  312. role_sort int4 not null,
  313. data_scope char default '1'::bpchar,
  314. menu_check_strictly bool default true,
  315. dept_check_strictly bool default true,
  316. status char not null,
  317. del_flag char default '0'::bpchar,
  318. create_dept int8,
  319. create_by int8,
  320. create_time timestamp,
  321. update_by int8,
  322. update_time timestamp,
  323. remark varchar(500) default null::varchar,
  324. constraint "sys_role_pk" primary key (role_id)
  325. );
  326. comment on table sys_role is '角色信息表';
  327. comment on column sys_role.role_id is '角色ID';
  328. comment on column sys_role.tenant_id is '租户编号';
  329. comment on column sys_role.role_name is '角色名称';
  330. comment on column sys_role.role_key is '角色权限字符串';
  331. comment on column sys_role.role_sort is '显示顺序';
  332. comment on column sys_role.data_scope is '数据范围(1:全部数据权限 2:自定数据权限 3:本部门数据权限 4:本部门及以下数据权限 5:仅本人数据权限 6:部门及以下或本人数据权限)';
  333. comment on column sys_role.menu_check_strictly is '菜单树选择项是否关联显示';
  334. comment on column sys_role.dept_check_strictly is '部门树选择项是否关联显示';
  335. comment on column sys_role.status is '角色状态(0正常 1停用)';
  336. comment on column sys_role.del_flag is '删除标志(0代表存在 1代表删除)';
  337. comment on column sys_role.create_dept is '创建部门';
  338. comment on column sys_role.create_by is '创建者';
  339. comment on column sys_role.create_time is '创建时间';
  340. comment on column sys_role.update_by is '更新者';
  341. comment on column sys_role.update_time is '更新时间';
  342. comment on column sys_role.remark is '备注';
  343. -- ----------------------------
  344. -- 初始化-角色信息表数据
  345. -- ----------------------------
  346. insert into sys_role values('1', '000000', '超级管理员', 'superadmin', 1, '1', 't', 't', '0', '0', 103, 1, now(), null, null, '超级管理员');
  347. insert into sys_role values('3', '000000', '本部门及以下', 'test1', 3, '4', 't', 't', '0', '0', 103, 1, now(), NULL, NULL, '');
  348. insert into sys_role values('4', '000000', '仅本人', 'test2', 4, '5', 't', 't', '0', '0', 103, 1, now(), NULL, NULL, '');
  349. -- ----------------------------
  350. -- 5、菜单权限表
  351. -- ----------------------------
  352. create table if not exists sys_menu
  353. (
  354. menu_id int8,
  355. menu_name varchar(50) not null,
  356. parent_id int8 default 0,
  357. order_num int4 default 0,
  358. path varchar(200) default ''::varchar,
  359. component varchar(255) default null::varchar,
  360. query_param varchar(255) default null::varchar,
  361. is_frame char default '1'::bpchar,
  362. is_cache char default '0'::bpchar,
  363. menu_type char default ''::bpchar,
  364. visible char default '0'::bpchar,
  365. status char default '0'::bpchar,
  366. perms varchar(100) default null::varchar,
  367. icon varchar(100) default '#'::varchar,
  368. create_dept int8,
  369. create_by int8,
  370. create_time timestamp,
  371. update_by int8,
  372. update_time timestamp,
  373. remark varchar(500) default ''::varchar,
  374. constraint "sys_menu_pk" primary key (menu_id)
  375. );
  376. comment on table sys_menu is '菜单权限表';
  377. comment on column sys_menu.menu_id is '菜单ID';
  378. comment on column sys_menu.menu_name is '菜单名称';
  379. comment on column sys_menu.parent_id is '父菜单ID';
  380. comment on column sys_menu.order_num is '显示顺序';
  381. comment on column sys_menu.path is '路由地址';
  382. comment on column sys_menu.component is '组件路径';
  383. comment on column sys_menu.query_param is '路由参数';
  384. comment on column sys_menu.is_frame is '是否为外链(0是 1否)';
  385. comment on column sys_menu.is_cache is '是否缓存(0缓存 1不缓存)';
  386. comment on column sys_menu.menu_type is '菜单类型(M目录 C菜单 F按钮)';
  387. comment on column sys_menu.visible is '显示状态(0显示 1隐藏)';
  388. comment on column sys_menu.status is '菜单状态(0正常 1停用)';
  389. comment on column sys_menu.perms is '权限标识';
  390. comment on column sys_menu.icon is '菜单图标';
  391. comment on column sys_menu.create_dept is '创建部门';
  392. comment on column sys_menu.create_by is '创建者';
  393. comment on column sys_menu.create_time is '创建时间';
  394. comment on column sys_menu.update_by is '更新者';
  395. comment on column sys_menu.update_time is '更新时间';
  396. comment on column sys_menu.remark is '备注';
  397. -- ----------------------------
  398. -- 初始化-菜单信息表数据
  399. -- ----------------------------
  400. -- 一级菜单
  401. insert into sys_menu values('1', '系统管理', '0', '1', 'system', null, '', '1', '0', 'M', '0', '0', '', 'system', 103, 1, now(), null, null, '系统管理目录');
  402. insert into sys_menu values('6', '租户管理', '0', '2', 'tenant', null, '', '1', '0', 'M', '0', '0', '', 'chart', 103, 1, now(), null, null, '租户管理目录');
  403. insert into sys_menu values('2', '系统监控', '0', '3', 'monitor', null, '', '1', '0', 'M', '0', '0', '', 'monitor', 103, 1, now(), null, null, '系统监控目录');
  404. insert into sys_menu values('3', '系统工具', '0', '4', 'tool', null, '', '1', '0', 'M', '0', '0', '', 'tool', 103, 1, now(), null, null, '系统工具目录');
  405. insert into sys_menu values('4', 'PLUS官网', '0', '5', 'https://gitee.com/dromara/RuoYi-Cloud-Plus', null, '', '0', '0', 'M', '0', '0', '', 'guide', 103, 1, now(), null, null, 'RuoYi-Cloud-Plus官网地址');
  406. insert into sys_menu values('5', '测试菜单', '0', '5', 'demo', null, '', '1', '0', 'M', '0', '0', null, 'star', 103, 1, now(), null, null, '测试菜单');
  407. -- 二级菜单
  408. insert into sys_menu values('100', '用户管理', '1', '1', 'user', 'system/user/index', '', '1', '0', 'C', '0', '0', 'system:user:list', 'user', 103, 1, now(), null, null, '用户管理菜单');
  409. insert into sys_menu values('101', '角色管理', '1', '2', 'role', 'system/role/index', '', '1', '0', 'C', '0', '0', 'system:role:list', 'peoples', 103, 1, now(), null, null, '角色管理菜单');
  410. insert into sys_menu values('102', '菜单管理', '1', '3', 'menu', 'system/menu/index', '', '1', '0', 'C', '0', '0', 'system:menu:list', 'tree-table', 103, 1, now(), null, null, '菜单管理菜单');
  411. insert into sys_menu values('103', '部门管理', '1', '4', 'dept', 'system/dept/index', '', '1', '0', 'C', '0', '0', 'system:dept:list', 'tree', 103, 1, now(), null, null, '部门管理菜单');
  412. insert into sys_menu values('104', '岗位管理', '1', '5', 'post', 'system/post/index', '', '1', '0', 'C', '0', '0', 'system:post:list', 'post', 103, 1, now(), null, null, '岗位管理菜单');
  413. insert into sys_menu values('105', '字典管理', '1', '6', 'dict', 'system/dict/index', '', '1', '0', 'C', '0', '0', 'system:dict:list', 'dict', 103, 1, now(), null, null, '字典管理菜单');
  414. insert into sys_menu values('106', '参数设置', '1', '7', 'config', 'system/config/index', '', '1', '0', 'C', '0', '0', 'system:config:list', 'edit', 103, 1, now(), null, null, '参数设置菜单');
  415. insert into sys_menu values('107', '通知公告', '1', '8', 'notice', 'system/notice/index', '', '1', '0', 'C', '0', '0', 'system:notice:list', 'message', 103, 1, now(), null, null, '通知公告菜单');
  416. insert into sys_menu values('108', '日志管理', '1', '9', 'log', '', '', '1', '0', 'M', '0', '0', '', 'log', 103, 1, now(), null, null, '日志管理菜单');
  417. insert into sys_menu values('109', '在线用户', '2', '1', 'online', 'monitor/online/index', '', '1', '0', 'C', '0', '0', 'monitor:online:list', 'online', 103, 1, now(), null, null, '在线用户菜单');
  418. insert into sys_menu values('124', '缓存监控', '2', '1', 'cache', 'monitor/cache/index', '', '1', '0', 'C', '0', '0', 'monitor:cache:list', 'redis', 103, 1, now(), null, null, '缓存监控');
  419. insert into sys_menu values('110', 'SnailJob控制台', '2', '2', 'http://localhost:8800/snail-job', '', '', '0', '0', 'C', '0', '0', 'monitor:job:list', 'job', 103, 1, now(), null, null, 'SJ定时任务菜单');
  420. insert into sys_menu values('112', 'Nacos控制台', '2', '4', 'http://localhost:8848/nacos', '', '', '0', '0', 'C', '0', '0', 'monitor:nacos:list', 'nacos', 103, 1, now(), null, null, '服务治理菜单');
  421. insert into sys_menu values('113', 'Admin控制台', '2', '5', 'http://localhost:9100/login', '', '', '0', '0', 'C', '0', '0', 'monitor:server:list', 'server', 103, 1, now(), null, null, '服务监控菜单');
  422. insert into sys_menu values('115', '代码生成', '3', '2', 'gen', 'tool/gen/index', '', '1', '0', 'C', '0', '0', 'tool:gen:list', 'code', 103, 1, now(), null, null, '代码生成菜单');
  423. insert into sys_menu values('121', '租户管理', '6', '1', 'tenant', 'system/tenant/index', '', '1', '0', 'C', '0', '0', 'system:tenant:list', 'list', 103, 1, now(), null, null, '租户管理菜单');
  424. insert into sys_menu values('122', '租户套餐管理', '6', '2', 'tenantPackage', 'system/tenantPackage/index', '', '1', '0', 'C', '0', '0', 'system:tenantPackage:list', 'form', 103, 1, now(), null, null, '租户套餐管理菜单');
  425. insert into sys_menu values('123', '客户端管理', '1', '11', 'client', 'system/client/index', '', '1', '0', 'C', '0', '0', 'system:client:list', 'international', 103, 1, now(), null, null, '客户端管理菜单');
  426. insert into sys_menu values('116', '修改生成配置', '3', '2', 'gen-edit/index/:tableId', 'tool/gen/editTable', '', '1', '1', 'C', '1', '0', 'tool:gen:edit', '#', 103, 1, now(), null, null, '/tool/gen');
  427. insert into sys_menu values('130', '分配用户', '1', '2', 'role-auth/user/:roleId', 'system/role/authUser', '', '1', '1', 'C', '1', '0', 'system:role:edit', '#', 103, 1, now(), null, null, '/system/role');
  428. insert into sys_menu values('131', '分配角色', '1', '1', 'user-auth/role/:userId', 'system/user/authRole', '', '1', '1', 'C', '1', '0', 'system:user:edit', '#', 103, 1, now(), null, null, '/system/user');
  429. insert into sys_menu values('132', '字典数据', '1', '6', 'dict-data/index/:dictId', 'system/dict/data', '', '1', '1', 'C', '1', '0', 'system:dict:list', '#', 103, 1, now(), null, null, '/system/dict');
  430. insert into sys_menu values('133', '文件配置管理', '1', '10', 'oss-config/index', 'system/oss/config', '', '1', '1', 'C', '1', '0', 'system:ossConfig:list', '#', 103, 1, now(), null, null, '/system/oss');
  431. -- oss菜单
  432. insert into sys_menu values('118', '文件管理', '1', '10', 'oss', 'system/oss/index', '', '1', '0', 'C', '0', '0', 'system:oss:list', 'upload', 103, 1, now(), null, null, '文件管理菜单');
  433. -- 三级菜单
  434. insert into sys_menu values('500', '操作日志', '108', '1', 'operlog', 'monitor/operlog/index', '', '1', '0', 'C', '0', '0', 'monitor:operlog:list', 'form', 103, 1, now(), null, null, '操作日志菜单');
  435. insert into sys_menu values('501', '登录日志', '108', '2', 'logininfor', 'monitor/logininfor/index', '', '1', '0', 'C', '0', '0', 'monitor:logininfor:list', 'logininfor', 103, 1, now(), null, null, '登录日志菜单');
  436. -- 用户管理按钮
  437. insert into sys_menu values('1001', '用户查询', '100', '1', '', '', '', '1', '0', 'F', '0', '0', 'system:user:query', '#', 103, 1, now(), null, null, '');
  438. insert into sys_menu values('1002', '用户新增', '100', '2', '', '', '', '1', '0', 'F', '0', '0', 'system:user:add', '#', 103, 1, now(), null, null, '');
  439. insert into sys_menu values('1003', '用户修改', '100', '3', '', '', '', '1', '0', 'F', '0', '0', 'system:user:edit', '#', 103, 1, now(), null, null, '');
  440. insert into sys_menu values('1004', '用户删除', '100', '4', '', '', '', '1', '0', 'F', '0', '0', 'system:user:remove', '#', 103, 1, now(), null, null, '');
  441. insert into sys_menu values('1005', '用户导出', '100', '5', '', '', '', '1', '0', 'F', '0', '0', 'system:user:export', '#', 103, 1, now(), null, null, '');
  442. insert into sys_menu values('1006', '用户导入', '100', '6', '', '', '', '1', '0', 'F', '0', '0', 'system:user:import', '#', 103, 1, now(), null, null, '');
  443. insert into sys_menu values('1007', '重置密码', '100', '7', '', '', '', '1', '0', 'F', '0', '0', 'system:user:resetPwd', '#', 103, 1, now(), null, null, '');
  444. -- 角色管理按钮
  445. insert into sys_menu values('1008', '角色查询', '101', '1', '', '', '', '1', '0', 'F', '0', '0', 'system:role:query', '#', 103, 1, now(), null, null, '');
  446. insert into sys_menu values('1009', '角色新增', '101', '2', '', '', '', '1', '0', 'F', '0', '0', 'system:role:add', '#', 103, 1, now(), null, null, '');
  447. insert into sys_menu values('1010', '角色修改', '101', '3', '', '', '', '1', '0', 'F', '0', '0', 'system:role:edit', '#', 103, 1, now(), null, null, '');
  448. insert into sys_menu values('1011', '角色删除', '101', '4', '', '', '', '1', '0', 'F', '0', '0', 'system:role:remove', '#', 103, 1, now(), null, null, '');
  449. insert into sys_menu values('1012', '角色导出', '101', '5', '', '', '', '1', '0', 'F', '0', '0', 'system:role:export', '#', 103, 1, now(), null, null, '');
  450. -- 菜单管理按钮
  451. insert into sys_menu values('1013', '菜单查询', '102', '1', '', '', '', '1', '0', 'F', '0', '0', 'system:menu:query', '#', 103, 1, now(), null, null, '');
  452. insert into sys_menu values('1014', '菜单新增', '102', '2', '', '', '', '1', '0', 'F', '0', '0', 'system:menu:add', '#', 103, 1, now(), null, null, '');
  453. insert into sys_menu values('1015', '菜单修改', '102', '3', '', '', '', '1', '0', 'F', '0', '0', 'system:menu:edit', '#', 103, 1, now(), null, null, '');
  454. insert into sys_menu values('1016', '菜单删除', '102', '4', '', '', '', '1', '0', 'F', '0', '0', 'system:menu:remove', '#', 103, 1, now(), null, null, '');
  455. -- 部门管理按钮
  456. insert into sys_menu values('1017', '部门查询', '103', '1', '', '', '', '1', '0', 'F', '0', '0', 'system:dept:query', '#', 103, 1, now(), null, null, '');
  457. insert into sys_menu values('1018', '部门新增', '103', '2', '', '', '', '1', '0', 'F', '0', '0', 'system:dept:add', '#', 103, 1, now(), null, null, '');
  458. insert into sys_menu values('1019', '部门修改', '103', '3', '', '', '', '1', '0', 'F', '0', '0', 'system:dept:edit', '#', 103, 1, now(), null, null, '');
  459. insert into sys_menu values('1020', '部门删除', '103', '4', '', '', '', '1', '0', 'F', '0', '0', 'system:dept:remove', '#', 103, 1, now(), null, null, '');
  460. -- 岗位管理按钮
  461. insert into sys_menu values('1021', '岗位查询', '104', '1', '', '', '', '1', '0', 'F', '0', '0', 'system:post:query', '#', 103, 1, now(), null, null, '');
  462. insert into sys_menu values('1022', '岗位新增', '104', '2', '', '', '', '1', '0', 'F', '0', '0', 'system:post:add', '#', 103, 1, now(), null, null, '');
  463. insert into sys_menu values('1023', '岗位修改', '104', '3', '', '', '', '1', '0', 'F', '0', '0', 'system:post:edit', '#', 103, 1, now(), null, null, '');
  464. insert into sys_menu values('1024', '岗位删除', '104', '4', '', '', '', '1', '0', 'F', '0', '0', 'system:post:remove', '#', 103, 1, now(), null, null, '');
  465. insert into sys_menu values('1025', '岗位导出', '104', '5', '', '', '', '1', '0', 'F', '0', '0', 'system:post:export', '#', 103, 1, now(), null, null, '');
  466. -- 字典管理按钮
  467. insert into sys_menu values('1026', '字典查询', '105', '1', '#', '', '', '1', '0', 'F', '0', '0', 'system:dict:query', '#', 103, 1, now(), null, null, '');
  468. insert into sys_menu values('1027', '字典新增', '105', '2', '#', '', '', '1', '0', 'F', '0', '0', 'system:dict:add', '#', 103, 1, now(), null, null, '');
  469. insert into sys_menu values('1028', '字典修改', '105', '3', '#', '', '', '1', '0', 'F', '0', '0', 'system:dict:edit', '#', 103, 1, now(), null, null, '');
  470. insert into sys_menu values('1029', '字典删除', '105', '4', '#', '', '', '1', '0', 'F', '0', '0', 'system:dict:remove', '#', 103, 1, now(), null, null, '');
  471. insert into sys_menu values('1030', '字典导出', '105', '5', '#', '', '', '1', '0', 'F', '0', '0', 'system:dict:export', '#', 103, 1, now(), null, null, '');
  472. -- 参数设置按钮
  473. insert into sys_menu values('1031', '参数查询', '106', '1', '#', '', '', '1', '0', 'F', '0', '0', 'system:config:query', '#', 103, 1, now(), null, null, '');
  474. insert into sys_menu values('1032', '参数新增', '106', '2', '#', '', '', '1', '0', 'F', '0', '0', 'system:config:add', '#', 103, 1, now(), null, null, '');
  475. insert into sys_menu values('1033', '参数修改', '106', '3', '#', '', '', '1', '0', 'F', '0', '0', 'system:config:edit', '#', 103, 1, now(), null, null, '');
  476. insert into sys_menu values('1034', '参数删除', '106', '4', '#', '', '', '1', '0', 'F', '0', '0', 'system:config:remove', '#', 103, 1, now(), null, null, '');
  477. insert into sys_menu values('1035', '参数导出', '106', '5', '#', '', '', '1', '0', 'F', '0', '0', 'system:config:export', '#', 103, 1, now(), null, null, '');
  478. -- 通知公告按钮
  479. insert into sys_menu values('1036', '公告查询', '107', '1', '#', '', '', '1', '0', 'F', '0', '0', 'system:notice:query', '#', 103, 1, now(), null, null, '');
  480. insert into sys_menu values('1037', '公告新增', '107', '2', '#', '', '', '1', '0', 'F', '0', '0', 'system:notice:add', '#', 103, 1, now(), null, null, '');
  481. insert into sys_menu values('1038', '公告修改', '107', '3', '#', '', '', '1', '0', 'F', '0', '0', 'system:notice:edit', '#', 103, 1, now(), null, null, '');
  482. insert into sys_menu values('1039', '公告删除', '107', '4', '#', '', '', '1', '0', 'F', '0', '0', 'system:notice:remove', '#', 103, 1, now(), null, null, '');
  483. -- 操作日志按钮
  484. insert into sys_menu values('1040', '操作查询', '500', '1', '#', '', '', '1', '0', 'F', '0', '0', 'monitor:operlog:query', '#', 103, 1, now(), null, null, '');
  485. insert into sys_menu values('1041', '操作删除', '500', '2', '#', '', '', '1', '0', 'F', '0', '0', 'monitor:operlog:remove', '#', 103, 1, now(), null, null, '');
  486. insert into sys_menu values('1042', '日志导出', '500', '4', '#', '', '', '1', '0', 'F', '0', '0', 'monitor:operlog:export', '#', 103, 1, now(), null, null, '');
  487. -- 登录日志按钮
  488. insert into sys_menu values('1043', '登录查询', '501', '1', '#', '', '', '1', '0', 'F', '0', '0', 'monitor:logininfor:query', '#', 103, 1, now(), null, null, '');
  489. insert into sys_menu values('1044', '登录删除', '501', '2', '#', '', '', '1', '0', 'F', '0', '0', 'monitor:logininfor:remove', '#', 103, 1, now(), null, null, '');
  490. insert into sys_menu values('1045', '日志导出', '501', '3', '#', '', '', '1', '0', 'F', '0', '0', 'monitor:logininfor:export', '#', 103, 1, now(), null, null, '');
  491. insert into sys_menu values('1050', '账户解锁', '501', '4', '#', '', '', '1', '0', 'F', '0', '0', 'monitor:logininfor:unlock', '#', 103, 1, now(), null, null, '');
  492. -- 在线用户按钮
  493. insert into sys_menu values('1046', '在线查询', '109', '1', '#', '', '', '1', '0', 'F', '0', '0', 'monitor:online:query', '#', 103, 1, now(), null, null, '');
  494. insert into sys_menu values('1047', '批量强退', '109', '2', '#', '', '', '1', '0', 'F', '0', '0', 'monitor:online:batchLogout', '#', 103, 1, now(), null, null, '');
  495. insert into sys_menu values('1048', '单条强退', '109', '3', '#', '', '', '1', '0', 'F', '0', '0', 'monitor:online:forceLogout', '#', 103, 1, now(), null, null, '');
  496. -- 代码生成按钮
  497. insert into sys_menu values('1055', '生成查询', '115', '1', '#', '', '', '1', '0', 'F', '0', '0', 'tool:gen:query', '#', 103, 1, now(), null, null, '');
  498. insert into sys_menu values('1056', '生成修改', '115', '2', '#', '', '', '1', '0', 'F', '0', '0', 'tool:gen:edit', '#', 103, 1, now(), null, null, '');
  499. insert into sys_menu values('1057', '生成删除', '115', '3', '#', '', '', '1', '0', 'F', '0', '0', 'tool:gen:remove', '#', 103, 1, now(), null, null, '');
  500. insert into sys_menu values('1058', '导入代码', '115', '2', '#', '', '', '1', '0', 'F', '0', '0', 'tool:gen:import', '#', 103, 1, now(), null, null, '');
  501. insert into sys_menu values('1059', '预览代码', '115', '4', '#', '', '', '1', '0', 'F', '0', '0', 'tool:gen:preview', '#', 103, 1, now(), null, null, '');
  502. insert into sys_menu values('1060', '生成代码', '115', '5', '#', '', '', '1', '0', 'F', '0', '0', 'tool:gen:code', '#', 103, 1, now(), null, null, '');
  503. -- oss相关按钮
  504. insert into sys_menu values('1600', '文件查询', '118', '1', '#', '', '', '1', '0', 'F', '0', '0', 'system:oss:query', '#', 103, 1, now(), null, null, '');
  505. insert into sys_menu values('1601', '文件上传', '118', '2', '#', '', '', '1', '0', 'F', '0', '0', 'system:oss:upload', '#', 103, 1, now(), null, null, '');
  506. insert into sys_menu values('1602', '文件下载', '118', '3', '#', '', '', '1', '0', 'F', '0', '0', 'system:oss:download', '#', 103, 1, now(), null, null, '');
  507. insert into sys_menu values('1603', '文件删除', '118', '4', '#', '', '', '1', '0', 'F', '0', '0', 'system:oss:remove', '#', 103, 1, now(), null, null, '');
  508. insert into sys_menu values('1620', '配置列表', '118', '5', '#', '', '', '1', '0', 'F', '0', '0', 'system:ossConfig:list', '#', 103, 1, now(), null, null, '');
  509. insert into sys_menu values('1621', '配置添加', '118', '6', '#', '', '', '1', '0', 'F', '0', '0', 'system:ossConfig:add', '#', 103, 1, now(), null, null, '');
  510. insert into sys_menu values('1622', '配置编辑', '118', '6', '#', '', '', '1', '0', 'F', '0', '0', 'system:ossConfig:edit', '#', 103, 1, now(), null, null, '');
  511. insert into sys_menu values('1623', '配置删除', '118', '6', '#', '', '', '1', '0', 'F', '0', '0', 'system:ossConfig:remove', '#', 103, 1, now(), null, null, '');
  512. -- 租户管理相关按钮
  513. insert into sys_menu values('1606', '租户查询', '121', '1', '#', '', '', '1', '0', 'F', '0', '0', 'system:tenant:query', '#', 103, 1, now(), null, null, '');
  514. insert into sys_menu values('1607', '租户新增', '121', '2', '#', '', '', '1', '0', 'F', '0', '0', 'system:tenant:add', '#', 103, 1, now(), null, null, '');
  515. insert into sys_menu values('1608', '租户修改', '121', '3', '#', '', '', '1', '0', 'F', '0', '0', 'system:tenant:edit', '#', 103, 1, now(), null, null, '');
  516. insert into sys_menu values('1609', '租户删除', '121', '4', '#', '', '', '1', '0', 'F', '0', '0', 'system:tenant:remove', '#', 103, 1, now(), null, null, '');
  517. insert into sys_menu values('1610', '租户导出', '121', '5', '#', '', '', '1', '0', 'F', '0', '0', 'system:tenant:export', '#', 103, 1, now(), null, null, '');
  518. -- 租户套餐管理相关按钮
  519. insert into sys_menu values('1611', '租户套餐查询', '122', '1', '#', '', '', '1', '0', 'F', '0', '0', 'system:tenantPackage:query', '#', 103, 1, now(), null, null, '');
  520. insert into sys_menu values('1612', '租户套餐新增', '122', '2', '#', '', '', '1', '0', 'F', '0', '0', 'system:tenantPackage:add', '#', 103, 1, now(), null, null, '');
  521. insert into sys_menu values('1613', '租户套餐修改', '122', '3', '#', '', '', '1', '0', 'F', '0', '0', 'system:tenantPackage:edit', '#', 103, 1, now(), null, null, '');
  522. insert into sys_menu values('1614', '租户套餐删除', '122', '4', '#', '', '', '1', '0', 'F', '0', '0', 'system:tenantPackage:remove', '#', 103, 1, now(), null, null, '');
  523. insert into sys_menu values('1615', '租户套餐导出', '122', '5', '#', '', '', '1', '0', 'F', '0', '0', 'system:tenantPackage:export', '#', 103, 1, now(), null, null, '');
  524. -- 客户端管理按钮
  525. insert into sys_menu values('1061', '客户端管理查询', '123', '1', '#', '', '', '1', '0', 'F', '0', '0', 'system:client:query', '#', 103, 1, now(), null, null, '');
  526. insert into sys_menu values('1062', '客户端管理新增', '123', '2', '#', '', '', '1', '0', 'F', '0', '0', 'system:client:add', '#', 103, 1, now(), null, null, '');
  527. insert into sys_menu values('1063', '客户端管理修改', '123', '3', '#', '', '', '1', '0', 'F', '0', '0', 'system:client:edit', '#', 103, 1, now(), null, null, '');
  528. insert into sys_menu values('1064', '客户端管理删除', '123', '4', '#', '', '', '1', '0', 'F', '0', '0', 'system:client:remove', '#', 103, 1, now(), null, null, '');
  529. insert into sys_menu values('1065', '客户端管理导出', '123', '5', '#', '', '', '1', '0', 'F', '0', '0', 'system:client:export', '#', 103, 1, now(), null, null, '');
  530. -- 测试菜单
  531. insert into sys_menu values('1500', '测试单表', '5', '1', 'demo', 'demo/demo/index', '', '1', '0', 'C', '0', '0', 'demo:demo:list', '#', 103, 1, now(), NULL, NULL, '测试单表菜单');
  532. insert into sys_menu values('1501', '测试单表查询', '1500', '1', '#', '', '', '1', '0', 'F', '0', '0', 'demo:demo:query', '#', 103, 1, now(), NULL, NULL, '');
  533. insert into sys_menu values('1502', '测试单表新增', '1500', '2', '#', '', '', '1', '0', 'F', '0', '0', 'demo:demo:add', '#', 103, 1, now(), NULL, NULL, '');
  534. insert into sys_menu values('1503', '测试单表修改', '1500', '3', '#', '', '', '1', '0', 'F', '0', '0', 'demo:demo:edit', '#', 103, 1, now(), NULL, NULL, '');
  535. insert into sys_menu values('1504', '测试单表删除', '1500', '4', '#', '', '', '1', '0', 'F', '0', '0', 'demo:demo:remove', '#', 103, 1, now(), NULL, NULL, '');
  536. insert into sys_menu values('1505', '测试单表导出', '1500', '5', '#', '', '', '1', '0', 'F', '0', '0', 'demo:demo:export', '#', 103, 1, now(), NULL, NULL, '');
  537. insert into sys_menu values('1506', '测试树表', '5', '1', 'tree', 'demo/tree/index', '', '1', '0', 'C', '0', '0', 'demo:tree:list', '#', 103, 1, now(), NULL, NULL, '测试树表菜单');
  538. insert into sys_menu values('1507', '测试树表查询', '1506', '1', '#', '', '', '1', '0', 'F', '0', '0', 'demo:tree:query', '#', 103, 1, now(), NULL, NULL, '');
  539. insert into sys_menu values('1508', '测试树表新增', '1506', '2', '#', '', '', '1', '0', 'F', '0', '0', 'demo:tree:add', '#', 103, 1, now(), NULL, NULL, '');
  540. insert into sys_menu values('1509', '测试树表修改', '1506', '3', '#', '', '', '1', '0', 'F', '0', '0', 'demo:tree:edit', '#', 103, 1, now(), NULL, NULL, '');
  541. insert into sys_menu values('1510', '测试树表删除', '1506', '4', '#', '', '', '1', '0', 'F', '0', '0', 'demo:tree:remove', '#', 103, 1, now(), NULL, NULL, '');
  542. insert into sys_menu values('1511', '测试树表导出', '1506', '5', '#', '', '', '1', '0', 'F', '0', '0', 'demo:tree:export', '#', 103, 1, now(), NULL, NULL, '');
  543. -- 工作流相关
  544. INSERT INTO sys_menu VALUES ('11616', '工作流', '0', '6', 'workflow', '', '', '1', '0', 'M', '0', '0', '', 'workflow', 103, 1, now(), NULL, NULL, '');
  545. INSERT INTO sys_menu VALUES ('11618', '我的任务', '0', '7', 'task', '', '', '1', '0', 'M', '0', '0', '', 'my-task', 103, 1, now(), NULL, NULL, '');
  546. INSERT INTO sys_menu VALUES ('11619', '我的待办', '11618', '2', 'taskWaiting', 'workflow/task/taskWaiting', '', '1', '1', 'C', '0', '0', '', 'waiting', 103, 1, now(), NULL, NULL, '');
  547. INSERT INTO sys_menu VALUES ('11632', '我的已办', '11618', '3', 'taskFinish', 'workflow/task/taskFinish', '', '1', '1', 'C', '0', '0', '', 'finish', 103, 1, now(), NULL, NULL, '');
  548. INSERT INTO sys_menu VALUES ('11633', '我的抄送', '11618', '4', 'taskCopyList', 'workflow/task/taskCopyList', '', '1', '1', 'C', '0', '0', '', 'my-copy', 103, 1, now(), NULL, NULL, '');
  549. INSERT INTO sys_menu VALUES ('11620', '流程定义', '11616', '3', 'processDefinition', 'workflow/processDefinition/index', '', '1', '1', 'C', '0', '0', 'workflow:definition:list', 'process-definition', 103, 1, now(), NULL, NULL, '');
  550. INSERT INTO sys_menu VALUES ('11621', '流程实例', '11630', '1', 'processInstance', 'workflow/processInstance/index', '', '1', '1', 'C', '0', '0', 'workflow:instance:list', 'tree-table', 103, 1, now(), NULL, NULL, '');
  551. INSERT INTO sys_menu VALUES ('11622', '流程分类', '11616', '1', 'category', 'workflow/category/index', '', '1', '0', 'C', '0', '0', 'workflow:category:list', 'category', 103, 1, now(), NULL, NULL, '');
  552. INSERT INTO sys_menu VALUES ('11629', '我发起的', '11618', '1', 'myDocument', 'workflow/task/myDocument', '', '1', '1', 'C', '0', '0', 'workflow:instance:currentList', 'guide', 103, 1, now(), NULL, NULL, '');
  553. INSERT INTO sys_menu VALUES ('11630', '流程监控', '11616', '4', 'processMonitor', '', '', '1', '0', 'M', '0', '0', '', 'monitor', 103, 1, now(), NULL, NULL, '');
  554. INSERT INTO sys_menu VALUES ('11631', '待办任务', '11630', '2', 'allTaskWaiting', 'workflow/task/allTaskWaiting', '', '1', '1', 'C', '0', '0', 'workflow:task:list', 'waiting', 103, 1, now(), NULL, NULL, '');
  555. INSERT INTO sys_menu VALUES ('11660', '待办任务修改', '11631', '1', '#', '', '', '1', '0', 'F', '0', '0', 'workflow:task:edit', '#', 103, 1, now(), NULL, NULL, '');
  556. INSERT INTO sys_menu VALUES ('11700', '流程设计', '11616', '5', 'design/index', 'workflow/processDefinition/design', '', '1', '1', 'C', '1', '0', 'workflow:leave:edit', '#', 103, 1, now(), NULL, NULL, '/workflow/processDefinition');
  557. INSERT INTO sys_menu VALUES ('11701', '请假申请', '11616', '6', 'leaveEdit/index', 'workflow/leave/leaveEdit', '', '1', '1', 'C', '1', '0', 'workflow:leave:edit', '#', 103, 1, now(), NULL, NULL, '');
  558. INSERT INTO sys_menu VALUES ('11623', '流程分类查询', '11622', '1', '#', '', '', '1', '0', 'F', '0', '0', 'workflow:category:query', '#', 103, 1, now(), NULL, NULL, '');
  559. INSERT INTO sys_menu VALUES ('11624', '流程分类新增', '11622', '2', '#', '', '', '1', '0', 'F', '0', '0', 'workflow:category:add', '#', 103, 1, now(), NULL, NULL, '');
  560. INSERT INTO sys_menu VALUES ('11625', '流程分类修改', '11622', '3', '#', '', '', '1', '0', 'F', '0', '0', 'workflow:category:edit', '#', 103, 1, now(), NULL, NULL, '');
  561. INSERT INTO sys_menu VALUES ('11626', '流程分类删除', '11622', '4', '#', '', '', '1', '0', 'F', '0', '0', 'workflow:category:remove', '#', 103, 1, now(), NULL, NULL, '');
  562. INSERT INTO sys_menu VALUES ('11627', '流程分类导出', '11622', '5', '#', '', '', '1', '0', 'F', '0', '0', 'workflow:category:export', '#', 103, 1, now(), NULL, NULL, '');
  563. INSERT INTO sys_menu VALUES ('11638', '请假申请', '5', '1', 'leave', 'workflow/leave/index', '', '1', '0', 'C', '0', '0', 'workflow:leave:list', '#', 103, 1, now(), NULL, NULL, '请假申请菜单');
  564. INSERT INTO sys_menu VALUES ('11639', '请假申请查询', '11638', '1', '#', '', '', '1', '0', 'F', '0', '0', 'workflow:leave:query', '#', 103, 1, now(), NULL, NULL, '');
  565. INSERT INTO sys_menu VALUES ('11640', '请假申请新增', '11638', '2', '#', '', '', '1', '0', 'F', '0', '0', 'workflow:leave:add', '#', 103, 1, now(), NULL, NULL, '');
  566. INSERT INTO sys_menu VALUES ('11641', '请假申请修改', '11638', '3', '#', '', '', '1', '0', 'F', '0', '0', 'workflow:leave:edit', '#', 103, 1, now(), NULL, NULL, '');
  567. INSERT INTO sys_menu VALUES ('11642', '请假申请删除', '11638', '4', '#', '', '', '1', '0', 'F', '0', '0', 'workflow:leave:remove', '#', 103, 1, now(), NULL, NULL, '');
  568. INSERT INTO sys_menu VALUES ('11643', '请假申请导出', '11638', '5', '#', '', '', '1', '0', 'F', '0', '0', 'workflow:leave:export', '#', 103, 1, now(), NULL, NULL, '');
  569. -- 流程实例管理相关按钮
  570. INSERT INTO sys_menu VALUES ('11653', '流程实例查询', '11621', '1', '#', '', '', '1', '0', 'F', '0', '0', 'workflow:instance:query', '#', 103, 1, now(), NULL, NULL, '');
  571. INSERT INTO sys_menu VALUES ('11654', '流程变量查询', '11621', '2', '#', '', '', '1', '0', 'F', '0', '0', 'workflow:instance:variableQuery', '#', 103, 1, now(), NULL, NULL, '');
  572. INSERT INTO sys_menu VALUES ('11655', '流程变量修改', '11621', '3', '#', '', '', '1', '0', 'F', '0', '0', 'workflow:instance:variable', '#', 103, 1, now(), NULL, NULL, '');
  573. INSERT INTO sys_menu VALUES ('11656', '流程实例激活/挂起', '11621', '4', '#', '', '', '1', '0', 'F', '0', '0', 'workflow:instance:active', '#', 103, 1, now(), NULL, NULL, '');
  574. INSERT INTO sys_menu VALUES ('11657', '流程实例删除', '11621', '5', '#', '', '', '1', '0', 'F', '0', '0', 'workflow:instance:remove', '#', 103, 1, now(), NULL, NULL, '');
  575. INSERT INTO sys_menu VALUES ('11658', '流程实例作废', '11621', '6', '#', '', '', '1', '0', 'F', '0', '0', 'workflow:instance:invalid', '#', 103, 1, now(), NULL, NULL, '');
  576. INSERT INTO sys_menu VALUES ('11659', '流程实例撤销', '11621', '7', '#', '', '', '1', '0', 'F', '0', '0', 'workflow:instance:cancel', '#', 103, 1, now(), NULL, NULL, '');
  577. -- 流程定义管理相关按钮
  578. INSERT INTO sys_menu VALUES ('11644', '流程定义查询', '11620', '1', '#', '', '', '1', '0', 'F', '0', '0', 'workflow:definition:query', '#', 103, 1, now(), NULL, NULL, '');
  579. INSERT INTO sys_menu VALUES ('11645', '流程定义新增', '11620', '2', '#', '', '', '1', '0', 'F', '0', '0', 'workflow:definition:add', '#', 103, 1, now(), NULL, NULL, '');
  580. INSERT INTO sys_menu VALUES ('11646', '流程定义修改', '11620', '3', '#', '', '', '1', '0', 'F', '0', '0', 'workflow:definition:edit', '#', 103, 1, now(), NULL, NULL, '');
  581. INSERT INTO sys_menu VALUES ('11647', '流程定义删除', '11620', '4', '#', '', '', '1', '0', 'F', '0', '0', 'workflow:definition:remove', '#', 103, 1, now(), NULL, NULL, '');
  582. INSERT INTO sys_menu VALUES ('11648', '流程定义导出', '11620', '5', '#', '', '', '1', '0', 'F', '0', '0', 'workflow:definition:export', '#', 103, 1, now(), NULL, NULL, '');
  583. INSERT INTO sys_menu VALUES ('11649', '流程定义导入', '11620', '6', '#', '', '', '1', '0', 'F', '0', '0', 'workflow:definition:import', '#', 103, 1, now(), NULL, NULL, '');
  584. INSERT INTO sys_menu VALUES ('11650', '流程定义发布/取消发布', '11620', '7', '#', '', '', '1', '0', 'F', '0', '0', 'workflow:definition:publish', '#', 103, 1, now(), NULL, NULL, '');
  585. INSERT INTO sys_menu VALUES ('11651', '流程定义复制', '11620', '8', '#', '', '', '1', '0', 'F', '0', '0', 'workflow:definition:copy', '#', 103, 1, now(), NULL, NULL, '');
  586. INSERT INTO sys_menu VALUES ('11652', '流程定义激活/挂起', '11620', '9', '#', '', '', '1', '0', 'F', '0', '0', 'workflow:definition:active', '#', 103, 1, now(), NULL, NULL, '');
  587. INSERT INTO sys_menu VALUES ('11801', '流程表达式', '11616', 2, 'spel', 'workflow/spel/index', '', 1, 0, 'C', '0', '0', 'workflow:spel:list', 'input', 103, 1, now(), 1, now(), '流程达式定义菜单');
  588. INSERT INTO sys_menu VALUES ('11802', '流程spel表达式定义查询', '11801', 1, '#', '', NULL, 1, 0, 'F', '0', '0', 'workflow:spel:query', '#', 103, 1, now(), NULL, NULL, '');
  589. INSERT INTO sys_menu VALUES ('11803', '流程spel表达式定义新增', '11801', 2, '#', '', NULL, 1, 0, 'F', '0', '0', 'workflow:spel:add', '#', 103, 1, now(), NULL, NULL, '');
  590. INSERT INTO sys_menu VALUES ('11804', '流程spel表达式定义修改', '11801', 3, '#', '', NULL, 1, 0, 'F', '0', '0', 'workflow:spel:edit', '#', 103, 1, now(), NULL, NULL, '');
  591. INSERT INTO sys_menu VALUES ('11805', '流程spel表达式定义删除', '11801', 4, '#', '', NULL, 1, 0, 'F', '0', '0', 'workflow:spel:remove', '#', 103, 1, now(), NULL, NULL, '');
  592. INSERT INTO sys_menu VALUES ('11806', '流程spel表达式定义导出', '11801', 5, '#', '', NULL, 1, 0, 'F', '0', '0', 'workflow:spel:export', '#', 103, 1, now(), NULL, NULL, '');
  593. -- ----------------------------
  594. -- 6、用户和角色关联表 用户N-1角色
  595. -- ----------------------------
  596. create table if not exists sys_user_role
  597. (
  598. user_id int8 not null,
  599. role_id int8 not null,
  600. constraint sys_user_role_pk primary key (user_id, role_id)
  601. );
  602. comment on table sys_user_role is '用户和角色关联表';
  603. comment on column sys_user_role.user_id is '用户ID';
  604. comment on column sys_user_role.role_id is '角色ID';
  605. -- ----------------------------
  606. -- 初始化-用户和角色关联表数据
  607. -- ----------------------------
  608. insert into sys_user_role values ('1', '1');
  609. insert into sys_user_role values ('3', '3');
  610. insert into sys_user_role values ('4', '4');
  611. -- ----------------------------
  612. -- 7、角色和菜单关联表 角色1-N菜单
  613. -- ----------------------------
  614. create table if not exists sys_role_menu
  615. (
  616. role_id int8 not null,
  617. menu_id int8 not null,
  618. constraint sys_role_menu_pk primary key (role_id, menu_id)
  619. );
  620. comment on table sys_role_menu is '角色和菜单关联表';
  621. comment on column sys_role_menu.role_id is '角色ID';
  622. comment on column sys_role_menu.menu_id is '菜单ID';
  623. -- ----------------------------
  624. -- 初始化-角色和菜单关联表数据
  625. -- ----------------------------
  626. insert into sys_role_menu values ('3', '1');
  627. insert into sys_role_menu values ('3', '5');
  628. insert into sys_role_menu values ('3', '100');
  629. insert into sys_role_menu values ('3', '101');
  630. insert into sys_role_menu values ('3', '102');
  631. insert into sys_role_menu values ('3', '103');
  632. insert into sys_role_menu values ('3', '104');
  633. insert into sys_role_menu values ('3', '105');
  634. insert into sys_role_menu values ('3', '106');
  635. insert into sys_role_menu values ('3', '107');
  636. insert into sys_role_menu values ('3', '108');
  637. insert into sys_role_menu values ('3', '118');
  638. insert into sys_role_menu values ('3', '123');
  639. insert into sys_role_menu values ('3', '130');
  640. insert into sys_role_menu values ('3', '131');
  641. insert into sys_role_menu values ('3', '132');
  642. insert into sys_role_menu values ('3', '133');
  643. insert into sys_role_menu values ('3', '500');
  644. insert into sys_role_menu values ('3', '501');
  645. insert into sys_role_menu values ('3', '1001');
  646. insert into sys_role_menu values ('3', '1002');
  647. insert into sys_role_menu values ('3', '1003');
  648. insert into sys_role_menu values ('3', '1004');
  649. insert into sys_role_menu values ('3', '1005');
  650. insert into sys_role_menu values ('3', '1006');
  651. insert into sys_role_menu values ('3', '1007');
  652. insert into sys_role_menu values ('3', '1008');
  653. insert into sys_role_menu values ('3', '1009');
  654. insert into sys_role_menu values ('3', '1010');
  655. insert into sys_role_menu values ('3', '1011');
  656. insert into sys_role_menu values ('3', '1012');
  657. insert into sys_role_menu values ('3', '1013');
  658. insert into sys_role_menu values ('3', '1014');
  659. insert into sys_role_menu values ('3', '1015');
  660. insert into sys_role_menu values ('3', '1016');
  661. insert into sys_role_menu values ('3', '1017');
  662. insert into sys_role_menu values ('3', '1018');
  663. insert into sys_role_menu values ('3', '1019');
  664. insert into sys_role_menu values ('3', '1020');
  665. insert into sys_role_menu values ('3', '1021');
  666. insert into sys_role_menu values ('3', '1022');
  667. insert into sys_role_menu values ('3', '1023');
  668. insert into sys_role_menu values ('3', '1024');
  669. insert into sys_role_menu values ('3', '1025');
  670. insert into sys_role_menu values ('3', '1026');
  671. insert into sys_role_menu values ('3', '1027');
  672. insert into sys_role_menu values ('3', '1028');
  673. insert into sys_role_menu values ('3', '1029');
  674. insert into sys_role_menu values ('3', '1030');
  675. insert into sys_role_menu values ('3', '1031');
  676. insert into sys_role_menu values ('3', '1032');
  677. insert into sys_role_menu values ('3', '1033');
  678. insert into sys_role_menu values ('3', '1034');
  679. insert into sys_role_menu values ('3', '1035');
  680. insert into sys_role_menu values ('3', '1036');
  681. insert into sys_role_menu values ('3', '1037');
  682. insert into sys_role_menu values ('3', '1038');
  683. insert into sys_role_menu values ('3', '1039');
  684. insert into sys_role_menu values ('3', '1040');
  685. insert into sys_role_menu values ('3', '1041');
  686. insert into sys_role_menu values ('3', '1042');
  687. insert into sys_role_menu values ('3', '1043');
  688. insert into sys_role_menu values ('3', '1044');
  689. insert into sys_role_menu values ('3', '1045');
  690. insert into sys_role_menu values ('3', '1050');
  691. insert into sys_role_menu values ('3', '1061');
  692. insert into sys_role_menu values ('3', '1062');
  693. insert into sys_role_menu values ('3', '1063');
  694. insert into sys_role_menu values ('3', '1064');
  695. insert into sys_role_menu values ('3', '1065');
  696. insert into sys_role_menu values ('3', '1500');
  697. insert into sys_role_menu values ('3', '1501');
  698. insert into sys_role_menu values ('3', '1502');
  699. insert into sys_role_menu values ('3', '1503');
  700. insert into sys_role_menu values ('3', '1504');
  701. insert into sys_role_menu values ('3', '1505');
  702. insert into sys_role_menu values ('3', '1506');
  703. insert into sys_role_menu values ('3', '1507');
  704. insert into sys_role_menu values ('3', '1508');
  705. insert into sys_role_menu values ('3', '1509');
  706. insert into sys_role_menu values ('3', '1510');
  707. insert into sys_role_menu values ('3', '1511');
  708. insert into sys_role_menu values ('3', '1600');
  709. insert into sys_role_menu values ('3', '1601');
  710. insert into sys_role_menu values ('3', '1602');
  711. insert into sys_role_menu values ('3', '1603');
  712. insert into sys_role_menu values ('3', '1620');
  713. insert into sys_role_menu values ('3', '1621');
  714. insert into sys_role_menu values ('3', '1622');
  715. insert into sys_role_menu values ('3', '1623');
  716. insert into sys_role_menu values ('3', '11616');
  717. insert into sys_role_menu values ('3', '11618');
  718. insert into sys_role_menu values ('3', '11619');
  719. insert into sys_role_menu values ('3', '11622');
  720. insert into sys_role_menu values ('3', '11623');
  721. insert into sys_role_menu values ('3', '11629');
  722. insert into sys_role_menu values ('3', '11632');
  723. insert into sys_role_menu values ('3', '11633');
  724. insert into sys_role_menu values ('3', '11638');
  725. insert into sys_role_menu values ('3', '11639');
  726. insert into sys_role_menu values ('3', '11640');
  727. insert into sys_role_menu values ('3', '11641');
  728. insert into sys_role_menu values ('3', '11642');
  729. insert into sys_role_menu values ('3', '11643');
  730. insert into sys_role_menu values ('3', '11701');
  731. insert into sys_role_menu values ('4', '5');
  732. insert into sys_role_menu values ('4', '1500');
  733. insert into sys_role_menu values ('4', '1501');
  734. insert into sys_role_menu values ('4', '1502');
  735. insert into sys_role_menu values ('4', '1503');
  736. insert into sys_role_menu values ('4', '1504');
  737. insert into sys_role_menu values ('4', '1505');
  738. insert into sys_role_menu values ('4', '1506');
  739. insert into sys_role_menu values ('4', '1507');
  740. insert into sys_role_menu values ('4', '1508');
  741. insert into sys_role_menu values ('4', '1509');
  742. insert into sys_role_menu values ('4', '1510');
  743. insert into sys_role_menu values ('4', '1511');
  744. -- ----------------------------
  745. -- 8、角色和部门关联表 角色1-N部门
  746. -- ----------------------------
  747. create table if not exists sys_role_dept
  748. (
  749. role_id int8 not null,
  750. dept_id int8 not null,
  751. constraint sys_role_dept_pk primary key (role_id, dept_id)
  752. );
  753. comment on table sys_role_dept is '角色和部门关联表';
  754. comment on column sys_role_dept.role_id is '角色ID';
  755. comment on column sys_role_dept.dept_id is '部门ID';
  756. -- ----------------------------
  757. -- 9、用户与岗位关联表 用户1-N岗位
  758. -- ----------------------------
  759. create table if not exists sys_user_post
  760. (
  761. user_id int8 not null,
  762. post_id int8 not null,
  763. constraint sys_user_post_pk primary key (user_id, post_id)
  764. );
  765. comment on table sys_user_post is '用户与岗位关联表';
  766. comment on column sys_user_post.user_id is '用户ID';
  767. comment on column sys_user_post.post_id is '岗位ID';
  768. -- ----------------------------
  769. -- 初始化-用户与岗位关联表数据
  770. -- ----------------------------
  771. insert into sys_user_post values ('1', '1');
  772. -- ----------------------------
  773. -- 10、操作日志记录
  774. -- ----------------------------
  775. create table if not exists sys_oper_log
  776. (
  777. oper_id int8,
  778. tenant_id varchar(20) default '000000'::varchar,
  779. title varchar(50) default ''::varchar,
  780. business_type int4 default 0,
  781. method varchar(100) default ''::varchar,
  782. request_method varchar(10) default ''::varchar,
  783. operator_type int4 default 0,
  784. oper_name varchar(50) default ''::varchar,
  785. dept_name varchar(50) default ''::varchar,
  786. oper_url varchar(255) default ''::varchar,
  787. oper_ip varchar(128) default ''::varchar,
  788. oper_location varchar(255) default ''::varchar,
  789. oper_param varchar(4000) default ''::varchar,
  790. json_result varchar(4000) default ''::varchar,
  791. status int4 default 0,
  792. error_msg varchar(4000) default ''::varchar,
  793. oper_time timestamp,
  794. cost_time int8 default 0,
  795. constraint sys_oper_log_pk primary key (oper_id)
  796. );
  797. create index idx_sys_oper_log_bt ON sys_oper_log (business_type);
  798. create index idx_sys_oper_log_s ON sys_oper_log (status);
  799. create index idx_sys_oper_log_ot ON sys_oper_log (oper_time);
  800. comment on table sys_oper_log is '操作日志记录';
  801. comment on column sys_oper_log.oper_id is '日志主键';
  802. comment on column sys_oper_log.tenant_id is '租户编号';
  803. comment on column sys_oper_log.title is '模块标题';
  804. comment on column sys_oper_log.business_type is '业务类型(0其它 1新增 2修改 3删除)';
  805. comment on column sys_oper_log.method is '方法名称';
  806. comment on column sys_oper_log.request_method is '请求方式';
  807. comment on column sys_oper_log.operator_type is '操作类别(0其它 1后台用户 2手机端用户)';
  808. comment on column sys_oper_log.oper_name is '操作人员';
  809. comment on column sys_oper_log.dept_name is '部门名称';
  810. comment on column sys_oper_log.oper_url is '请求URL';
  811. comment on column sys_oper_log.oper_ip is '主机地址';
  812. comment on column sys_oper_log.oper_location is '操作地点';
  813. comment on column sys_oper_log.oper_param is '请求参数';
  814. comment on column sys_oper_log.json_result is '返回参数';
  815. comment on column sys_oper_log.status is '操作状态(0正常 1异常)';
  816. comment on column sys_oper_log.error_msg is '错误消息';
  817. comment on column sys_oper_log.oper_time is '操作时间';
  818. comment on column sys_oper_log.cost_time is '消耗时间';
  819. -- ----------------------------
  820. -- 11、字典类型表
  821. -- ----------------------------
  822. create table if not exists sys_dict_type
  823. (
  824. dict_id int8,
  825. tenant_id varchar(20) default '000000'::varchar,
  826. dict_name varchar(100) default ''::varchar,
  827. dict_type varchar(100) default ''::varchar,
  828. create_dept int8,
  829. create_by int8,
  830. create_time timestamp,
  831. update_by int8,
  832. update_time timestamp,
  833. remark varchar(500) default null::varchar,
  834. constraint sys_dict_type_pk primary key (dict_id)
  835. );
  836. create unique index sys_dict_type_index1 ON sys_dict_type (tenant_id, dict_type);
  837. comment on table sys_dict_type is '字典类型表';
  838. comment on column sys_dict_type.dict_id is '字典主键';
  839. comment on column sys_dict_type.tenant_id is '租户编号';
  840. comment on column sys_dict_type.dict_name is '字典名称';
  841. comment on column sys_dict_type.dict_type is '字典类型';
  842. comment on column sys_dict_type.create_dept is '创建部门';
  843. comment on column sys_dict_type.create_by is '创建者';
  844. comment on column sys_dict_type.create_time is '创建时间';
  845. comment on column sys_dict_type.update_by is '更新者';
  846. comment on column sys_dict_type.update_time is '更新时间';
  847. comment on column sys_dict_type.remark is '备注';
  848. insert into sys_dict_type values(1, '000000', '用户性别', 'sys_user_sex', 103, 1, now(), null, null, '用户性别列表');
  849. insert into sys_dict_type values(2, '000000', '菜单状态', 'sys_show_hide', 103, 1, now(), null, null, '菜单状态列表');
  850. insert into sys_dict_type values(3, '000000', '系统开关', 'sys_normal_disable', 103, 1, now(), null, null, '系统开关列表');
  851. insert into sys_dict_type values(6, '000000', '系统是否', 'sys_yes_no', 103, 1, now(), null, null, '系统是否列表');
  852. insert into sys_dict_type values(7, '000000', '通知类型', 'sys_notice_type', 103, 1, now(), null, null, '通知类型列表');
  853. insert into sys_dict_type values(8, '000000', '通知状态', 'sys_notice_status', 103, 1, now(), null, null, '通知状态列表');
  854. insert into sys_dict_type values(9, '000000', '操作类型', 'sys_oper_type', 103, 1, now(), null, null, '操作类型列表');
  855. insert into sys_dict_type values(10, '000000', '系统状态', 'sys_common_status', 103, 1, now(), null, null, '登录状态列表');
  856. insert into sys_dict_type values(11, '000000', '授权类型', 'sys_grant_type', 103, 1, now(), null, null, '认证授权类型');
  857. insert into sys_dict_type values(12, '000000', '设备类型', 'sys_device_type', 103, 1, now(), null, null, '客户端设备类型');
  858. INSERT INTO sys_dict_type VALUES (13, '000000', '业务状态', 'wf_business_status', 103, 1, now(), NULL, NULL, '业务状态列表');
  859. INSERT INTO sys_dict_type VALUES (14, '000000', '表单类型', 'wf_form_type', 103, 1, now(), NULL, NULL, '表单类型列表');
  860. INSERT INTO sys_dict_type VALUES (15, '000000', '任务状态', 'wf_task_status', 103, 1, now(), NULL, NULL, '任务状态');
  861. -- ----------------------------
  862. -- 12、字典数据表
  863. -- ----------------------------
  864. create table if not exists sys_dict_data
  865. (
  866. dict_code int8,
  867. tenant_id varchar(20) default '000000'::varchar,
  868. dict_sort int4 default 0,
  869. dict_label varchar(100) default ''::varchar,
  870. dict_value varchar(100) default ''::varchar,
  871. dict_type varchar(100) default ''::varchar,
  872. css_class varchar(100) default null::varchar,
  873. list_class varchar(100) default null::varchar,
  874. is_default char default 'N'::bpchar,
  875. create_dept int8,
  876. create_by int8,
  877. create_time timestamp,
  878. update_by int8,
  879. update_time timestamp,
  880. remark varchar(500) default null::varchar,
  881. constraint sys_dict_data_pk primary key (dict_code)
  882. );
  883. comment on table sys_dict_data is '字典数据表';
  884. comment on column sys_dict_data.dict_code is '字典编码';
  885. comment on column sys_dict_type.tenant_id is '租户编号';
  886. comment on column sys_dict_data.dict_sort is '字典排序';
  887. comment on column sys_dict_data.dict_label is '字典标签';
  888. comment on column sys_dict_data.dict_value is '字典键值';
  889. comment on column sys_dict_data.dict_type is '字典类型';
  890. comment on column sys_dict_data.css_class is '样式属性(其他样式扩展)';
  891. comment on column sys_dict_data.list_class is '表格回显样式';
  892. comment on column sys_dict_data.is_default is '是否默认(Y是 N否)';
  893. comment on column sys_dict_data.create_dept is '创建部门';
  894. comment on column sys_dict_data.create_by is '创建者';
  895. comment on column sys_dict_data.create_time is '创建时间';
  896. comment on column sys_dict_data.update_by is '更新者';
  897. comment on column sys_dict_data.update_time is '更新时间';
  898. comment on column sys_dict_data.remark is '备注';
  899. insert into sys_dict_data values(1, '000000', 1, '男', '0', 'sys_user_sex', '', '', 'Y', 103, 1, now(), null, null, '性别男');
  900. insert into sys_dict_data values(2, '000000', 2, '女', '1', 'sys_user_sex', '', '', 'N', 103, 1, now(), null, null, '性别女');
  901. insert into sys_dict_data values(3, '000000', 3, '未知', '2', 'sys_user_sex', '', '', 'N', 103, 1, now(), null, null, '性别未知');
  902. insert into sys_dict_data values(4, '000000', 1, '显示', '0', 'sys_show_hide', '', 'primary', 'Y', 103, 1, now(), null, null, '显示菜单');
  903. insert into sys_dict_data values(5, '000000', 2, '隐藏', '1', 'sys_show_hide', '', 'danger', 'N', 103, 1, now(), null, null, '隐藏菜单');
  904. insert into sys_dict_data values(6, '000000', 1, '正常', '0', 'sys_normal_disable', '', 'primary', 'Y', 103, 1, now(), null, null, '正常状态');
  905. insert into sys_dict_data values(7, '000000', 2, '停用', '1', 'sys_normal_disable', '', 'danger', 'N', 103, 1, now(), null, null, '停用状态');
  906. insert into sys_dict_data values(12, '000000', 1, '是', 'Y', 'sys_yes_no', '', 'primary', 'Y', 103, 1, now(), null, null, '系统默认是');
  907. insert into sys_dict_data values(13, '000000', 2, '否', 'N', 'sys_yes_no', '', 'danger', 'N', 103, 1, now(), null, null, '系统默认否');
  908. insert into sys_dict_data values(14, '000000', 1, '通知', '1', 'sys_notice_type', '', 'warning', 'Y', 103, 1, now(), null, null, '通知');
  909. insert into sys_dict_data values(15, '000000', 2, '公告', '2', 'sys_notice_type', '', 'success', 'N', 103, 1, now(), null, null, '公告');
  910. insert into sys_dict_data values(16, '000000', 1, '正常', '0', 'sys_notice_status', '', 'primary', 'Y', 103, 1, now(), null, null, '正常状态');
  911. insert into sys_dict_data values(17, '000000', 2, '关闭', '1', 'sys_notice_status', '', 'danger', 'N', 103, 1, now(), null, null, '关闭状态');
  912. insert into sys_dict_data values(29, '000000', 99, '其他', '0', 'sys_oper_type', '', 'info', 'N', 103, 1, now(), null, null, '其他操作');
  913. insert into sys_dict_data values(18, '000000', 1, '新增', '1', 'sys_oper_type', '', 'info', 'N', 103, 1, now(), null, null, '新增操作');
  914. insert into sys_dict_data values(19, '000000', 2, '修改', '2', 'sys_oper_type', '', 'info', 'N', 103, 1, now(), null, null, '修改操作');
  915. insert into sys_dict_data values(20, '000000', 3, '删除', '3', 'sys_oper_type', '', 'danger', 'N', 103, 1, now(), null, null, '删除操作');
  916. insert into sys_dict_data values(21, '000000', 4, '授权', '4', 'sys_oper_type', '', 'primary', 'N', 103, 1, now(), null, null, '授权操作');
  917. insert into sys_dict_data values(22, '000000', 5, '导出', '5', 'sys_oper_type', '', 'warning', 'N', 103, 1, now(), null, null, '导出操作');
  918. insert into sys_dict_data values(23, '000000', 6, '导入', '6', 'sys_oper_type', '', 'warning', 'N', 103, 1, now(), null, null, '导入操作');
  919. insert into sys_dict_data values(24, '000000', 7, '强退', '7', 'sys_oper_type', '', 'danger', 'N', 103, 1, now(), null, null, '强退操作');
  920. insert into sys_dict_data values(25, '000000', 8, '生成代码', '8', 'sys_oper_type', '', 'warning', 'N', 103, 1, now(), null, null, '生成操作');
  921. insert into sys_dict_data values(26, '000000', 9, '清空数据', '9', 'sys_oper_type', '', 'danger', 'N', 103, 1, now(), null, null, '清空操作');
  922. insert into sys_dict_data values(27, '000000', 1, '成功', '0', 'sys_common_status', '', 'primary', 'N', 103, 1, now(), null, null, '正常状态');
  923. insert into sys_dict_data values(28, '000000', 2, '失败', '1', 'sys_common_status', '', 'danger', 'N', 103, 1, now(), null, null, '停用状态');
  924. insert into sys_dict_data values(30, '000000', 0, '密码认证', 'password', 'sys_grant_type', '', 'default', 'N', 103, 1, now(), null, null, '密码认证');
  925. insert into sys_dict_data values(31, '000000', 0, '短信认证', 'sms', 'sys_grant_type', '', 'default', 'N', 103, 1, now(), null, null, '短信认证');
  926. insert into sys_dict_data values(32, '000000', 0, '邮件认证', 'email', 'sys_grant_type', '', 'default', 'N', 103, 1, now(), null, null, '邮件认证');
  927. insert into sys_dict_data values(33, '000000', 0, '小程序认证', 'xcx', 'sys_grant_type', '', 'default', 'N', 103, 1, now(), null, null, '小程序认证');
  928. insert into sys_dict_data values(34, '000000', 0, '三方登录认证', 'social', 'sys_grant_type', '', 'default', 'N', 103, 1, now(), null, null, '三方登录认证');
  929. insert into sys_dict_data values(35, '000000', 0, 'PC', 'pc', 'sys_device_type', '', 'default', 'N', 103, 1, now(), null, null, 'PC');
  930. insert into sys_dict_data values(36, '000000', 0, '安卓', 'android', 'sys_device_type', '', 'default', 'N', 103, 1, now(), null, null, '安卓');
  931. insert into sys_dict_data values(37, '000000', 0, 'iOS', 'ios', 'sys_device_type', '', 'default', 'N', 103, 1, now(), null, null, 'iOS');
  932. insert into sys_dict_data values(38, '000000', 0, '小程序', 'xcx', 'sys_device_type', '', 'default', 'N', 103, 1, now(), null, null, '小程序');
  933. INSERT INTO sys_dict_data VALUES (39, '000000', 1, '已撤销', 'cancel', 'wf_business_status', '', 'danger', 'N', 103, 1, now(), NULL, NULL, '已撤销');
  934. INSERT INTO sys_dict_data VALUES (40, '000000', 2, '草稿', 'draft', 'wf_business_status', '', 'info', 'N', 103, 1, now(), NULL, NULL, '草稿');
  935. INSERT INTO sys_dict_data VALUES (41, '000000', 3, '待审核', 'waiting', 'wf_business_status', '', 'primary', 'N', 103, 1, now(), NULL, NULL, '待审核');
  936. INSERT INTO sys_dict_data VALUES (42, '000000', 4, '已完成', 'finish', 'wf_business_status', '', 'success', 'N', 103, 1, now(), NULL, NULL, '已完成');
  937. INSERT INTO sys_dict_data VALUES (43, '000000', 5, '已作废', 'invalid', 'wf_business_status', '', 'danger', 'N', 103, 1, now(), NULL, NULL, '已作废');
  938. INSERT INTO sys_dict_data VALUES (44, '000000', 6, '已退回', 'back', 'wf_business_status', '', 'danger', 'N', 103, 1, now(), NULL, NULL, '已退回');
  939. INSERT INTO sys_dict_data VALUES (45, '000000', 7, '已终止', 'termination', 'wf_business_status', '', 'danger', 'N', 103, 1, now(), NULL, NULL, '已终止');
  940. INSERT INTO sys_dict_data VALUES (46, '000000', 1, '自定义表单', 'static', 'wf_form_type', '', 'success', 'N', 103, 1, now(), NULL, NULL, '自定义表单');
  941. INSERT INTO sys_dict_data VALUES (47, '000000', 2, '动态表单', 'dynamic', 'wf_form_type', '', 'primary', 'N', 103, 1, now(), NULL, NULL, '动态表单');
  942. INSERT INTO sys_dict_data VALUES (48, '000000', 1, '撤销', 'cancel', 'wf_task_status', '', 'danger', 'N', 103, 1, now(), NULL, NULL, '撤销');
  943. INSERT INTO sys_dict_data VALUES (49, '000000', 2, '通过', 'pass', 'wf_task_status', '', 'success', 'N', 103, 1, now(), NULL, NULL, '通过');
  944. INSERT INTO sys_dict_data VALUES (50, '000000', 3, '待审核', 'waiting', 'wf_task_status', '', 'primary', 'N', 103, 1, now(), NULL, NULL, '待审核');
  945. INSERT INTO sys_dict_data VALUES (51, '000000', 4, '作废', 'invalid', 'wf_task_status', '', 'danger', 'N', 103, 1, now(), NULL, NULL, '作废');
  946. INSERT INTO sys_dict_data VALUES (52, '000000', 5, '退回', 'back', 'wf_task_status', '', 'danger', 'N', 103, 1, now(), NULL, NULL, '退回');
  947. INSERT INTO sys_dict_data VALUES (53, '000000', 6, '终止', 'termination', 'wf_task_status', '', 'danger', 'N', 103, 1, now(), NULL, NULL, '终止');
  948. INSERT INTO sys_dict_data VALUES (54, '000000', 7, '转办', 'transfer', 'wf_task_status', '', 'primary', 'N', 103, 1, now(), NULL, NULL, '转办');
  949. INSERT INTO sys_dict_data VALUES (55, '000000', 8, '委托', 'depute', 'wf_task_status', '', 'primary', 'N', 103, 1, now(), NULL, NULL, '委托');
  950. INSERT INTO sys_dict_data VALUES (56, '000000', 9, '抄送', 'copy', 'wf_task_status', '', 'primary', 'N', 103, 1, now(), NULL, NULL, '抄送');
  951. INSERT INTO sys_dict_data VALUES (57, '000000', 10, '加签', 'sign', 'wf_task_status', '', 'primary', 'N', 103, 1, now(), NULL, NULL, '加签');
  952. INSERT INTO sys_dict_data VALUES (58, '000000', 11, '减签', 'sign_off', 'wf_task_status', '', 'danger', 'N', 103, 1, now(), NULL, NULL, '减签');
  953. INSERT INTO sys_dict_data VALUES (59, '000000', 11, '超时', 'timeout', 'wf_task_status', '', 'danger', 'N', 103, 1, now(), NULL, NULL, '超时');
  954. -- ----------------------------
  955. -- 13、参数配置表
  956. -- ----------------------------
  957. create table if not exists sys_config
  958. (
  959. config_id int8,
  960. tenant_id varchar(20) default '000000'::varchar,
  961. config_name varchar(100) default ''::varchar,
  962. config_key varchar(100) default ''::varchar,
  963. config_value varchar(500) default ''::varchar,
  964. config_type char default 'N'::bpchar,
  965. create_dept int8,
  966. create_by int8,
  967. create_time timestamp,
  968. update_by int8,
  969. update_time timestamp,
  970. remark varchar(500) default null::varchar,
  971. constraint sys_config_pk primary key (config_id)
  972. );
  973. comment on table sys_config is '参数配置表';
  974. comment on column sys_config.config_id is '参数主键';
  975. comment on column sys_config.tenant_id is '租户编号';
  976. comment on column sys_config.config_name is '参数名称';
  977. comment on column sys_config.config_key is '参数键名';
  978. comment on column sys_config.config_value is '参数键值';
  979. comment on column sys_config.config_type is '系统内置(Y是 N否)';
  980. comment on column sys_config.create_dept is '创建部门';
  981. comment on column sys_config.create_by is '创建者';
  982. comment on column sys_config.create_time is '创建时间';
  983. comment on column sys_config.update_by is '更新者';
  984. comment on column sys_config.update_time is '更新时间';
  985. comment on column sys_config.remark is '备注';
  986. insert into sys_config values(1, '000000', '主框架页-默认皮肤样式名称', 'sys.index.skinName', 'skin-blue', 'Y', 103, 1, now(), null, null, '蓝色 skin-blue、绿色 skin-green、紫色 skin-purple、红色 skin-red、黄色 skin-yellow' );
  987. insert into sys_config values(2, '000000', '用户管理-账号初始密码', 'sys.user.initPassword', '123456', 'Y', 103, 1, now(), null, null, '初始化密码 123456' );
  988. insert into sys_config values(3, '000000', '主框架页-侧边栏主题', 'sys.index.sideTheme', 'theme-dark', 'Y', 103, 1, now(), null, null, '深色主题theme-dark,浅色主题theme-light' );
  989. insert into sys_config values(5, '000000', '账号自助-是否开启用户注册功能', 'sys.account.registerUser', 'false', 'Y', 103, 1, now(), null, null, '是否开启注册用户功能(true开启,false关闭)');
  990. insert into sys_config values(11, '000000', 'OSS预览列表资源开关', 'sys.oss.previewListResource', 'true', 'Y', 103, 1, now(), null, null, 'true:开启, false:关闭');
  991. -- ----------------------------
  992. -- 14、系统访问记录
  993. -- ----------------------------
  994. create table if not exists sys_logininfor
  995. (
  996. info_id int8,
  997. tenant_id varchar(20) default '000000'::varchar,
  998. user_name varchar(50) default ''::varchar,
  999. client_key varchar(32) default ''::varchar,
  1000. device_type varchar(32) default ''::varchar,
  1001. ipaddr varchar(128) default ''::varchar,
  1002. login_location varchar(255) default ''::varchar,
  1003. browser varchar(50) default ''::varchar,
  1004. os varchar(50) default ''::varchar,
  1005. status char default '0'::bpchar,
  1006. msg varchar(255) default ''::varchar,
  1007. login_time timestamp,
  1008. constraint sys_logininfor_pk primary key (info_id)
  1009. );
  1010. create index idx_sys_logininfor_s ON sys_logininfor (status);
  1011. create index idx_sys_logininfor_lt ON sys_logininfor (login_time);
  1012. comment on table sys_logininfor is '系统访问记录';
  1013. comment on column sys_logininfor.info_id is '访问ID';
  1014. comment on column sys_logininfor.tenant_id is '租户编号';
  1015. comment on column sys_logininfor.user_name is '用户账号';
  1016. comment on column sys_logininfor.client_key is '客户端';
  1017. comment on column sys_logininfor.device_type is '设备类型';
  1018. comment on column sys_logininfor.ipaddr is '登录IP地址';
  1019. comment on column sys_logininfor.login_location is '登录地点';
  1020. comment on column sys_logininfor.browser is '浏览器类型';
  1021. comment on column sys_logininfor.os is '操作系统';
  1022. comment on column sys_logininfor.status is '登录状态(0成功 1失败)';
  1023. comment on column sys_logininfor.msg is '提示消息';
  1024. comment on column sys_logininfor.login_time is '访问时间';
  1025. -- ----------------------------
  1026. -- 17、通知公告表
  1027. -- ----------------------------
  1028. create table if not exists sys_notice
  1029. (
  1030. notice_id int8,
  1031. tenant_id varchar(20) default '000000'::varchar,
  1032. notice_title varchar(50) not null,
  1033. notice_type char not null,
  1034. notice_content text,
  1035. status char default '0'::bpchar,
  1036. create_dept int8,
  1037. create_by int8,
  1038. create_time timestamp,
  1039. update_by int8,
  1040. update_time timestamp,
  1041. remark varchar(255) default null::varchar,
  1042. constraint sys_notice_pk primary key (notice_id)
  1043. );
  1044. comment on table sys_notice is '通知公告表';
  1045. comment on column sys_notice.notice_id is '公告ID';
  1046. comment on column sys_notice.tenant_id is '租户编号';
  1047. comment on column sys_notice.notice_title is '公告标题';
  1048. comment on column sys_notice.notice_type is '公告类型(1通知 2公告)';
  1049. comment on column sys_notice.notice_content is '公告内容';
  1050. comment on column sys_notice.status is '公告状态(0正常 1关闭)';
  1051. comment on column sys_notice.create_dept is '创建部门';
  1052. comment on column sys_notice.create_by is '创建者';
  1053. comment on column sys_notice.create_time is '创建时间';
  1054. comment on column sys_notice.update_by is '更新者';
  1055. comment on column sys_notice.update_time is '更新时间';
  1056. comment on column sys_notice.remark is '备注';
  1057. -- ----------------------------
  1058. -- 初始化-公告信息表数据
  1059. -- ----------------------------
  1060. insert into sys_notice values('1', '000000', '温馨提醒:2018-07-01 新版本发布啦', '2', '新版本内容', '0', 103, 1, now(), null, null, '管理员');
  1061. insert into sys_notice values('2', '000000', '维护通知:2018-07-01 系统凌晨维护', '1', '维护内容', '0', 103, 1, now(), null, null, '管理员');
  1062. -- ----------------------------
  1063. -- 18、代码生成业务表
  1064. -- ----------------------------
  1065. create table if not exists gen_table
  1066. (
  1067. table_id int8,
  1068. data_name varchar(200) default ''::varchar,
  1069. table_name varchar(200) default ''::varchar,
  1070. table_comment varchar(500) default ''::varchar,
  1071. sub_table_name varchar(64) default ''::varchar,
  1072. sub_table_fk_name varchar(64) default ''::varchar,
  1073. class_name varchar(100) default ''::varchar,
  1074. tpl_category varchar(200) default 'crud'::varchar,
  1075. package_name varchar(100) default null::varchar,
  1076. module_name varchar(30) default null::varchar,
  1077. business_name varchar(30) default null::varchar,
  1078. function_name varchar(50) default null::varchar,
  1079. function_author varchar(50) default null::varchar,
  1080. gen_type char default '0'::bpchar not null,
  1081. gen_path varchar(200) default '/'::varchar,
  1082. options varchar(1000) default null::varchar,
  1083. create_dept int8,
  1084. create_by int8,
  1085. create_time timestamp,
  1086. update_by int8,
  1087. update_time timestamp,
  1088. remark varchar(500) default null::varchar,
  1089. constraint gen_table_pk primary key (table_id)
  1090. );
  1091. comment on table gen_table is '代码生成业务表';
  1092. comment on column gen_table.table_id is '编号';
  1093. comment on column gen_table.data_name is '数据源名称';
  1094. comment on column gen_table.table_name is '表名称';
  1095. comment on column gen_table.table_comment is '表描述';
  1096. comment on column gen_table.sub_table_name is '关联子表的表名';
  1097. comment on column gen_table.sub_table_fk_name is '子表关联的外键名';
  1098. comment on column gen_table.class_name is '实体类名称';
  1099. comment on column gen_table.tpl_category is '使用的模板(CRUD单表操作 TREE树表操作)';
  1100. comment on column gen_table.package_name is '生成包路径';
  1101. comment on column gen_table.module_name is '生成模块名';
  1102. comment on column gen_table.business_name is '生成业务名';
  1103. comment on column gen_table.function_name is '生成功能名';
  1104. comment on column gen_table.function_author is '生成功能作者';
  1105. comment on column gen_table.gen_type is '生成代码方式(0zip压缩包 1自定义路径)';
  1106. comment on column gen_table.gen_path is '生成路径(不填默认项目路径)';
  1107. comment on column gen_table.options is '其它生成选项';
  1108. comment on column gen_table.create_dept is '创建部门';
  1109. comment on column gen_table.create_by is '创建者';
  1110. comment on column gen_table.create_time is '创建时间';
  1111. comment on column gen_table.update_by is '更新者';
  1112. comment on column gen_table.update_time is '更新时间';
  1113. comment on column gen_table.remark is '备注';
  1114. -- ----------------------------
  1115. -- 19、代码生成业务表字段
  1116. -- ----------------------------
  1117. create table if not exists gen_table_column
  1118. (
  1119. column_id int8,
  1120. table_id int8,
  1121. column_name varchar(200) default null::varchar,
  1122. column_comment varchar(500) default null::varchar,
  1123. column_type varchar(100) default null::varchar,
  1124. java_type varchar(500) default null::varchar,
  1125. java_field varchar(200) default null::varchar,
  1126. is_pk char default null::bpchar,
  1127. is_increment char default null::bpchar,
  1128. is_required char default null::bpchar,
  1129. is_insert char default null::bpchar,
  1130. is_edit char default null::bpchar,
  1131. is_list char default null::bpchar,
  1132. is_query char default null::bpchar,
  1133. query_type varchar(200) default 'EQ'::varchar,
  1134. html_type varchar(200) default null::varchar,
  1135. dict_type varchar(200) default ''::varchar,
  1136. sort int4,
  1137. create_dept int8,
  1138. create_by int8,
  1139. create_time timestamp,
  1140. update_by int8,
  1141. update_time timestamp,
  1142. constraint gen_table_column_pk primary key (column_id)
  1143. );
  1144. comment on table gen_table_column is '代码生成业务表字段';
  1145. comment on column gen_table_column.column_id is '编号';
  1146. comment on column gen_table_column.table_id is '归属表编号';
  1147. comment on column gen_table_column.column_name is '列名称';
  1148. comment on column gen_table_column.column_comment is '列描述';
  1149. comment on column gen_table_column.column_type is '列类型';
  1150. comment on column gen_table_column.java_type is 'JAVA类型';
  1151. comment on column gen_table_column.java_field is 'JAVA字段名';
  1152. comment on column gen_table_column.is_pk is '是否主键(1是)';
  1153. comment on column gen_table_column.is_increment is '是否自增(1是)';
  1154. comment on column gen_table_column.is_required is '是否必填(1是)';
  1155. comment on column gen_table_column.is_insert is '是否为插入字段(1是)';
  1156. comment on column gen_table_column.is_edit is '是否编辑字段(1是)';
  1157. comment on column gen_table_column.is_list is '是否列表字段(1是)';
  1158. comment on column gen_table_column.is_query is '是否查询字段(1是)';
  1159. comment on column gen_table_column.query_type is '查询方式(等于、不等于、大于、小于、范围)';
  1160. comment on column gen_table_column.html_type is '显示类型(文本框、文本域、下拉框、复选框、单选框、日期控件)';
  1161. comment on column gen_table_column.dict_type is '字典类型';
  1162. comment on column gen_table_column.sort is '排序';
  1163. comment on column gen_table_column.create_dept is '创建部门';
  1164. comment on column gen_table_column.create_by is '创建者';
  1165. comment on column gen_table_column.create_time is '创建时间';
  1166. comment on column gen_table_column.update_by is '更新者';
  1167. comment on column gen_table_column.update_time is '更新时间';
  1168. -- ----------------------------
  1169. -- OSS对象存储表
  1170. -- ----------------------------
  1171. create table if not exists sys_oss
  1172. (
  1173. oss_id int8,
  1174. tenant_id varchar(20) default '000000'::varchar,
  1175. file_name varchar(255) default ''::varchar not null,
  1176. original_name varchar(255) default ''::varchar not null,
  1177. file_suffix varchar(10) default ''::varchar not null,
  1178. url varchar(500) default ''::varchar not null,
  1179. ext1 varchar(500) default ''::varchar,
  1180. create_dept int8,
  1181. create_by int8,
  1182. create_time timestamp,
  1183. update_by int8,
  1184. update_time timestamp,
  1185. service varchar(20) default 'minio'::varchar,
  1186. constraint sys_oss_pk primary key (oss_id)
  1187. );
  1188. comment on table sys_oss is 'OSS对象存储表';
  1189. comment on column sys_oss.oss_id is '对象存储主键';
  1190. comment on column sys_oss.tenant_id is '租户编码';
  1191. comment on column sys_oss.file_name is '文件名';
  1192. comment on column sys_oss.original_name is '原名';
  1193. comment on column sys_oss.file_suffix is '文件后缀名';
  1194. comment on column sys_oss.url is 'URL地址';
  1195. comment on column sys_oss.ext1 is '扩展字段';
  1196. comment on column sys_oss.create_by is '上传人';
  1197. comment on column sys_oss.create_dept is '创建部门';
  1198. comment on column sys_oss.create_time is '创建时间';
  1199. comment on column sys_oss.update_by is '更新者';
  1200. comment on column sys_oss.update_time is '更新时间';
  1201. comment on column sys_oss.service is '服务商';
  1202. -- ----------------------------
  1203. -- OSS对象存储动态配置表
  1204. -- ----------------------------
  1205. create table if not exists sys_oss_config
  1206. (
  1207. oss_config_id int8,
  1208. tenant_id varchar(20) default '000000'::varchar,
  1209. config_key varchar(20) default ''::varchar not null,
  1210. access_key varchar(255) default ''::varchar,
  1211. secret_key varchar(255) default ''::varchar,
  1212. bucket_name varchar(255) default ''::varchar,
  1213. prefix varchar(255) default ''::varchar,
  1214. endpoint varchar(255) default ''::varchar,
  1215. domain varchar(255) default ''::varchar,
  1216. is_https char default 'N'::bpchar,
  1217. region varchar(255) default ''::varchar,
  1218. access_policy char(1) default '1'::bpchar not null,
  1219. status char default '1'::bpchar,
  1220. ext1 varchar(255) default ''::varchar,
  1221. create_dept int8,
  1222. create_by int8,
  1223. create_time timestamp,
  1224. update_by int8,
  1225. update_time timestamp,
  1226. remark varchar(500) default ''::varchar,
  1227. constraint sys_oss_config_pk primary key (oss_config_id)
  1228. );
  1229. comment on table sys_oss_config is '对象存储配置表';
  1230. comment on column sys_oss_config.oss_config_id is '主键';
  1231. comment on column sys_oss_config.tenant_id is '租户编码';
  1232. comment on column sys_oss_config.config_key is '配置key';
  1233. comment on column sys_oss_config.access_key is 'accessKey';
  1234. comment on column sys_oss_config.secret_key is '秘钥';
  1235. comment on column sys_oss_config.bucket_name is '桶名称';
  1236. comment on column sys_oss_config.prefix is '前缀';
  1237. comment on column sys_oss_config.endpoint is '访问站点';
  1238. comment on column sys_oss_config.domain is '自定义域名';
  1239. comment on column sys_oss_config.is_https is '是否https(Y=是,N=否)';
  1240. comment on column sys_oss_config.region is '域';
  1241. comment on column sys_oss_config.access_policy is '桶权限类型(0=private 1=public 2=custom)';
  1242. comment on column sys_oss_config.status is '是否默认(0=是,1=否)';
  1243. comment on column sys_oss_config.ext1 is '扩展字段';
  1244. comment on column sys_oss_config.create_dept is '创建部门';
  1245. comment on column sys_oss_config.create_by is '创建者';
  1246. comment on column sys_oss_config.create_time is '创建时间';
  1247. comment on column sys_oss_config.update_by is '更新者';
  1248. comment on column sys_oss_config.update_time is '更新时间';
  1249. comment on column sys_oss_config.remark is '备注';
  1250. insert into sys_oss_config values (1, '000000', 'minio', 'ruoyi', 'ruoyi123', 'ruoyi', '', '127.0.0.1:9000', '','N', '', '1', '0', '', 103, 1, now(), 1, now(), null);
  1251. insert into sys_oss_config values (2, '000000', 'qiniu', 'XXXXXXXXXXXXXXX', 'XXXXXXXXXXXXXXX', 'ruoyi', '', 's3-cn-north-1.qiniucs.com', '','N', '', '1', '1', '', 103, 1, now(), 1, now(), null);
  1252. insert into sys_oss_config values (3, '000000', 'aliyun', 'XXXXXXXXXXXXXXX', 'XXXXXXXXXXXXXXX', 'ruoyi', '', 'oss-cn-beijing.aliyuncs.com', '','N', '', '1', '1', '', 103, 1, now(), 1, now(), null);
  1253. insert into sys_oss_config values (4, '000000', 'qcloud', 'XXXXXXXXXXXXXXX', 'XXXXXXXXXXXXXXX', 'ruoyi-1240000000', '', 'cos.ap-beijing.myqcloud.com', '','N', 'ap-beijing', '1', '1', '', 103, 1, now(), 1, now(), null);
  1254. insert into sys_oss_config values (5, '000000', 'image', 'ruoyi', 'ruoyi123', 'ruoyi', 'image', '127.0.0.1:9000', '','N', '', '1', '1', '', 103, 1, now(), 1, now(), NULL);
  1255. -- ----------------------------
  1256. -- 系统授权表
  1257. -- ----------------------------
  1258. create table sys_client (
  1259. id int8,
  1260. client_id varchar(64) default ''::varchar,
  1261. client_key varchar(32) default ''::varchar,
  1262. client_secret varchar(255) default ''::varchar,
  1263. grant_type varchar(255) default ''::varchar,
  1264. device_type varchar(32) default ''::varchar,
  1265. active_timeout int4 default 1800,
  1266. timeout int4 default 604800,
  1267. status char(1) default '0'::bpchar,
  1268. del_flag char(1) default '0'::bpchar,
  1269. create_dept int8,
  1270. create_by int8,
  1271. create_time timestamp,
  1272. update_by int8,
  1273. update_time timestamp,
  1274. constraint sys_client_pk primary key (id)
  1275. );
  1276. comment on table sys_client is '系统授权表';
  1277. comment on column sys_client.id is '主键';
  1278. comment on column sys_client.client_id is '客户端id';
  1279. comment on column sys_client.client_key is '客户端key';
  1280. comment on column sys_client.client_secret is '客户端秘钥';
  1281. comment on column sys_client.grant_type is '授权类型';
  1282. comment on column sys_client.device_type is '设备类型';
  1283. comment on column sys_client.active_timeout is 'token活跃超时时间';
  1284. comment on column sys_client.timeout is 'token固定超时';
  1285. comment on column sys_client.status is '状态(0正常 1停用)';
  1286. comment on column sys_client.del_flag is '删除标志(0代表存在 1代表删除)';
  1287. comment on column sys_client.create_dept is '创建部门';
  1288. comment on column sys_client.create_by is '创建者';
  1289. comment on column sys_client.create_time is '创建时间';
  1290. comment on column sys_client.update_by is '更新者';
  1291. comment on column sys_client.update_time is '更新时间';
  1292. insert into sys_client values (1, 'e5cd7e4891bf95d1d19206ce24a7b32e', 'pc', 'pc123', 'password,social', 'pc', 1800, 604800, 0, 0, 103, 1, now(), 1, now());
  1293. insert into sys_client values (2, '428a8310cd442757ae699df5d894f051', 'app', 'app123', 'password,sms,social', 'android', 1800, 604800, 0, 0, 103, 1, now(), 1, now());
  1294. create table if not exists test_demo
  1295. (
  1296. id int8,
  1297. tenant_id varchar(20) default '000000',
  1298. dept_id int8,
  1299. user_id int8,
  1300. order_num int4 default 0,
  1301. test_key varchar(255),
  1302. value varchar(255),
  1303. version int4 default 0,
  1304. create_dept int8,
  1305. create_time timestamp,
  1306. create_by int8,
  1307. update_time timestamp,
  1308. update_by int8,
  1309. del_flag int4 default 0
  1310. );
  1311. comment on table test_demo is '测试单表';
  1312. comment on column test_demo.id is '主键';
  1313. comment on column test_demo.tenant_id is '租户编号';
  1314. comment on column test_demo.dept_id is '部门id';
  1315. comment on column test_demo.user_id is '用户id';
  1316. comment on column test_demo.order_num is '排序号';
  1317. comment on column test_demo.test_key is 'key键';
  1318. comment on column test_demo.value is '值';
  1319. comment on column test_demo.version is '版本';
  1320. comment on column test_demo.create_dept is '创建部门';
  1321. comment on column test_demo.create_time is '创建时间';
  1322. comment on column test_demo.create_by is '创建人';
  1323. comment on column test_demo.update_time is '更新时间';
  1324. comment on column test_demo.update_by is '更新人';
  1325. comment on column test_demo.del_flag is '删除标志';
  1326. create table if not exists test_tree
  1327. (
  1328. id int8,
  1329. tenant_id varchar(20) default '000000',
  1330. parent_id int8 default 0,
  1331. dept_id int8,
  1332. user_id int8,
  1333. tree_name varchar(255),
  1334. version int4 default 0,
  1335. create_dept int8,
  1336. create_time timestamp,
  1337. create_by int8,
  1338. update_time timestamp,
  1339. update_by int8,
  1340. del_flag integer default 0
  1341. );
  1342. comment on table test_tree is '测试树表';
  1343. comment on column test_tree.id is '主键';
  1344. comment on column test_tree.tenant_id is '租户编号';
  1345. comment on column test_tree.parent_id is '父id';
  1346. comment on column test_tree.dept_id is '部门id';
  1347. comment on column test_tree.user_id is '用户id';
  1348. comment on column test_tree.tree_name is '值';
  1349. comment on column test_tree.version is '版本';
  1350. comment on column test_tree.create_dept is '创建部门';
  1351. comment on column test_tree.create_time is '创建时间';
  1352. comment on column test_tree.create_by is '创建人';
  1353. comment on column test_tree.update_time is '更新时间';
  1354. comment on column test_tree.update_by is '更新人';
  1355. comment on column test_tree.del_flag is '删除标志';
  1356. insert into test_demo values (1, '000000', 102, 4, 1, '测试数据权限', '测试', 0, 103, now(), 1, NULL, NULL, 0);
  1357. insert into test_demo values (2, '000000', 102, 3, 2, '子节点1', '111', 0, 103, now(), 1, NULL, NULL, 0);
  1358. insert into test_demo values (3, '000000', 102, 3, 3, '子节点2', '222', 0, 103, now(), 1, NULL, NULL, 0);
  1359. insert into test_demo values (4, '000000', 108, 4, 4, '测试数据', 'demo', 0, 103, now(), 1, NULL, NULL, 0);
  1360. insert into test_demo values (5, '000000', 108, 3, 13, '子节点11', '1111', 0, 103, now(), 1, NULL, NULL, 0);
  1361. insert into test_demo values (6, '000000', 108, 3, 12, '子节点22', '2222', 0, 103, now(), 1, NULL, NULL, 0);
  1362. insert into test_demo values (7, '000000', 108, 3, 11, '子节点33', '3333', 0, 103, now(), 1, NULL, NULL, 0);
  1363. insert into test_demo values (8, '000000', 108, 3, 10, '子节点44', '4444', 0, 103, now(), 1, NULL, NULL, 0);
  1364. insert into test_demo values (9, '000000', 108, 3, 9, '子节点55', '5555', 0, 103, now(), 1, NULL, NULL, 0);
  1365. insert into test_demo values (10, '000000', 108, 3, 8, '子节点66', '6666', 0, 103, now(), 1, NULL, NULL, 0);
  1366. insert into test_demo values (11, '000000', 108, 3, 7, '子节点77', '7777', 0, 103, now(), 1, NULL, NULL, 0);
  1367. insert into test_demo values (12, '000000', 108, 3, 6, '子节点88', '8888', 0, 103, now(), 1, NULL, NULL, 0);
  1368. insert into test_demo values (13, '000000', 108, 3, 5, '子节点99', '9999', 0, 103, now(), 1, NULL, NULL, 0);
  1369. insert into test_tree values (1, '000000', 0, 102, 4, '测试数据权限', 0, 103, now(), 1, NULL, NULL, 0);
  1370. insert into test_tree values (2, '000000', 1, 102, 3, '子节点1', 0, 103, now(), 1, NULL, NULL, 0);
  1371. insert into test_tree values (3, '000000', 2, 102, 3, '子节点2', 0, 103, now(), 1, NULL, NULL, 0);
  1372. insert into test_tree values (4, '000000', 0, 108, 4, '测试树1', 0, 103, now(), 1, NULL, NULL, 0);
  1373. insert into test_tree values (5, '000000', 4, 108, 3, '子节点11', 0, 103, now(), 1, NULL, NULL, 0);
  1374. insert into test_tree values (6, '000000', 4, 108, 3, '子节点22', 0, 103, now(), 1, NULL, NULL, 0);
  1375. insert into test_tree values (7, '000000', 4, 108, 3, '子节点33', 0, 103, now(), 1, NULL, NULL, 0);
  1376. insert into test_tree values (8, '000000', 5, 108, 3, '子节点44', 0, 103, now(), 1, NULL, NULL, 0);
  1377. insert into test_tree values (9, '000000', 6, 108, 3, '子节点55', 0, 103, now(), 1, NULL, NULL, 0);
  1378. insert into test_tree values (10, '000000', 7, 108, 3, '子节点66', 0, 103, now(), 1, NULL, NULL, 0);
  1379. insert into test_tree values (11, '000000', 7, 108, 3, '子节点77', 0, 103, now(), 1, NULL, NULL, 0);
  1380. insert into test_tree values (12, '000000', 10, 108, 3, '子节点88', 0, 103, now(), 1, NULL, NULL, 0);
  1381. insert into test_tree values (13, '000000', 10, 108, 3, '子节点99', 0, 103, now(), 1, NULL, NULL, 0);
  1382. -- for AT mode you must to init this sql for you business database. the seata server not need it.
  1383. CREATE TABLE IF NOT EXISTS public.undo_log
  1384. (
  1385. id SERIAL NOT NULL,
  1386. branch_id BIGINT NOT NULL,
  1387. xid VARCHAR(128) NOT NULL,
  1388. context VARCHAR(128) NOT NULL,
  1389. rollback_info BYTEA NOT NULL,
  1390. log_status INT NOT NULL,
  1391. log_created TIMESTAMP(0) NOT NULL,
  1392. log_modified TIMESTAMP(0) NOT NULL,
  1393. CONSTRAINT pk_undo_log PRIMARY KEY (id),
  1394. CONSTRAINT ux_undo_log UNIQUE (xid, branch_id)
  1395. );
  1396. CREATE INDEX ix_log_created ON undo_log(log_created);
  1397. COMMENT ON TABLE public.undo_log IS 'AT transaction mode undo table';
  1398. COMMENT ON COLUMN public.undo_log.branch_id IS 'branch transaction id';
  1399. COMMENT ON COLUMN public.undo_log.xid IS 'global transaction id';
  1400. COMMENT ON COLUMN public.undo_log.context IS 'undo_log context,such as serialization';
  1401. COMMENT ON COLUMN public.undo_log.rollback_info IS 'rollback info';
  1402. COMMENT ON COLUMN public.undo_log.log_status IS '0:normal status,1:defense status';
  1403. COMMENT ON COLUMN public.undo_log.log_created IS 'create datetime';
  1404. COMMENT ON COLUMN public.undo_log.log_modified IS 'modify datetime';
  1405. CREATE SEQUENCE IF NOT EXISTS undo_log_id_seq INCREMENT BY 1 MINVALUE 1 ;
  1406. -- 字符串自动转时间 避免框架时间查询报错问题
  1407. create or replace function cast_varchar_to_timestamp(varchar) returns timestamptz as $$
  1408. select to_timestamp($1, 'yyyy-mm-dd hh24:mi:ss');
  1409. $$ language sql strict ;
  1410. create cast (varchar as timestamptz) with function cast_varchar_to_timestamp as IMPLICIT;