Pārlūkot izejas kodu

订单支付信息

XF--LRQYEJOKYDS\Administrator 4 gadi atpakaļ
vecāks
revīzija
d4e3ac8d0d

+ 366 - 0
YijiaRestful/src/main/java/com/platform/yijia/pojo/PayOrder.java

@@ -0,0 +1,366 @@
+package com.platform.yijia.pojo;
+
+public class PayOrder {
+    /**
+     *
+     * This field was generated by MyBatis Generator.
+     * This field corresponds to the database column pay_order.order_id
+     *
+     * @mbg.generated
+     */
+    private Integer orderId;
+
+    /**
+     *
+     * This field was generated by MyBatis Generator.
+     * This field corresponds to the database column pay_order.order_no
+     *
+     * @mbg.generated
+     */
+    private String orderNo;
+
+    /**
+     *
+     * This field was generated by MyBatis Generator.
+     * This field corresponds to the database column pay_order.oil_gun
+     *
+     * @mbg.generated
+     */
+    private String oilGun;
+
+    /**
+     *
+     * This field was generated by MyBatis Generator.
+     * This field corresponds to the database column pay_order.oil_name
+     *
+     * @mbg.generated
+     */
+    private String oilName;
+
+    /**
+     *
+     * This field was generated by MyBatis Generator.
+     * This field corresponds to the database column pay_order.token
+     *
+     * @mbg.generated
+     */
+    private String token;
+
+    /**
+     *
+     * This field was generated by MyBatis Generator.
+     * This field corresponds to the database column pay_order.amt
+     *
+     * @mbg.generated
+     */
+    private String amt;
+
+    /**
+     *
+     * This field was generated by MyBatis Generator.
+     * This field corresponds to the database column pay_order.oil_station_id
+     *
+     * @mbg.generated
+     */
+    private String oilStationId;
+
+    /**
+     *
+     * This field was generated by MyBatis Generator.
+     * This field corresponds to the database column pay_order.status
+     *
+     * @mbg.generated
+     */
+    private String status;
+
+    /**
+     *
+     * This field was generated by MyBatis Generator.
+     * This field corresponds to the database column pay_order.order_liters
+     *
+     * @mbg.generated
+     */
+    private String orderLiters;
+
+    /**
+     *
+     * This field was generated by MyBatis Generator.
+     * This field corresponds to the database column pay_order.pay_type
+     *
+     * @mbg.generated
+     */
+    private String payType;
+
+    /**
+     *
+     * This field was generated by MyBatis Generator.
+     * This field corresponds to the database column pay_order.pay_way
+     *
+     * @mbg.generated
+     */
+    private String payWay;
+
+    /**
+     * This method was generated by MyBatis Generator.
+     * This method returns the value of the database column pay_order.order_id
+     *
+     * @return the value of pay_order.order_id
+     *
+     * @mbg.generated
+     */
+    public Integer getOrderId() {
+        return orderId;
+    }
+
+    /**
+     * This method was generated by MyBatis Generator.
+     * This method sets the value of the database column pay_order.order_id
+     *
+     * @param orderId the value for pay_order.order_id
+     *
+     * @mbg.generated
+     */
+    public void setOrderId(Integer orderId) {
+        this.orderId = orderId;
+    }
+
+    /**
+     * This method was generated by MyBatis Generator.
+     * This method returns the value of the database column pay_order.order_no
+     *
+     * @return the value of pay_order.order_no
+     *
+     * @mbg.generated
+     */
+    public String getOrderNo() {
+        return orderNo;
+    }
+
+    /**
+     * This method was generated by MyBatis Generator.
+     * This method sets the value of the database column pay_order.order_no
+     *
+     * @param orderNo the value for pay_order.order_no
+     *
+     * @mbg.generated
+     */
+    public void setOrderNo(String orderNo) {
+        this.orderNo = orderNo == null ? null : orderNo.trim();
+    }
+
+    /**
+     * This method was generated by MyBatis Generator.
+     * This method returns the value of the database column pay_order.oil_gun
+     *
+     * @return the value of pay_order.oil_gun
+     *
+     * @mbg.generated
+     */
+    public String getOilGun() {
+        return oilGun;
+    }
+
+    /**
+     * This method was generated by MyBatis Generator.
+     * This method sets the value of the database column pay_order.oil_gun
+     *
+     * @param oilGun the value for pay_order.oil_gun
+     *
+     * @mbg.generated
+     */
+    public void setOilGun(String oilGun) {
+        this.oilGun = oilGun == null ? null : oilGun.trim();
+    }
+
+    /**
+     * This method was generated by MyBatis Generator.
+     * This method returns the value of the database column pay_order.oil_name
+     *
+     * @return the value of pay_order.oil_name
+     *
+     * @mbg.generated
+     */
+    public String getOilName() {
+        return oilName;
+    }
+
+    /**
+     * This method was generated by MyBatis Generator.
+     * This method sets the value of the database column pay_order.oil_name
+     *
+     * @param oilName the value for pay_order.oil_name
+     *
+     * @mbg.generated
+     */
+    public void setOilName(String oilName) {
+        this.oilName = oilName == null ? null : oilName.trim();
+    }
+
+    /**
+     * This method was generated by MyBatis Generator.
+     * This method returns the value of the database column pay_order.token
+     *
+     * @return the value of pay_order.token
+     *
+     * @mbg.generated
+     */
+    public String getToken() {
+        return token;
+    }
+
+    /**
+     * This method was generated by MyBatis Generator.
+     * This method sets the value of the database column pay_order.token
+     *
+     * @param token the value for pay_order.token
+     *
+     * @mbg.generated
+     */
+    public void setToken(String token) {
+        this.token = token == null ? null : token.trim();
+    }
+
+    /**
+     * This method was generated by MyBatis Generator.
+     * This method returns the value of the database column pay_order.amt
+     *
+     * @return the value of pay_order.amt
+     *
+     * @mbg.generated
+     */
+    public String getAmt() {
+        return amt;
+    }
+
+    /**
+     * This method was generated by MyBatis Generator.
+     * This method sets the value of the database column pay_order.amt
+     *
+     * @param amt the value for pay_order.amt
+     *
+     * @mbg.generated
+     */
+    public void setAmt(String amt) {
+        this.amt = amt == null ? null : amt.trim();
+    }
+
+    /**
+     * This method was generated by MyBatis Generator.
+     * This method returns the value of the database column pay_order.oil_station_id
+     *
+     * @return the value of pay_order.oil_station_id
+     *
+     * @mbg.generated
+     */
+    public String getOilStationId() {
+        return oilStationId;
+    }
+
+    /**
+     * This method was generated by MyBatis Generator.
+     * This method sets the value of the database column pay_order.oil_station_id
+     *
+     * @param oilStationId the value for pay_order.oil_station_id
+     *
+     * @mbg.generated
+     */
+    public void setOilStationId(String oilStationId) {
+        this.oilStationId = oilStationId == null ? null : oilStationId.trim();
+    }
+
+    /**
+     * This method was generated by MyBatis Generator.
+     * This method returns the value of the database column pay_order.status
+     *
+     * @return the value of pay_order.status
+     *
+     * @mbg.generated
+     */
+    public String getStatus() {
+        return status;
+    }
+
+    /**
+     * This method was generated by MyBatis Generator.
+     * This method sets the value of the database column pay_order.status
+     *
+     * @param status the value for pay_order.status
+     *
+     * @mbg.generated
+     */
+    public void setStatus(String status) {
+        this.status = status == null ? null : status.trim();
+    }
+
+    /**
+     * This method was generated by MyBatis Generator.
+     * This method returns the value of the database column pay_order.order_liters
+     *
+     * @return the value of pay_order.order_liters
+     *
+     * @mbg.generated
+     */
+    public String getOrderLiters() {
+        return orderLiters;
+    }
+
+    /**
+     * This method was generated by MyBatis Generator.
+     * This method sets the value of the database column pay_order.order_liters
+     *
+     * @param orderLiters the value for pay_order.order_liters
+     *
+     * @mbg.generated
+     */
+    public void setOrderLiters(String orderLiters) {
+        this.orderLiters = orderLiters == null ? null : orderLiters.trim();
+    }
+
+    /**
+     * This method was generated by MyBatis Generator.
+     * This method returns the value of the database column pay_order.pay_type
+     *
+     * @return the value of pay_order.pay_type
+     *
+     * @mbg.generated
+     */
+    public String getPayType() {
+        return payType;
+    }
+
+    /**
+     * This method was generated by MyBatis Generator.
+     * This method sets the value of the database column pay_order.pay_type
+     *
+     * @param payType the value for pay_order.pay_type
+     *
+     * @mbg.generated
+     */
+    public void setPayType(String payType) {
+        this.payType = payType == null ? null : payType.trim();
+    }
+
+    /**
+     * This method was generated by MyBatis Generator.
+     * This method returns the value of the database column pay_order.pay_way
+     *
+     * @return the value of pay_order.pay_way
+     *
+     * @mbg.generated
+     */
+    public String getPayWay() {
+        return payWay;
+    }
+
+    /**
+     * This method was generated by MyBatis Generator.
+     * This method sets the value of the database column pay_order.pay_way
+     *
+     * @param payWay the value for pay_order.pay_way
+     *
+     * @mbg.generated
+     */
+    public void setPayWay(String payWay) {
+        this.payWay = payWay == null ? null : payWay.trim();
+    }
+}

