增加系统国际化配置

This commit is contained in:
dell
2018-01-16 09:57:12 +08:00
parent 0597c974e8
commit f45edaddb5
10 changed files with 196 additions and 22 deletions

View File

@@ -6,6 +6,7 @@
a.id,
a.parent_id AS "parent.id",
a.parent_ids,
a.code,
a.name,
a.href,
a.target,
@@ -68,6 +69,7 @@
INSERT INTO sys_menu(
parent_id,
parent_ids,
code,
name,
href,
target,
@@ -84,6 +86,7 @@
) VALUES (
#{parent.id},
#{parentIds},
#{code},
#{name},
#{href},
#{target},
@@ -104,6 +107,7 @@
UPDATE sys_menu SET
parent_id = #{parent.id},
parent_ids = #{parentIds},
code=#{code},
name = #{name},
href = #{href},
target = #{target},