Browse Source

自动生成

tudc 4 years ago
parent
commit
4cac2d66fe

+ 32 - 0
src/main/java/com/minpay/db/table/model/DwBranchReportType.java

@@ -36,6 +36,14 @@ public class DwBranchReportType extends AbstractMINBean {
     private String type;
 
     /**
+     * This field was generated by MyBatis Generator.
+     * This field corresponds to the database column dw_branch_report_type.DBRT_TIME_TYPE
+     *
+     * @mbggenerated
+     */
+    private String timeType;
+
+    /**
      * This method was generated by MyBatis Generator.
      * This method returns the value of the database column dw_branch_report_type.DBRT_ID
      *
@@ -130,4 +138,28 @@ public class DwBranchReportType extends AbstractMINBean {
     public void setType(String type) {
         this.type = type == null ? null : type.trim();
     }
+
+    /**
+     * This method was generated by MyBatis Generator.
+     * This method returns the value of the database column dw_branch_report_type.DBRT_TIME_TYPE
+     *
+     * @return the value of dw_branch_report_type.DBRT_TIME_TYPE
+     *
+     * @mbggenerated
+     */
+    public String getTimeType() {
+        return timeType;
+    }
+
+    /**
+     * This method was generated by MyBatis Generator.
+     * This method sets the value of the database column dw_branch_report_type.DBRT_TIME_TYPE
+     *
+     * @param timeType the value for dw_branch_report_type.DBRT_TIME_TYPE
+     *
+     * @mbggenerated
+     */
+    public void setTimeType(String timeType) {
+        this.timeType = timeType == null ? null : timeType.trim();
+    }
 }

+ 78 - 0
src/main/java/com/minpay/db/table/model/DwBranchReportTypeExample.java

@@ -501,6 +501,84 @@ public class DwBranchReportTypeExample {
             addCriterion("DBRT_TYPE not between", value1, value2, "type");
             return (Criteria) this;
         }
