diff --git a/ruoyi-modules/hw-portal/src/main/java/com/ruoyi/portal/domain/HwWeb.java b/ruoyi-modules/hw-portal/src/main/java/com/ruoyi/portal/domain/HwWeb.java
index 2581d01..0086f1a 100644
--- a/ruoyi-modules/hw-portal/src/main/java/com/ruoyi/portal/domain/HwWeb.java
+++ b/ruoyi-modules/hw-portal/src/main/java/com/ruoyi/portal/domain/HwWeb.java
@@ -33,6 +33,10 @@ public class HwWeb extends BaseEntity
/** 逻辑删除标志:'0'未删除,'1'已删除 */
private String isDelete;
+ /** json字符串 */
+ @Excel(name = "字符串")
+ private String webJsonStringEnglish;
+
public void setWebId(Long webId)
{
this.webId = webId;
@@ -78,6 +82,14 @@ public class HwWeb extends BaseEntity
this.isDelete = isDelete;
}
+ public String getWebJsonStringEnglish() {
+ return webJsonStringEnglish;
+ }
+
+ public void setWebJsonStringEnglish(String webJsonStringEnglish) {
+ this.webJsonStringEnglish = webJsonStringEnglish;
+ }
+
@Override
public String toString() {
return new ToStringBuilder(this,ToStringStyle.MULTI_LINE_STYLE)
@@ -86,6 +98,7 @@ public class HwWeb extends BaseEntity
.append("webJsonString", getWebJsonString())
.append("webCode", getWebCode())
.append("isDelete", getIsDelete())
+ .append("webJsonStringEnglish", getWebJsonStringEnglish())
.toString();
}
}
diff --git a/ruoyi-modules/hw-portal/src/main/java/com/ruoyi/portal/domain/HwWeb1.java b/ruoyi-modules/hw-portal/src/main/java/com/ruoyi/portal/domain/HwWeb1.java
index cff4d50..3bb33d8 100644
--- a/ruoyi-modules/hw-portal/src/main/java/com/ruoyi/portal/domain/HwWeb1.java
+++ b/ruoyi-modules/hw-portal/src/main/java/com/ruoyi/portal/domain/HwWeb1.java
@@ -37,6 +37,10 @@ public class HwWeb1 extends BaseEntity
/** 逻辑删除标志:'0'未删除,'1'已删除 */
private String isDelete;
+ /** json字符串 */
+ @Excel(name = "字符串")
+ private String webJsonStringEnglish;
+
public void setWebId(Long webId)
{
this.webId = webId;
@@ -98,6 +102,14 @@ public class HwWeb1 extends BaseEntity
this.isDelete = isDelete;
}
+ public String getWebJsonStringEnglish() {
+ return webJsonStringEnglish;
+ }
+
+ public void setWebJsonStringEnglish(String webJsonStringEnglish) {
+ this.webJsonStringEnglish = webJsonStringEnglish;
+ }
+
@Override
public String toString() {
return new ToStringBuilder(this,ToStringStyle.MULTI_LINE_STYLE)
@@ -108,6 +120,7 @@ public class HwWeb1 extends BaseEntity
.append("deviceId", getDeviceId())
.append("typeId", getTypeId())
.append("isDelete", getIsDelete())
+ .append("webJsonStringEnglish", getWebJsonStringEnglish())
.toString();
}
}
diff --git a/ruoyi-modules/hw-portal/src/main/java/com/ruoyi/portal/domain/HwWebMenu.java b/ruoyi-modules/hw-portal/src/main/java/com/ruoyi/portal/domain/HwWebMenu.java
index 8620e66..87f1f07 100644
--- a/ruoyi-modules/hw-portal/src/main/java/com/ruoyi/portal/domain/HwWebMenu.java
+++ b/ruoyi-modules/hw-portal/src/main/java/com/ruoyi/portal/domain/HwWebMenu.java
@@ -47,6 +47,8 @@ public class HwWebMenu extends TreeEntity
/** 逻辑删除标志:'0'未删除,'1'已删除 */
private String isDelete;
+ private String webMenuNameEnglish;
+
public void setWebMenuId(Long webMenuId)
{
this.webMenuId = webMenuId;
@@ -119,6 +121,14 @@ public class HwWebMenu extends TreeEntity
this.isDelete = isDelete;
}
+ public String getWebMenuNameEnglish() {
+ return webMenuNameEnglish;
+ }
+
+ public void setWebMenuNameEnglish(String webMenuNameEnglish) {
+ this.webMenuNameEnglish = webMenuNameEnglish;
+ }
+
@Override
public String toString() {
return new ToStringBuilder(this,ToStringStyle.MULTI_LINE_STYLE)
@@ -131,6 +141,7 @@ public class HwWebMenu extends TreeEntity
.append("webMenuPic", getWebMenuPic())
.append("webMenuType", getWebMenuType())
.append("isDelete", getIsDelete())
+ .append("webMenuNameEnglish", getWebMenuNameEnglish())
.toString();
}
}
diff --git a/ruoyi-modules/hw-portal/src/main/java/com/ruoyi/portal/domain/HwWebMenu1.java b/ruoyi-modules/hw-portal/src/main/java/com/ruoyi/portal/domain/HwWebMenu1.java
index 901ccb2..b04cf61 100644
--- a/ruoyi-modules/hw-portal/src/main/java/com/ruoyi/portal/domain/HwWebMenu1.java
+++ b/ruoyi-modules/hw-portal/src/main/java/com/ruoyi/portal/domain/HwWebMenu1.java
@@ -49,6 +49,8 @@ public class HwWebMenu1 extends TreeEntity
/** 逻辑删除标志:'0'未删除,'1'已删除 */
private String isDelete;
+ private String webMenuNameEnglish;
+
public void setWebMenuId(Long webMenuId)
{
this.webMenuId = webMenuId;
@@ -128,6 +130,14 @@ public class HwWebMenu1 extends TreeEntity
this.isDelete = isDelete;
}
+ public String getWebMenuNameEnglish() {
+ return webMenuNameEnglish;
+ }
+
+ public void setWebMenuNameEnglish(String webMenuNameEnglish) {
+ this.webMenuNameEnglish = webMenuNameEnglish;
+ }
+
@Override
public String toString() {
return new ToStringBuilder(this,ToStringStyle.MULTI_LINE_STYLE)
@@ -141,6 +151,7 @@ public class HwWebMenu1 extends TreeEntity
.append("webMenuType", getWebMenuType())
.append("valuel", getValuel())
.append("isDelete", getIsDelete())
+ .append("webMenuNameEnglish", getWebMenuNameEnglish())
.toString();
}
}
diff --git a/ruoyi-modules/hw-portal/src/main/resources/mapper/portal/HwWebMapper.xml b/ruoyi-modules/hw-portal/src/main/resources/mapper/portal/HwWebMapper.xml
index fbe5739..283977a 100644
--- a/ruoyi-modules/hw-portal/src/main/resources/mapper/portal/HwWebMapper.xml
+++ b/ruoyi-modules/hw-portal/src/main/resources/mapper/portal/HwWebMapper.xml
@@ -10,10 +10,12 @@
+
- select web_id, web_json, web_json_string, web_code,
+ select web_id, web_json, web_json_string, web_code,
+ web_json_string_english,
is_delete
from hw_web
@@ -26,6 +28,7 @@
and web_json = #{webJson}
and web_json_string = #{webJsonString}
and web_code = #{webCode}
+ and web_json_string_english = #{webJsonStringEnglish}
@@ -40,12 +43,14 @@
web_json,
web_json_string,
web_code,
+ web_json_string_english,
is_delete,
#{webJson},
#{webJsonString},
#{webCode},
+ #{webJsonStringEnglish},
#{isDelete},
'0',
@@ -59,6 +64,7 @@
web_json = #{webJson},
web_json_string = #{webJsonString},
+ web_json_string_english = #{webJsonStringEnglish},
where web_code = #{webCode}
diff --git a/ruoyi-modules/hw-portal/src/main/resources/mapper/portal/HwWebMapper1.xml b/ruoyi-modules/hw-portal/src/main/resources/mapper/portal/HwWebMapper1.xml
index 6ca428d..1e639fa 100644
--- a/ruoyi-modules/hw-portal/src/main/resources/mapper/portal/HwWebMapper1.xml
+++ b/ruoyi-modules/hw-portal/src/main/resources/mapper/portal/HwWebMapper1.xml
@@ -12,11 +12,12 @@
+
select web_id, web_json, web_json_string, web_code,
- device_id, typeId,
+ device_id, typeId, web_json_string_english,
is_delete
from hw_web1
@@ -31,6 +32,7 @@
and web_code = #{webCode}
and device_id = #{deviceId}
and typeId = #{typeId}
+ and web_json_string_english = #{webJsonStringEnglish}
@@ -54,6 +56,7 @@
web_code,
device_id,
typeId,
+ web_json_string_english,
is_delete,
@@ -62,6 +65,7 @@
#{webCode},
#{deviceId},
#{typeId},
+ #{webJsonStringEnglish},
#{isDelete},
'0',
@@ -77,6 +81,7 @@
+ web_json_string_english = #{webJsonStringEnglish},
where web_code = #{webCode}
and device_id = #{deviceId}
diff --git a/ruoyi-modules/hw-portal/src/main/resources/mapper/portal/HwWebMenuMapper.xml b/ruoyi-modules/hw-portal/src/main/resources/mapper/portal/HwWebMenuMapper.xml
index 7e5cc89..e4176f8 100644
--- a/ruoyi-modules/hw-portal/src/main/resources/mapper/portal/HwWebMenuMapper.xml
+++ b/ruoyi-modules/hw-portal/src/main/resources/mapper/portal/HwWebMenuMapper.xml
@@ -14,10 +14,12 @@
+
@@ -33,6 +35,7 @@
and tenant_id = #{tenantId}
and web_menu__pic = #{webMenuPic}
and web_menu_type = #{webMenuType}
+ and web_menu_name_english = #{webMenuNameEnglish}
@@ -52,6 +55,7 @@
tenant_id,
web_menu__pic,
web_menu_type,
+ web_menu_name_english,
is_delete,
@@ -63,6 +67,7 @@
#{tenantId},
#{webMenuPic},
#{webMenuType},
+ #{webMenuNameEnglish},
#{isDelete},
'0',
@@ -80,6 +85,7 @@
tenant_id = #{tenantId},
web_menu__pic = #{webMenuPic},
web_menu_type = #{webMenuType},
+ web_menu_name_english = #{webMenuNameEnglish},
where web_menu_id = #{webMenuId}
diff --git a/ruoyi-modules/hw-portal/src/main/resources/mapper/portal/HwWebMenuMapper1.xml b/ruoyi-modules/hw-portal/src/main/resources/mapper/portal/HwWebMenuMapper1.xml
index 039634d..8426c46 100644
--- a/ruoyi-modules/hw-portal/src/main/resources/mapper/portal/HwWebMenuMapper1.xml
+++ b/ruoyi-modules/hw-portal/src/main/resources/mapper/portal/HwWebMenuMapper1.xml
@@ -15,12 +15,14 @@
+
@@ -37,6 +39,7 @@
and web_menu__pic = #{webMenuPic}
and web_menu_type = #{webMenuType}
and value like concat('%', #{value}, '%')
+ and web_menu_name_english like concat('%', #{webMenuNameEnglish}, '%')
@@ -57,6 +60,7 @@
web_menu__pic,
web_menu_type,
value,
+ web_menu_name_english,
is_delete,
@@ -69,6 +73,7 @@
#{webMenuPic},
#{webMenuType},
#{value},
+ #{webMenuNameEnglish},
#{isDelete},
'0',
@@ -87,6 +92,7 @@
web_menu__pic = #{webMenuPic},
web_menu_type = #{webMenuType},
value = #{value},
+ web_menu_name_english = #{webMenuNameEnglish},
where web_menu_id = #{webMenuId}