Quellcode durchsuchen

工作台表结构

huangxingxing vor 3 Monaten
Ursprung
Commit
b7bdeb036c

+ 57 - 10
modelsrc/com/miniframe/model/es/EsCom.java

@@ -20,9 +20,9 @@ public class EsCom extends MiniserviceBaseModel implements Serializable {
     private String name;
 
     /**
-     * 类
+     * 
      */
-    private Short type;
+    private Short ftype;
 
     /**
      * 图片fid
@@ -58,6 +58,17 @@ public class EsCom extends MiniserviceBaseModel implements Serializable {
      */
     private Short flag;
 
+    /**
+     * 组件id编码 如 C N 等
+     */
+    @Column(name = "id_code")
+    private String idCode;
+
+    /**
+     * 子类 rigid
+     */
+    private String type;
+
     private static final long serialVersionUID = 1L;
 
     /**
@@ -97,21 +108,21 @@ public class EsCom extends MiniserviceBaseModel implements Serializable {
     }
 
     /**
-     * 获取类
+     * 获取
      *
-     * @return type - 类
+     * @return ftype - 
      */
-    public Short getType() {
-        return type;
+    public Short getFtype() {
+        return ftype;
     }
 
     /**
-     * 设置类
+     * 设置
      *
-     * @param type 类
+     * @param ftype 
      */
-    public void setType(Short type) {
-        this.type = type;
+    public void setFtype(Short ftype) {
+        this.ftype = ftype;
     }
 
     /**
@@ -229,4 +240,40 @@ public class EsCom extends MiniserviceBaseModel implements Serializable {
     public void setFlag(Short flag) {
         this.flag = flag;
     }
+
+    /**
+     * 获取组件id编码 如 C N 等
+     *
+     * @return id_code - 组件id编码 如 C N 等
+     */
+    public String getIdCode() {
+        return idCode;
+    }
+
+    /**
+     * 设置组件id编码 如 C N 等
+     *
+     * @param idCode 组件id编码 如 C N 等
+     */
+    public void setIdCode(String idCode) {
+        this.idCode = idCode == null ? null : idCode.trim();
+    }
+
+    /**
+     * 获取子类 rigid
+     *
+     * @return type - 子类 rigid
+     */
+    public String getType() {
+        return type;
+    }
+
+    /**
+     * 设置子类 rigid
+     *
+     * @param type 子类 rigid
+     */
+    public void setType(String type) {
+        this.type = type == null ? null : type.trim();
+    }
 }

+ 164 - 24
modelsrc/com/miniframe/model/es/EsComSQLBuilder.java

@@ -245,63 +245,63 @@ public class EsComSQLBuilder {
             return (Criteria) this;
         }
 
-        public Criteria andTypeIsNull() {
-            addCriterion("type is null");
+        public Criteria andFtypeIsNull() {
+            addCriterion("ftype is null");
             return (Criteria) this;
         }
 
-        public Criteria andTypeIsNotNull() {
-            addCriterion("type is not null");
+        public Criteria andFtypeIsNotNull() {
+            addCriterion("ftype is not null");
             return (Criteria) this;
         }
 
-        public Criteria andTypeEqualTo(Short value) {
-            addCriterion("type =", value, "type");
+        public Criteria andFtypeEqualTo(Short value) {
+            addCriterion("ftype =", value, "ftype");
             return (Criteria) this;
         }
 
-        public Criteria andTypeNotEqualTo(Short value) {
-            addCriterion("type <>", value, "type");
+        public Criteria andFtypeNotEqualTo(Short value) {
+            addCriterion("ftype <>", value, "ftype");
             return (Criteria) this;
         }
 
-        public Criteria andTypeGreaterThan(Short value) {
-            addCriterion("type >", value, "type");
+        public Criteria andFtypeGreaterThan(Short value) {
+            addCriterion("ftype >", value, "ftype");
             return (Criteria) this;
         }
 
-        public Criteria andTypeGreaterThanOrEqualTo(Short value) {
-            addCriterion("type >=", value, "type");
+        public Criteria andFtypeGreaterThanOrEqualTo(Short value) {
+            addCriterion("ftype >=", value, "ftype");
             return (Criteria) this;
         }
 
-        public Criteria andTypeLessThan(Short value) {
-            addCriterion("type <", value, "type");
+        public Criteria andFtypeLessThan(Short value) {
+            addCriterion("ftype <", value, "ftype");
             return (Criteria) this;
         }
 
-        public Criteria andTypeLessThanOrEqualTo(Short value) {
-            addCriterion("type <=", value, "type");
+        public Criteria andFtypeLessThanOrEqualTo(Short value) {
+            addCriterion("ftype <=", value, "ftype");
             return (Criteria) this;
         }
 
-        public Criteria andTypeIn(List<Short> values) {
-            addCriterion("type in", values, "type");
+        public Criteria andFtypeIn(List<Short> values) {
+            addCriterion("ftype in", values, "ftype");
             return (Criteria) this;
         }
 
-        public Criteria andTypeNotIn(List<Short> values) {
-            addCriterion("type not in", values, "type");
+        public Criteria andFtypeNotIn(List<Short> values) {
+            addCriterion("ftype not in", values, "ftype");
             return (Criteria) this;
         }
 
-        public Criteria andTypeBetween(Short value1, Short value2) {
-            addCriterion("type between", value1, value2, "type");
+        public Criteria andFtypeBetween(Short value1, Short value2) {
+            addCriterion("ftype between", value1, value2, "ftype");
             return (Criteria) this;
         }
 
-        public Criteria andTypeNotBetween(Short value1, Short value2) {
-            addCriterion("type not between", value1, value2, "type");
+        public Criteria andFtypeNotBetween(Short value1, Short value2) {
+            addCriterion("ftype not between", value1, value2, "ftype");
             return (Criteria) this;
         }
 
@@ -694,6 +694,146 @@ public class EsComSQLBuilder {
             addCriterion("flag not between", value1, value2, "flag");
             return (Criteria) this;
         }
+
+        public Criteria andIdCodeIsNull() {
+            addCriterion("id_code is null");
+            return (Criteria) this;
+        }
+
+        public Criteria andIdCodeIsNotNull() {
+            addCriterion("id_code is not null");
+            return (Criteria) this;
+        }
+
+        public Criteria andIdCodeEqualTo(String value) {
+            addCriterion("id_code =", value, "idCode");
+            return (Criteria) this;
+        }
+
+        public Criteria andIdCodeNotEqualTo(String value) {
+            addCriterion("id_code <>", value, "idCode");
+            return (Criteria) this;
+        }
+
+        public Criteria andIdCodeGreaterThan(String value) {
+            addCriterion("id_code >", value, "idCode");
+            return (Criteria) this;
+        }
+
+        public Criteria andIdCodeGreaterThanOrEqualTo(String value) {
+            addCriterion("id_code >=", value, "idCode");
+            return (Criteria) this;
+        }
+
+        public Criteria andIdCodeLessThan(String value) {
+            addCriterion("id_code <", value, "idCode");
+            return (Criteria) this;
+        }
+
+        public Criteria andIdCodeLessThanOrEqualTo(String value) {
+            addCriterion("id_code <=", value, "idCode");
+            return (Criteria) this;
+        }
+
+        public Criteria andIdCodeLike(String value) {
+            addCriterion("id_code like", value, "idCode");
+            return (Criteria) this;
+        }
+
+        public Criteria andIdCodeNotLike(String value) {
+            addCriterion("id_code not like", value, "idCode");
+            return (Criteria) this;
+        }
+
+        public Criteria andIdCodeIn(List<String> values) {
+            addCriterion("id_code in", values, "idCode");
+            return (Criteria) this;
+        }
+
+        public Criteria andIdCodeNotIn(List<String> values) {
+            addCriterion("id_code not in", values, "idCode");
+            return (Criteria) this;
+        }
+
+        public Criteria andIdCodeBetween(String value1, String value2) {
+            addCriterion("id_code between", value1, value2, "idCode");
+            return (Criteria) this;
+        }
+
+        public Criteria andIdCodeNotBetween(String value1, String value2) {
+            addCriterion("id_code not between", value1, value2, "idCode");
+            return (Criteria) this;
+        }
+
+        public Criteria andTypeIsNull() {
+            addCriterion("type is null");
+            return (Criteria) this;
+        }
+
+        public Criteria andTypeIsNotNull() {
+            addCriterion("type is not null");
+            return (Criteria) this;
+        }
+
+        public Criteria andTypeEqualTo(String value) {
+            addCriterion("type =", value, "type");
+            return (Criteria) this;
+        }
+
+        public Criteria andTypeNotEqualTo(String value) {
+            addCriterion("type <>", value, "type");
+            return (Criteria) this;
+        }
+
+        public Criteria andTypeGreaterThan(String value) {
+            addCriterion("type >", value, "type");
+            return (Criteria) this;
+        }
+
+        public Criteria andTypeGreaterThanOrEqualTo(String value) {
+            addCriterion("type >=", value, "type");
+            return (Criteria) this;
+        }
+
+        public Criteria andTypeLessThan(String value) {
+            addCriterion("type <", value, "type");
+            return (Criteria) this;
+        }
+
+        public Criteria andTypeLessThanOrEqualTo(String value) {
+            addCriterion("type <=", value, "type");
+            return (Criteria) this;
+        }
+
+        public Criteria andTypeLike(String value) {
+            addCriterion("type like", value, "type");
+            return (Criteria) this;
+        }
+
+        public Criteria andTypeNotLike(String value) {
+            addCriterion("type not like", value, "type");
+            return (Criteria) this;
+        }
+
+        public Criteria andTypeIn(List<String> values) {
+            addCriterion("type in", values, "type");
+            return (Criteria) this;
+        }
+
+        public Criteria andTypeNotIn(List<String> values) {
+            addCriterion("type not in", values, "type");
+            return (Criteria) this;
+        }
+
+        public Criteria andTypeBetween(String value1, String value2) {
+            addCriterion("type between", value1, value2, "type");
+            return (Criteria) this;
+        }
+
+        public Criteria andTypeNotBetween(String value1, String value2) {
+            addCriterion("type not between", value1, value2, "type");
+            return (Criteria) this;
+        }
     }
 
     public static class Criteria extends GeneratedCriteria {

+ 1 - 1
modelsrc/com/miniframe/model/es/dbconfig/MapperConfig-es.xml

@@ -5,7 +5,7 @@
     This file is generated by MyBatis Generator.
     This file is the shell of a Mapper Config file - in many cases you will need to add
       to this file before it is usable by MyBatis.
-    This file was generated on Fri May 23 09:37:01 CST 2025.
+    This file was generated on Fri May 23 09:47:12 CST 2025.
   -->
   <mappers>
     <mapper resource="com/miniframe/model/es/xml/EsProMapper.xml" />

+ 1 - 1
modelsrc/com/miniframe/model/system/dbconfig/MapperConfig-system.xml

@@ -5,7 +5,7 @@
     This file is generated by MyBatis Generator.
     This file is the shell of a Mapper Config file - in many cases you will need to add
       to this file before it is usable by MyBatis.
-    This file was generated on Fri May 23 09:37:01 CST 2025.
+    This file was generated on Fri May 23 09:47:13 CST 2025.
   -->
   <mappers>
     <mapper resource="com/miniframe/model/system/xml/SysAppcodeMapper.xml" />