|
|
@@ -898,6 +898,270 @@ public class LitemallCouponUserExample {
|
|
|
return (Criteria) this;
|
|
|
}
|
|
|
|
|
|
+ public Criteria andStartTimeIsNull() {
|
|
|
+ addCriterion("start_time is null");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andStartTimeIsNotNull() {
|
|
|
+ addCriterion("start_time is not null");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andStartTimeEqualTo(LocalDateTime value) {
|
|
|
+ addCriterion("start_time =", value, "startTime");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ /**
|
|
|
+ * This method was generated by MyBatis Generator.
|
|
|
+ * This method corresponds to the database table litemall_coupon_user
|
|
|
+ *
|
|
|
+ * @mbg.generated
|
|
|
+ * @project https://github.com/itfsw/mybatis-generator-plugin
|
|
|
+ */
|
|
|
+ public Criteria andStartTimeEqualToColumn(LitemallCouponUser.Column column) {
|
|
|
+ addCriterion(new StringBuilder("start_time = ").append(column.getEscapedColumnName()).toString());
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andStartTimeNotEqualTo(LocalDateTime value) {
|
|
|
+ addCriterion("start_time <>", value, "startTime");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ /**
|
|
|
+ * This method was generated by MyBatis Generator.
|
|
|
+ * This method corresponds to the database table litemall_coupon_user
|
|
|
+ *
|
|
|
+ * @mbg.generated
|
|
|
+ * @project https://github.com/itfsw/mybatis-generator-plugin
|
|
|
+ */
|
|
|
+ public Criteria andStartTimeNotEqualToColumn(LitemallCouponUser.Column column) {
|
|
|
+ addCriterion(new StringBuilder("start_time <> ").append(column.getEscapedColumnName()).toString());
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andStartTimeGreaterThan(LocalDateTime value) {
|
|
|
+ addCriterion("start_time >", value, "startTime");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ /**
|
|
|
+ * This method was generated by MyBatis Generator.
|
|
|
+ * This method corresponds to the database table litemall_coupon_user
|
|
|
+ *
|
|
|
+ * @mbg.generated
|
|
|
+ * @project https://github.com/itfsw/mybatis-generator-plugin
|
|
|
+ */
|
|
|
+ public Criteria andStartTimeGreaterThanColumn(LitemallCouponUser.Column column) {
|
|
|
+ addCriterion(new StringBuilder("start_time > ").append(column.getEscapedColumnName()).toString());
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andStartTimeGreaterThanOrEqualTo(LocalDateTime value) {
|
|
|
+ addCriterion("start_time >=", value, "startTime");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ /**
|
|
|
+ * This method was generated by MyBatis Generator.
|
|
|
+ * This method corresponds to the database table litemall_coupon_user
|
|
|
+ *
|
|
|
+ * @mbg.generated
|
|
|
+ * @project https://github.com/itfsw/mybatis-generator-plugin
|
|
|
+ */
|
|
|
+ public Criteria andStartTimeGreaterThanOrEqualToColumn(LitemallCouponUser.Column column) {
|
|
|
+ addCriterion(new StringBuilder("start_time >= ").append(column.getEscapedColumnName()).toString());
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andStartTimeLessThan(LocalDateTime value) {
|
|
|
+ addCriterion("start_time <", value, "startTime");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ /**
|
|
|
+ * This method was generated by MyBatis Generator.
|
|
|
+ * This method corresponds to the database table litemall_coupon_user
|
|
|
+ *
|
|
|
+ * @mbg.generated
|
|
|
+ * @project https://github.com/itfsw/mybatis-generator-plugin
|
|
|
+ */
|
|
|
+ public Criteria andStartTimeLessThanColumn(LitemallCouponUser.Column column) {
|
|
|
+ addCriterion(new StringBuilder("start_time < ").append(column.getEscapedColumnName()).toString());
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andStartTimeLessThanOrEqualTo(LocalDateTime value) {
|
|
|
+ addCriterion("start_time <=", value, "startTime");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ /**
|
|
|
+ * This method was generated by MyBatis Generator.
|
|
|
+ * This method corresponds to the database table litemall_coupon_user
|
|
|
+ *
|
|
|
+ * @mbg.generated
|
|
|
+ * @project https://github.com/itfsw/mybatis-generator-plugin
|
|
|
+ */
|
|
|
+ public Criteria andStartTimeLessThanOrEqualToColumn(LitemallCouponUser.Column column) {
|
|
|
+ addCriterion(new StringBuilder("start_time <= ").append(column.getEscapedColumnName()).toString());
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andStartTimeIn(List<LocalDateTime> values) {
|
|
|
+ addCriterion("start_time in", values, "startTime");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andStartTimeNotIn(List<LocalDateTime> values) {
|
|
|
+ addCriterion("start_time not in", values, "startTime");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andStartTimeBetween(LocalDateTime value1, LocalDateTime value2) {
|
|
|
+ addCriterion("start_time between", value1, value2, "startTime");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andStartTimeNotBetween(LocalDateTime value1, LocalDateTime value2) {
|
|
|
+ addCriterion("start_time not between", value1, value2, "startTime");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andEndTimeIsNull() {
|
|
|
+ addCriterion("end_time is null");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andEndTimeIsNotNull() {
|
|
|
+ addCriterion("end_time is not null");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andEndTimeEqualTo(LocalDateTime value) {
|
|
|
+ addCriterion("end_time =", value, "endTime");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ /**
|
|
|
+ * This method was generated by MyBatis Generator.
|
|
|
+ * This method corresponds to the database table litemall_coupon_user
|
|
|
+ *
|
|
|
+ * @mbg.generated
|
|
|
+ * @project https://github.com/itfsw/mybatis-generator-plugin
|
|
|
+ */
|
|
|
+ public Criteria andEndTimeEqualToColumn(LitemallCouponUser.Column column) {
|
|
|
+ addCriterion(new StringBuilder("end_time = ").append(column.getEscapedColumnName()).toString());
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andEndTimeNotEqualTo(LocalDateTime value) {
|
|
|
+ addCriterion("end_time <>", value, "endTime");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ /**
|
|
|
+ * This method was generated by MyBatis Generator.
|
|
|
+ * This method corresponds to the database table litemall_coupon_user
|
|
|
+ *
|
|
|
+ * @mbg.generated
|
|
|
+ * @project https://github.com/itfsw/mybatis-generator-plugin
|
|
|
+ */
|
|
|
+ public Criteria andEndTimeNotEqualToColumn(LitemallCouponUser.Column column) {
|
|
|
+ addCriterion(new StringBuilder("end_time <> ").append(column.getEscapedColumnName()).toString());
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andEndTimeGreaterThan(LocalDateTime value) {
|
|
|
+ addCriterion("end_time >", value, "endTime");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ /**
|
|
|
+ * This method was generated by MyBatis Generator.
|
|
|
+ * This method corresponds to the database table litemall_coupon_user
|
|
|
+ *
|
|
|
+ * @mbg.generated
|
|
|
+ * @project https://github.com/itfsw/mybatis-generator-plugin
|
|
|
+ */
|
|
|
+ public Criteria andEndTimeGreaterThanColumn(LitemallCouponUser.Column column) {
|
|
|
+ addCriterion(new StringBuilder("end_time > ").append(column.getEscapedColumnName()).toString());
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andEndTimeGreaterThanOrEqualTo(LocalDateTime value) {
|
|
|
+ addCriterion("end_time >=", value, "endTime");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ /**
|
|
|
+ * This method was generated by MyBatis Generator.
|
|
|
+ * This method corresponds to the database table litemall_coupon_user
|
|
|
+ *
|
|
|
+ * @mbg.generated
|
|
|
+ * @project https://github.com/itfsw/mybatis-generator-plugin
|
|
|
+ */
|
|
|
+ public Criteria andEndTimeGreaterThanOrEqualToColumn(LitemallCouponUser.Column column) {
|
|
|
+ addCriterion(new StringBuilder("end_time >= ").append(column.getEscapedColumnName()).toString());
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andEndTimeLessThan(LocalDateTime value) {
|
|
|
+ addCriterion("end_time <", value, "endTime");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ /**
|
|
|
+ * This method was generated by MyBatis Generator.
|
|
|
+ * This method corresponds to the database table litemall_coupon_user
|
|
|
+ *
|
|
|
+ * @mbg.generated
|
|
|
+ * @project https://github.com/itfsw/mybatis-generator-plugin
|
|
|
+ */
|
|
|
+ public Criteria andEndTimeLessThanColumn(LitemallCouponUser.Column column) {
|
|
|
+ addCriterion(new StringBuilder("end_time < ").append(column.getEscapedColumnName()).toString());
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andEndTimeLessThanOrEqualTo(LocalDateTime value) {
|
|
|
+ addCriterion("end_time <=", value, "endTime");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ /**
|
|
|
+ * This method was generated by MyBatis Generator.
|
|
|
+ * This method corresponds to the database table litemall_coupon_user
|
|
|
+ *
|
|
|
+ * @mbg.generated
|
|
|
+ * @project https://github.com/itfsw/mybatis-generator-plugin
|
|
|
+ */
|
|
|
+ public Criteria andEndTimeLessThanOrEqualToColumn(LitemallCouponUser.Column column) {
|
|
|
+ addCriterion(new StringBuilder("end_time <= ").append(column.getEscapedColumnName()).toString());
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andEndTimeIn(List<LocalDateTime> values) {
|
|
|
+ addCriterion("end_time in", values, "endTime");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andEndTimeNotIn(List<LocalDateTime> values) {
|
|
|
+ addCriterion("end_time not in", values, "endTime");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andEndTimeBetween(LocalDateTime value1, LocalDateTime value2) {
|
|
|
+ addCriterion("end_time between", value1, value2, "endTime");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andEndTimeNotBetween(LocalDateTime value1, LocalDateTime value2) {
|
|
|
+ addCriterion("end_time not between", value1, value2, "endTime");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
public Criteria andOrderIdIsNull() {
|
|
|
addCriterion("order_id is null");
|
|
|
return (Criteria) this;
|