|
@@ -526,6 +526,336 @@ public class PlanAccountExample {
|
|
|
return (Criteria) this;
|
|
|
}
|
|
|
|
|
|
+ public Criteria andPublishRateIsNull() {
|
|
|
+ addCriterion("publish_rate is null");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andPublishRateIsNotNull() {
|
|
|
+ addCriterion("publish_rate is not null");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andPublishRateEqualTo(Integer value) {
|
|
|
+ addCriterion("publish_rate =", value, "publishRate");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andPublishRateNotEqualTo(Integer value) {
|
|
|
+ addCriterion("publish_rate <>", value, "publishRate");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andPublishRateGreaterThan(Integer value) {
|
|
|
+ addCriterion("publish_rate >", value, "publishRate");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andPublishRateGreaterThanOrEqualTo(Integer value) {
|
|
|
+ addCriterion("publish_rate >=", value, "publishRate");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andPublishRateLessThan(Integer value) {
|
|
|
+ addCriterion("publish_rate <", value, "publishRate");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andPublishRateLessThanOrEqualTo(Integer value) {
|
|
|
+ addCriterion("publish_rate <=", value, "publishRate");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andPublishRateIn(List<Integer> values) {
|
|
|
+ addCriterion("publish_rate in", values, "publishRate");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andPublishRateNotIn(List<Integer> values) {
|
|
|
+ addCriterion("publish_rate not in", values, "publishRate");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andPublishRateBetween(Integer value1, Integer value2) {
|
|
|
+ addCriterion("publish_rate between", value1, value2, "publishRate");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andPublishRateNotBetween(Integer value1, Integer value2) {
|
|
|
+ addCriterion("publish_rate not between", value1, value2, "publishRate");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andPublishDateIsNull() {
|
|
|
+ addCriterion("publish_date is null");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andPublishDateIsNotNull() {
|
|
|
+ addCriterion("publish_date is not null");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andPublishDateEqualTo(String value) {
|
|
|
+ addCriterion("publish_date =", value, "publishDate");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andPublishDateNotEqualTo(String value) {
|
|
|
+ addCriterion("publish_date <>", value, "publishDate");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andPublishDateGreaterThan(String value) {
|
|
|
+ addCriterion("publish_date >", value, "publishDate");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andPublishDateGreaterThanOrEqualTo(String value) {
|
|
|
+ addCriterion("publish_date >=", value, "publishDate");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andPublishDateLessThan(String value) {
|
|
|
+ addCriterion("publish_date <", value, "publishDate");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andPublishDateLessThanOrEqualTo(String value) {
|
|
|
+ addCriterion("publish_date <=", value, "publishDate");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andPublishDateLike(String value) {
|
|
|
+ addCriterion("publish_date like", value, "publishDate");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andPublishDateNotLike(String value) {
|
|
|
+ addCriterion("publish_date not like", value, "publishDate");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andPublishDateIn(List<String> values) {
|
|
|
+ addCriterion("publish_date in", values, "publishDate");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andPublishDateNotIn(List<String> values) {
|
|
|
+ addCriterion("publish_date not in", values, "publishDate");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andPublishDateBetween(String value1, String value2) {
|
|
|
+ addCriterion("publish_date between", value1, value2, "publishDate");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andPublishDateNotBetween(String value1, String value2) {
|
|
|
+ addCriterion("publish_date not between", value1, value2, "publishDate");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andPublishWindowStartIsNull() {
|
|
|
+ addCriterion("publish_window_start is null");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andPublishWindowStartIsNotNull() {
|
|
|
+ addCriterion("publish_window_start is not null");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andPublishWindowStartEqualTo(String value) {
|
|
|
+ addCriterion("publish_window_start =", value, "publishWindowStart");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andPublishWindowStartNotEqualTo(String value) {
|
|
|
+ addCriterion("publish_window_start <>", value, "publishWindowStart");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andPublishWindowStartGreaterThan(String value) {
|
|
|
+ addCriterion("publish_window_start >", value, "publishWindowStart");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andPublishWindowStartGreaterThanOrEqualTo(String value) {
|
|
|
+ addCriterion("publish_window_start >=", value, "publishWindowStart");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andPublishWindowStartLessThan(String value) {
|
|
|
+ addCriterion("publish_window_start <", value, "publishWindowStart");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andPublishWindowStartLessThanOrEqualTo(String value) {
|
|
|
+ addCriterion("publish_window_start <=", value, "publishWindowStart");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andPublishWindowStartLike(String value) {
|
|
|
+ addCriterion("publish_window_start like", value, "publishWindowStart");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andPublishWindowStartNotLike(String value) {
|
|
|
+ addCriterion("publish_window_start not like", value, "publishWindowStart");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andPublishWindowStartIn(List<String> values) {
|
|
|
+ addCriterion("publish_window_start in", values, "publishWindowStart");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andPublishWindowStartNotIn(List<String> values) {
|
|
|
+ addCriterion("publish_window_start not in", values, "publishWindowStart");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andPublishWindowStartBetween(String value1, String value2) {
|
|
|
+ addCriterion("publish_window_start between", value1, value2, "publishWindowStart");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andPublishWindowStartNotBetween(String value1, String value2) {
|
|
|
+ addCriterion("publish_window_start not between", value1, value2, "publishWindowStart");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andPublishWindowEndIsNull() {
|
|
|
+ addCriterion("publish_window_end is null");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andPublishWindowEndIsNotNull() {
|
|
|
+ addCriterion("publish_window_end is not null");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andPublishWindowEndEqualTo(String value) {
|
|
|
+ addCriterion("publish_window_end =", value, "publishWindowEnd");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andPublishWindowEndNotEqualTo(String value) {
|
|
|
+ addCriterion("publish_window_end <>", value, "publishWindowEnd");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andPublishWindowEndGreaterThan(String value) {
|
|
|
+ addCriterion("publish_window_end >", value, "publishWindowEnd");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andPublishWindowEndGreaterThanOrEqualTo(String value) {
|
|
|
+ addCriterion("publish_window_end >=", value, "publishWindowEnd");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andPublishWindowEndLessThan(String value) {
|
|
|
+ addCriterion("publish_window_end <", value, "publishWindowEnd");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andPublishWindowEndLessThanOrEqualTo(String value) {
|
|
|
+ addCriterion("publish_window_end <=", value, "publishWindowEnd");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andPublishWindowEndLike(String value) {
|
|
|
+ addCriterion("publish_window_end like", value, "publishWindowEnd");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andPublishWindowEndNotLike(String value) {
|
|
|
+ addCriterion("publish_window_end not like", value, "publishWindowEnd");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andPublishWindowEndIn(List<String> values) {
|
|
|
+ addCriterion("publish_window_end in", values, "publishWindowEnd");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andPublishWindowEndNotIn(List<String> values) {
|
|
|
+ addCriterion("publish_window_end not in", values, "publishWindowEnd");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andPublishWindowEndBetween(String value1, String value2) {
|
|
|
+ addCriterion("publish_window_end between", value1, value2, "publishWindowEnd");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andPublishWindowEndNotBetween(String value1, String value2) {
|
|
|
+ addCriterion("publish_window_end not between", value1, value2, "publishWindowEnd");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andPublishTimeIntervalIsNull() {
|
|
|
+ addCriterion("publish_time_interval is null");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andPublishTimeIntervalIsNotNull() {
|
|
|
+ addCriterion("publish_time_interval is not null");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andPublishTimeIntervalEqualTo(Integer value) {
|
|
|
+ addCriterion("publish_time_interval =", value, "publishTimeInterval");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andPublishTimeIntervalNotEqualTo(Integer value) {
|
|
|
+ addCriterion("publish_time_interval <>", value, "publishTimeInterval");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andPublishTimeIntervalGreaterThan(Integer value) {
|
|
|
+ addCriterion("publish_time_interval >", value, "publishTimeInterval");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andPublishTimeIntervalGreaterThanOrEqualTo(Integer value) {
|
|
|
+ addCriterion("publish_time_interval >=", value, "publishTimeInterval");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andPublishTimeIntervalLessThan(Integer value) {
|
|
|
+ addCriterion("publish_time_interval <", value, "publishTimeInterval");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andPublishTimeIntervalLessThanOrEqualTo(Integer value) {
|
|
|
+ addCriterion("publish_time_interval <=", value, "publishTimeInterval");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andPublishTimeIntervalIn(List<Integer> values) {
|
|
|
+ addCriterion("publish_time_interval in", values, "publishTimeInterval");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andPublishTimeIntervalNotIn(List<Integer> values) {
|
|
|
+ addCriterion("publish_time_interval not in", values, "publishTimeInterval");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andPublishTimeIntervalBetween(Integer value1, Integer value2) {
|
|
|
+ addCriterion("publish_time_interval between", value1, value2, "publishTimeInterval");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andPublishTimeIntervalNotBetween(Integer value1, Integer value2) {
|
|
|
+ addCriterion("publish_time_interval not between", value1, value2, "publishTimeInterval");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
public Criteria andPublishNumIsNull() {
|
|
|
addCriterion("publish_num is null");
|
|
|
return (Criteria) this;
|
|
@@ -586,6 +916,66 @@ public class PlanAccountExample {
|
|
|
return (Criteria) this;
|
|
|
}
|
|
|
|
|
|
+ public Criteria andPublishPreNumIsNull() {
|
|
|
+ addCriterion("publish_pre_num is null");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andPublishPreNumIsNotNull() {
|
|
|
+ addCriterion("publish_pre_num is not null");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andPublishPreNumEqualTo(Integer value) {
|
|
|
+ addCriterion("publish_pre_num =", value, "publishPreNum");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andPublishPreNumNotEqualTo(Integer value) {
|
|
|
+ addCriterion("publish_pre_num <>", value, "publishPreNum");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andPublishPreNumGreaterThan(Integer value) {
|
|
|
+ addCriterion("publish_pre_num >", value, "publishPreNum");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andPublishPreNumGreaterThanOrEqualTo(Integer value) {
|
|
|
+ addCriterion("publish_pre_num >=", value, "publishPreNum");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andPublishPreNumLessThan(Integer value) {
|
|
|
+ addCriterion("publish_pre_num <", value, "publishPreNum");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andPublishPreNumLessThanOrEqualTo(Integer value) {
|
|
|
+ addCriterion("publish_pre_num <=", value, "publishPreNum");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andPublishPreNumIn(List<Integer> values) {
|
|
|
+ addCriterion("publish_pre_num in", values, "publishPreNum");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andPublishPreNumNotIn(List<Integer> values) {
|
|
|
+ addCriterion("publish_pre_num not in", values, "publishPreNum");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andPublishPreNumBetween(Integer value1, Integer value2) {
|
|
|
+ addCriterion("publish_pre_num between", value1, value2, "publishPreNum");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andPublishPreNumNotBetween(Integer value1, Integer value2) {
|
|
|
+ addCriterion("publish_pre_num not between", value1, value2, "publishPreNum");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
public Criteria andPublishPreMinNumIsNull() {
|
|
|
addCriterion("publish_pre_min_num is null");
|
|
|
return (Criteria) this;
|
|
@@ -716,6 +1106,126 @@ public class PlanAccountExample {
|
|
|
return (Criteria) this;
|
|
|
}
|
|
|
|
|
|
+ public Criteria andPushTypeIsNull() {
|
|
|
+ addCriterion("push_type is null");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andPushTypeIsNotNull() {
|
|
|
+ addCriterion("push_type is not null");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andPushTypeEqualTo(Integer value) {
|
|
|
+ addCriterion("push_type =", value, "pushType");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andPushTypeNotEqualTo(Integer value) {
|
|
|
+ addCriterion("push_type <>", value, "pushType");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andPushTypeGreaterThan(Integer value) {
|
|
|
+ addCriterion("push_type >", value, "pushType");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andPushTypeGreaterThanOrEqualTo(Integer value) {
|
|
|
+ addCriterion("push_type >=", value, "pushType");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andPushTypeLessThan(Integer value) {
|
|
|
+ addCriterion("push_type <", value, "pushType");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andPushTypeLessThanOrEqualTo(Integer value) {
|
|
|
+ addCriterion("push_type <=", value, "pushType");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andPushTypeIn(List<Integer> values) {
|
|
|
+ addCriterion("push_type in", values, "pushType");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andPushTypeNotIn(List<Integer> values) {
|
|
|
+ addCriterion("push_type not in", values, "pushType");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andPushTypeBetween(Integer value1, Integer value2) {
|
|
|
+ addCriterion("push_type between", value1, value2, "pushType");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andPushTypeNotBetween(Integer value1, Integer value2) {
|
|
|
+ addCriterion("push_type not between", value1, value2, "pushType");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andMiniprogramInsertFlagIsNull() {
|
|
|
+ addCriterion("miniprogram_insert_flag is null");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andMiniprogramInsertFlagIsNotNull() {
|
|
|
+ addCriterion("miniprogram_insert_flag is not null");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andMiniprogramInsertFlagEqualTo(Integer value) {
|
|
|
+ addCriterion("miniprogram_insert_flag =", value, "miniprogramInsertFlag");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andMiniprogramInsertFlagNotEqualTo(Integer value) {
|
|
|
+ addCriterion("miniprogram_insert_flag <>", value, "miniprogramInsertFlag");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andMiniprogramInsertFlagGreaterThan(Integer value) {
|
|
|
+ addCriterion("miniprogram_insert_flag >", value, "miniprogramInsertFlag");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andMiniprogramInsertFlagGreaterThanOrEqualTo(Integer value) {
|
|
|
+ addCriterion("miniprogram_insert_flag >=", value, "miniprogramInsertFlag");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andMiniprogramInsertFlagLessThan(Integer value) {
|
|
|
+ addCriterion("miniprogram_insert_flag <", value, "miniprogramInsertFlag");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andMiniprogramInsertFlagLessThanOrEqualTo(Integer value) {
|
|
|
+ addCriterion("miniprogram_insert_flag <=", value, "miniprogramInsertFlag");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andMiniprogramInsertFlagIn(List<Integer> values) {
|
|
|
+ addCriterion("miniprogram_insert_flag in", values, "miniprogramInsertFlag");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andMiniprogramInsertFlagNotIn(List<Integer> values) {
|
|
|
+ addCriterion("miniprogram_insert_flag not in", values, "miniprogramInsertFlag");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andMiniprogramInsertFlagBetween(Integer value1, Integer value2) {
|
|
|
+ addCriterion("miniprogram_insert_flag between", value1, value2, "miniprogramInsertFlag");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andMiniprogramInsertFlagNotBetween(Integer value1, Integer value2) {
|
|
|
+ addCriterion("miniprogram_insert_flag not between", value1, value2, "miniprogramInsertFlag");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
public Criteria andMiniStrategyIsNull() {
|
|
|
addCriterion("mini_strategy is null");
|
|
|
return (Criteria) this;
|
|
@@ -916,193 +1426,243 @@ public class PlanAccountExample {
|
|
|
return (Criteria) this;
|
|
|
}
|
|
|
|
|
|
- public Criteria andPushTypeIsNull() {
|
|
|
- addCriterion("push_type is null");
|
|
|
+ public Criteria andStatusIsNull() {
|
|
|
+ addCriterion("`status` is null");
|
|
|
return (Criteria) this;
|
|
|
}
|
|
|
|
|
|
- public Criteria andPushTypeIsNotNull() {
|
|
|
- addCriterion("push_type is not null");
|
|
|
+ public Criteria andStatusIsNotNull() {
|
|
|
+ addCriterion("`status` is not null");
|
|
|
return (Criteria) this;
|
|
|
}
|
|
|
|
|
|
- public Criteria andPushTypeEqualTo(Integer value) {
|
|
|
- addCriterion("push_type =", value, "pushType");
|
|
|
+ public Criteria andStatusEqualTo(Integer value) {
|
|
|
+ addCriterion("`status` =", value, "status");
|
|
|
return (Criteria) this;
|
|
|
}
|
|
|
|
|
|
- public Criteria andPushTypeNotEqualTo(Integer value) {
|
|
|
- addCriterion("push_type <>", value, "pushType");
|
|
|
+ public Criteria andStatusNotEqualTo(Integer value) {
|
|
|
+ addCriterion("`status` <>", value, "status");
|
|
|
return (Criteria) this;
|
|
|
}
|
|
|
|
|
|
- public Criteria andPushTypeGreaterThan(Integer value) {
|
|
|
- addCriterion("push_type >", value, "pushType");
|
|
|
+ public Criteria andStatusGreaterThan(Integer value) {
|
|
|
+ addCriterion("`status` >", value, "status");
|
|
|
return (Criteria) this;
|
|
|
}
|
|
|
|
|
|
- public Criteria andPushTypeGreaterThanOrEqualTo(Integer value) {
|
|
|
- addCriterion("push_type >=", value, "pushType");
|
|
|
+ public Criteria andStatusGreaterThanOrEqualTo(Integer value) {
|
|
|
+ addCriterion("`status` >=", value, "status");
|
|
|
return (Criteria) this;
|
|
|
}
|
|
|
|
|
|
- public Criteria andPushTypeLessThan(Integer value) {
|
|
|
- addCriterion("push_type <", value, "pushType");
|
|
|
+ public Criteria andStatusLessThan(Integer value) {
|
|
|
+ addCriterion("`status` <", value, "status");
|
|
|
return (Criteria) this;
|
|
|
}
|
|
|
|
|
|
- public Criteria andPushTypeLessThanOrEqualTo(Integer value) {
|
|
|
- addCriterion("push_type <=", value, "pushType");
|
|
|
+ public Criteria andStatusLessThanOrEqualTo(Integer value) {
|
|
|
+ addCriterion("`status` <=", value, "status");
|
|
|
return (Criteria) this;
|
|
|
}
|
|
|
|
|
|
- public Criteria andPushTypeIn(List<Integer> values) {
|
|
|
- addCriterion("push_type in", values, "pushType");
|
|
|
+ public Criteria andStatusIn(List<Integer> values) {
|
|
|
+ addCriterion("`status` in", values, "status");
|
|
|
return (Criteria) this;
|
|
|
}
|
|
|
|
|
|
- public Criteria andPushTypeNotIn(List<Integer> values) {
|
|
|
- addCriterion("push_type not in", values, "pushType");
|
|
|
+ public Criteria andStatusNotIn(List<Integer> values) {
|
|
|
+ addCriterion("`status` not in", values, "status");
|
|
|
return (Criteria) this;
|
|
|
}
|
|
|
|
|
|
- public Criteria andPushTypeBetween(Integer value1, Integer value2) {
|
|
|
- addCriterion("push_type between", value1, value2, "pushType");
|
|
|
+ public Criteria andStatusBetween(Integer value1, Integer value2) {
|
|
|
+ addCriterion("`status` between", value1, value2, "status");
|
|
|
return (Criteria) this;
|
|
|
}
|
|
|
|
|
|
- public Criteria andPushTypeNotBetween(Integer value1, Integer value2) {
|
|
|
- addCriterion("push_type not between", value1, value2, "pushType");
|
|
|
+ public Criteria andStatusNotBetween(Integer value1, Integer value2) {
|
|
|
+ addCriterion("`status` not between", value1, value2, "status");
|
|
|
return (Criteria) this;
|
|
|
}
|
|
|
|
|
|
- public Criteria andStatusIsNull() {
|
|
|
- addCriterion("`status` is null");
|
|
|
+ public Criteria andMatchStatusIsNull() {
|
|
|
+ addCriterion("match_status is null");
|
|
|
return (Criteria) this;
|
|
|
}
|
|
|
|
|
|
- public Criteria andStatusIsNotNull() {
|
|
|
- addCriterion("`status` is not null");
|
|
|
+ public Criteria andMatchStatusIsNotNull() {
|
|
|
+ addCriterion("match_status is not null");
|
|
|
return (Criteria) this;
|
|
|
}
|
|
|
|
|
|
- public Criteria andStatusEqualTo(Integer value) {
|
|
|
- addCriterion("`status` =", value, "status");
|
|
|
+ public Criteria andMatchStatusEqualTo(Integer value) {
|
|
|
+ addCriterion("match_status =", value, "matchStatus");
|
|
|
return (Criteria) this;
|
|
|
}
|
|
|
|
|
|
- public Criteria andStatusNotEqualTo(Integer value) {
|
|
|
- addCriterion("`status` <>", value, "status");
|
|
|
+ public Criteria andMatchStatusNotEqualTo(Integer value) {
|
|
|
+ addCriterion("match_status <>", value, "matchStatus");
|
|
|
return (Criteria) this;
|
|
|
}
|
|
|
|
|
|
- public Criteria andStatusGreaterThan(Integer value) {
|
|
|
- addCriterion("`status` >", value, "status");
|
|
|
+ public Criteria andMatchStatusGreaterThan(Integer value) {
|
|
|
+ addCriterion("match_status >", value, "matchStatus");
|
|
|
return (Criteria) this;
|
|
|
}
|
|
|
|
|
|
- public Criteria andStatusGreaterThanOrEqualTo(Integer value) {
|
|
|
- addCriterion("`status` >=", value, "status");
|
|
|
+ public Criteria andMatchStatusGreaterThanOrEqualTo(Integer value) {
|
|
|
+ addCriterion("match_status >=", value, "matchStatus");
|
|
|
return (Criteria) this;
|
|
|
}
|
|
|
|
|
|
- public Criteria andStatusLessThan(Integer value) {
|
|
|
- addCriterion("`status` <", value, "status");
|
|
|
+ public Criteria andMatchStatusLessThan(Integer value) {
|
|
|
+ addCriterion("match_status <", value, "matchStatus");
|
|
|
return (Criteria) this;
|
|
|
}
|
|
|
|
|
|
- public Criteria andStatusLessThanOrEqualTo(Integer value) {
|
|
|
- addCriterion("`status` <=", value, "status");
|
|
|
+ public Criteria andMatchStatusLessThanOrEqualTo(Integer value) {
|
|
|
+ addCriterion("match_status <=", value, "matchStatus");
|
|
|
return (Criteria) this;
|
|
|
}
|
|
|
|
|
|
- public Criteria andStatusIn(List<Integer> values) {
|
|
|
- addCriterion("`status` in", values, "status");
|
|
|
+ public Criteria andMatchStatusIn(List<Integer> values) {
|
|
|
+ addCriterion("match_status in", values, "matchStatus");
|
|
|
return (Criteria) this;
|
|
|
}
|
|
|
|
|
|
- public Criteria andStatusNotIn(List<Integer> values) {
|
|
|
- addCriterion("`status` not in", values, "status");
|
|
|
+ public Criteria andMatchStatusNotIn(List<Integer> values) {
|
|
|
+ addCriterion("match_status not in", values, "matchStatus");
|
|
|
return (Criteria) this;
|
|
|
}
|
|
|
|
|
|
- public Criteria andStatusBetween(Integer value1, Integer value2) {
|
|
|
- addCriterion("`status` between", value1, value2, "status");
|
|
|
+ public Criteria andMatchStatusBetween(Integer value1, Integer value2) {
|
|
|
+ addCriterion("match_status between", value1, value2, "matchStatus");
|
|
|
return (Criteria) this;
|
|
|
}
|
|
|
|
|
|
- public Criteria andStatusNotBetween(Integer value1, Integer value2) {
|
|
|
- addCriterion("`status` not between", value1, value2, "status");
|
|
|
+ public Criteria andMatchStatusNotBetween(Integer value1, Integer value2) {
|
|
|
+ addCriterion("match_status not between", value1, value2, "matchStatus");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andRetryCountIsNull() {
|
|
|
+ addCriterion("retry_count is null");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andRetryCountIsNotNull() {
|
|
|
+ addCriterion("retry_count is not null");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andRetryCountEqualTo(Integer value) {
|
|
|
+ addCriterion("retry_count =", value, "retryCount");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andRetryCountNotEqualTo(Integer value) {
|
|
|
+ addCriterion("retry_count <>", value, "retryCount");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andRetryCountGreaterThan(Integer value) {
|
|
|
+ addCriterion("retry_count >", value, "retryCount");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andRetryCountGreaterThanOrEqualTo(Integer value) {
|
|
|
+ addCriterion("retry_count >=", value, "retryCount");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andRetryCountLessThan(Integer value) {
|
|
|
+ addCriterion("retry_count <", value, "retryCount");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andRetryCountLessThanOrEqualTo(Integer value) {
|
|
|
+ addCriterion("retry_count <=", value, "retryCount");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andRetryCountIn(List<Integer> values) {
|
|
|
+ addCriterion("retry_count in", values, "retryCount");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andRetryCountNotIn(List<Integer> values) {
|
|
|
+ addCriterion("retry_count not in", values, "retryCount");
|
|
|
return (Criteria) this;
|
|
|
}
|
|
|
|
|
|
- public Criteria andPushIdIsNull() {
|
|
|
- addCriterion("push_id is null");
|
|
|
+ public Criteria andRetryCountBetween(Integer value1, Integer value2) {
|
|
|
+ addCriterion("retry_count between", value1, value2, "retryCount");
|
|
|
return (Criteria) this;
|
|
|
}
|
|
|
|
|
|
- public Criteria andPushIdIsNotNull() {
|
|
|
- addCriterion("push_id is not null");
|
|
|
+ public Criteria andRetryCountNotBetween(Integer value1, Integer value2) {
|
|
|
+ addCriterion("retry_count not between", value1, value2, "retryCount");
|
|
|
return (Criteria) this;
|
|
|
}
|
|
|
|
|
|
- public Criteria andPushIdEqualTo(String value) {
|
|
|
- addCriterion("push_id =", value, "pushId");
|
|
|
+ public Criteria andSendCountIsNull() {
|
|
|
+ addCriterion("send_count is null");
|
|
|
return (Criteria) this;
|
|
|
}
|
|
|
|
|
|
- public Criteria andPushIdNotEqualTo(String value) {
|
|
|
- addCriterion("push_id <>", value, "pushId");
|
|
|
+ public Criteria andSendCountIsNotNull() {
|
|
|
+ addCriterion("send_count is not null");
|
|
|
return (Criteria) this;
|
|
|
}
|
|
|
|
|
|
- public Criteria andPushIdGreaterThan(String value) {
|
|
|
- addCriterion("push_id >", value, "pushId");
|
|
|
+ public Criteria andSendCountEqualTo(Integer value) {
|
|
|
+ addCriterion("send_count =", value, "sendCount");
|
|
|
return (Criteria) this;
|
|
|
}
|
|
|
|
|
|
- public Criteria andPushIdGreaterThanOrEqualTo(String value) {
|
|
|
- addCriterion("push_id >=", value, "pushId");
|
|
|
+ public Criteria andSendCountNotEqualTo(Integer value) {
|
|
|
+ addCriterion("send_count <>", value, "sendCount");
|
|
|
return (Criteria) this;
|
|
|
}
|
|
|
|
|
|
- public Criteria andPushIdLessThan(String value) {
|
|
|
- addCriterion("push_id <", value, "pushId");
|
|
|
+ public Criteria andSendCountGreaterThan(Integer value) {
|
|
|
+ addCriterion("send_count >", value, "sendCount");
|
|
|
return (Criteria) this;
|
|
|
}
|
|
|
|
|
|
- public Criteria andPushIdLessThanOrEqualTo(String value) {
|
|
|
- addCriterion("push_id <=", value, "pushId");
|
|
|
+ public Criteria andSendCountGreaterThanOrEqualTo(Integer value) {
|
|
|
+ addCriterion("send_count >=", value, "sendCount");
|
|
|
return (Criteria) this;
|
|
|
}
|
|
|
|
|
|
- public Criteria andPushIdLike(String value) {
|
|
|
- addCriterion("push_id like", value, "pushId");
|
|
|
+ public Criteria andSendCountLessThan(Integer value) {
|
|
|
+ addCriterion("send_count <", value, "sendCount");
|
|
|
return (Criteria) this;
|
|
|
}
|
|
|
|
|
|
- public Criteria andPushIdNotLike(String value) {
|
|
|
- addCriterion("push_id not like", value, "pushId");
|
|
|
+ public Criteria andSendCountLessThanOrEqualTo(Integer value) {
|
|
|
+ addCriterion("send_count <=", value, "sendCount");
|
|
|
return (Criteria) this;
|
|
|
}
|
|
|
|
|
|
- public Criteria andPushIdIn(List<String> values) {
|
|
|
- addCriterion("push_id in", values, "pushId");
|
|
|
+ public Criteria andSendCountIn(List<Integer> values) {
|
|
|
+ addCriterion("send_count in", values, "sendCount");
|
|
|
return (Criteria) this;
|
|
|
}
|
|
|
|
|
|
- public Criteria andPushIdNotIn(List<String> values) {
|
|
|
- addCriterion("push_id not in", values, "pushId");
|
|
|
+ public Criteria andSendCountNotIn(List<Integer> values) {
|
|
|
+ addCriterion("send_count not in", values, "sendCount");
|
|
|
return (Criteria) this;
|
|
|
}
|
|
|
|
|
|
- public Criteria andPushIdBetween(String value1, String value2) {
|
|
|
- addCriterion("push_id between", value1, value2, "pushId");
|
|
|
+ public Criteria andSendCountBetween(Integer value1, Integer value2) {
|
|
|
+ addCriterion("send_count between", value1, value2, "sendCount");
|
|
|
return (Criteria) this;
|
|
|
}
|
|
|
|
|
|
- public Criteria andPushIdNotBetween(String value1, String value2) {
|
|
|
- addCriterion("push_id not between", value1, value2, "pushId");
|
|
|
+ public Criteria andSendCountNotBetween(Integer value1, Integer value2) {
|
|
|
+ addCriterion("send_count not between", value1, value2, "sendCount");
|
|
|
return (Criteria) this;
|
|
|
}
|
|
|
|