diff --git a/backend/src/main/java/io/dataease/base/domain/MyPlugin.java b/backend/src/main/java/io/dataease/base/domain/MyPlugin.java index ec73b4cc75..e7c9e0ca76 100644 --- a/backend/src/main/java/io/dataease/base/domain/MyPlugin.java +++ b/backend/src/main/java/io/dataease/base/domain/MyPlugin.java @@ -9,10 +9,14 @@ public class MyPlugin implements Serializable { private String name; + private String store; + private Boolean free; private Integer cost; + private String category; + private String descript; private String version; @@ -29,8 +33,6 @@ public class MyPlugin implements Serializable { private String moduleName; - private String beanName; - private String icon; private static final long serialVersionUID = 1L; diff --git a/backend/src/main/java/io/dataease/base/domain/MyPluginExample.java b/backend/src/main/java/io/dataease/base/domain/MyPluginExample.java index b7dc903668..ab2c8f5e73 100644 --- a/backend/src/main/java/io/dataease/base/domain/MyPluginExample.java +++ b/backend/src/main/java/io/dataease/base/domain/MyPluginExample.java @@ -234,6 +234,76 @@ public class MyPluginExample { return (Criteria) this; } + public Criteria andStoreIsNull() { + addCriterion("store is null"); + return (Criteria) this; + } + + public Criteria andStoreIsNotNull() { + addCriterion("store is not null"); + return (Criteria) this; + } + + public Criteria andStoreEqualTo(String value) { + addCriterion("store =", value, "store"); + return (Criteria) this; + } + + public Criteria andStoreNotEqualTo(String value) { + addCriterion("store <>", value, "store"); + return (Criteria) this; + } + + public Criteria andStoreGreaterThan(String value) { + addCriterion("store >", value, "store"); + return (Criteria) this; + } + + public Criteria andStoreGreaterThanOrEqualTo(String value) { + addCriterion("store >=", value, "store"); + return (Criteria) this; + } + + public Criteria andStoreLessThan(String value) { + addCriterion("store <", value, "store"); + return (Criteria) this; + } + + public Criteria andStoreLessThanOrEqualTo(String value) { + addCriterion("store <=", value, "store"); + return (Criteria) this; + } + + public Criteria andStoreLike(String value) { + addCriterion("store like", value, "store"); + return (Criteria) this; + } + + public Criteria andStoreNotLike(String value) { + addCriterion("store not like", value, "store"); + return (Criteria) this; + } + + public Criteria andStoreIn(List values) { + addCriterion("store in", values, "store"); + return (Criteria) this; + } + + public Criteria andStoreNotIn(List values) { + addCriterion("store not in", values, "store"); + return (Criteria) this; + } + + public Criteria andStoreBetween(String value1, String value2) { + addCriterion("store between", value1, value2, "store"); + return (Criteria) this; + } + + public Criteria andStoreNotBetween(String value1, String value2) { + addCriterion("store not between", value1, value2, "store"); + return (Criteria) this; + } + public Criteria andFreeIsNull() { addCriterion("`free` is null"); return (Criteria) this; @@ -354,6 +424,76 @@ public class MyPluginExample { return (Criteria) this; } + public Criteria andCategoryIsNull() { + addCriterion("category is null"); + return (Criteria) this; + } + + public Criteria andCategoryIsNotNull() { + addCriterion("category is not null"); + return (Criteria) this; + } + + public Criteria andCategoryEqualTo(String value) { + addCriterion("category =", value, "category"); + return (Criteria) this; + } + + public Criteria andCategoryNotEqualTo(String value) { + addCriterion("category <>", value, "category"); + return (Criteria) this; + } + + public Criteria andCategoryGreaterThan(String value) { + addCriterion("category >", value, "category"); + return (Criteria) this; + } + + public Criteria andCategoryGreaterThanOrEqualTo(String value) { + addCriterion("category >=", value, "category"); + return (Criteria) this; + } + + public Criteria andCategoryLessThan(String value) { + addCriterion("category <", value, "category"); + return (Criteria) this; + } + + public Criteria andCategoryLessThanOrEqualTo(String value) { + addCriterion("category <=", value, "category"); + return (Criteria) this; + } + + public Criteria andCategoryLike(String value) { + addCriterion("category like", value, "category"); + return (Criteria) this; + } + + public Criteria andCategoryNotLike(String value) { + addCriterion("category not like", value, "category"); + return (Criteria) this; + } + + public Criteria andCategoryIn(List values) { + addCriterion("category in", values, "category"); + return (Criteria) this; + } + + public Criteria andCategoryNotIn(List values) { + addCriterion("category not in", values, "category"); + return (Criteria) this; + } + + public Criteria andCategoryBetween(String value1, String value2) { + addCriterion("category between", value1, value2, "category"); + return (Criteria) this; + } + + public Criteria andCategoryNotBetween(String value1, String value2) { + addCriterion("category not between", value1, value2, "category"); + return (Criteria) this; + } + public Criteria andDescriptIsNull() { addCriterion("descript is null"); return (Criteria) this; @@ -874,76 +1014,6 @@ public class MyPluginExample { return (Criteria) this; } - public Criteria andBeanNameIsNull() { - addCriterion("bean_name is null"); - return (Criteria) this; - } - - public Criteria andBeanNameIsNotNull() { - addCriterion("bean_name is not null"); - return (Criteria) this; - } - - public Criteria andBeanNameEqualTo(String value) { - addCriterion("bean_name =", value, "beanName"); - return (Criteria) this; - } - - public Criteria andBeanNameNotEqualTo(String value) { - addCriterion("bean_name <>", value, "beanName"); - return (Criteria) this; - } - - public Criteria andBeanNameGreaterThan(String value) { - addCriterion("bean_name >", value, "beanName"); - return (Criteria) this; - } - - public Criteria andBeanNameGreaterThanOrEqualTo(String value) { - addCriterion("bean_name >=", value, "beanName"); - return (Criteria) this; - } - - public Criteria andBeanNameLessThan(String value) { - addCriterion("bean_name <", value, "beanName"); - return (Criteria) this; - } - - public Criteria andBeanNameLessThanOrEqualTo(String value) { - addCriterion("bean_name <=", value, "beanName"); - return (Criteria) this; - } - - public Criteria andBeanNameLike(String value) { - addCriterion("bean_name like", value, "beanName"); - return (Criteria) this; - } - - public Criteria andBeanNameNotLike(String value) { - addCriterion("bean_name not like", value, "beanName"); - return (Criteria) this; - } - - public Criteria andBeanNameIn(List values) { - addCriterion("bean_name in", values, "beanName"); - return (Criteria) this; - } - - public Criteria andBeanNameNotIn(List values) { - addCriterion("bean_name not in", values, "beanName"); - return (Criteria) this; - } - - public Criteria andBeanNameBetween(String value1, String value2) { - addCriterion("bean_name between", value1, value2, "beanName"); - return (Criteria) this; - } - - public Criteria andBeanNameNotBetween(String value1, String value2) { - addCriterion("bean_name not between", value1, value2, "beanName"); - return (Criteria) this; - } - public Criteria andIconIsNull() { addCriterion("icon is null"); return (Criteria) this; diff --git a/backend/src/main/java/io/dataease/base/mapper/MyPluginMapper.xml b/backend/src/main/java/io/dataease/base/mapper/MyPluginMapper.xml index d5cfca94b2..580dcf9596 100644 --- a/backend/src/main/java/io/dataease/base/mapper/MyPluginMapper.xml +++ b/backend/src/main/java/io/dataease/base/mapper/MyPluginMapper.xml @@ -4,8 +4,10 @@ + + @@ -14,7 +16,6 @@ - @@ -76,8 +77,8 @@ - plugin_id, `name`, `free`, cost, descript, version, install_type, creator, load_mybatis, - release_time, install_time, module_name, bean_name, icon + plugin_id, `name`, store, `free`, cost, category, descript, version, install_type, + creator, load_mybatis, release_time, install_time, module_name, icon