|
|
|
@ -7,7 +7,6 @@ import java.util.List;
|
|
|
|
|
|
|
|
|
|
public class View_Dy_Line_Tower_TerminalsExample {
|
|
|
|
|
protected String orderByClause;
|
|
|
|
|
protected String groupByClause;
|
|
|
|
|
|
|
|
|
|
protected boolean distinct;
|
|
|
|
|
|
|
|
|
@ -17,14 +16,6 @@ public class View_Dy_Line_Tower_TerminalsExample {
|
|
|
|
|
oredCriteria = new ArrayList<Criteria>();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public String getGroupByClause() {
|
|
|
|
|
return groupByClause;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public void setGroupByClause(String groupByClause) {
|
|
|
|
|
this.groupByClause = groupByClause;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public void setOrderByClause(String orderByClause) {
|
|
|
|
|
this.orderByClause = orderByClause;
|
|
|
|
|
}
|
|
|
|
@ -2021,52 +2012,62 @@ public class View_Dy_Line_Tower_TerminalsExample {
|
|
|
|
|
return (Criteria) this;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public Criteria andDevTypeEqualTo(Byte value) {
|
|
|
|
|
public Criteria andDevTypeEqualTo(String value) {
|
|
|
|
|
addCriterion("dev_type =", value, "devType");
|
|
|
|
|
return (Criteria) this;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public Criteria andDevTypeNotEqualTo(Byte value) {
|
|
|
|
|
public Criteria andDevTypeNotEqualTo(String value) {
|
|
|
|
|
addCriterion("dev_type <>", value, "devType");
|
|
|
|
|
return (Criteria) this;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public Criteria andDevTypeGreaterThan(Byte value) {
|
|
|
|
|
public Criteria andDevTypeGreaterThan(String value) {
|
|
|
|
|
addCriterion("dev_type >", value, "devType");
|
|
|
|
|
return (Criteria) this;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public Criteria andDevTypeGreaterThanOrEqualTo(Byte value) {
|
|
|
|
|
public Criteria andDevTypeGreaterThanOrEqualTo(String value) {
|
|
|
|
|
addCriterion("dev_type >=", value, "devType");
|
|
|
|
|
return (Criteria) this;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public Criteria andDevTypeLessThan(Byte value) {
|
|
|
|
|
public Criteria andDevTypeLessThan(String value) {
|
|
|
|
|
addCriterion("dev_type <", value, "devType");
|
|
|
|
|
return (Criteria) this;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public Criteria andDevTypeLessThanOrEqualTo(Byte value) {
|
|
|
|
|
public Criteria andDevTypeLessThanOrEqualTo(String value) {
|
|
|
|
|
addCriterion("dev_type <=", value, "devType");
|
|
|
|
|
return (Criteria) this;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public Criteria andDevTypeIn(List<Byte> values) {
|
|
|
|
|
public Criteria andDevTypeLike(String value) {
|
|
|
|
|
addCriterion("dev_type like", value, "devType");
|
|
|
|
|
return (Criteria) this;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public Criteria andDevTypeNotLike(String value) {
|
|
|
|
|
addCriterion("dev_type not like", value, "devType");
|
|
|
|
|
return (Criteria) this;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public Criteria andDevTypeIn(List<String> values) {
|
|
|
|
|
addCriterion("dev_type in", values, "devType");
|
|
|
|
|
return (Criteria) this;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public Criteria andDevTypeNotIn(List<Byte> values) {
|
|
|
|
|
public Criteria andDevTypeNotIn(List<String> values) {
|
|
|
|
|
addCriterion("dev_type not in", values, "devType");
|
|
|
|
|
return (Criteria) this;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public Criteria andDevTypeBetween(Byte value1, Byte value2) {
|
|
|
|
|
public Criteria andDevTypeBetween(String value1, String value2) {
|
|
|
|
|
addCriterion("dev_type between", value1, value2, "devType");
|
|
|
|
|
return (Criteria) this;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public Criteria andDevTypeNotBetween(Byte value1, Byte value2) {
|
|
|
|
|
public Criteria andDevTypeNotBetween(String value1, String value2) {
|
|
|
|
|
addCriterion("dev_type not between", value1, value2, "devType");
|
|
|
|
|
return (Criteria) this;
|
|
|
|
|
}
|
|
|
|
@ -2270,11 +2271,6 @@ public class View_Dy_Line_Tower_TerminalsExample {
|
|
|
|
|
addCriterion("last_heartbeat not between", value1, value2, "lastHeartbeat");
|
|
|
|
|
return (Criteria) this;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public Criteria andOptionsLikeOr(String str) {
|
|
|
|
|
addCriterion(str);
|
|
|
|
|
return (Criteria) this;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public static class Criteria extends GeneratedCriteria {
|
|
|
|
|