|  | @@ -254,62 +254,52 @@ public class MdoProComvalSQLBuilder {
 | 
											
												
													
														|  |              return (Criteria) this;
 |  |              return (Criteria) this;
 | 
											
												
													
														|  |          }
 |  |          }
 | 
											
												
													
														|  |  
 |  |  
 | 
											
												
													
														|  | -        public Criteria andStepEqualTo(String value) {
 |  | 
 | 
											
												
													
														|  | 
 |  | +        public Criteria andStepEqualTo(Integer value) {
 | 
											
												
													
														|  |              addCriterion("step =", value, "step");
 |  |              addCriterion("step =", value, "step");
 | 
											
												
													
														|  |              return (Criteria) this;
 |  |              return (Criteria) this;
 | 
											
												
													
														|  |          }
 |  |          }
 | 
											
												
													
														|  |  
 |  |  
 | 
											
												
													
														|  | -        public Criteria andStepNotEqualTo(String value) {
 |  | 
 | 
											
												
													
														|  | 
 |  | +        public Criteria andStepNotEqualTo(Integer value) {
 | 
											
												
													
														|  |              addCriterion("step <>", value, "step");
 |  |              addCriterion("step <>", value, "step");
 | 
											
												
													
														|  |              return (Criteria) this;
 |  |              return (Criteria) this;
 | 
											
												
													
														|  |          }
 |  |          }
 | 
											
												
													
														|  |  
 |  |  
 | 
											
												
													
														|  | -        public Criteria andStepGreaterThan(String value) {
 |  | 
 | 
											
												
													
														|  | 
 |  | +        public Criteria andStepGreaterThan(Integer value) {
 | 
											
												
													
														|  |              addCriterion("step >", value, "step");
 |  |              addCriterion("step >", value, "step");
 | 
											
												
													
														|  |              return (Criteria) this;
 |  |              return (Criteria) this;
 | 
											
												
													
														|  |          }
 |  |          }
 | 
											
												
													
														|  |  
 |  |  
 | 
											
												
													
														|  | -        public Criteria andStepGreaterThanOrEqualTo(String value) {
 |  | 
 | 
											
												
													
														|  | 
 |  | +        public Criteria andStepGreaterThanOrEqualTo(Integer value) {
 | 
											
												
													
														|  |              addCriterion("step >=", value, "step");
 |  |              addCriterion("step >=", value, "step");
 | 
											
												
													
														|  |              return (Criteria) this;
 |  |              return (Criteria) this;
 | 
											
												
													
														|  |          }
 |  |          }
 | 
											
												
													
														|  |  
 |  |  
 | 
											
												
													
														|  | -        public Criteria andStepLessThan(String value) {
 |  | 
 | 
											
												
													
														|  | 
 |  | +        public Criteria andStepLessThan(Integer value) {
 | 
											
												
													
														|  |              addCriterion("step <", value, "step");
 |  |              addCriterion("step <", value, "step");
 | 
											
												
													
														|  |              return (Criteria) this;
 |  |              return (Criteria) this;
 | 
											
												
													
														|  |          }
 |  |          }
 | 
											
												
													
														|  |  
 |  |  
 | 
											
												
													
														|  | -        public Criteria andStepLessThanOrEqualTo(String value) {
 |  | 
 | 
											
												
													
														|  | 
 |  | +        public Criteria andStepLessThanOrEqualTo(Integer value) {
 | 
											
												
													
														|  |              addCriterion("step <=", value, "step");
 |  |              addCriterion("step <=", value, "step");
 | 
											
												
													
														|  |              return (Criteria) this;
 |  |              return (Criteria) this;
 | 
											
												
													
														|  |          }
 |  |          }
 | 
											
												
													
														|  |  
 |  |  
 | 
											
												
													
														|  | -        public Criteria andStepLike(String value) {
 |  | 
 | 
											
												
													
														|  | -            addCriterion("step like", value, "step");
 |  | 
 | 
											
												
													
														|  | -            return (Criteria) this;
 |  | 
 | 
											
												
													
														|  | -        }
 |  | 
 | 
											
												
													
														|  | -
 |  | 
 | 
											
												
													
														|  | -        public Criteria andStepNotLike(String value) {
 |  | 
 | 
											
												
													
														|  | -            addCriterion("step not like", value, "step");
 |  | 
 | 
											
												
													
														|  | -            return (Criteria) this;
 |  | 
 | 
											
												
													
														|  | -        }
 |  | 
 | 
											
												
													
														|  | -
 |  | 
 | 
											
												
													
														|  | -        public Criteria andStepIn(List<String> values) {
 |  | 
 | 
											
												
													
														|  | 
 |  | +        public Criteria andStepIn(List<Integer> values) {
 | 
											
												
													
														|  |              addCriterion("step in", values, "step");
 |  |              addCriterion("step in", values, "step");
 | 
											
												
													
														|  |              return (Criteria) this;
 |  |              return (Criteria) this;
 | 
											
												
													
														|  |          }
 |  |          }
 | 
											
												
													
														|  |  
 |  |  
 | 
											
												
													
														|  | -        public Criteria andStepNotIn(List<String> values) {
 |  | 
 | 
											
												
													
														|  | 
 |  | +        public Criteria andStepNotIn(List<Integer> values) {
 | 
											
												
													
														|  |              addCriterion("step not in", values, "step");
 |  |              addCriterion("step not in", values, "step");
 | 
											
												
													
														|  |              return (Criteria) this;
 |  |              return (Criteria) this;
 | 
											
												
													
														|  |          }
 |  |          }
 | 
											
												
													
														|  |  
 |  |  
 | 
											
												
													
														|  | -        public Criteria andStepBetween(String value1, String value2) {
 |  | 
 | 
											
												
													
														|  | 
 |  | +        public Criteria andStepBetween(Integer value1, Integer value2) {
 | 
											
												
													
														|  |              addCriterion("step between", value1, value2, "step");
 |  |              addCriterion("step between", value1, value2, "step");
 | 
											
												
													
														|  |              return (Criteria) this;
 |  |              return (Criteria) this;
 | 
											
												
													
														|  |          }
 |  |          }
 | 
											
												
													
														|  |  
 |  |  
 | 
											
												
													
														|  | -        public Criteria andStepNotBetween(String value1, String value2) {
 |  | 
 | 
											
												
													
														|  | 
 |  | +        public Criteria andStepNotBetween(Integer value1, Integer value2) {
 | 
											
												
													
														|  |              addCriterion("step not between", value1, value2, "step");
 |  |              addCriterion("step not between", value1, value2, "step");
 | 
											
												
													
														|  |              return (Criteria) this;
 |  |              return (Criteria) this;
 | 
											
												
													
														|  |          }
 |  |          }
 |