diff --git a/base-service/src/main/java/com/hzya/frame/sysnew/application/plugin/entity/SysApplicationPluginDto.java b/base-service/src/main/java/com/hzya/frame/sysnew/application/plugin/entity/SysApplicationPluginDto.java
index 54a3dc3f..8825215f 100644
--- a/base-service/src/main/java/com/hzya/frame/sysnew/application/plugin/entity/SysApplicationPluginDto.java
+++ b/base-service/src/main/java/com/hzya/frame/sysnew/application/plugin/entity/SysApplicationPluginDto.java
@@ -20,6 +20,16 @@ public class SysApplicationPluginDto {
private Integer pageNum;
private Integer pageSize;
+ private String typeId;
+
+ public String getTypeId() {
+ return typeId;
+ }
+
+ public void setTypeId(String typeId) {
+ this.typeId = typeId;
+ }
+
public String getAppId() {
return appId;
}
diff --git a/base-service/src/main/java/com/hzya/frame/sysnew/application/plugin/entity/SysApplicationPluginEntity.java b/base-service/src/main/java/com/hzya/frame/sysnew/application/plugin/entity/SysApplicationPluginEntity.java
index 5929e14b..79b8c326 100644
--- a/base-service/src/main/java/com/hzya/frame/sysnew/application/plugin/entity/SysApplicationPluginEntity.java
+++ b/base-service/src/main/java/com/hzya/frame/sysnew/application/plugin/entity/SysApplicationPluginEntity.java
@@ -22,13 +22,33 @@ public class SysApplicationPluginEntity extends BaseEntity {
private String pluginVersion;
/** 描述 */
private String pluginRemark;
+ /** 插件类型id */
+ private String typeId;
+ /** 插件类型名称 */
+ private String typeName;
/** 发布日期 */
private Date releaseDate;
/** 启用停用(1启用2停用) */
private String pluginStatus;
-
+ /** 附件id */
private String attachmentId;
+ public String getTypeName() {
+ return typeName;
+ }
+
+ public void setTypeName(String typeName) {
+ this.typeName = typeName;
+ }
+
+ public String getTypeId() {
+ return typeId;
+ }
+
+ public void setTypeId(String typeId) {
+ this.typeId = typeId;
+ }
+
public String getPluginPackageName() {
return pluginPackageName;
}
diff --git a/base-service/src/main/java/com/hzya/frame/sysnew/application/plugin/entity/SysApplicationPluginEntity.xml b/base-service/src/main/java/com/hzya/frame/sysnew/application/plugin/entity/SysApplicationPluginEntity.xml
index 90b5444d..5ba4c199 100644
--- a/base-service/src/main/java/com/hzya/frame/sysnew/application/plugin/entity/SysApplicationPluginEntity.xml
+++ b/base-service/src/main/java/com/hzya/frame/sysnew/application/plugin/entity/SysApplicationPluginEntity.xml
@@ -20,6 +20,8 @@
+
+
@@ -40,6 +42,7 @@
,org_id
,attachment_id
,plugin_package_name
+ ,type_id
@@ -178,8 +179,9 @@
and p2.sts='Y'
and app.sts='Y'
- order by log.sorts asc
- order by ${sort} ${order}
+
+
+ order by log.send_datetime desc