+
+        public Criteria andTimeTypeIsNull() {
+            addCriterion("DBRT_TIME_TYPE is null");
+            return (Criteria) this;
+        }
+
+        public Criteria andTimeTypeIsNotNull() {
+            addCriterion("DBRT_TIME_TYPE is not null");
+            return (Criteria) this;
+        }
+
+        public Criteria andTimeTypeEqualTo(String value) {
+            if(value == null ){
+                andTimeTypeIsNull();
+            } else {
+                addCriterion("DBRT_TIME_TYPE =", value, "timeType");
+            }
+            return (Criteria) this;
+        }
+
+        public Criteria andTimeTypeNotEqualTo(String value) {
+            if(value == null ){
+                andTimeTypeIsNotNull();
+            } else {
+                addCriterion("DBRT_TIME_TYPE <>", value, "timeType");
+            }
+            return (Criteria) this;
+        }
+
+        public Criteria andTimeTypeGreaterThan(String value) {
+            addCriterion("DBRT_TIME_TYPE >", value, "timeType");
+            return (Criteria) this;
+        }
+
+        public Criteria andTimeTypeGreaterThanOrEqualTo(String value) {
+            addCriterion("DBRT_TIME_TYPE >=", value, "timeType");
+            return (Criteria) this;
+        }
+
+        public Criteria andTimeTypeLessThan(String value) {
+            addCriterion("DBRT_TIME_TYPE <", value, "timeType");
+            return (Criteria) this;
+        }
+
+        public Criteria andTimeTypeLessThanOrEqualTo(String value) {
+            addCriterion("DBRT_TIME_TYPE <=", value, "timeType");
+            return (Criteria) this;
+        }
+
+        public Criteria andTimeTypeLike(String value) {
+            addCriterion("DBRT_TIME_TYPE like", value, "timeType");
+            return (Criteria) this;
+        }
+
+        public Criteria andTimeTypeNotLike(String value) {
+            addCriterion("DBRT_TIME_TYPE not like", value, "timeType");
+            return (Criteria) this;
+        }
+
+        public Criteria andTimeTypeIn(List<String> values) {
+            addCriterion("DBRT_TIME_TYPE in", values, "timeType");
+            return (Criteria) this;
+        }
+
+        public Criteria andTimeTypeNotIn(List<String> values) {
+            addCriterion("DBRT_TIME_TYPE not in", values, "timeType");
+            return (Criteria) this;
+        }
+
+        public Criteria andTimeTypeBetween(String value1, String value2) {
+            addCriterion("DBRT_TIME_TYPE between", value1, value2, "timeType");
+            return (Criteria) this;
+        }
+
+        public Criteria andTimeTypeNotBetween(String value1, String value2) {
+            addCriterion("DBRT_TIME_TYPE not between", value1, value2, "timeType");
+            return (Criteria) this;
+        }
     }
 
     /**

+ 64 - 0
src/main/java/com/minpay/db/table/model/DwReportInf.java

@@ -60,6 +60,22 @@ public class DwReportInf extends AbstractMINBean {
     private String state;
 
     /**
+     * This field was generated by MyBatis Generator.
+     * This field corresponds to the database column dw_report_inf.DRI_DAY_INTERVAL
+     *
+     * @mbggenerated
+     */
+    private String dayInterval;
+
+    /**
+     * This field was generated by MyBatis Generator.
+     * This field corresponds to the database column dw_report_inf.DRI_TIME_INTERVAL
+     *
+     * @mbggenerated
+     */
+    private String timeInterval;
+
+    /**
      * This method was generated by MyBatis Generator.
      * This method returns the value of the database column dw_report_inf.DRI_ID
      *
@@ -226,4 +242,52 @@ public class DwReportInf extends AbstractMINBean {
     public void setState(String state) {
         this.state = state == null ? null : state.trim();
     }
+
+    /**
+     * This method was generated by MyBatis Generator.
+     * This method returns the value of the database column dw_report_inf.DRI_DAY_INTERVAL
+     *
+     * @return the value of dw_report_inf.DRI_DAY_INTERVAL
+     *
+     * @mbggenerated
+     */
+    public String getDayInterval() {
+        return dayInterval;
+    }
+
+    /**
+     * This method was generated by MyBatis Generator.
+     * This method sets the value of the database column dw_report_inf.DRI_DAY_INTERVAL
+     *
+     * @param dayInterval the value for dw_report_inf.DRI_DAY_INTERVAL
+     *
+     * @mbggenerated
+     */
+    public void setDayInterval(String dayInterval) {
+        this.dayInterval = dayInterval == null ? null : dayInterval.trim();
+    }
+
+    /**
+     * This method was generated by MyBatis Generator.
+     * This method returns the value of the database column dw_report_inf.DRI_TIME_INTERVAL
+     *
+     * @return the value of dw_report_inf.DRI_TIME_INTERVAL
+     *
+     * @mbggenerated
+     */
+    public String getTimeInterval() {
+        return timeInterval;
+    }
+
+    /**
+     * This method was generated by MyBatis Generator.
+     * This method sets the value of the database column dw_report_inf.DRI_TIME_INTERVAL
+     *
+     * @param timeInterval the value for dw_report_inf.DRI_TIME_INTERVAL
+     *
+     * @mbggenerated
+     */
+    public void setTimeInterval(String timeInterval) {
+        this.timeInterval = timeInterval == null ? null : timeInterval.trim();
+    }
 }

+ 156 - 0
src/main/java/com/minpay/db/table/model/DwReportInfExample.java

@@ -735,6 +735,162 @@ public class DwReportInfExample {
             addCriterion("DRI_STATE not between", value1, value2, "state");
             return (Criteria) this;
         }