+ 1062 - 0
YijiaRestful/src/main/java/com/platform/yijia/pojo/PayOrderExample.java

@@ -0,0 +1,1062 @@
+package com.platform.yijia.pojo;
+
+import java.util.ArrayList;
+import java.util.List;
+
+public class PayOrderExample {
+    /**
+     * This field was generated by MyBatis Generator.
+     * This field corresponds to the database table pay_order
+     *
+     * @mbg.generated
+     */
+    protected String orderByClause;
+
+    /**
+     * This field was generated by MyBatis Generator.
+     * This field corresponds to the database table pay_order
+     *
+     * @mbg.generated
+     */
+    protected boolean distinct;
+
+    /**
+     * This field was generated by MyBatis Generator.
+     * This field corresponds to the database table pay_order
+     *
+     * @mbg.generated
+     */
+    protected List<Criteria> oredCriteria;
+
+    /**
+     * This method was generated by MyBatis Generator.
+     * This method corresponds to the database table pay_order
+     *
+     * @mbg.generated
+     */
+    public PayOrderExample() {
+        oredCriteria = new ArrayList<Criteria>();
+    }
+
+    /**
+     * This method was generated by MyBatis Generator.
+     * This method corresponds to the database table pay_order
+     *
+     * @mbg.generated
+     */
+    public void setOrderByClause(String orderByClause) {
+        this.orderByClause = orderByClause;
+    }
+
+    /**
+     * This method was generated by MyBatis Generator.
+     * This method corresponds to the database table pay_order
+     *
+     * @mbg.generated
+     */
+    public String getOrderByClause() {
+        return orderByClause;
+    }
+
+    /**
+     * This method was generated by MyBatis Generator.
+     * This method corresponds to the database table pay_order
+     *
+     * @mbg.generated
+     */
+    public void setDistinct(boolean distinct) {
+        this.distinct = distinct;
+    }
+
+    /**
+     * This method was generated by MyBatis Generator.
+     * This method corresponds to the database table pay_order
+     *
+     * @mbg.generated
+     */
+    public boolean isDistinct() {
+        return distinct;
+    }
+
+    /**
+     * This method was generated by MyBatis Generator.
+     * This method corresponds to the database table pay_order
+     *
+     * @mbg.generated
+     */
+    public List<Criteria> getOredCriteria() {
+        return oredCriteria;
+    }
+
+    /**
+     * This method was generated by MyBatis Generator.
+     * This method corresponds to the database table pay_order
+     *
+     * @mbg.generated
+     */
+    public void or(Criteria criteria) {
+        oredCriteria.add(criteria);
+    }
+
+    /**
+     * This method was generated by MyBatis Generator.
+     * This method corresponds to the database table pay_order
+     *
+     * @mbg.generated
+     */
+    public Criteria or() {
+        Criteria criteria = createCriteriaInternal();
+        oredCriteria.add(criteria);
+        return criteria;
+    }
+
+    /**
+     * This method was generated by MyBatis Generator.
+     * This method corresponds to the database table pay_order
+     *
+     * @mbg.generated
+     */
+    public Criteria createCriteria() {
+        Criteria criteria = createCriteriaInternal();
+        if (oredCriteria.size() == 0) {
+            oredCriteria.add(criteria);
+        }
+        return criteria;
+    }
+
+    /**
+     * This method was generated by MyBatis Generator.
+     * This method corresponds to the database table pay_order
+     *
+     * @mbg.generated
+     */
+    protected Criteria createCriteriaInternal() {
+        Criteria criteria = new Criteria();
+        return criteria;
+    }
+
+    /**
+     * This method was generated by MyBatis Generator.
+     * This method corresponds to the database table pay_order
+     *
+     * @mbg.generated
+     */
+    public void clear() {
+        oredCriteria.clear();
+        orderByClause = null;
+        distinct = false;
+    }
+
+    /**
+     * This class was generated by MyBatis Generator.
+     * This class corresponds to the database table pay_order
+     *
+     * @mbg.generated
+     */
+    protected abstract static class GeneratedCriteria {
+        protected List<Criterion> criteria;
+
+        protected GeneratedCriteria() {
+            super();
+            criteria = new ArrayList<Criterion>();
+        }
+
+        public boolean isValid() {
+            return criteria.size() > 0;
+        }
+
+        public List<Criterion> getAllCriteria() {
+            return criteria;
+        }
+
+        public List<Criterion> getCriteria() {
+            return criteria;
+        }
+
+        protected void addCriterion(String condition) {
+            if (condition == null) {
+                throw new RuntimeException("Value for condition cannot be null");
+            }
+            criteria.add(new Criterion(condition));
+        }
+
+        protected void addCriterion(String condition, Object value, String property) {
+            if (value == null) {
+                throw new RuntimeException("Value for " + property + " cannot be null");
+            }
+            criteria.add(new Criterion(condition, value));
+        }
+
+        protected void addCriterion(String condition, Object value1, Object value2, String property) {
+            if (value1 == null || value2 == null) {
+                throw new RuntimeException("Between values for " + property + " cannot be null");
+            }
+            criteria.add(new Criterion(condition, value1, value2));
+        }
+
+        public Criteria andOrderIdIsNull() {
+            addCriterion("order_id is null");
+            return (Criteria) this;
+        }
+
+        public Criteria andOrderIdIsNotNull() {
+            addCriterion("order_id is not null");
+            return (Criteria) this;
+        }
+
+        public Criteria andOrderIdEqualTo(Integer value) {
+            addCriterion("order_id =", value, "orderId");
+            return (Criteria) this;
+        }
+
+        public Criteria andOrderIdNotEqualTo(Integer value) {
+            addCriterion("order_id <>", value, "orderId");
+            return (Criteria) this;
+        }
+
+        public Criteria andOrderIdGreaterThan(Integer value) {
+            addCriterion("order_id >", value, "orderId");
+            return (Criteria) this;
+        }
+
+        public Criteria andOrderIdGreaterThanOrEqualTo(Integer value) {
+            addCriterion("order_id >=", value, "orderId");
+            return (Criteria) this;
+        }
+
+        public Criteria andOrderIdLessThan(Integer value) {
+            addCriterion("order_id <", value, "orderId");
+            return (Criteria) this;
+        }
+
+        public Criteria andOrderIdLessThanOrEqualTo(Integer value) {
+            addCriterion("order_id <=", value, "orderId");
+            return (Criteria) this;
+        }
+
+        public Criteria andOrderIdIn(List<Integer> values) {
+            addCriterion("order_id in", values, "orderId");
+            return (Criteria) this;
+        }
+
+        public Criteria andOrderIdNotIn(List<Integer> values) {
+            addCriterion("order_id not in", values, "orderId");
+            return (Criteria) this;
+        }
+
+        public Criteria andOrderIdBetween(Integer value1, Integer value2) {
+            addCriterion("order_id between", value1, value2, "orderId");
+            return (Criteria) this;
+        }
+
+        public Criteria andOrderIdNotBetween(Integer value1, Integer value2) {
+            addCriterion("order_id not between", value1, value2, "orderId");
+            return (Criteria) this;
+        }
+
+        public Criteria andOrderNoIsNull() {
+            addCriterion("order_no is null");
+            return (Criteria) this;
+        }
+
+        public Criteria andOrderNoIsNotNull() {
+            addCriterion("order_no is not null");
+            return (Criteria) this;
+        }
+
+        public Criteria andOrderNoEqualTo(String value) {
+            addCriterion("order_no =", value, "orderNo");
+            return (Criteria) this;
+        }
+
+        public Criteria andOrderNoNotEqualTo(String value) {
+            addCriterion("order_no <>", value, "orderNo");
+            return (Criteria) this;
+        }
+
+        public Criteria andOrderNoGreaterThan(String value) {
+            addCriterion("order_no >", value, "orderNo");
+            return (Criteria) this;
+        }
+
+        public Criteria andOrderNoGreaterThanOrEqualTo(String value) {
+            addCriterion("order_no >=", value, "orderNo");
+            return (Criteria) this;
+        }
+
+        public Criteria andOrderNoLessThan(String value) {
+            addCriterion("order_no <", value, "orderNo");
+            return (Criteria) this;
+        }
+
+        public Criteria andOrderNoLessThanOrEqualTo(String value) {
+            addCriterion("order_no <=", value, "orderNo");
+            return (Criteria) this;
+        }
+
+        public Criteria andOrderNoLike(String value) {
+            addCriterion("order_no like", value, "orderNo");
+            return (Criteria) this;
+        }
+
+        public Criteria andOrderNoNotLike(String value) {
+            addCriterion("order_no not like", value, "orderNo");
+            return (Criteria) this;
+        }
+
+        public Criteria andOrderNoIn(List<String> values) {
+            addCriterion("order_no in", values, "orderNo");
+            return (Criteria) this;
+        }
+
+        public Criteria andOrderNoNotIn(List<String> values) {
+            addCriterion("order_no not in", values, "orderNo");
+            return (Criteria) this;
+        }
+
+        public Criteria andOrderNoBetween(String value1, String value2) {
+            addCriterion("order_no between", value1, value2, "orderNo");
+            return (Criteria) this;
+        }
+
+        public Criteria andOrderNoNotBetween(String value1, String value2) {
+            addCriterion("order_no not between", value1, value2, "orderNo");
+            return (Criteria) this;
+        }
+
+        public Criteria andOilGunIsNull() {
+            addCriterion("oil_gun is null");
+            return (Criteria) this;
+        }
+
+        public Criteria andOilGunIsNotNull() {
+            addCriterion("oil_gun is not null");
+            return (Criteria) this;
+        }
+
+        public Criteria andOilGunEqualTo(String value) {
+            addCriterion("oil_gun =", value, "oilGun");
+            return (Criteria) this;
+        }
+
+        public Criteria andOilGunNotEqualTo(String value) {
+            addCriterion("oil_gun <>", value, "oilGun");
+            return (Criteria) this;
+        }
+
+        public Criteria andOilGunGreaterThan(String value) {
+            addCriterion("oil_gun >", value, "oilGun");
+            return (Criteria) this;
+        }
+
+        public Criteria andOilGunGreaterThanOrEqualTo(String value) {
+            addCriterion("oil_gun >=", value, "oilGun");
+            return (Criteria) this;
+        }
+
+        public Criteria andOilGunLessThan(String value) {
+            addCriterion("oil_gun <", value, "oilGun");
+            return (Criteria) this;
+        }
+
+        public Criteria andOilGunLessThanOrEqualTo(String value) {
+            addCriterion("oil_gun <=", value, "oilGun");
+            return (Criteria) this;
+        }
+
+        public Criteria andOilGunLike(String value) {
+            addCriterion("oil_gun like", value, "oilGun");
+            return (Criteria) this;
+        }
+
+        public Criteria andOilGunNotLike(String value) {
+            addCriterion("oil_gun not like", value, "oilGun");
+            return (Criteria) this;
+        }
+
+        public Criteria andOilGunIn(List<String> values) {
+            addCriterion("oil_gun in", values, "oilGun");
+            return (Criteria) this;
+        }
+
+        public Criteria andOilGunNotIn(List<String> values) {
+            addCriterion("oil_gun not in", values, "oilGun");
+            return (Criteria) this;
+        }
+
+        public Criteria andOilGunBetween(String value1, String value2) {
+            addCriterion("oil_gun between", value1, value2, "oilGun");
+            return (Criteria) this;
+        }
+
+        public Criteria andOilGunNotBetween(String value1, String value2) {
+            addCriterion("oil_gun not between", value1, value2, "oilGun");
+            return (Criteria) this;
+        }
+
+        public Criteria andOilNameIsNull() {
+            addCriterion("oil_name is null");
+            return (Criteria) this;
+        }
+
+        public Criteria andOilNameIsNotNull() {
+            addCriterion("oil_name is not null");
+            return (Criteria) this;
+        }
+
+        public Criteria andOilNameEqualTo(String value) {
+            addCriterion("oil_name =", value, "oilName");
+            return (Criteria) this;
+        }
+
+        public Criteria andOilNameNotEqualTo(String value) {
+            addCriterion("oil_name <>", value, "oilName");
+            return (Criteria) this;
+        }
+
+        public Criteria andOilNameGreaterThan(String value) {
+            addCriterion("oil_name >", value, "oilName");
+            return (Criteria) this;
+        }
+
+        public Criteria andOilNameGreaterThanOrEqualTo(String value) {
+            addCriterion("oil_name >=", value, "oilName");
+            return (Criteria) this;
+        }
+
+        public Criteria andOilNameLessThan(String value) {
+            addCriterion("oil_name <", value, "oilName");
+            return (Criteria) this;
+        }
+
+        public Criteria andOilNameLessThanOrEqualTo(String value) {
+            addCriterion("oil_name <=", value, "oilName");
+            return (Criteria) this;
+        }
+
+        public Criteria andOilNameLike(String value) {
+            addCriterion("oil_name like", value, "oilName");
+            return (Criteria) this;
+        }
+
+        public Criteria andOilNameNotLike(String value) {
+            addCriterion("oil_name not like", value, "oilName");
+            return (Criteria) this;
+        }
+
+        public Criteria andOilNameIn(List<String> values) {
+            addCriterion("oil_name in", values, "oilName");
+            return (Criteria) this;
+        }
+
+        public Criteria andOilNameNotIn(List<String> values) {
+            addCriterion("oil_name not in", values, "oilName");
+            return (Criteria) this;
+        }
+
+        public Criteria andOilNameBetween(String value1, String value2) {
+            addCriterion("oil_name between", value1, value2, "oilName");
+            return (Criteria) this;
+        }
+
+        public Criteria andOilNameNotBetween(String value1, String value2) {
+            addCriterion("oil_name not between", value1, value2, "oilName");
+            return (Criteria) this;
+        }
+
+        public Criteria andTokenIsNull() {
+            addCriterion("token is null");
+            return (Criteria) this;
+        }
+
+        public Criteria andTokenIsNotNull() {
+            addCriterion("token is not null");
+            return (Criteria) this;
+        }
+
+        public Criteria andTokenEqualTo(String value) {
+            addCriterion("token =", value, "token");
+            return (Criteria) this;
+        }
+
+        public Criteria andTokenNotEqualTo(String value) {
+            addCriterion("token <>", value, "token");
+            return (Criteria) this;
+        }
+
+        public Criteria andTokenGreaterThan(String value) {
+            addCriterion("token >", value, "token");
+            return (Criteria) this;
+        }
+
+        public Criteria andTokenGreaterThanOrEqualTo(String value) {
+            addCriterion("token >=", value, "token");
+            return (Criteria) this;
+        }
+
+        public Criteria andTokenLessThan(String value) {
+            addCriterion("token <", value, "token");
+            return (Criteria) this;
+        }
+
+        public Criteria andTokenLessThanOrEqualTo(String value) {
+            addCriterion("token <=", value, "token");
+            return (Criteria) this;
+        }
+
+        public Criteria andTokenLike(String value) {
+            addCriterion("token like", value, "token");
+            return (Criteria) this;
+        }
+
+        public Criteria andTokenNotLike(String value) {
+            addCriterion("token not like", value, "token");
+            return (Criteria) this;
+        }
+
+        public Criteria andTokenIn(List<String> values) {
+            addCriterion("token in", values, "token");
+            return (Criteria) this;
+        }
+
+        public Criteria andTokenNotIn(List<String> values) {
+            addCriterion("token not in", values, "token");
+            return (Criteria) this;
+        }
+
+        public Criteria andTokenBetween(String value1, String value2) {
+            addCriterion("token between", value1, value2, "token");
+            return (Criteria) this;
+        }
+
+        public Criteria andTokenNotBetween(String value1, String value2) {
+            addCriterion("token not between", value1, value2, "token");
+            return (Criteria) this;
+        }
+
+        public Criteria andAmtIsNull() {
+            addCriterion("amt is null");
+            return (Criteria) this;
+        }
+
+        public Criteria andAmtIsNotNull() {
+            addCriterion("amt is not null");
+            return (Criteria) this;
+        }
+
+        public Criteria andAmtEqualTo(String value) {
+            addCriterion("amt =", value, "amt");
+            return (Criteria) this;
+        }
+
+        public Criteria andAmtNotEqualTo(String value) {
+            addCriterion("amt <>", value, "amt");
+            return (Criteria) this;
+        }
+
+        public Criteria andAmtGreaterThan(String value) {
+            addCriterion("amt >", value, "amt");
+            return (Criteria) this;
+        }
+
+        public Criteria andAmtGreaterThanOrEqualTo(String value) {
+            addCriterion("amt >=", value, "amt");
+            return (Criteria) this;
+        }
+
+        public Criteria andAmtLessThan(String value) {
+            addCriterion("amt <", value, "amt");
+            return (Criteria) this;
+        }
+
+        public Criteria andAmtLessThanOrEqualTo(String value) {
+            addCriterion("amt <=", value, "amt");
+            return (Criteria) this;
+        }
+
+        public Criteria andAmtLike(String value) {
+            addCriterion("amt like", value, "amt");
+            return (Criteria) this;
+        }
+
+        public Criteria andAmtNotLike(String value) {
+            addCriterion("amt not like", value, "amt");
+            return (Criteria) this;
+        }
+
+        public Criteria andAmtIn(List<String> values) {
+            addCriterion("amt in", values, "amt");
+            return (Criteria) this;
+        }
+
+        public Criteria andAmtNotIn(List<String> values) {
+            addCriterion("amt not in", values, "amt");
+            return (Criteria) this;
+        }
+
+        public Criteria andAmtBetween(String value1, String value2) {
+            addCriterion("amt between", value1, value2, "amt");
+            return (Criteria) this;
+        }
+
+        public Criteria andAmtNotBetween(String value1, String value2) {
+            addCriterion("amt not between", value1, value2, "amt");
+            return (Criteria) this;
+        }
+
+        public Criteria andOilStationIdIsNull() {
+            addCriterion("oil_station_id is null");
+            return (Criteria) this;
+        }
+
+        public Criteria andOilStationIdIsNotNull() {
+            addCriterion("oil_station_id is not null");
+            return (Criteria) this;
+        }
+
+        public Criteria andOilStationIdEqualTo(String value) {
+            addCriterion("oil_station_id =", value, "oilStationId");
+            return (Criteria) this;
+        }
+
+        public Criteria andOilStationIdNotEqualTo(String value) {
+            addCriterion("oil_station_id <>", value, "oilStationId");
+            return (Criteria) this;
+        }
+
+        public Criteria andOilStationIdGreaterThan(String value) {
+            addCriterion("oil_station_id >", value, "oilStationId");
+            return (Criteria) this;
+        }
+
+        public Criteria andOilStationIdGreaterThanOrEqualTo(String value) {
+            addCriterion("oil_station_id >=", value, "oilStationId");
+            return (Criteria) this;
+        }
+
+        public Criteria andOilStationIdLessThan(String value) {
+            addCriterion("oil_station_id <", value, "oilStationId");
+            return (Criteria) this;
+        }
+
+        public Criteria andOilStationIdLessThanOrEqualTo(String value) {
+            addCriterion("oil_station_id <=", value, "oilStationId");
+            return (Criteria) this;
+        }
+
+        public Criteria andOilStationIdLike(String value) {
+            addCriterion("oil_station_id like", value, "oilStationId");
+            return (Criteria) this;
+        }
+
+        public Criteria andOilStationIdNotLike(String value) {
+            addCriterion("oil_station_id not like", value, "oilStationId");
+            return (Criteria) this;
+        }
+
+        public Criteria andOilStationIdIn(List<String> values) {
+            addCriterion("oil_station_id in", values, "oilStationId");
+            return (Criteria) this;
+        }
+
+        public Criteria andOilStationIdNotIn(List<String> values) {
+            addCriterion("oil_station_id not in", values, "oilStationId");
+            return (Criteria) this;
+        }
+
+        public Criteria andOilStationIdBetween(String value1, String value2) {
+            addCriterion("oil_station_id between", value1, value2, "oilStationId");
+            return (Criteria) this;
+        }
+
+        public Criteria andOilStationIdNotBetween(String value1, String value2) {
+            addCriterion("oil_station_id not between", value1, value2, "oilStationId");
+            return (Criteria) this;
+        }
+
+        public Criteria andStatusIsNull() {
+            addCriterion("status is null");
+            return (Criteria) this;
+        }
+
+        public Criteria andStatusIsNotNull() {
+            addCriterion("status is not null");
+            return (Criteria) this;
+        }
+
+        public Criteria andStatusEqualTo(String value) {
+            addCriterion("status =", value, "status");
+            return (Criteria) this;
+        }
+
+        public Criteria andStatusNotEqualTo(String value) {
+            addCriterion("status <>", value, "status");
+            return (Criteria) this;
+        }
+
+        public Criteria andStatusGreaterThan(String value) {
+            addCriterion("status >", value, "status");
+            return (Criteria) this;
+        }
+
+        public Criteria andStatusGreaterThanOrEqualTo(String value) {
+            addCriterion("status >=", value, "status");
+            return (Criteria) this;
+        }
+
+        public Criteria andStatusLessThan(String value) {
+            addCriterion("status <", value, "status");
+            return (Criteria) this;
+        }
+
+        public Criteria andStatusLessThanOrEqualTo(String value) {
+            addCriterion("status <=", value, "status");
+            return (Criteria) this;
+        }
+
+        public Criteria andStatusLike(String value) {
+            addCriterion("status like", value, "status");
+            return (Criteria) this;
+        }
+
+        public Criteria andStatusNotLike(String value) {
+            addCriterion("status not like", value, "status");
+            return (Criteria) this;
+        }
+
+        public Criteria andStatusIn(List<String> values) {
+            addCriterion("status in", values, "status");
+            return (Criteria) this;
+        }
+
+        public Criteria andStatusNotIn(List<String> values) {
+            addCriterion("status not in", values, "status");
+            return (Criteria) this;
+        }
+
+        public Criteria andStatusBetween(String value1, String value2) {
+            addCriterion("status between", value1, value2, "status");
+            return (Criteria) this;
+        }
+
+        public Criteria andStatusNotBetween(String value1, String value2) {
+            addCriterion("status not between", value1, value2, "status");
+            return (Criteria) this;
+        }
+
+        public Criteria andOrderLitersIsNull() {
+            addCriterion("order_liters is null");
+            return (Criteria) this;
+        }
+
+        public Criteria andOrderLitersIsNotNull() {
+            addCriterion("order_liters is not null");
+            return (Criteria) this;
+        }
+
+        public Criteria andOrderLitersEqualTo(String value) {
+            addCriterion("order_liters =", value, "orderLiters");
+            return (Criteria) this;
+        }
+
+        public Criteria andOrderLitersNotEqualTo(String value) {
+            addCriterion("order_liters <>", value, "orderLiters");
+            return (Criteria) this;
+        }
+
+        public Criteria andOrderLitersGreaterThan(String value) {
+            addCriterion("order_liters >", value, "orderLiters");
+            return (Criteria) this;
+        }
+
+        public Criteria andOrderLitersGreaterThanOrEqualTo(String value) {
+            addCriterion("order_liters >=", value, "orderLiters");
+            return (Criteria) this;
+        }
+
+        public Criteria andOrderLitersLessThan(String value) {
+            addCriterion("order_liters <", value, "orderLiters");
+            return (Criteria) this;
+        }
+
+        public Criteria andOrderLitersLessThanOrEqualTo(String value) {
+            addCriterion("order_liters <=", value, "orderLiters");
+            return (Criteria) this;
+        }
+
+        public Criteria andOrderLitersLike(String value) {
+            addCriterion("order_liters like", value, "orderLiters");
+            return (Criteria) this;
+        }
+
+        public Criteria andOrderLitersNotLike(String value) {
+            addCriterion("order_liters not like", value, "orderLiters");
+            return (Criteria) this;
+        }
+
+        public Criteria andOrderLitersIn(List<String> values) {
+            addCriterion("order_liters in", values, "orderLiters");
+            return (Criteria) this;
+        }
+
+        public Criteria andOrderLitersNotIn(List<String> values) {
+            addCriterion("order_liters not in", values, "orderLiters");
+            return (Criteria) this;
+        }
+
+        public Criteria andOrderLitersBetween(String value1, String value2) {
+            addCriterion("order_liters between", value1, value2, "orderLiters");
+            return (Criteria) this;
+        }
+
+        public Criteria andOrderLitersNotBetween(String value1, String value2) {
+            addCriterion("order_liters not between", value1, value2, "orderLiters");
+            return (Criteria) this;
+        }
+
+        public Criteria andPayTypeIsNull() {
+            addCriterion("pay_type is null");
+            return (Criteria) this;
+        }
+
+        public Criteria andPayTypeIsNotNull() {
+            addCriterion("pay_type is not null");
+            return (Criteria) this;
+        }
+
+        public Criteria andPayTypeEqualTo(String value) {
+            addCriterion("pay_type =", value, "payType");
+            return (Criteria) this;
+        }
+
+        public Criteria andPayTypeNotEqualTo(String value) {
+            addCriterion("pay_type <>", value, "payType");
+            return (Criteria) this;
+        }
+
+        public Criteria andPayTypeGreaterThan(String value) {
+            addCriterion("pay_type >", value, "payType");
+            return (Criteria) this;
+        }
+
+        public Criteria andPayTypeGreaterThanOrEqualTo(String value) {
+            addCriterion("pay_type >=", value, "payType");
+            return (Criteria) this;
+        }
+
+        public Criteria andPayTypeLessThan(String value) {
+            addCriterion("pay_type <", value, "payType");
+            return (Criteria) this;
+        }
+
+        public Criteria andPayTypeLessThanOrEqualTo(String value) {
+            addCriterion("pay_type <=", value, "payType");
+            return (Criteria) this;
+        }
+
+        public Criteria andPayTypeLike(String value) {
+            addCriterion("pay_type like", value, "payType");
+            return (Criteria) this;
+        }
+
+        public Criteria andPayTypeNotLike(String value) {
+            addCriterion("pay_type not like", value, "payType");
+            return (Criteria) this;
+        }
+
+        public Criteria andPayTypeIn(List<String> values) {
+            addCriterion("pay_type in", values, "payType");
+            return (Criteria) this;
+        }
+
+        public Criteria andPayTypeNotIn(List<String> values) {
+            addCriterion("pay_type not in", values, "payType");
+            return (Criteria) this;
+        }
+
+        public Criteria andPayTypeBetween(String value1, String value2) {
+            addCriterion("pay_type between", value1, value2, "payType");
+            return (Criteria) this;
+        }
+
+        public Criteria andPayTypeNotBetween(String value1, String value2) {
+            addCriterion("pay_type not between", value1, value2, "payType");
+            return (Criteria) this;
+        }
+
+        public Criteria andPayWayIsNull() {
+            addCriterion("pay_way is null");
+            return (Criteria) this;
+        }
+
+        public Criteria andPayWayIsNotNull() {
+            addCriterion("pay_way is not null");
+            return (Criteria) this;
+        }
+
+        public Criteria andPayWayEqualTo(String value) {
+            addCriterion("pay_way =", value, "payWay");
+            return (Criteria) this;
+        }
+
+        public Criteria andPayWayNotEqualTo(String value) {
+            addCriterion("pay_way <>", value, "payWay");
+            return (Criteria) this;
+        }
+
+        public Criteria andPayWayGreaterThan(String value) {
+            addCriterion("pay_way >", value, "payWay");
+            return (Criteria) this;
+        }
+
+        public Criteria andPayWayGreaterThanOrEqualTo(String value) {
+            addCriterion("pay_way >=", value, "payWay");
+            return (Criteria) this;
+        }
+
+        public Criteria andPayWayLessThan(String value) {
+            addCriterion("pay_way <", value, "payWay");
+            return (Criteria) this;
+        }
+
+        public Criteria andPayWayLessThanOrEqualTo(String value) {
+            addCriterion("pay_way <=", value, "payWay");
+            return (Criteria) this;
+        }
+
+        public Criteria andPayWayLike(String value) {
+            addCriterion("pay_way like", value, "payWay");
+            return (Criteria) this;
+        }
+
+        public Criteria andPayWayNotLike(String value) {
+            addCriterion("pay_way not like", value, "payWay");
+            return (Criteria) this;
+        }
+
+        public Criteria andPayWayIn(List<String> values) {
+            addCriterion("pay_way in", values, "payWay");
+            return (Criteria) this;
+        }
+
+        public Criteria andPayWayNotIn(List<String> values) {
+            addCriterion("pay_way not in", values, "payWay");
+            return (Criteria) this;
+        }
+
+        public Criteria andPayWayBetween(String value1, String value2) {
+            addCriterion("pay_way between", value1, value2, "payWay");
+            return (Criteria) this;
+        }
+
+        public Criteria andPayWayNotBetween(String value1, String value2) {
+            addCriterion("pay_way not between", value1, value2, "payWay");
+            return (Criteria) this;
+        }
+    }
+
+    /**
+     * This class was generated by MyBatis Generator.
+     * This class corresponds to the database table pay_order
+     *
+     * @mbg.generated do_not_delete_during_merge
+     */
+    public static class Criteria extends GeneratedCriteria {
+
+        protected Criteria() {
+            super();
+        }
+    }
+
+    /**
+     * This class was generated by MyBatis Generator.
+     * This class corresponds to the database table pay_order
+     *
+     * @mbg.generated
+     */
+    public static class Criterion {
+        private String condition;
+
+        private Object value;
+
+        private Object secondValue;
+
+        private boolean noValue;
+
+        private boolean singleValue;
+
+        private boolean betweenValue;
+
+        private boolean listValue;
+
+        private String typeHandler;
+
+        public String getCondition() {
+            return condition;
+        }
+
+        public Object getValue() {
+            return value;
+        }
+
+        public Object getSecondValue() {
+            return secondValue;
+        }
+
+        public boolean isNoValue() {
+            return noValue;
+        }
+
+        public boolean isSingleValue() {
+            return singleValue;
+        }
+
+        public boolean isBetweenValue() {
+            return betweenValue;
+        }
+
+        public boolean isListValue() {
+            return listValue;
+        }
+
+        public String getTypeHandler() {
+            return typeHandler;
+        }
+
+        protected Criterion(String condition) {
+            super();
+            this.condition = condition;
+            this.typeHandler = null;
+            this.noValue = true;
+        }
+
+        protected Criterion(String condition, Object value, String typeHandler) {
+            super();
+            this.condition = condition;
+            this.value = value;
+            this.typeHandler = typeHandler;
+            if (value instanceof List<?>) {
+                this.listValue = true;
+            } else {
+                this.singleValue = true;
+            }
+        }
+
+        protected Criterion(String condition, Object value) {
+            this(condition, value, null);
+        }
+
+        protected Criterion(String condition, Object value, Object secondValue, String typeHandler) {
+            super();
+            this.condition = condition;
+            this.value = value;
+            this.secondValue = secondValue;
+            this.typeHandler = typeHandler;
+            this.betweenValue = true;
+        }
+
+        protected Criterion(String condition, Object value, Object secondValue) {
+            this(condition, value, secondValue, null);
+        }
+    }
+}