postgres_ry_cloud.sql 104 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268126912701271127212731274127512761277127812791280128112821283128412851286128712881289129012911292129312941295129612971298129913001301130213031304130513061307130813091310131113121313131413151316131713181319132013211322132313241325132613271328132913301331133213331334133513361337133813391340134113421343134413451346134713481349135013511352135313541355135613571358135913601361136213631364136513661367136813691370137113721373137413751376137713781379138013811382138313841385138613871388138913901391139213931394139513961397139813991400140114021403140414051406140714081409141014111412141314141415141614171418141914201421142214231424142514261427142814291430143114321433143414351436143714381439144014411442144314441445144614471448144914501451145214531454145514561457145814591460146114621463146414651466146714681469147014711472147314741475147614771478147914801481148214831484148514861487148814891490149114921493149414951496149714981499150015011502150315041505
  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', '', 'waiting', 103, 1, now(), NULL, NULL, '');
  555. 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');
  556. 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, '');
  557. INSERT INTO sys_menu VALUES ('11623', '流程分类查询', '11622', '1', '#', '', '', '1', '0', 'F', '0', '0', 'workflow:category:query', '#', 103, 1, now(), NULL, NULL, '');
  558. INSERT INTO sys_menu VALUES ('11624', '流程分类新增', '11622', '2', '#', '', '', '1', '0', 'F', '0', '0', 'workflow:category:add', '#', 103, 1, now(), NULL, NULL, '');
  559. INSERT INTO sys_menu VALUES ('11625', '流程分类修改', '11622', '3', '#', '', '', '1', '0', 'F', '0', '0', 'workflow:category:edit', '#', 103, 1, now(), NULL, NULL, '');
  560. INSERT INTO sys_menu VALUES ('11626', '流程分类删除', '11622', '4', '#', '', '', '1', '0', 'F', '0', '0', 'workflow:category:remove', '#', 103, 1, now(), NULL, NULL, '');
  561. INSERT INTO sys_menu VALUES ('11627', '流程分类导出', '11622', '5', '#', '', '', '1', '0', 'F', '0', '0', 'workflow:category:export', '#', 103, 1, now(), NULL, NULL, '');
  562. 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, '请假申请菜单');
  563. INSERT INTO sys_menu VALUES ('11639', '请假申请查询', '11638', '1', '#', '', '', '1', '0', 'F', '0', '0', 'workflow:leave:query', '#', 103, 1, now(), NULL, NULL, '');
  564. INSERT INTO sys_menu VALUES ('11640', '请假申请新增', '11638', '2', '#', '', '', '1', '0', 'F', '0', '0', 'workflow:leave:add', '#', 103, 1, now(), NULL, NULL, '');
  565. INSERT INTO sys_menu VALUES ('11641', '请假申请修改', '11638', '3', '#', '', '', '1', '0', 'F', '0', '0', 'workflow:leave:edit', '#', 103, 1, now(), NULL, NULL, '');
  566. INSERT INTO sys_menu VALUES ('11642', '请假申请删除', '11638', '4', '#', '', '', '1', '0', 'F', '0', '0', 'workflow:leave:remove', '#', 103, 1, now(), NULL, NULL, '');
  567. INSERT INTO sys_menu VALUES ('11643', '请假申请导出', '11638', '5', '#', '', '', '1', '0', 'F', '0', '0', 'workflow:leave:export', '#', 103, 1, now(), NULL, NULL, '');
  568. -- 流程实例管理相关按钮
  569. INSERT INTO sys_menu VALUES ('11653', '流程实例查询', '11621', '1', '#', '', '', '1', '0', 'F', '0', '0', 'workflow:instance:query', '#', 103, 1, now(), NULL, NULL, '');
  570. INSERT INTO sys_menu VALUES ('11654', '流程变量查询', '11621', '2', '#', '', '', '1', '0', 'F', '0', '0', 'workflow:instance:variableQuery', '#', 103, 1, now(), NULL, NULL, '');
  571. INSERT INTO sys_menu VALUES ('11655', '流程变量修改', '11621', '3', '#', '', '', '1', '0', 'F', '0', '0', 'workflow:instance:variable', '#', 103, 1, now(), NULL, NULL, '');
  572. INSERT INTO sys_menu VALUES ('11656', '流程实例激活/挂起', '11621', '4', '#', '', '', '1', '0', 'F', '0', '0', 'workflow:instance:active', '#', 103, 1, now(), NULL, NULL, '');
  573. INSERT INTO sys_menu VALUES ('11657', '流程实例删除', '11621', '5', '#', '', '', '1', '0', 'F', '0', '0', 'workflow:instance:remove', '#', 103, 1, now(), NULL, NULL, '');
  574. INSERT INTO sys_menu VALUES ('11658', '流程实例作废', '11621', '6', '#', '', '', '1', '0', 'F', '0', '0', 'workflow:instance:invalid', '#', 103, 1, now(), NULL, NULL, '');
  575. INSERT INTO sys_menu VALUES ('11659', '流程实例撤销', '11621', '7', '#', '', '', '1', '0', 'F', '0', '0', 'workflow:instance:cancel', '#', 103, 1, now(), NULL, NULL, '');
  576. -- 流程定义管理相关按钮
  577. INSERT INTO sys_menu VALUES ('11644', '流程定义查询', '11620', '1', '#', '', '', '1', '0', 'F', '0', '0', 'workflow:definition:query', '#', 103, 1, now(), NULL, NULL, '');
  578. INSERT INTO sys_menu VALUES ('11645', '流程定义新增', '11620', '2', '#', '', '', '1', '0', 'F', '0', '0', 'workflow:definition:add', '#', 103, 1, now(), NULL, NULL, '');
  579. INSERT INTO sys_menu VALUES ('11646', '流程定义修改', '11620', '3', '#', '', '', '1', '0', 'F', '0', '0', 'workflow:definition:edit', '#', 103, 1, now(), NULL, NULL, '');
  580. INSERT INTO sys_menu VALUES ('11647', '流程定义删除', '11620', '4', '#', '', '', '1', '0', 'F', '0', '0', 'workflow:definition:remove', '#', 103, 1, now(), NULL, NULL, '');
  581. INSERT INTO sys_menu VALUES ('11648', '流程定义导出', '11620', '5', '#', '', '', '1', '0', 'F', '0', '0', 'workflow:definition:export', '#', 103, 1, now(), NULL, NULL, '');
  582. INSERT INTO sys_menu VALUES ('11649', '流程定义导入', '11620', '6', '#', '', '', '1', '0', 'F', '0', '0', 'workflow:definition:import', '#', 103, 1, now(), NULL, NULL, '');
  583. INSERT INTO sys_menu VALUES ('11650', '流程定义发布/取消发布', '11620', '7', '#', '', '', '1', '0', 'F', '0', '0', 'workflow:definition:publish', '#', 103, 1, now(), NULL, NULL, '');
  584. INSERT INTO sys_menu VALUES ('11651', '流程定义复制', '11620', '8', '#', '', '', '1', '0', 'F', '0', '0', 'workflow:definition:copy', '#', 103, 1, now(), NULL, NULL, '');
  585. INSERT INTO sys_menu VALUES ('11652', '流程定义激活/挂起', '11620', '9', '#', '', '', '1', '0', 'F', '0', '0', 'workflow:definition:active', '#', 103, 1, now(), NULL, NULL, '');
  586. 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(), '流程达式定义菜单');
  587. INSERT INTO sys_menu VALUES ('11802', '流程spel表达式定义查询', '11801', 1, '#', '', NULL, 1, 0, 'F', '0', '0', 'workflow:spel:query', '#', 103, 1, now(), NULL, NULL, '');
  588. INSERT INTO sys_menu VALUES ('11803', '流程spel表达式定义新增', '11801', 2, '#', '', NULL, 1, 0, 'F', '0', '0', 'workflow:spel:add', '#', 103, 1, now(), NULL, NULL, '');
  589. INSERT INTO sys_menu VALUES ('11804', '流程spel表达式定义修改', '11801', 3, '#', '', NULL, 1, 0, 'F', '0', '0', 'workflow:spel:edit', '#', 103, 1, now(), NULL, NULL, '');
  590. INSERT INTO sys_menu VALUES ('11805', '流程spel表达式定义删除', '11801', 4, '#', '', NULL, 1, 0, 'F', '0', '0', 'workflow:spel:remove', '#', 103, 1, now(), NULL, NULL, '');
  591. INSERT INTO sys_menu VALUES ('11806', '流程spel表达式定义导出', '11801', 5, '#', '', NULL, 1, 0, 'F', '0', '0', 'workflow:spel:export', '#', 103, 1, now(), NULL, NULL, '');
  592. -- ----------------------------
  593. -- 6、用户和角色关联表 用户N-1角色
  594. -- ----------------------------
  595. create table if not exists sys_user_role
  596. (
  597. user_id int8 not null,
  598. role_id int8 not null,
  599. constraint sys_user_role_pk primary key (user_id, role_id)
  600. );
  601. comment on table sys_user_role is '用户和角色关联表';
  602. comment on column sys_user_role.user_id is '用户ID';
  603. comment on column sys_user_role.role_id is '角色ID';
  604. -- ----------------------------
  605. -- 初始化-用户和角色关联表数据
  606. -- ----------------------------
  607. insert into sys_user_role values ('1', '1');
  608. insert into sys_user_role values ('3', '3');
  609. insert into sys_user_role values ('4', '4');
  610. -- ----------------------------
  611. -- 7、角色和菜单关联表 角色1-N菜单
  612. -- ----------------------------
  613. create table if not exists sys_role_menu
  614. (
  615. role_id int8 not null,
  616. menu_id int8 not null,
  617. constraint sys_role_menu_pk primary key (role_id, menu_id)
  618. );
  619. comment on table sys_role_menu is '角色和菜单关联表';
  620. comment on column sys_role_menu.role_id is '角色ID';
  621. comment on column sys_role_menu.menu_id is '菜单ID';
  622. -- ----------------------------
  623. -- 初始化-角色和菜单关联表数据
  624. -- ----------------------------
  625. insert into sys_role_menu values ('3', '1');
  626. insert into sys_role_menu values ('3', '5');
  627. insert into sys_role_menu values ('3', '100');
  628. insert into sys_role_menu values ('3', '101');
  629. insert into sys_role_menu values ('3', '102');
  630. insert into sys_role_menu values ('3', '103');
  631. insert into sys_role_menu values ('3', '104');
  632. insert into sys_role_menu values ('3', '105');
  633. insert into sys_role_menu values ('3', '106');
  634. insert into sys_role_menu values ('3', '107');
  635. insert into sys_role_menu values ('3', '108');
  636. insert into sys_role_menu values ('3', '118');
  637. insert into sys_role_menu values ('3', '123');
  638. insert into sys_role_menu values ('3', '130');
  639. insert into sys_role_menu values ('3', '131');
  640. insert into sys_role_menu values ('3', '132');
  641. insert into sys_role_menu values ('3', '133');
  642. insert into sys_role_menu values ('3', '500');
  643. insert into sys_role_menu values ('3', '501');
  644. insert into sys_role_menu values ('3', '1001');
  645. insert into sys_role_menu values ('3', '1002');
  646. insert into sys_role_menu values ('3', '1003');
  647. insert into sys_role_menu values ('3', '1004');
  648. insert into sys_role_menu values ('3', '1005');
  649. insert into sys_role_menu values ('3', '1006');
  650. insert into sys_role_menu values ('3', '1007');
  651. insert into sys_role_menu values ('3', '1008');
  652. insert into sys_role_menu values ('3', '1009');
  653. insert into sys_role_menu values ('3', '1010');
  654. insert into sys_role_menu values ('3', '1011');
  655. insert into sys_role_menu values ('3', '1012');
  656. insert into sys_role_menu values ('3', '1013');
  657. insert into sys_role_menu values ('3', '1014');
  658. insert into sys_role_menu values ('3', '1015');
  659. insert into sys_role_menu values ('3', '1016');
  660. insert into sys_role_menu values ('3', '1017');
  661. insert into sys_role_menu values ('3', '1018');
  662. insert into sys_role_menu values ('3', '1019');
  663. insert into sys_role_menu values ('3', '1020');
  664. insert into sys_role_menu values ('3', '1021');
  665. insert into sys_role_menu values ('3', '1022');
  666. insert into sys_role_menu values ('3', '1023');
  667. insert into sys_role_menu values ('3', '1024');
  668. insert into sys_role_menu values ('3', '1025');
  669. insert into sys_role_menu values ('3', '1026');
  670. insert into sys_role_menu values ('3', '1027');
  671. insert into sys_role_menu values ('3', '1028');
  672. insert into sys_role_menu values ('3', '1029');
  673. insert into sys_role_menu values ('3', '1030');
  674. insert into sys_role_menu values ('3', '1031');
  675. insert into sys_role_menu values ('3', '1032');
  676. insert into sys_role_menu values ('3', '1033');
  677. insert into sys_role_menu values ('3', '1034');
  678. insert into sys_role_menu values ('3', '1035');
  679. insert into sys_role_menu values ('3', '1036');
  680. insert into sys_role_menu values ('3', '1037');
  681. insert into sys_role_menu values ('3', '1038');
  682. insert into sys_role_menu values ('3', '1039');
  683. insert into sys_role_menu values ('3', '1040');
  684. insert into sys_role_menu values ('3', '1041');
  685. insert into sys_role_menu values ('3', '1042');
  686. insert into sys_role_menu values ('3', '1043');
  687. insert into sys_role_menu values ('3', '1044');
  688. insert into sys_role_menu values ('3', '1045');
  689. insert into sys_role_menu values ('3', '1050');
  690. insert into sys_role_menu values ('3', '1061');
  691. insert into sys_role_menu values ('3', '1062');
  692. insert into sys_role_menu values ('3', '1063');
  693. insert into sys_role_menu values ('3', '1064');
  694. insert into sys_role_menu values ('3', '1065');
  695. insert into sys_role_menu values ('3', '1500');
  696. insert into sys_role_menu values ('3', '1501');
  697. insert into sys_role_menu values ('3', '1502');
  698. insert into sys_role_menu values ('3', '1503');
  699. insert into sys_role_menu values ('3', '1504');
  700. insert into sys_role_menu values ('3', '1505');
  701. insert into sys_role_menu values ('3', '1506');
  702. insert into sys_role_menu values ('3', '1507');
  703. insert into sys_role_menu values ('3', '1508');
  704. insert into sys_role_menu values ('3', '1509');
  705. insert into sys_role_menu values ('3', '1510');
  706. insert into sys_role_menu values ('3', '1511');
  707. insert into sys_role_menu values ('3', '1600');
  708. insert into sys_role_menu values ('3', '1601');
  709. insert into sys_role_menu values ('3', '1602');
  710. insert into sys_role_menu values ('3', '1603');
  711. insert into sys_role_menu values ('3', '1620');
  712. insert into sys_role_menu values ('3', '1621');
  713. insert into sys_role_menu values ('3', '1622');
  714. insert into sys_role_menu values ('3', '1623');
  715. insert into sys_role_menu values ('3', '11616');
  716. insert into sys_role_menu values ('3', '11618');
  717. insert into sys_role_menu values ('3', '11619');
  718. insert into sys_role_menu values ('3', '11622');
  719. insert into sys_role_menu values ('3', '11623');
  720. insert into sys_role_menu values ('3', '11629');
  721. insert into sys_role_menu values ('3', '11632');
  722. insert into sys_role_menu values ('3', '11633');
  723. insert into sys_role_menu values ('3', '11638');
  724. insert into sys_role_menu values ('3', '11639');
  725. insert into sys_role_menu values ('3', '11640');
  726. insert into sys_role_menu values ('3', '11641');
  727. insert into sys_role_menu values ('3', '11642');
  728. insert into sys_role_menu values ('3', '11643');
  729. insert into sys_role_menu values ('3', '11701');
  730. insert into sys_role_menu values ('4', '5');
  731. insert into sys_role_menu values ('4', '1500');
  732. insert into sys_role_menu values ('4', '1501');
  733. insert into sys_role_menu values ('4', '1502');
  734. insert into sys_role_menu values ('4', '1503');
  735. insert into sys_role_menu values ('4', '1504');
  736. insert into sys_role_menu values ('4', '1505');
  737. insert into sys_role_menu values ('4', '1506');
  738. insert into sys_role_menu values ('4', '1507');
  739. insert into sys_role_menu values ('4', '1508');
  740. insert into sys_role_menu values ('4', '1509');
  741. insert into sys_role_menu values ('4', '1510');
  742. insert into sys_role_menu values ('4', '1511');
  743. -- ----------------------------
  744. -- 8、角色和部门关联表 角色1-N部门
  745. -- ----------------------------
  746. create table if not exists sys_role_dept
  747. (
  748. role_id int8 not null,
  749. dept_id int8 not null,
  750. constraint sys_role_dept_pk primary key (role_id, dept_id)
  751. );
  752. comment on table sys_role_dept is '角色和部门关联表';
  753. comment on column sys_role_dept.role_id is '角色ID';
  754. comment on column sys_role_dept.dept_id is '部门ID';
  755. -- ----------------------------
  756. -- 9、用户与岗位关联表 用户1-N岗位
  757. -- ----------------------------
  758. create table if not exists sys_user_post
  759. (
  760. user_id int8 not null,
  761. post_id int8 not null,
  762. constraint sys_user_post_pk primary key (user_id, post_id)
  763. );
  764. comment on table sys_user_post is '用户与岗位关联表';
  765. comment on column sys_user_post.user_id is '用户ID';
  766. comment on column sys_user_post.post_id is '岗位ID';
  767. -- ----------------------------
  768. -- 初始化-用户与岗位关联表数据
  769. -- ----------------------------
  770. insert into sys_user_post values ('1', '1');
  771. -- ----------------------------
  772. -- 10、操作日志记录
  773. -- ----------------------------
  774. create table if not exists sys_oper_log
  775. (
  776. oper_id int8,
  777. tenant_id varchar(20) default '000000'::varchar,
  778. title varchar(50) default ''::varchar,
  779. business_type int4 default 0,
  780. method varchar(100) default ''::varchar,
  781. request_method varchar(10) default ''::varchar,
  782. operator_type int4 default 0,
  783. oper_name varchar(50) default ''::varchar,
  784. dept_name varchar(50) default ''::varchar,
  785. oper_url varchar(255) default ''::varchar,
  786. oper_ip varchar(128) default ''::varchar,
  787. oper_location varchar(255) default ''::varchar,
  788. oper_param varchar(4000) default ''::varchar,
  789. json_result varchar(4000) default ''::varchar,
  790. status int4 default 0,
  791. error_msg varchar(4000) default ''::varchar,
  792. oper_time timestamp,
  793. cost_time int8 default 0,
  794. constraint sys_oper_log_pk primary key (oper_id)
  795. );
  796. create index idx_sys_oper_log_bt ON sys_oper_log (business_type);
  797. create index idx_sys_oper_log_s ON sys_oper_log (status);
  798. create index idx_sys_oper_log_ot ON sys_oper_log (oper_time);
  799. comment on table sys_oper_log is '操作日志记录';
  800. comment on column sys_oper_log.oper_id is '日志主键';
  801. comment on column sys_oper_log.tenant_id is '租户编号';
  802. comment on column sys_oper_log.title is '模块标题';
  803. comment on column sys_oper_log.business_type is '业务类型(0其它 1新增 2修改 3删除)';
  804. comment on column sys_oper_log.method is '方法名称';
  805. comment on column sys_oper_log.request_method is '请求方式';
  806. comment on column sys_oper_log.operator_type is '操作类别(0其它 1后台用户 2手机端用户)';
  807. comment on column sys_oper_log.oper_name is '操作人员';
  808. comment on column sys_oper_log.dept_name is '部门名称';
  809. comment on column sys_oper_log.oper_url is '请求URL';
  810. comment on column sys_oper_log.oper_ip is '主机地址';
  811. comment on column sys_oper_log.oper_location is '操作地点';
  812. comment on column sys_oper_log.oper_param is '请求参数';
  813. comment on column sys_oper_log.json_result is '返回参数';
  814. comment on column sys_oper_log.status is '操作状态(0正常 1异常)';
  815. comment on column sys_oper_log.error_msg is '错误消息';
  816. comment on column sys_oper_log.oper_time is '操作时间';
  817. comment on column sys_oper_log.cost_time is '消耗时间';
  818. -- ----------------------------
  819. -- 11、字典类型表
  820. -- ----------------------------
  821. create table if not exists sys_dict_type
  822. (
  823. dict_id int8,
  824. tenant_id varchar(20) default '000000'::varchar,
  825. dict_name varchar(100) default ''::varchar,
  826. dict_type varchar(100) default ''::varchar,
  827. create_dept int8,
  828. create_by int8,
  829. create_time timestamp,
  830. update_by int8,
  831. update_time timestamp,
  832. remark varchar(500) default null::varchar,
  833. constraint sys_dict_type_pk primary key (dict_id)
  834. );
  835. create unique index sys_dict_type_index1 ON sys_dict_type (tenant_id, dict_type);
  836. comment on table sys_dict_type is '字典类型表';
  837. comment on column sys_dict_type.dict_id is '字典主键';
  838. comment on column sys_dict_type.tenant_id is '租户编号';
  839. comment on column sys_dict_type.dict_name is '字典名称';
  840. comment on column sys_dict_type.dict_type is '字典类型';
  841. comment on column sys_dict_type.create_dept is '创建部门';
  842. comment on column sys_dict_type.create_by is '创建者';
  843. comment on column sys_dict_type.create_time is '创建时间';
  844. comment on column sys_dict_type.update_by is '更新者';
  845. comment on column sys_dict_type.update_time is '更新时间';
  846. comment on column sys_dict_type.remark is '备注';
  847. insert into sys_dict_type values(1, '000000', '用户性别', 'sys_user_sex', 103, 1, now(), null, null, '用户性别列表');
  848. insert into sys_dict_type values(2, '000000', '菜单状态', 'sys_show_hide', 103, 1, now(), null, null, '菜单状态列表');
  849. insert into sys_dict_type values(3, '000000', '系统开关', 'sys_normal_disable', 103, 1, now(), null, null, '系统开关列表');
  850. insert into sys_dict_type values(6, '000000', '系统是否', 'sys_yes_no', 103, 1, now(), null, null, '系统是否列表');
  851. insert into sys_dict_type values(7, '000000', '通知类型', 'sys_notice_type', 103, 1, now(), null, null, '通知类型列表');
  852. insert into sys_dict_type values(8, '000000', '通知状态', 'sys_notice_status', 103, 1, now(), null, null, '通知状态列表');
  853. insert into sys_dict_type values(9, '000000', '操作类型', 'sys_oper_type', 103, 1, now(), null, null, '操作类型列表');
  854. insert into sys_dict_type values(10, '000000', '系统状态', 'sys_common_status', 103, 1, now(), null, null, '登录状态列表');
  855. insert into sys_dict_type values(11, '000000', '授权类型', 'sys_grant_type', 103, 1, now(), null, null, '认证授权类型');
  856. insert into sys_dict_type values(12, '000000', '设备类型', 'sys_device_type', 103, 1, now(), null, null, '客户端设备类型');
  857. INSERT INTO sys_dict_type VALUES (13, '000000', '业务状态', 'wf_business_status', 103, 1, now(), NULL, NULL, '业务状态列表');
  858. INSERT INTO sys_dict_type VALUES (14, '000000', '表单类型', 'wf_form_type', 103, 1, now(), NULL, NULL, '表单类型列表');
  859. INSERT INTO sys_dict_type VALUES (15, '000000', '任务状态', 'wf_task_status', 103, 1, now(), NULL, NULL, '任务状态');
  860. -- ----------------------------
  861. -- 12、字典数据表
  862. -- ----------------------------
  863. create table if not exists sys_dict_data
  864. (
  865. dict_code int8,
  866. tenant_id varchar(20) default '000000'::varchar,
  867. dict_sort int4 default 0,
  868. dict_label varchar(100) default ''::varchar,
  869. dict_value varchar(100) default ''::varchar,
  870. dict_type varchar(100) default ''::varchar,
  871. css_class varchar(100) default null::varchar,
  872. list_class varchar(100) default null::varchar,
  873. is_default char default 'N'::bpchar,
  874. create_dept int8,
  875. create_by int8,
  876. create_time timestamp,
  877. update_by int8,
  878. update_time timestamp,
  879. remark varchar(500) default null::varchar,
  880. constraint sys_dict_data_pk primary key (dict_code)
  881. );
  882. comment on table sys_dict_data is '字典数据表';
  883. comment on column sys_dict_data.dict_code is '字典编码';
  884. comment on column sys_dict_type.tenant_id is '租户编号';
  885. comment on column sys_dict_data.dict_sort is '字典排序';
  886. comment on column sys_dict_data.dict_label is '字典标签';
  887. comment on column sys_dict_data.dict_value is '字典键值';
  888. comment on column sys_dict_data.dict_type is '字典类型';
  889. comment on column sys_dict_data.css_class is '样式属性(其他样式扩展)';
  890. comment on column sys_dict_data.list_class is '表格回显样式';
  891. comment on column sys_dict_data.is_default is '是否默认(Y是 N否)';
  892. comment on column sys_dict_data.create_dept is '创建部门';
  893. comment on column sys_dict_data.create_by is '创建者';
  894. comment on column sys_dict_data.create_time is '创建时间';
  895. comment on column sys_dict_data.update_by is '更新者';
  896. comment on column sys_dict_data.update_time is '更新时间';
  897. comment on column sys_dict_data.remark is '备注';
  898. insert into sys_dict_data values(1, '000000', 1, '男', '0', 'sys_user_sex', '', '', 'Y', 103, 1, now(), null, null, '性别男');
  899. insert into sys_dict_data values(2, '000000', 2, '女', '1', 'sys_user_sex', '', '', 'N', 103, 1, now(), null, null, '性别女');
  900. insert into sys_dict_data values(3, '000000', 3, '未知', '2', 'sys_user_sex', '', '', 'N', 103, 1, now(), null, null, '性别未知');
  901. insert into sys_dict_data values(4, '000000', 1, '显示', '0', 'sys_show_hide', '', 'primary', 'Y', 103, 1, now(), null, null, '显示菜单');
  902. insert into sys_dict_data values(5, '000000', 2, '隐藏', '1', 'sys_show_hide', '', 'danger', 'N', 103, 1, now(), null, null, '隐藏菜单');
  903. insert into sys_dict_data values(6, '000000', 1, '正常', '0', 'sys_normal_disable', '', 'primary', 'Y', 103, 1, now(), null, null, '正常状态');
  904. insert into sys_dict_data values(7, '000000', 2, '停用', '1', 'sys_normal_disable', '', 'danger', 'N', 103, 1, now(), null, null, '停用状态');
  905. insert into sys_dict_data values(12, '000000', 1, '是', 'Y', 'sys_yes_no', '', 'primary', 'Y', 103, 1, now(), null, null, '系统默认是');
  906. insert into sys_dict_data values(13, '000000', 2, '否', 'N', 'sys_yes_no', '', 'danger', 'N', 103, 1, now(), null, null, '系统默认否');
  907. insert into sys_dict_data values(14, '000000', 1, '通知', '1', 'sys_notice_type', '', 'warning', 'Y', 103, 1, now(), null, null, '通知');
  908. insert into sys_dict_data values(15, '000000', 2, '公告', '2', 'sys_notice_type', '', 'success', 'N', 103, 1, now(), null, null, '公告');
  909. insert into sys_dict_data values(16, '000000', 1, '正常', '0', 'sys_notice_status', '', 'primary', 'Y', 103, 1, now(), null, null, '正常状态');
  910. insert into sys_dict_data values(17, '000000', 2, '关闭', '1', 'sys_notice_status', '', 'danger', 'N', 103, 1, now(), null, null, '关闭状态');
  911. insert into sys_dict_data values(29, '000000', 99, '其他', '0', 'sys_oper_type', '', 'info', 'N', 103, 1, now(), null, null, '其他操作');
  912. insert into sys_dict_data values(18, '000000', 1, '新增', '1', 'sys_oper_type', '', 'info', 'N', 103, 1, now(), null, null, '新增操作');
  913. insert into sys_dict_data values(19, '000000', 2, '修改', '2', 'sys_oper_type', '', 'info', 'N', 103, 1, now(), null, null, '修改操作');
  914. insert into sys_dict_data values(20, '000000', 3, '删除', '3', 'sys_oper_type', '', 'danger', 'N', 103, 1, now(), null, null, '删除操作');
  915. insert into sys_dict_data values(21, '000000', 4, '授权', '4', 'sys_oper_type', '', 'primary', 'N', 103, 1, now(), null, null, '授权操作');
  916. insert into sys_dict_data values(22, '000000', 5, '导出', '5', 'sys_oper_type', '', 'warning', 'N', 103, 1, now(), null, null, '导出操作');
  917. insert into sys_dict_data values(23, '000000', 6, '导入', '6', 'sys_oper_type', '', 'warning', 'N', 103, 1, now(), null, null, '导入操作');
  918. insert into sys_dict_data values(24, '000000', 7, '强退', '7', 'sys_oper_type', '', 'danger', 'N', 103, 1, now(), null, null, '强退操作');
  919. insert into sys_dict_data values(25, '000000', 8, '生成代码', '8', 'sys_oper_type', '', 'warning', 'N', 103, 1, now(), null, null, '生成操作');
  920. insert into sys_dict_data values(26, '000000', 9, '清空数据', '9', 'sys_oper_type', '', 'danger', 'N', 103, 1, now(), null, null, '清空操作');
  921. insert into sys_dict_data values(27, '000000', 1, '成功', '0', 'sys_common_status', '', 'primary', 'N', 103, 1, now(), null, null, '正常状态');
  922. insert into sys_dict_data values(28, '000000', 2, '失败', '1', 'sys_common_status', '', 'danger', 'N', 103, 1, now(), null, null, '停用状态');
  923. insert into sys_dict_data values(30, '000000', 0, '密码认证', 'password', 'sys_grant_type', '', 'default', 'N', 103, 1, now(), null, null, '密码认证');
  924. insert into sys_dict_data values(31, '000000', 0, '短信认证', 'sms', 'sys_grant_type', '', 'default', 'N', 103, 1, now(), null, null, '短信认证');
  925. insert into sys_dict_data values(32, '000000', 0, '邮件认证', 'email', 'sys_grant_type', '', 'default', 'N', 103, 1, now(), null, null, '邮件认证');
  926. insert into sys_dict_data values(33, '000000', 0, '小程序认证', 'xcx', 'sys_grant_type', '', 'default', 'N', 103, 1, now(), null, null, '小程序认证');
  927. insert into sys_dict_data values(34, '000000', 0, '三方登录认证', 'social', 'sys_grant_type', '', 'default', 'N', 103, 1, now(), null, null, '三方登录认证');
  928. insert into sys_dict_data values(35, '000000', 0, 'PC', 'pc', 'sys_device_type', '', 'default', 'N', 103, 1, now(), null, null, 'PC');
  929. insert into sys_dict_data values(36, '000000', 0, '安卓', 'android', 'sys_device_type', '', 'default', 'N', 103, 1, now(), null, null, '安卓');
  930. insert into sys_dict_data values(37, '000000', 0, 'iOS', 'ios', 'sys_device_type', '', 'default', 'N', 103, 1, now(), null, null, 'iOS');
  931. insert into sys_dict_data values(38, '000000', 0, '小程序', 'xcx', 'sys_device_type', '', 'default', 'N', 103, 1, now(), null, null, '小程序');
  932. INSERT INTO sys_dict_data VALUES (39, '000000', 1, '已撤销', 'cancel', 'wf_business_status', '', 'danger', 'N', 103, 1, now(), NULL, NULL, '已撤销');
  933. INSERT INTO sys_dict_data VALUES (40, '000000', 2, '草稿', 'draft', 'wf_business_status', '', 'info', 'N', 103, 1, now(), NULL, NULL, '草稿');
  934. INSERT INTO sys_dict_data VALUES (41, '000000', 3, '待审核', 'waiting', 'wf_business_status', '', 'primary', 'N', 103, 1, now(), NULL, NULL, '待审核');
  935. INSERT INTO sys_dict_data VALUES (42, '000000', 4, '已完成', 'finish', 'wf_business_status', '', 'success', 'N', 103, 1, now(), NULL, NULL, '已完成');
  936. INSERT INTO sys_dict_data VALUES (43, '000000', 5, '已作废', 'invalid', 'wf_business_status', '', 'danger', 'N', 103, 1, now(), NULL, NULL, '已作废');
  937. INSERT INTO sys_dict_data VALUES (44, '000000', 6, '已退回', 'back', 'wf_business_status', '', 'danger', 'N', 103, 1, now(), NULL, NULL, '已退回');
  938. INSERT INTO sys_dict_data VALUES (45, '000000', 7, '已终止', 'termination', 'wf_business_status', '', 'danger', 'N', 103, 1, now(), NULL, NULL, '已终止');
  939. INSERT INTO sys_dict_data VALUES (46, '000000', 1, '自定义表单', 'static', 'wf_form_type', '', 'success', 'N', 103, 1, now(), NULL, NULL, '自定义表单');
  940. INSERT INTO sys_dict_data VALUES (47, '000000', 2, '动态表单', 'dynamic', 'wf_form_type', '', 'primary', 'N', 103, 1, now(), NULL, NULL, '动态表单');
  941. INSERT INTO sys_dict_data VALUES (48, '000000', 1, '撤销', 'cancel', 'wf_task_status', '', 'danger', 'N', 103, 1, now(), NULL, NULL, '撤销');
  942. INSERT INTO sys_dict_data VALUES (49, '000000', 2, '通过', 'pass', 'wf_task_status', '', 'success', 'N', 103, 1, now(), NULL, NULL, '通过');
  943. INSERT INTO sys_dict_data VALUES (50, '000000', 3, '待审核', 'waiting', 'wf_task_status', '', 'primary', 'N', 103, 1, now(), NULL, NULL, '待审核');
  944. INSERT INTO sys_dict_data VALUES (51, '000000', 4, '作废', 'invalid', 'wf_task_status', '', 'danger', 'N', 103, 1, now(), NULL, NULL, '作废');
  945. INSERT INTO sys_dict_data VALUES (52, '000000', 5, '退回', 'back', 'wf_task_status', '', 'danger', 'N', 103, 1, now(), NULL, NULL, '退回');
  946. INSERT INTO sys_dict_data VALUES (53, '000000', 6, '终止', 'termination', 'wf_task_status', '', 'danger', 'N', 103, 1, now(), NULL, NULL, '终止');
  947. INSERT INTO sys_dict_data VALUES (54, '000000', 7, '转办', 'transfer', 'wf_task_status', '', 'primary', 'N', 103, 1, now(), NULL, NULL, '转办');
  948. INSERT INTO sys_dict_data VALUES (55, '000000', 8, '委托', 'depute', 'wf_task_status', '', 'primary', 'N', 103, 1, now(), NULL, NULL, '委托');
  949. INSERT INTO sys_dict_data VALUES (56, '000000', 9, '抄送', 'copy', 'wf_task_status', '', 'primary', 'N', 103, 1, now(), NULL, NULL, '抄送');
  950. INSERT INTO sys_dict_data VALUES (57, '000000', 10, '加签', 'sign', 'wf_task_status', '', 'primary', 'N', 103, 1, now(), NULL, NULL, '加签');
  951. INSERT INTO sys_dict_data VALUES (58, '000000', 11, '减签', 'sign_off', 'wf_task_status', '', 'danger', 'N', 103, 1, now(), NULL, NULL, '减签');
  952. INSERT INTO sys_dict_data VALUES (59, '000000', 11, '超时', 'timeout', 'wf_task_status', '', 'danger', 'N', 103, 1, now(), NULL, NULL, '超时');
  953. -- ----------------------------
  954. -- 13、参数配置表
  955. -- ----------------------------
  956. create table if not exists sys_config
  957. (
  958. config_id int8,
  959. tenant_id varchar(20) default '000000'::varchar,
  960. config_name varchar(100) default ''::varchar,
  961. config_key varchar(100) default ''::varchar,
  962. config_value varchar(500) default ''::varchar,
  963. config_type char default 'N'::bpchar,
  964. create_dept int8,
  965. create_by int8,
  966. create_time timestamp,
  967. update_by int8,
  968. update_time timestamp,
  969. remark varchar(500) default null::varchar,
  970. constraint sys_config_pk primary key (config_id)
  971. );
  972. comment on table sys_config is '参数配置表';
  973. comment on column sys_config.config_id is '参数主键';
  974. comment on column sys_config.tenant_id is '租户编号';
  975. comment on column sys_config.config_name is '参数名称';
  976. comment on column sys_config.config_key is '参数键名';
  977. comment on column sys_config.config_value is '参数键值';
  978. comment on column sys_config.config_type is '系统内置(Y是 N否)';
  979. comment on column sys_config.create_dept is '创建部门';
  980. comment on column sys_config.create_by is '创建者';
  981. comment on column sys_config.create_time is '创建时间';
  982. comment on column sys_config.update_by is '更新者';
  983. comment on column sys_config.update_time is '更新时间';
  984. comment on column sys_config.remark is '备注';
  985. 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' );
  986. insert into sys_config values(2, '000000', '用户管理-账号初始密码', 'sys.user.initPassword', '123456', 'Y', 103, 1, now(), null, null, '初始化密码 123456' );
  987. insert into sys_config values(3, '000000', '主框架页-侧边栏主题', 'sys.index.sideTheme', 'theme-dark', 'Y', 103, 1, now(), null, null, '深色主题theme-dark,浅色主题theme-light' );
  988. insert into sys_config values(5, '000000', '账号自助-是否开启用户注册功能', 'sys.account.registerUser', 'false', 'Y', 103, 1, now(), null, null, '是否开启注册用户功能(true开启,false关闭)');
  989. insert into sys_config values(11, '000000', 'OSS预览列表资源开关', 'sys.oss.previewListResource', 'true', 'Y', 103, 1, now(), null, null, 'true:开启, false:关闭');
  990. -- ----------------------------
  991. -- 14、系统访问记录
  992. -- ----------------------------
  993. create table if not exists sys_logininfor
  994. (
  995. info_id int8,
  996. tenant_id varchar(20) default '000000'::varchar,
  997. user_name varchar(50) default ''::varchar,
  998. client_key varchar(32) default ''::varchar,
  999. device_type varchar(32) default ''::varchar,
  1000. ipaddr varchar(128) default ''::varchar,
  1001. login_location varchar(255) default ''::varchar,
  1002. browser varchar(50) default ''::varchar,
  1003. os varchar(50) default ''::varchar,
  1004. status char default '0'::bpchar,
  1005. msg varchar(255) default ''::varchar,
  1006. login_time timestamp,
  1007. constraint sys_logininfor_pk primary key (info_id)
  1008. );
  1009. create index idx_sys_logininfor_s ON sys_logininfor (status);
  1010. create index idx_sys_logininfor_lt ON sys_logininfor (login_time);
  1011. comment on table sys_logininfor is '系统访问记录';
  1012. comment on column sys_logininfor.info_id is '访问ID';
  1013. comment on column sys_logininfor.tenant_id is '租户编号';
  1014. comment on column sys_logininfor.user_name is '用户账号';
  1015. comment on column sys_logininfor.client_key is '客户端';
  1016. comment on column sys_logininfor.device_type is '设备类型';
  1017. comment on column sys_logininfor.ipaddr is '登录IP地址';
  1018. comment on column sys_logininfor.login_location is '登录地点';
  1019. comment on column sys_logininfor.browser is '浏览器类型';
  1020. comment on column sys_logininfor.os is '操作系统';
  1021. comment on column sys_logininfor.status is '登录状态(0成功 1失败)';
  1022. comment on column sys_logininfor.msg is '提示消息';
  1023. comment on column sys_logininfor.login_time is '访问时间';
  1024. -- ----------------------------
  1025. -- 17、通知公告表
  1026. -- ----------------------------
  1027. create table if not exists sys_notice
  1028. (
  1029. notice_id int8,
  1030. tenant_id varchar(20) default '000000'::varchar,
  1031. notice_title varchar(50) not null,
  1032. notice_type char not null,
  1033. notice_content text,
  1034. status char default '0'::bpchar,
  1035. create_dept int8,
  1036. create_by int8,
  1037. create_time timestamp,
  1038. update_by int8,
  1039. update_time timestamp,
  1040. remark varchar(255) default null::varchar,
  1041. constraint sys_notice_pk primary key (notice_id)
  1042. );
  1043. comment on table sys_notice is '通知公告表';
  1044. comment on column sys_notice.notice_id is '公告ID';
  1045. comment on column sys_notice.tenant_id is '租户编号';
  1046. comment on column sys_notice.notice_title is '公告标题';
  1047. comment on column sys_notice.notice_type is '公告类型(1通知 2公告)';
  1048. comment on column sys_notice.notice_content is '公告内容';
  1049. comment on column sys_notice.status is '公告状态(0正常 1关闭)';
  1050. comment on column sys_notice.create_dept is '创建部门';
  1051. comment on column sys_notice.create_by is '创建者';
  1052. comment on column sys_notice.create_time is '创建时间';
  1053. comment on column sys_notice.update_by is '更新者';
  1054. comment on column sys_notice.update_time is '更新时间';
  1055. comment on column sys_notice.remark is '备注';
  1056. -- ----------------------------
  1057. -- 初始化-公告信息表数据
  1058. -- ----------------------------
  1059. insert into sys_notice values('1', '000000', '温馨提醒:2018-07-01 新版本发布啦', '2', '新版本内容', '0', 103, 1, now(), null, null, '管理员');
  1060. insert into sys_notice values('2', '000000', '维护通知:2018-07-01 系统凌晨维护', '1', '维护内容', '0', 103, 1, now(), null, null, '管理员');
  1061. -- ----------------------------
  1062. -- 18、代码生成业务表
  1063. -- ----------------------------
  1064. create table if not exists gen_table
  1065. (
  1066. table_id int8,
  1067. data_name varchar(200) default ''::varchar,
  1068. table_name varchar(200) default ''::varchar,
  1069. table_comment varchar(500) default ''::varchar,
  1070. sub_table_name varchar(64) default ''::varchar,
  1071. sub_table_fk_name varchar(64) default ''::varchar,
  1072. class_name varchar(100) default ''::varchar,
  1073. tpl_category varchar(200) default 'crud'::varchar,
  1074. package_name varchar(100) default null::varchar,
  1075. module_name varchar(30) default null::varchar,
  1076. business_name varchar(30) default null::varchar,
  1077. function_name varchar(50) default null::varchar,
  1078. function_author varchar(50) default null::varchar,
  1079. gen_type char default '0'::bpchar not null,
  1080. gen_path varchar(200) default '/'::varchar,
  1081. options varchar(1000) default null::varchar,
  1082. create_dept int8,
  1083. create_by int8,
  1084. create_time timestamp,
  1085. update_by int8,
  1086. update_time timestamp,
  1087. remark varchar(500) default null::varchar,
  1088. constraint gen_table_pk primary key (table_id)
  1089. );
  1090. comment on table gen_table is '代码生成业务表';
  1091. comment on column gen_table.table_id is '编号';
  1092. comment on column gen_table.data_name is '数据源名称';
  1093. comment on column gen_table.table_name is '表名称';
  1094. comment on column gen_table.table_comment is '表描述';
  1095. comment on column gen_table.sub_table_name is '关联子表的表名';
  1096. comment on column gen_table.sub_table_fk_name is '子表关联的外键名';
  1097. comment on column gen_table.class_name is '实体类名称';
  1098. comment on column gen_table.tpl_category is '使用的模板(CRUD单表操作 TREE树表操作)';
  1099. comment on column gen_table.package_name is '生成包路径';
  1100. comment on column gen_table.module_name is '生成模块名';
  1101. comment on column gen_table.business_name is '生成业务名';
  1102. comment on column gen_table.function_name is '生成功能名';
  1103. comment on column gen_table.function_author is '生成功能作者';
  1104. comment on column gen_table.gen_type is '生成代码方式(0zip压缩包 1自定义路径)';
  1105. comment on column gen_table.gen_path is '生成路径(不填默认项目路径)';
  1106. comment on column gen_table.options is '其它生成选项';
  1107. comment on column gen_table.create_dept is '创建部门';
  1108. comment on column gen_table.create_by is '创建者';
  1109. comment on column gen_table.create_time is '创建时间';
  1110. comment on column gen_table.update_by is '更新者';
  1111. comment on column gen_table.update_time is '更新时间';
  1112. comment on column gen_table.remark is '备注';
  1113. -- ----------------------------
  1114. -- 19、代码生成业务表字段
  1115. -- ----------------------------
  1116. create table if not exists gen_table_column
  1117. (
  1118. column_id int8,
  1119. table_id int8,
  1120. column_name varchar(200) default null::varchar,
  1121. column_comment varchar(500) default null::varchar,
  1122. column_type varchar(100) default null::varchar,
  1123. java_type varchar(500) default null::varchar,
  1124. java_field varchar(200) default null::varchar,
  1125. is_pk char default null::bpchar,
  1126. is_increment char default null::bpchar,
  1127. is_required char default null::bpchar,
  1128. is_insert char default null::bpchar,
  1129. is_edit char default null::bpchar,
  1130. is_list char default null::bpchar,
  1131. is_query char default null::bpchar,
  1132. query_type varchar(200) default 'EQ'::varchar,
  1133. html_type varchar(200) default null::varchar,
  1134. dict_type varchar(200) default ''::varchar,
  1135. sort int4,
  1136. create_dept int8,
  1137. create_by int8,
  1138. create_time timestamp,
  1139. update_by int8,
  1140. update_time timestamp,
  1141. constraint gen_table_column_pk primary key (column_id)
  1142. );
  1143. comment on table gen_table_column is '代码生成业务表字段';
  1144. comment on column gen_table_column.column_id is '编号';
  1145. comment on column gen_table_column.table_id is '归属表编号';
  1146. comment on column gen_table_column.column_name is '列名称';
  1147. comment on column gen_table_column.column_comment is '列描述';
  1148. comment on column gen_table_column.column_type is '列类型';
  1149. comment on column gen_table_column.java_type is 'JAVA类型';
  1150. comment on column gen_table_column.java_field is 'JAVA字段名';
  1151. comment on column gen_table_column.is_pk is '是否主键(1是)';
  1152. comment on column gen_table_column.is_increment is '是否自增(1是)';
  1153. comment on column gen_table_column.is_required is '是否必填(1是)';
  1154. comment on column gen_table_column.is_insert is '是否为插入字段(1是)';
  1155. comment on column gen_table_column.is_edit is '是否编辑字段(1是)';
  1156. comment on column gen_table_column.is_list is '是否列表字段(1是)';
  1157. comment on column gen_table_column.is_query is '是否查询字段(1是)';
  1158. comment on column gen_table_column.query_type is '查询方式(等于、不等于、大于、小于、范围)';
  1159. comment on column gen_table_column.html_type is '显示类型(文本框、文本域、下拉框、复选框、单选框、日期控件)';
  1160. comment on column gen_table_column.dict_type is '字典类型';
  1161. comment on column gen_table_column.sort is '排序';
  1162. comment on column gen_table_column.create_dept is '创建部门';
  1163. comment on column gen_table_column.create_by is '创建者';
  1164. comment on column gen_table_column.create_time is '创建时间';
  1165. comment on column gen_table_column.update_by is '更新者';
  1166. comment on column gen_table_column.update_time is '更新时间';
  1167. -- ----------------------------
  1168. -- OSS对象存储表
  1169. -- ----------------------------
  1170. create table if not exists sys_oss
  1171. (
  1172. oss_id int8,
  1173. tenant_id varchar(20) default '000000'::varchar,
  1174. file_name varchar(255) default ''::varchar not null,
  1175. original_name varchar(255) default ''::varchar not null,
  1176. file_suffix varchar(10) default ''::varchar not null,
  1177. url varchar(500) default ''::varchar not null,
  1178. ext1 varchar(500) default ''::varchar,
  1179. create_dept int8,
  1180. create_by int8,
  1181. create_time timestamp,
  1182. update_by int8,
  1183. update_time timestamp,
  1184. service varchar(20) default 'minio'::varchar,
  1185. constraint sys_oss_pk primary key (oss_id)
  1186. );
  1187. comment on table sys_oss is 'OSS对象存储表';
  1188. comment on column sys_oss.oss_id is '对象存储主键';
  1189. comment on column sys_oss.tenant_id is '租户编码';
  1190. comment on column sys_oss.file_name is '文件名';
  1191. comment on column sys_oss.original_name is '原名';
  1192. comment on column sys_oss.file_suffix is '文件后缀名';
  1193. comment on column sys_oss.url is 'URL地址';
  1194. comment on column sys_oss.ext1 is '扩展字段';
  1195. comment on column sys_oss.create_by is '上传人';
  1196. comment on column sys_oss.create_dept is '创建部门';
  1197. comment on column sys_oss.create_time is '创建时间';
  1198. comment on column sys_oss.update_by is '更新者';
  1199. comment on column sys_oss.update_time is '更新时间';
  1200. comment on column sys_oss.service is '服务商';
  1201. -- ----------------------------
  1202. -- OSS对象存储动态配置表
  1203. -- ----------------------------
  1204. create table if not exists sys_oss_config
  1205. (
  1206. oss_config_id int8,
  1207. tenant_id varchar(20) default '000000'::varchar,
  1208. config_key varchar(20) default ''::varchar not null,
  1209. access_key varchar(255) default ''::varchar,
  1210. secret_key varchar(255) default ''::varchar,
  1211. bucket_name varchar(255) default ''::varchar,
  1212. prefix varchar(255) default ''::varchar,
  1213. endpoint varchar(255) default ''::varchar,
  1214. domain varchar(255) default ''::varchar,
  1215. is_https char default 'N'::bpchar,
  1216. region varchar(255) default ''::varchar,
  1217. access_policy char(1) default '1'::bpchar not null,
  1218. status char default '1'::bpchar,
  1219. ext1 varchar(255) default ''::varchar,
  1220. create_dept int8,
  1221. create_by int8,
  1222. create_time timestamp,
  1223. update_by int8,
  1224. update_time timestamp,
  1225. remark varchar(500) default ''::varchar,
  1226. constraint sys_oss_config_pk primary key (oss_config_id)
  1227. );
  1228. comment on table sys_oss_config is '对象存储配置表';
  1229. comment on column sys_oss_config.oss_config_id is '主键';
  1230. comment on column sys_oss_config.tenant_id is '租户编码';
  1231. comment on column sys_oss_config.config_key is '配置key';
  1232. comment on column sys_oss_config.access_key is 'accessKey';
  1233. comment on column sys_oss_config.secret_key is '秘钥';
  1234. comment on column sys_oss_config.bucket_name is '桶名称';
  1235. comment on column sys_oss_config.prefix is '前缀';
  1236. comment on column sys_oss_config.endpoint is '访问站点';
  1237. comment on column sys_oss_config.domain is '自定义域名';
  1238. comment on column sys_oss_config.is_https is '是否https(Y=是,N=否)';
  1239. comment on column sys_oss_config.region is '域';
  1240. comment on column sys_oss_config.access_policy is '桶权限类型(0=private 1=public 2=custom)';
  1241. comment on column sys_oss_config.status is '是否默认(0=是,1=否)';
  1242. comment on column sys_oss_config.ext1 is '扩展字段';
  1243. comment on column sys_oss_config.create_dept is '创建部门';
  1244. comment on column sys_oss_config.create_by is '创建者';
  1245. comment on column sys_oss_config.create_time is '创建时间';
  1246. comment on column sys_oss_config.update_by is '更新者';
  1247. comment on column sys_oss_config.update_time is '更新时间';
  1248. comment on column sys_oss_config.remark is '备注';
  1249. 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);
  1250. 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);
  1251. 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);
  1252. 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);
  1253. 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);
  1254. -- ----------------------------
  1255. -- 系统授权表
  1256. -- ----------------------------
  1257. create table sys_client (
  1258. id int8,
  1259. client_id varchar(64) default ''::varchar,
  1260. client_key varchar(32) default ''::varchar,
  1261. client_secret varchar(255) default ''::varchar,
  1262. grant_type varchar(255) default ''::varchar,
  1263. device_type varchar(32) default ''::varchar,
  1264. active_timeout int4 default 1800,
  1265. timeout int4 default 604800,
  1266. status char(1) default '0'::bpchar,
  1267. del_flag char(1) default '0'::bpchar,
  1268. create_dept int8,
  1269. create_by int8,
  1270. create_time timestamp,
  1271. update_by int8,
  1272. update_time timestamp,
  1273. constraint sys_client_pk primary key (id)
  1274. );
  1275. comment on table sys_client is '系统授权表';
  1276. comment on column sys_client.id is '主键';
  1277. comment on column sys_client.client_id is '客户端id';
  1278. comment on column sys_client.client_key is '客户端key';
  1279. comment on column sys_client.client_secret is '客户端秘钥';
  1280. comment on column sys_client.grant_type is '授权类型';
  1281. comment on column sys_client.device_type is '设备类型';
  1282. comment on column sys_client.active_timeout is 'token活跃超时时间';
  1283. comment on column sys_client.timeout is 'token固定超时';
  1284. comment on column sys_client.status is '状态(0正常 1停用)';
  1285. comment on column sys_client.del_flag is '删除标志(0代表存在 1代表删除)';
  1286. comment on column sys_client.create_dept is '创建部门';
  1287. comment on column sys_client.create_by is '创建者';
  1288. comment on column sys_client.create_time is '创建时间';
  1289. comment on column sys_client.update_by is '更新者';
  1290. comment on column sys_client.update_time is '更新时间';
  1291. insert into sys_client values (1, 'e5cd7e4891bf95d1d19206ce24a7b32e', 'pc', 'pc123', 'password,social', 'pc', 1800, 604800, 0, 0, 103, 1, now(), 1, now());
  1292. insert into sys_client values (2, '428a8310cd442757ae699df5d894f051', 'app', 'app123', 'password,sms,social', 'android', 1800, 604800, 0, 0, 103, 1, now(), 1, now());
  1293. create table if not exists test_demo
  1294. (
  1295. id int8,
  1296. tenant_id varchar(20) default '000000',
  1297. dept_id int8,
  1298. user_id int8,
  1299. order_num int4 default 0,
  1300. test_key varchar(255),
  1301. value varchar(255),
  1302. version int4 default 0,
  1303. create_dept int8,
  1304. create_time timestamp,
  1305. create_by int8,
  1306. update_time timestamp,
  1307. update_by int8,
  1308. del_flag int4 default 0
  1309. );
  1310. comment on table test_demo is '测试单表';
  1311. comment on column test_demo.id is '主键';
  1312. comment on column test_demo.tenant_id is '租户编号';
  1313. comment on column test_demo.dept_id is '部门id';
  1314. comment on column test_demo.user_id is '用户id';
  1315. comment on column test_demo.order_num is '排序号';
  1316. comment on column test_demo.test_key is 'key键';
  1317. comment on column test_demo.value is '值';
  1318. comment on column test_demo.version is '版本';
  1319. comment on column test_demo.create_dept is '创建部门';
  1320. comment on column test_demo.create_time is '创建时间';
  1321. comment on column test_demo.create_by is '创建人';
  1322. comment on column test_demo.update_time is '更新时间';
  1323. comment on column test_demo.update_by is '更新人';
  1324. comment on column test_demo.del_flag is '删除标志';
  1325. create table if not exists test_tree
  1326. (
  1327. id int8,
  1328. tenant_id varchar(20) default '000000',
  1329. parent_id int8 default 0,
  1330. dept_id int8,
  1331. user_id int8,
  1332. tree_name varchar(255),
  1333. version int4 default 0,
  1334. create_dept int8,
  1335. create_time timestamp,
  1336. create_by int8,
  1337. update_time timestamp,
  1338. update_by int8,
  1339. del_flag integer default 0
  1340. );
  1341. comment on table test_tree is '测试树表';
  1342. comment on column test_tree.id is '主键';
  1343. comment on column test_tree.tenant_id is '租户编号';
  1344. comment on column test_tree.parent_id is '父id';
  1345. comment on column test_tree.dept_id is '部门id';
  1346. comment on column test_tree.user_id is '用户id';
  1347. comment on column test_tree.tree_name is '值';
  1348. comment on column test_tree.version is '版本';
  1349. comment on column test_tree.create_dept is '创建部门';
  1350. comment on column test_tree.create_time is '创建时间';
  1351. comment on column test_tree.create_by is '创建人';
  1352. comment on column test_tree.update_time is '更新时间';
  1353. comment on column test_tree.update_by is '更新人';
  1354. comment on column test_tree.del_flag is '删除标志';
  1355. insert into test_demo values (1, '000000', 102, 4, 1, '测试数据权限', '测试', 0, 103, now(), 1, NULL, NULL, 0);
  1356. insert into test_demo values (2, '000000', 102, 3, 2, '子节点1', '111', 0, 103, now(), 1, NULL, NULL, 0);
  1357. insert into test_demo values (3, '000000', 102, 3, 3, '子节点2', '222', 0, 103, now(), 1, NULL, NULL, 0);
  1358. insert into test_demo values (4, '000000', 108, 4, 4, '测试数据', 'demo', 0, 103, now(), 1, NULL, NULL, 0);
  1359. insert into test_demo values (5, '000000', 108, 3, 13, '子节点11', '1111', 0, 103, now(), 1, NULL, NULL, 0);
  1360. insert into test_demo values (6, '000000', 108, 3, 12, '子节点22', '2222', 0, 103, now(), 1, NULL, NULL, 0);
  1361. insert into test_demo values (7, '000000', 108, 3, 11, '子节点33', '3333', 0, 103, now(), 1, NULL, NULL, 0);
  1362. insert into test_demo values (8, '000000', 108, 3, 10, '子节点44', '4444', 0, 103, now(), 1, NULL, NULL, 0);
  1363. insert into test_demo values (9, '000000', 108, 3, 9, '子节点55', '5555', 0, 103, now(), 1, NULL, NULL, 0);
  1364. insert into test_demo values (10, '000000', 108, 3, 8, '子节点66', '6666', 0, 103, now(), 1, NULL, NULL, 0);
  1365. insert into test_demo values (11, '000000', 108, 3, 7, '子节点77', '7777', 0, 103, now(), 1, NULL, NULL, 0);
  1366. insert into test_demo values (12, '000000', 108, 3, 6, '子节点88', '8888', 0, 103, now(), 1, NULL, NULL, 0);
  1367. insert into test_demo values (13, '000000', 108, 3, 5, '子节点99', '9999', 0, 103, now(), 1, NULL, NULL, 0);
  1368. insert into test_tree values (1, '000000', 0, 102, 4, '测试数据权限', 0, 103, now(), 1, NULL, NULL, 0);
  1369. insert into test_tree values (2, '000000', 1, 102, 3, '子节点1', 0, 103, now(), 1, NULL, NULL, 0);
  1370. insert into test_tree values (3, '000000', 2, 102, 3, '子节点2', 0, 103, now(), 1, NULL, NULL, 0);
  1371. insert into test_tree values (4, '000000', 0, 108, 4, '测试树1', 0, 103, now(), 1, NULL, NULL, 0);
  1372. insert into test_tree values (5, '000000', 4, 108, 3, '子节点11', 0, 103, now(), 1, NULL, NULL, 0);
  1373. insert into test_tree values (6, '000000', 4, 108, 3, '子节点22', 0, 103, now(), 1, NULL, NULL, 0);
  1374. insert into test_tree values (7, '000000', 4, 108, 3, '子节点33', 0, 103, now(), 1, NULL, NULL, 0);
  1375. insert into test_tree values (8, '000000', 5, 108, 3, '子节点44', 0, 103, now(), 1, NULL, NULL, 0);
  1376. insert into test_tree values (9, '000000', 6, 108, 3, '子节点55', 0, 103, now(), 1, NULL, NULL, 0);
  1377. insert into test_tree values (10, '000000', 7, 108, 3, '子节点66', 0, 103, now(), 1, NULL, NULL, 0);
  1378. insert into test_tree values (11, '000000', 7, 108, 3, '子节点77', 0, 103, now(), 1, NULL, NULL, 0);
  1379. insert into test_tree values (12, '000000', 10, 108, 3, '子节点88', 0, 103, now(), 1, NULL, NULL, 0);
  1380. insert into test_tree values (13, '000000', 10, 108, 3, '子节点99', 0, 103, now(), 1, NULL, NULL, 0);
  1381. -- for AT mode you must to init this sql for you business database. the seata server not need it.
  1382. CREATE TABLE IF NOT EXISTS public.undo_log
  1383. (
  1384. id SERIAL NOT NULL,
  1385. branch_id BIGINT NOT NULL,
  1386. xid VARCHAR(128) NOT NULL,
  1387. context VARCHAR(128) NOT NULL,
  1388. rollback_info BYTEA NOT NULL,
  1389. log_status INT NOT NULL,
  1390. log_created TIMESTAMP(0) NOT NULL,
  1391. log_modified TIMESTAMP(0) NOT NULL,
  1392. CONSTRAINT pk_undo_log PRIMARY KEY (id),
  1393. CONSTRAINT ux_undo_log UNIQUE (xid, branch_id)
  1394. );
  1395. CREATE INDEX ix_log_created ON undo_log(log_created);
  1396. COMMENT ON TABLE public.undo_log IS 'AT transaction mode undo table';
  1397. COMMENT ON COLUMN public.undo_log.branch_id IS 'branch transaction id';
  1398. COMMENT ON COLUMN public.undo_log.xid IS 'global transaction id';
  1399. COMMENT ON COLUMN public.undo_log.context IS 'undo_log context,such as serialization';
  1400. COMMENT ON COLUMN public.undo_log.rollback_info IS 'rollback info';
  1401. COMMENT ON COLUMN public.undo_log.log_status IS '0:normal status,1:defense status';
  1402. COMMENT ON COLUMN public.undo_log.log_created IS 'create datetime';
  1403. COMMENT ON COLUMN public.undo_log.log_modified IS 'modify datetime';
  1404. CREATE SEQUENCE IF NOT EXISTS undo_log_id_seq INCREMENT BY 1 MINVALUE 1 ;
  1405. -- 字符串自动转时间 避免框架时间查询报错问题
  1406. create or replace function cast_varchar_to_timestamp(varchar) returns timestamptz as $$
  1407. select to_timestamp($1, 'yyyy-mm-dd hh24:mi:ss');
  1408. $$ language sql strict ;
  1409. create cast (varchar as timestamptz) with function cast_varchar_to_timestamp as IMPLICIT;