|
|
@ -355,52 +355,52 @@ public class CompeteStartOrderExample { |
|
|
|
return (Criteria) this; |
|
|
|
} |
|
|
|
|
|
|
|
public Criteria andCompeteOrderEqualTo(Byte value) { |
|
|
|
public Criteria andCompeteOrderEqualTo(Integer value) { |
|
|
|
addCriterion("compete_order =", value, "competeOrder"); |
|
|
|
return (Criteria) this; |
|
|
|
} |
|
|
|
|
|
|
|
public Criteria andCompeteOrderNotEqualTo(Byte value) { |
|
|
|
public Criteria andCompeteOrderNotEqualTo(Integer value) { |
|
|
|
addCriterion("compete_order <>", value, "competeOrder"); |
|
|
|
return (Criteria) this; |
|
|
|
} |
|
|
|
|
|
|
|
public Criteria andCompeteOrderGreaterThan(Byte value) { |
|
|
|
public Criteria andCompeteOrderGreaterThan(Integer value) { |
|
|
|
addCriterion("compete_order >", value, "competeOrder"); |
|
|
|
return (Criteria) this; |
|
|
|
} |
|
|
|
|
|
|
|
public Criteria andCompeteOrderGreaterThanOrEqualTo(Byte value) { |
|
|
|
public Criteria andCompeteOrderGreaterThanOrEqualTo(Integer value) { |
|
|
|
addCriterion("compete_order >=", value, "competeOrder"); |
|
|
|
return (Criteria) this; |
|
|
|
} |
|
|
|
|
|
|
|
public Criteria andCompeteOrderLessThan(Byte value) { |
|
|
|
public Criteria andCompeteOrderLessThan(Integer value) { |
|
|
|
addCriterion("compete_order <", value, "competeOrder"); |
|
|
|
return (Criteria) this; |
|
|
|
} |
|
|
|
|
|
|
|
public Criteria andCompeteOrderLessThanOrEqualTo(Byte value) { |
|
|
|
public Criteria andCompeteOrderLessThanOrEqualTo(Integer value) { |
|
|
|
addCriterion("compete_order <=", value, "competeOrder"); |
|
|
|
return (Criteria) this; |
|
|
|
} |
|
|
|
|
|
|
|
public Criteria andCompeteOrderIn(List<Byte> values) { |
|
|
|
public Criteria andCompeteOrderIn(List<Integer> values) { |
|
|
|
addCriterion("compete_order in", values, "competeOrder"); |
|
|
|
return (Criteria) this; |
|
|
|
} |
|
|
|
|
|
|
|
public Criteria andCompeteOrderNotIn(List<Byte> values) { |
|
|
|
public Criteria andCompeteOrderNotIn(List<Integer> values) { |
|
|
|
addCriterion("compete_order not in", values, "competeOrder"); |
|
|
|
return (Criteria) this; |
|
|
|
} |
|
|
|
|
|
|
|
public Criteria andCompeteOrderBetween(Byte value1, Byte value2) { |
|
|
|
public Criteria andCompeteOrderBetween(Integer value1, Integer value2) { |
|
|
|
addCriterion("compete_order between", value1, value2, "competeOrder"); |
|
|
|
return (Criteria) this; |
|
|
|
} |
|
|
|
|
|
|
|
public Criteria andCompeteOrderNotBetween(Byte value1, Byte value2) { |
|
|
|
public Criteria andCompeteOrderNotBetween(Integer value1, Integer value2) { |
|
|
|
addCriterion("compete_order not between", value1, value2, "competeOrder"); |
|
|
|
return (Criteria) this; |
|
|
|
} |
|
|
@ -465,493 +465,493 @@ public class CompeteStartOrderExample { |
|
|
|
return (Criteria) this; |
|
|
|
} |
|
|
|
|
|
|
|
public Criteria andCreatedAtIsNull() { |
|
|
|
addCriterion("created_at is null"); |
|
|
|
public Criteria andTaskIdIsNull() { |
|
|
|
addCriterion("task_id is null"); |
|
|
|
return (Criteria) this; |
|
|
|
} |
|
|
|
|
|
|
|
public Criteria andCreatedAtIsNotNull() { |
|
|
|
addCriterion("created_at is not null"); |
|
|
|
public Criteria andTaskIdIsNotNull() { |
|
|
|
addCriterion("task_id is not null"); |
|
|
|
return (Criteria) this; |
|
|
|
} |
|
|
|
|
|
|
|
public Criteria andCreatedAtEqualTo(Date value) { |
|
|
|
addCriterion("created_at =", value, "createdAt"); |
|
|
|
public Criteria andTaskIdEqualTo(Long value) { |
|
|
|
addCriterion("task_id =", value, "taskId"); |
|
|
|
return (Criteria) this; |
|
|
|
} |
|
|
|
|
|
|
|
public Criteria andCreatedAtNotEqualTo(Date value) { |
|
|
|
addCriterion("created_at <>", value, "createdAt"); |
|
|
|
public Criteria andTaskIdNotEqualTo(Long value) { |
|
|
|
addCriterion("task_id <>", value, "taskId"); |
|
|
|
return (Criteria) this; |
|
|
|
} |
|
|
|
|
|
|
|
public Criteria andCreatedAtGreaterThan(Date value) { |
|
|
|
addCriterion("created_at >", value, "createdAt"); |
|
|
|
public Criteria andTaskIdGreaterThan(Long value) { |
|
|
|
addCriterion("task_id >", value, "taskId"); |
|
|
|
return (Criteria) this; |
|
|
|
} |
|
|
|
|
|
|
|
public Criteria andCreatedAtGreaterThanOrEqualTo(Date value) { |
|
|
|
addCriterion("created_at >=", value, "createdAt"); |
|
|
|
public Criteria andTaskIdGreaterThanOrEqualTo(Long value) { |
|
|
|
addCriterion("task_id >=", value, "taskId"); |
|
|
|
return (Criteria) this; |
|
|
|
} |
|
|
|
|
|
|
|
public Criteria andCreatedAtLessThan(Date value) { |
|
|
|
addCriterion("created_at <", value, "createdAt"); |
|
|
|
public Criteria andTaskIdLessThan(Long value) { |
|
|
|
addCriterion("task_id <", value, "taskId"); |
|
|
|
return (Criteria) this; |
|
|
|
} |
|
|
|
|
|
|
|
public Criteria andCreatedAtLessThanOrEqualTo(Date value) { |
|
|
|
addCriterion("created_at <=", value, "createdAt"); |
|
|
|
public Criteria andTaskIdLessThanOrEqualTo(Long value) { |
|
|
|
addCriterion("task_id <=", value, "taskId"); |
|
|
|
return (Criteria) this; |
|
|
|
} |
|
|
|
|
|
|
|
public Criteria andCreatedAtIn(List<Date> values) { |
|
|
|
addCriterion("created_at in", values, "createdAt"); |
|
|
|
public Criteria andTaskIdIn(List<Long> values) { |
|
|
|
addCriterion("task_id in", values, "taskId"); |
|
|
|
return (Criteria) this; |
|
|
|
} |
|
|
|
|
|
|
|
public Criteria andCreatedAtNotIn(List<Date> values) { |
|
|
|
addCriterion("created_at not in", values, "createdAt"); |
|
|
|
public Criteria andTaskIdNotIn(List<Long> values) { |
|
|
|
addCriterion("task_id not in", values, "taskId"); |
|
|
|
return (Criteria) this; |
|
|
|
} |
|
|
|
|
|
|
|
public Criteria andCreatedAtBetween(Date value1, Date value2) { |
|
|
|
addCriterion("created_at between", value1, value2, "createdAt"); |
|
|
|
public Criteria andTaskIdBetween(Long value1, Long value2) { |
|
|
|
addCriterion("task_id between", value1, value2, "taskId"); |
|
|
|
return (Criteria) this; |
|
|
|
} |
|
|
|
|
|
|
|
public Criteria andCreatedAtNotBetween(Date value1, Date value2) { |
|
|
|
addCriterion("created_at not between", value1, value2, "createdAt"); |
|
|
|
public Criteria andTaskIdNotBetween(Long value1, Long value2) { |
|
|
|
addCriterion("task_id not between", value1, value2, "taskId"); |
|
|
|
return (Criteria) this; |
|
|
|
} |
|
|
|
|
|
|
|
public Criteria andUpdatedAtIsNull() { |
|
|
|
addCriterion("updated_at is null"); |
|
|
|
public Criteria andStartTimeIsNull() { |
|
|
|
addCriterion("start_time is null"); |
|
|
|
return (Criteria) this; |
|
|
|
} |
|
|
|
|
|
|
|
public Criteria andUpdatedAtIsNotNull() { |
|
|
|
addCriterion("updated_at is not null"); |
|
|
|
public Criteria andStartTimeIsNotNull() { |
|
|
|
addCriterion("start_time is not null"); |
|
|
|
return (Criteria) this; |
|
|
|
} |
|
|
|
|
|
|
|
public Criteria andUpdatedAtEqualTo(Date value) { |
|
|
|
addCriterion("updated_at =", value, "updatedAt"); |
|
|
|
public Criteria andStartTimeEqualTo(Long value) { |
|
|
|
addCriterion("start_time =", value, "startTime"); |
|
|
|
return (Criteria) this; |
|
|
|
} |
|
|
|
|
|
|
|
public Criteria andUpdatedAtNotEqualTo(Date value) { |
|
|
|
addCriterion("updated_at <>", value, "updatedAt"); |
|
|
|
public Criteria andStartTimeNotEqualTo(Long value) { |
|
|
|
addCriterion("start_time <>", value, "startTime"); |
|
|
|
return (Criteria) this; |
|
|
|
} |
|
|
|
|
|
|
|
public Criteria andUpdatedAtGreaterThan(Date value) { |
|
|
|
addCriterion("updated_at >", value, "updatedAt"); |
|
|
|
public Criteria andStartTimeGreaterThan(Long value) { |
|
|
|
addCriterion("start_time >", value, "startTime"); |
|
|
|
return (Criteria) this; |
|
|
|
} |
|
|
|
|
|
|
|
public Criteria andUpdatedAtGreaterThanOrEqualTo(Date value) { |
|
|
|
addCriterion("updated_at >=", value, "updatedAt"); |
|
|
|
public Criteria andStartTimeGreaterThanOrEqualTo(Long value) { |
|
|
|
addCriterion("start_time >=", value, "startTime"); |
|
|
|
return (Criteria) this; |
|
|
|
} |
|
|
|
|
|
|
|
public Criteria andUpdatedAtLessThan(Date value) { |
|
|
|
addCriterion("updated_at <", value, "updatedAt"); |
|
|
|
public Criteria andStartTimeLessThan(Long value) { |
|
|
|
addCriterion("start_time <", value, "startTime"); |
|
|
|
return (Criteria) this; |
|
|
|
} |
|
|
|
|
|
|
|
public Criteria andUpdatedAtLessThanOrEqualTo(Date value) { |
|
|
|
addCriterion("updated_at <=", value, "updatedAt"); |
|
|
|
public Criteria andStartTimeLessThanOrEqualTo(Long value) { |
|
|
|
addCriterion("start_time <=", value, "startTime"); |
|
|
|
return (Criteria) this; |
|
|
|
} |
|
|
|
|
|
|
|
public Criteria andUpdatedAtIn(List<Date> values) { |
|
|
|
addCriterion("updated_at in", values, "updatedAt"); |
|
|
|
public Criteria andStartTimeIn(List<Long> values) { |
|
|
|
addCriterion("start_time in", values, "startTime"); |
|
|
|
return (Criteria) this; |
|
|
|
} |
|
|
|
|
|
|
|
public Criteria andUpdatedAtNotIn(List<Date> values) { |
|
|
|
addCriterion("updated_at not in", values, "updatedAt"); |
|
|
|
public Criteria andStartTimeNotIn(List<Long> values) { |
|
|
|
addCriterion("start_time not in", values, "startTime"); |
|
|
|
return (Criteria) this; |
|
|
|
} |
|
|
|
|
|
|
|
public Criteria andUpdatedAtBetween(Date value1, Date value2) { |
|
|
|
addCriterion("updated_at between", value1, value2, "updatedAt"); |
|
|
|
public Criteria andStartTimeBetween(Long value1, Long value2) { |
|
|
|
addCriterion("start_time between", value1, value2, "startTime"); |
|
|
|
return (Criteria) this; |
|
|
|
} |
|
|
|
|
|
|
|
public Criteria andUpdatedAtNotBetween(Date value1, Date value2) { |
|
|
|
addCriterion("updated_at not between", value1, value2, "updatedAt"); |
|
|
|
public Criteria andStartTimeNotBetween(Long value1, Long value2) { |
|
|
|
addCriterion("start_time not between", value1, value2, "startTime"); |
|
|
|
return (Criteria) this; |
|
|
|
} |
|
|
|
|
|
|
|
public Criteria andRecStatusIsNull() { |
|
|
|
addCriterion("rec_status is null"); |
|
|
|
public Criteria andEndTimeIsNull() { |
|
|
|
addCriterion("end_time is null"); |
|
|
|
return (Criteria) this; |
|
|
|
} |
|
|
|
|
|
|
|
public Criteria andRecStatusIsNotNull() { |
|
|
|
addCriterion("rec_status is not null"); |
|
|
|
public Criteria andEndTimeIsNotNull() { |
|
|
|
addCriterion("end_time is not null"); |
|
|
|
return (Criteria) this; |
|
|
|
} |
|
|
|
|
|
|
|
public Criteria andRecStatusEqualTo(Byte value) { |
|
|
|
addCriterion("rec_status =", value, "recStatus"); |
|
|
|
public Criteria andEndTimeEqualTo(Long value) { |
|
|
|
addCriterion("end_time =", value, "endTime"); |
|
|
|
return (Criteria) this; |
|
|
|
} |
|
|
|
|
|
|
|
public Criteria andRecStatusNotEqualTo(Byte value) { |
|
|
|
addCriterion("rec_status <>", value, "recStatus"); |
|
|
|
public Criteria andEndTimeNotEqualTo(Long value) { |
|
|
|
addCriterion("end_time <>", value, "endTime"); |
|
|
|
return (Criteria) this; |
|
|
|
} |
|
|
|
|
|
|
|
public Criteria andRecStatusGreaterThan(Byte value) { |
|
|
|
addCriterion("rec_status >", value, "recStatus"); |
|
|
|
public Criteria andEndTimeGreaterThan(Long value) { |
|
|
|
addCriterion("end_time >", value, "endTime"); |
|
|
|
return (Criteria) this; |
|
|
|
} |
|
|
|
|
|
|
|
public Criteria andRecStatusGreaterThanOrEqualTo(Byte value) { |
|
|
|
addCriterion("rec_status >=", value, "recStatus"); |
|
|
|
public Criteria andEndTimeGreaterThanOrEqualTo(Long value) { |
|
|
|
addCriterion("end_time >=", value, "endTime"); |
|
|
|
return (Criteria) this; |
|
|
|
} |
|
|
|
|
|
|
|
public Criteria andRecStatusLessThan(Byte value) { |
|
|
|
addCriterion("rec_status <", value, "recStatus"); |
|
|
|
public Criteria andEndTimeLessThan(Long value) { |
|
|
|
addCriterion("end_time <", value, "endTime"); |
|
|
|
return (Criteria) this; |
|
|
|
} |
|
|
|
|
|
|
|
public Criteria andRecStatusLessThanOrEqualTo(Byte value) { |
|
|
|
addCriterion("rec_status <=", value, "recStatus"); |
|
|
|
public Criteria andEndTimeLessThanOrEqualTo(Long value) { |
|
|
|
addCriterion("end_time <=", value, "endTime"); |
|
|
|
return (Criteria) this; |
|
|
|
} |
|
|
|
|
|
|
|
public Criteria andRecStatusIn(List<Byte> values) { |
|
|
|
addCriterion("rec_status in", values, "recStatus"); |
|
|
|
public Criteria andEndTimeIn(List<Long> values) { |
|
|
|
addCriterion("end_time in", values, "endTime"); |
|
|
|
return (Criteria) this; |
|
|
|
} |
|
|
|
|
|
|
|
public Criteria andRecStatusNotIn(List<Byte> values) { |
|
|
|
addCriterion("rec_status not in", values, "recStatus"); |
|
|
|
public Criteria andEndTimeNotIn(List<Long> values) { |
|
|
|
addCriterion("end_time not in", values, "endTime"); |
|
|
|
return (Criteria) this; |
|
|
|
} |
|
|
|
|
|
|
|
public Criteria andRecStatusBetween(Byte value1, Byte value2) { |
|
|
|
addCriterion("rec_status between", value1, value2, "recStatus"); |
|
|
|
public Criteria andEndTimeBetween(Long value1, Long value2) { |
|
|
|
addCriterion("end_time between", value1, value2, "endTime"); |
|
|
|
return (Criteria) this; |
|
|
|
} |
|
|
|
|
|
|
|
public Criteria andRecStatusNotBetween(Byte value1, Byte value2) { |
|
|
|
addCriterion("rec_status not between", value1, value2, "recStatus"); |
|
|
|
public Criteria andEndTimeNotBetween(Long value1, Long value2) { |
|
|
|
addCriterion("end_time not between", value1, value2, "endTime"); |
|
|
|
return (Criteria) this; |
|
|
|
} |
|
|
|
|
|
|
|
public Criteria andTaskIdIsNull() { |
|
|
|
addCriterion("task_id is null"); |
|
|
|
public Criteria andWaiverIsNull() { |
|
|
|
addCriterion("waiver is null"); |
|
|
|
return (Criteria) this; |
|
|
|
} |
|
|
|
|
|
|
|
public Criteria andTaskIdIsNotNull() { |
|
|
|
addCriterion("task_id is not null"); |
|
|
|
public Criteria andWaiverIsNotNull() { |
|
|
|
addCriterion("waiver is not null"); |
|
|
|
return (Criteria) this; |
|
|
|
} |
|
|
|
|
|
|
|
public Criteria andTaskIdEqualTo(Long value) { |
|
|
|
addCriterion("task_id =", value, "taskId"); |
|
|
|
public Criteria andWaiverEqualTo(Byte value) { |
|
|
|
addCriterion("waiver =", value, "waiver"); |
|
|
|
return (Criteria) this; |
|
|
|
} |
|
|
|
|
|
|
|
public Criteria andTaskIdNotEqualTo(Long value) { |
|
|
|
addCriterion("task_id <>", value, "taskId"); |
|
|
|
public Criteria andWaiverNotEqualTo(Byte value) { |
|
|
|
addCriterion("waiver <>", value, "waiver"); |
|
|
|
return (Criteria) this; |
|
|
|
} |
|
|
|
|
|
|
|
public Criteria andTaskIdGreaterThan(Long value) { |
|
|
|
addCriterion("task_id >", value, "taskId"); |
|
|
|
public Criteria andWaiverGreaterThan(Byte value) { |
|
|
|
addCriterion("waiver >", value, "waiver"); |
|
|
|
return (Criteria) this; |
|
|
|
} |
|
|
|
|
|
|
|
public Criteria andTaskIdGreaterThanOrEqualTo(Long value) { |
|
|
|
addCriterion("task_id >=", value, "taskId"); |
|
|
|
public Criteria andWaiverGreaterThanOrEqualTo(Byte value) { |
|
|
|
addCriterion("waiver >=", value, "waiver"); |
|
|
|
return (Criteria) this; |
|
|
|
} |
|
|
|
|
|
|
|
public Criteria andTaskIdLessThan(Long value) { |
|
|
|
addCriterion("task_id <", value, "taskId"); |
|
|
|
public Criteria andWaiverLessThan(Byte value) { |
|
|
|
addCriterion("waiver <", value, "waiver"); |
|
|
|
return (Criteria) this; |
|
|
|
} |
|
|
|
|
|
|
|
public Criteria andTaskIdLessThanOrEqualTo(Long value) { |
|
|
|
addCriterion("task_id <=", value, "taskId"); |
|
|
|
public Criteria andWaiverLessThanOrEqualTo(Byte value) { |
|
|
|
addCriterion("waiver <=", value, "waiver"); |
|
|
|
return (Criteria) this; |
|
|
|
} |
|
|
|
|
|
|
|
public Criteria andTaskIdIn(List<Long> values) { |
|
|
|
addCriterion("task_id in", values, "taskId"); |
|
|
|
public Criteria andWaiverIn(List<Byte> values) { |
|
|
|
addCriterion("waiver in", values, "waiver"); |
|
|
|
return (Criteria) this; |
|
|
|
} |
|
|
|
|
|
|
|
public Criteria andTaskIdNotIn(List<Long> values) { |
|
|
|
addCriterion("task_id not in", values, "taskId"); |
|
|
|
public Criteria andWaiverNotIn(List<Byte> values) { |
|
|
|
addCriterion("waiver not in", values, "waiver"); |
|
|
|
return (Criteria) this; |
|
|
|
} |
|
|
|
|
|
|
|
public Criteria andTaskIdBetween(Long value1, Long value2) { |
|
|
|
addCriterion("task_id between", value1, value2, "taskId"); |
|
|
|
public Criteria andWaiverBetween(Byte value1, Byte value2) { |
|
|
|
addCriterion("waiver between", value1, value2, "waiver"); |
|
|
|
return (Criteria) this; |
|
|
|
} |
|
|
|
|
|
|
|
public Criteria andTaskIdNotBetween(Long value1, Long value2) { |
|
|
|
addCriterion("task_id not between", value1, value2, "taskId"); |
|
|
|
public Criteria andWaiverNotBetween(Byte value1, Byte value2) { |
|
|
|
addCriterion("waiver not between", value1, value2, "waiver"); |
|
|
|
return (Criteria) this; |
|
|
|
} |
|
|
|
|
|
|
|
public Criteria andStartTimeIsNull() { |
|
|
|
addCriterion("start_time is null"); |
|
|
|
public Criteria andRemarkIsNull() { |
|
|
|
addCriterion("remark is null"); |
|
|
|
return (Criteria) this; |
|
|
|
} |
|
|
|
|
|
|
|
public Criteria andStartTimeIsNotNull() { |
|
|
|
addCriterion("start_time is not null"); |
|
|
|
public Criteria andRemarkIsNotNull() { |
|
|
|
addCriterion("remark is not null"); |
|
|
|
return (Criteria) this; |
|
|
|
} |
|
|
|
|
|
|
|
public Criteria andStartTimeEqualTo(Long value) { |
|
|
|
addCriterion("start_time =", value, "startTime"); |
|
|
|
public Criteria andRemarkEqualTo(String value) { |
|
|
|
addCriterion("remark =", value, "remark"); |
|
|
|
return (Criteria) this; |
|
|
|
} |
|
|
|
|
|
|
|
public Criteria andStartTimeNotEqualTo(Long value) { |
|
|
|
addCriterion("start_time <>", value, "startTime"); |
|
|
|
public Criteria andRemarkNotEqualTo(String value) { |
|
|
|
addCriterion("remark <>", value, "remark"); |
|
|
|
return (Criteria) this; |
|
|
|
} |
|
|
|
|
|
|
|
public Criteria andStartTimeGreaterThan(Long value) { |
|
|
|
addCriterion("start_time >", value, "startTime"); |
|
|
|
public Criteria andRemarkGreaterThan(String value) { |
|
|
|
addCriterion("remark >", value, "remark"); |
|
|
|
return (Criteria) this; |
|
|
|
} |
|
|
|
|
|
|
|
public Criteria andStartTimeGreaterThanOrEqualTo(Long value) { |
|
|
|
addCriterion("start_time >=", value, "startTime"); |
|
|
|
public Criteria andRemarkGreaterThanOrEqualTo(String value) { |
|
|
|
addCriterion("remark >=", value, "remark"); |
|
|
|
return (Criteria) this; |
|
|
|
} |
|
|
|
|
|
|
|
public Criteria andStartTimeLessThan(Long value) { |
|
|
|
addCriterion("start_time <", value, "startTime"); |
|
|
|
public Criteria andRemarkLessThan(String value) { |
|
|
|
addCriterion("remark <", value, "remark"); |
|
|
|
return (Criteria) this; |
|
|
|
} |
|
|
|
|
|
|
|
public Criteria andStartTimeLessThanOrEqualTo(Long value) { |
|
|
|
addCriterion("start_time <=", value, "startTime"); |
|
|
|
public Criteria andRemarkLessThanOrEqualTo(String value) { |
|
|
|
addCriterion("remark <=", value, "remark"); |
|
|
|
return (Criteria) this; |
|
|
|
} |
|
|
|
|
|
|
|
public Criteria andStartTimeIn(List<Long> values) { |
|
|
|
addCriterion("start_time in", values, "startTime"); |
|
|
|
public Criteria andRemarkLike(String value) { |
|
|
|
addCriterion("remark like", value, "remark"); |
|
|
|
return (Criteria) this; |
|
|
|
} |
|
|
|
|
|
|
|
public Criteria andStartTimeNotIn(List<Long> values) { |
|
|
|
addCriterion("start_time not in", values, "startTime"); |
|
|
|
public Criteria andRemarkNotLike(String value) { |
|
|
|
addCriterion("remark not like", value, "remark"); |
|
|
|
return (Criteria) this; |
|
|
|
} |
|
|
|
|
|
|
|
public Criteria andStartTimeBetween(Long value1, Long value2) { |
|
|
|
addCriterion("start_time between", value1, value2, "startTime"); |
|
|
|
public Criteria andRemarkIn(List<String> values) { |
|
|
|
addCriterion("remark in", values, "remark"); |
|
|
|
return (Criteria) this; |
|
|
|
} |
|
|
|
|
|
|
|
public Criteria andStartTimeNotBetween(Long value1, Long value2) { |
|
|
|
addCriterion("start_time not between", value1, value2, "startTime"); |
|
|
|
public Criteria andRemarkNotIn(List<String> values) { |
|
|
|
addCriterion("remark not in", values, "remark"); |
|
|
|
return (Criteria) this; |
|
|
|
} |
|
|
|
|
|
|
|
public Criteria andEndTimeIsNull() { |
|
|
|
addCriterion("end_time is null"); |
|
|
|
public Criteria andRemarkBetween(String value1, String value2) { |
|
|
|
addCriterion("remark between", value1, value2, "remark"); |
|
|
|
return (Criteria) this; |
|
|
|
} |
|
|
|
|
|
|
|
public Criteria andEndTimeIsNotNull() { |
|
|
|
addCriterion("end_time is not null"); |
|
|
|
public Criteria andRemarkNotBetween(String value1, String value2) { |
|
|
|
addCriterion("remark not between", value1, value2, "remark"); |
|
|
|
return (Criteria) this; |
|
|
|
} |
|
|
|
|
|
|
|
public Criteria andEndTimeEqualTo(Long value) { |
|
|
|
addCriterion("end_time =", value, "endTime"); |
|
|
|
public Criteria andCreatedAtIsNull() { |
|
|
|
addCriterion("created_at is null"); |
|
|
|
return (Criteria) this; |
|
|
|
} |
|
|
|
|
|
|
|
public Criteria andEndTimeNotEqualTo(Long value) { |
|
|
|
addCriterion("end_time <>", value, "endTime"); |
|
|
|
public Criteria andCreatedAtIsNotNull() { |
|
|
|
addCriterion("created_at is not null"); |
|
|
|
return (Criteria) this; |
|
|
|
} |
|
|
|
|
|
|
|
public Criteria andEndTimeGreaterThan(Long value) { |
|
|
|
addCriterion("end_time >", value, "endTime"); |
|
|
|
public Criteria andCreatedAtEqualTo(Date value) { |
|
|
|
addCriterion("created_at =", value, "createdAt"); |
|
|
|
return (Criteria) this; |
|
|
|
} |
|
|
|
|
|
|
|
public Criteria andEndTimeGreaterThanOrEqualTo(Long value) { |
|
|
|
addCriterion("end_time >=", value, "endTime"); |
|
|
|
public Criteria andCreatedAtNotEqualTo(Date value) { |
|
|
|
addCriterion("created_at <>", value, "createdAt"); |
|
|
|
return (Criteria) this; |
|
|
|
} |
|
|
|
|
|
|
|
public Criteria andEndTimeLessThan(Long value) { |
|
|
|
addCriterion("end_time <", value, "endTime"); |
|
|
|
public Criteria andCreatedAtGreaterThan(Date value) { |
|
|
|
addCriterion("created_at >", value, "createdAt"); |
|
|
|
return (Criteria) this; |
|
|
|
} |
|
|
|
|
|
|
|
public Criteria andEndTimeLessThanOrEqualTo(Long value) { |
|
|
|
addCriterion("end_time <=", value, "endTime"); |
|
|
|
public Criteria andCreatedAtGreaterThanOrEqualTo(Date value) { |
|
|
|
addCriterion("created_at >=", value, "createdAt"); |
|
|
|
return (Criteria) this; |
|
|
|
} |
|
|
|
|
|
|
|
public Criteria andEndTimeIn(List<Long> values) { |
|
|
|
addCriterion("end_time in", values, "endTime"); |
|
|
|
public Criteria andCreatedAtLessThan(Date value) { |
|
|
|
addCriterion("created_at <", value, "createdAt"); |
|
|
|
return (Criteria) this; |
|
|
|
} |
|
|
|
|
|
|
|
public Criteria andEndTimeNotIn(List<Long> values) { |
|
|
|
addCriterion("end_time not in", values, "endTime"); |
|
|
|
public Criteria andCreatedAtLessThanOrEqualTo(Date value) { |
|
|
|
addCriterion("created_at <=", value, "createdAt"); |
|
|
|
return (Criteria) this; |
|
|
|
} |
|
|
|
|
|
|
|
public Criteria andEndTimeBetween(Long value1, Long value2) { |
|
|
|
addCriterion("end_time between", value1, value2, "endTime"); |
|
|
|
public Criteria andCreatedAtIn(List<Date> values) { |
|
|
|
addCriterion("created_at in", values, "createdAt"); |
|
|
|
return (Criteria) this; |
|
|
|
} |
|
|
|
|
|
|
|
public Criteria andEndTimeNotBetween(Long value1, Long value2) { |
|
|
|
addCriterion("end_time not between", value1, value2, "endTime"); |
|
|
|
public Criteria andCreatedAtNotIn(List<Date> values) { |
|
|
|
addCriterion("created_at not in", values, "createdAt"); |
|
|
|
return (Criteria) this; |
|
|
|
} |
|
|
|
|
|
|
|
public Criteria andRemarkIsNull() { |
|
|
|
addCriterion("remark is null"); |
|
|
|
public Criteria andCreatedAtBetween(Date value1, Date value2) { |
|
|
|
addCriterion("created_at between", value1, value2, "createdAt"); |
|
|
|
return (Criteria) this; |
|
|
|
} |
|
|
|
|
|
|
|
public Criteria andRemarkIsNotNull() { |
|
|
|
addCriterion("remark is not null"); |
|
|
|
public Criteria andCreatedAtNotBetween(Date value1, Date value2) { |
|
|
|
addCriterion("created_at not between", value1, value2, "createdAt"); |
|
|
|
return (Criteria) this; |
|
|
|
} |
|
|
|
|
|
|
|
public Criteria andRemarkEqualTo(String value) { |
|
|
|
addCriterion("remark =", value, "remark"); |
|
|
|
public Criteria andUpdatedAtIsNull() { |
|
|
|
addCriterion("updated_at is null"); |
|
|
|
return (Criteria) this; |
|
|
|
} |
|
|
|
|
|
|
|
public Criteria andRemarkNotEqualTo(String value) { |
|
|
|
addCriterion("remark <>", value, "remark"); |
|
|
|
public Criteria andUpdatedAtIsNotNull() { |
|
|
|
addCriterion("updated_at is not null"); |
|
|
|
return (Criteria) this; |
|
|
|
} |
|
|
|
|
|
|
|
public Criteria andRemarkGreaterThan(String value) { |
|
|
|
addCriterion("remark >", value, "remark"); |
|
|
|
public Criteria andUpdatedAtEqualTo(Date value) { |
|
|
|
addCriterion("updated_at =", value, "updatedAt"); |
|
|
|
return (Criteria) this; |
|
|
|
} |
|
|
|
|
|
|
|
public Criteria andRemarkGreaterThanOrEqualTo(String value) { |
|
|
|
addCriterion("remark >=", value, "remark"); |
|
|
|
public Criteria andUpdatedAtNotEqualTo(Date value) { |
|
|
|
addCriterion("updated_at <>", value, "updatedAt"); |
|
|
|
return (Criteria) this; |
|
|
|
} |
|
|
|
|
|
|
|
public Criteria andRemarkLessThan(String value) { |
|
|
|
addCriterion("remark <", value, "remark"); |
|
|
|
public Criteria andUpdatedAtGreaterThan(Date value) { |
|
|
|
addCriterion("updated_at >", value, "updatedAt"); |
|
|
|
return (Criteria) this; |
|
|
|
} |
|
|
|
|
|
|
|
public Criteria andRemarkLessThanOrEqualTo(String value) { |
|
|
|
addCriterion("remark <=", value, "remark"); |
|
|
|
public Criteria andUpdatedAtGreaterThanOrEqualTo(Date value) { |
|
|
|
addCriterion("updated_at >=", value, "updatedAt"); |
|
|
|
return (Criteria) this; |
|
|
|
} |
|
|
|
|
|
|
|
public Criteria andRemarkLike(String value) { |
|
|
|
addCriterion("remark like", value, "remark"); |
|
|
|
public Criteria andUpdatedAtLessThan(Date value) { |
|
|
|
addCriterion("updated_at <", value, "updatedAt"); |
|
|
|
return (Criteria) this; |
|
|
|
} |
|
|
|
|
|
|
|
public Criteria andRemarkNotLike(String value) { |
|
|
|
addCriterion("remark not like", value, "remark"); |
|
|
|
public Criteria andUpdatedAtLessThanOrEqualTo(Date value) { |
|
|
|
addCriterion("updated_at <=", value, "updatedAt"); |
|
|
|
return (Criteria) this; |
|
|
|
} |
|
|
|
|
|
|
|
public Criteria andRemarkIn(List<String> values) { |
|
|
|
addCriterion("remark in", values, "remark"); |
|
|
|
public Criteria andUpdatedAtIn(List<Date> values) { |
|
|
|
addCriterion("updated_at in", values, "updatedAt"); |
|
|
|
return (Criteria) this; |
|
|
|
} |
|
|
|
|
|
|
|
public Criteria andRemarkNotIn(List<String> values) { |
|
|
|
addCriterion("remark not in", values, "remark"); |
|
|
|
public Criteria andUpdatedAtNotIn(List<Date> values) { |
|
|
|
addCriterion("updated_at not in", values, "updatedAt"); |
|
|
|
return (Criteria) this; |
|
|
|
} |
|
|
|
|
|
|
|
public Criteria andRemarkBetween(String value1, String value2) { |
|
|
|
addCriterion("remark between", value1, value2, "remark"); |
|
|
|
public Criteria andUpdatedAtBetween(Date value1, Date value2) { |
|
|
|
addCriterion("updated_at between", value1, value2, "updatedAt"); |
|
|
|
return (Criteria) this; |
|
|
|
} |
|
|
|
|
|
|
|
public Criteria andRemarkNotBetween(String value1, String value2) { |
|
|
|
addCriterion("remark not between", value1, value2, "remark"); |
|
|
|
public Criteria andUpdatedAtNotBetween(Date value1, Date value2) { |
|
|
|
addCriterion("updated_at not between", value1, value2, "updatedAt"); |
|
|
|
return (Criteria) this; |
|
|
|
} |
|
|
|
|
|
|
|
public Criteria andWaiverIsNull() { |
|
|
|
addCriterion("waiver is null"); |
|
|
|
public Criteria andRecStatusIsNull() { |
|
|
|
addCriterion("rec_status is null"); |
|
|
|
return (Criteria) this; |
|
|
|
} |
|
|
|
|
|
|
|
public Criteria andWaiverIsNotNull() { |
|
|
|
addCriterion("waiver is not null"); |
|
|
|
public Criteria andRecStatusIsNotNull() { |
|
|
|
addCriterion("rec_status is not null"); |
|
|
|
return (Criteria) this; |
|
|
|
} |
|
|
|
|
|
|
|
public Criteria andWaiverEqualTo(Byte value) { |
|
|
|
addCriterion("waiver =", value, "waiver"); |
|
|
|
public Criteria andRecStatusEqualTo(Byte value) { |
|
|
|
addCriterion("rec_status =", value, "recStatus"); |
|
|
|
return (Criteria) this; |
|
|
|
} |
|
|
|
|
|
|
|
public Criteria andWaiverNotEqualTo(Byte value) { |
|
|
|
addCriterion("waiver <>", value, "waiver"); |
|
|
|
public Criteria andRecStatusNotEqualTo(Byte value) { |
|
|
|
addCriterion("rec_status <>", value, "recStatus"); |
|
|
|
return (Criteria) this; |
|
|
|
} |
|
|
|
|
|
|
|
public Criteria andWaiverGreaterThan(Byte value) { |
|
|
|
addCriterion("waiver >", value, "waiver"); |
|
|
|
public Criteria andRecStatusGreaterThan(Byte value) { |
|
|
|
addCriterion("rec_status >", value, "recStatus"); |
|
|
|
return (Criteria) this; |
|
|
|
} |
|
|
|
|
|
|
|
public Criteria andWaiverGreaterThanOrEqualTo(Byte value) { |
|
|
|
addCriterion("waiver >=", value, "waiver"); |
|
|
|
public Criteria andRecStatusGreaterThanOrEqualTo(Byte value) { |
|
|
|
addCriterion("rec_status >=", value, "recStatus"); |
|
|
|
return (Criteria) this; |
|
|
|
} |
|
|
|
|
|
|
|
public Criteria andWaiverLessThan(Byte value) { |
|
|
|
addCriterion("waiver <", value, "waiver"); |
|
|
|
public Criteria andRecStatusLessThan(Byte value) { |
|
|
|
addCriterion("rec_status <", value, "recStatus"); |
|
|
|
return (Criteria) this; |
|
|
|
} |
|
|
|
|
|
|
|
public Criteria andWaiverLessThanOrEqualTo(Byte value) { |
|
|
|
addCriterion("waiver <=", value, "waiver"); |
|
|
|
public Criteria andRecStatusLessThanOrEqualTo(Byte value) { |
|
|
|
addCriterion("rec_status <=", value, "recStatus"); |
|
|
|
return (Criteria) this; |
|
|
|
} |
|
|
|
|
|
|
|
public Criteria andWaiverIn(List<Byte> values) { |
|
|
|
addCriterion("waiver in", values, "waiver"); |
|
|
|
public Criteria andRecStatusIn(List<Byte> values) { |
|
|
|
addCriterion("rec_status in", values, "recStatus"); |
|
|
|
return (Criteria) this; |
|
|
|
} |
|
|
|
|
|
|
|
public Criteria andWaiverNotIn(List<Byte> values) { |
|
|
|
addCriterion("waiver not in", values, "waiver"); |
|
|
|
public Criteria andRecStatusNotIn(List<Byte> values) { |
|
|
|
addCriterion("rec_status not in", values, "recStatus"); |
|
|
|
return (Criteria) this; |
|
|
|
} |
|
|
|
|
|
|
|
public Criteria andWaiverBetween(Byte value1, Byte value2) { |
|
|
|
addCriterion("waiver between", value1, value2, "waiver"); |
|
|
|
public Criteria andRecStatusBetween(Byte value1, Byte value2) { |
|
|
|
addCriterion("rec_status between", value1, value2, "recStatus"); |
|
|
|
return (Criteria) this; |
|
|
|
} |
|
|
|
|
|
|
|
public Criteria andWaiverNotBetween(Byte value1, Byte value2) { |
|
|
|
addCriterion("waiver not between", value1, value2, "waiver"); |
|
|
|
public Criteria andRecStatusNotBetween(Byte value1, Byte value2) { |
|
|
|
addCriterion("rec_status not between", value1, value2, "recStatus"); |
|
|
|
return (Criteria) this; |
|
|
|
} |
|
|
|
} |
|
|
|