+
+        public Criteria andDayIntervalIsNull() {
+            addCriterion("DRI_DAY_INTERVAL is null");
+            return (Criteria) this;
+        }
+
+        public Criteria andDayIntervalIsNotNull() {
+            addCriterion("DRI_DAY_INTERVAL is not null");
+            return (Criteria) this;
+        }
+
+        public Criteria andDayIntervalEqualTo(String value) {
+            if(value == null ){
+                andDayIntervalIsNull();
+            } else {
+                addCriterion("DRI_DAY_INTERVAL =", value, "dayInterval");
+            }
+            return (Criteria) this;
+        }
+
+        public Criteria andDayIntervalNotEqualTo(String value) {
+            if(value == null ){
+                andDayIntervalIsNotNull();
+            } else {
+                addCriterion("DRI_DAY_INTERVAL <>", value, "dayInterval");
+            }
+            return (Criteria) this;
+        }
+
+        public Criteria andDayIntervalGreaterThan(String value) {
+            addCriterion("DRI_DAY_INTERVAL >", value, "dayInterval");
+            return (Criteria) this;
+        }
+
+        public Criteria andDayIntervalGreaterThanOrEqualTo(String value) {
+            addCriterion("DRI_DAY_INTERVAL >=", value, "dayInterval");
+            return (Criteria) this;
+        }
+
+        public Criteria andDayIntervalLessThan(String value) {
+            addCriterion("DRI_DAY_INTERVAL <", value, "dayInterval");
+            return (Criteria) this;
+        }
+
+        public Criteria andDayIntervalLessThanOrEqualTo(String value) {
+            addCriterion("DRI_DAY_INTERVAL <=", value, "dayInterval");
+            return (Criteria) this;
+        }
+
+        public Criteria andDayIntervalLike(String value) {
+            addCriterion("DRI_DAY_INTERVAL like", value, "dayInterval");
+            return (Criteria) this;
+        }
+
+        public Criteria andDayIntervalNotLike(String value) {
+            addCriterion("DRI_DAY_INTERVAL not like", value, "dayInterval");
+            return (Criteria) this;
+        }
+
+        public Criteria andDayIntervalIn(List<String> values) {
+            addCriterion("DRI_DAY_INTERVAL in", values, "dayInterval");
+            return (Criteria) this;
+        }
+
+        public Criteria andDayIntervalNotIn(List<String> values) {
+            addCriterion("DRI_DAY_INTERVAL not in", values, "dayInterval");
+            return (Criteria) this;
+        }
+
+        public Criteria andDayIntervalBetween(String value1, String value2) {
+            addCriterion("DRI_DAY_INTERVAL between", value1, value2, "dayInterval");
+            return (Criteria) this;
+        }
+
+        public Criteria andDayIntervalNotBetween(String value1, String value2) {
+            addCriterion("DRI_DAY_INTERVAL not between", value1, value2, "dayInterval");
+            return (Criteria) this;
+        }
+
+        public Criteria andTimeIntervalIsNull() {
+            addCriterion("DRI_TIME_INTERVAL is null");
+            return (Criteria) this;
+        }
+
+        public Criteria andTimeIntervalIsNotNull() {
+            addCriterion("DRI_TIME_INTERVAL is not null");
+            return (Criteria) this;
+        }
+
+        public Criteria andTimeIntervalEqualTo(String value) {
+            if(value == null ){
+                andTimeIntervalIsNull();
+            } else {
+                addCriterion("DRI_TIME_INTERVAL =", value, "timeInterval");
+            }
+            return (Criteria) this;
+        }
+
+        public Criteria andTimeIntervalNotEqualTo(String value) {
+            if(value == null ){
+                andTimeIntervalIsNotNull();
+            } else {
+                addCriterion("DRI_TIME_INTERVAL <>", value, "timeInterval");
+            }
+            return (Criteria) this;
+        }
+
+        public Criteria andTimeIntervalGreaterThan(String value) {
+            addCriterion("DRI_TIME_INTERVAL >", value, "timeInterval");
+            return (Criteria) this;
+        }
+
+        public Criteria andTimeIntervalGreaterThanOrEqualTo(String value) {
+            addCriterion("DRI_TIME_INTERVAL >=", value, "timeInterval");
+            return (Criteria) this;
+        }
+
+        public Criteria andTimeIntervalLessThan(String value) {
+            addCriterion("DRI_TIME_INTERVAL <", value, "timeInterval");
+            return (Criteria) this;
+        }
+
+        public Criteria andTimeIntervalLessThanOrEqualTo(String value) {
+            addCriterion("DRI_TIME_INTERVAL <=", value, "timeInterval");
+            return (Criteria) this;
+        }
+
+        public Criteria andTimeIntervalLike(String value) {
+            addCriterion("DRI_TIME_INTERVAL like", value, "timeInterval");
+            return (Criteria) this;
+        }
+
+        public Criteria andTimeIntervalNotLike(String value) {
+            addCriterion("DRI_TIME_INTERVAL not like", value, "timeInterval");
+            return (Criteria) this;
+        }
+
+        public Criteria andTimeIntervalIn(List<String> values) {
+            addCriterion("DRI_TIME_INTERVAL in", values, "timeInterval");
+            return (Criteria) this;
+        }
+
+        public Criteria andTimeIntervalNotIn(List<String> values) {
+            addCriterion("DRI_TIME_INTERVAL not in", values, "timeInterval");
+            return (Criteria) this;
+        }
+
+        public Criteria andTimeIntervalBetween(String value1, String value2) {
+            addCriterion("DRI_TIME_INTERVAL between", value1, value2, "timeInterval");
+            return (Criteria) this;
+        }
+
+        public Criteria andTimeIntervalNotBetween(String value1, String value2) {
+            addCriterion("DRI_TIME_INTERVAL not between", value1, value2, "timeInterval");
+            return (Criteria) this;
+        }
     }
 
     /**