更新后端,采用Springboot+mybatis
This commit is contained in:
@@ -0,0 +1,933 @@
|
||||
package com.jsh.erp.datasource.entities;
|
||||
|
||||
import java.util.ArrayList;
|
||||
import java.util.Date;
|
||||
import java.util.List;
|
||||
|
||||
public class AccountHeadExample {
|
||||
/**
|
||||
* This field was generated by MyBatis Generator.
|
||||
* This field corresponds to the database table jsh_accounthead
|
||||
*
|
||||
* @mbggenerated
|
||||
*/
|
||||
protected String orderByClause;
|
||||
|
||||
/**
|
||||
* This field was generated by MyBatis Generator.
|
||||
* This field corresponds to the database table jsh_accounthead
|
||||
*
|
||||
* @mbggenerated
|
||||
*/
|
||||
protected boolean distinct;
|
||||
|
||||
/**
|
||||
* This field was generated by MyBatis Generator.
|
||||
* This field corresponds to the database table jsh_accounthead
|
||||
*
|
||||
* @mbggenerated
|
||||
*/
|
||||
protected List<Criteria> oredCriteria;
|
||||
|
||||
/**
|
||||
* This method was generated by MyBatis Generator.
|
||||
* This method corresponds to the database table jsh_accounthead
|
||||
*
|
||||
* @mbggenerated
|
||||
*/
|
||||
public AccountHeadExample() {
|
||||
oredCriteria = new ArrayList<Criteria>();
|
||||
}
|
||||
|
||||
/**
|
||||
* This method was generated by MyBatis Generator.
|
||||
* This method corresponds to the database table jsh_accounthead
|
||||
*
|
||||
* @mbggenerated
|
||||
*/
|
||||
public void setOrderByClause(String orderByClause) {
|
||||
this.orderByClause = orderByClause;
|
||||
}
|
||||
|
||||
/**
|
||||
* This method was generated by MyBatis Generator.
|
||||
* This method corresponds to the database table jsh_accounthead
|
||||
*
|
||||
* @mbggenerated
|
||||
*/
|
||||
public String getOrderByClause() {
|
||||
return orderByClause;
|
||||
}
|
||||
|
||||
/**
|
||||
* This method was generated by MyBatis Generator.
|
||||
* This method corresponds to the database table jsh_accounthead
|
||||
*
|
||||
* @mbggenerated
|
||||
*/
|
||||
public void setDistinct(boolean distinct) {
|
||||
this.distinct = distinct;
|
||||
}
|
||||
|
||||
/**
|
||||
* This method was generated by MyBatis Generator.
|
||||
* This method corresponds to the database table jsh_accounthead
|
||||
*
|
||||
* @mbggenerated
|
||||
*/
|
||||
public boolean isDistinct() {
|
||||
return distinct;
|
||||
}
|
||||
|
||||
/**
|
||||
* This method was generated by MyBatis Generator.
|
||||
* This method corresponds to the database table jsh_accounthead
|
||||
*
|
||||
* @mbggenerated
|
||||
*/
|
||||
public List<Criteria> getOredCriteria() {
|
||||
return oredCriteria;
|
||||
}
|
||||
|
||||
/**
|
||||
* This method was generated by MyBatis Generator.
|
||||
* This method corresponds to the database table jsh_accounthead
|
||||
*
|
||||
* @mbggenerated
|
||||
*/
|
||||
public void or(Criteria criteria) {
|
||||
oredCriteria.add(criteria);
|
||||
}
|
||||
|
||||
/**
|
||||
* This method was generated by MyBatis Generator.
|
||||
* This method corresponds to the database table jsh_accounthead
|
||||
*
|
||||
* @mbggenerated
|
||||
*/
|
||||
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 jsh_accounthead
|
||||
*
|
||||
* @mbggenerated
|
||||
*/
|
||||
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 jsh_accounthead
|
||||
*
|
||||
* @mbggenerated
|
||||
*/
|
||||
protected Criteria createCriteriaInternal() {
|
||||
Criteria criteria = new Criteria();
|
||||
return criteria;
|
||||
}
|
||||
|
||||
/**
|
||||
* This method was generated by MyBatis Generator.
|
||||
* This method corresponds to the database table jsh_accounthead
|
||||
*
|
||||
* @mbggenerated
|
||||
*/
|
||||
public void clear() {
|
||||
oredCriteria.clear();
|
||||
orderByClause = null;
|
||||
distinct = false;
|
||||
}
|
||||
|
||||
/**
|
||||
* This class was generated by MyBatis Generator.
|
||||
* This class corresponds to the database table jsh_accounthead
|
||||
*
|
||||
* @mbggenerated
|
||||
*/
|
||||
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 andIdIsNull() {
|
||||
addCriterion("Id is null");
|
||||
return (Criteria) this;
|
||||
}
|
||||
|
||||
public Criteria andIdIsNotNull() {
|
||||
addCriterion("Id is not null");
|
||||
return (Criteria) this;
|
||||
}
|
||||
|
||||
public Criteria andIdEqualTo(Long value) {
|
||||
addCriterion("Id =", value, "id");
|
||||
return (Criteria) this;
|
||||
}
|
||||
|
||||
public Criteria andIdNotEqualTo(Long value) {
|
||||
addCriterion("Id <>", value, "id");
|
||||
return (Criteria) this;
|
||||
}
|
||||
|
||||
public Criteria andIdGreaterThan(Long value) {
|
||||
addCriterion("Id >", value, "id");
|
||||
return (Criteria) this;
|
||||
}
|
||||
|
||||
public Criteria andIdGreaterThanOrEqualTo(Long value) {
|
||||
addCriterion("Id >=", value, "id");
|
||||
return (Criteria) this;
|
||||
}
|
||||
|
||||
public Criteria andIdLessThan(Long value) {
|
||||
addCriterion("Id <", value, "id");
|
||||
return (Criteria) this;
|
||||
}
|
||||
|
||||
public Criteria andIdLessThanOrEqualTo(Long value) {
|
||||
addCriterion("Id <=", value, "id");
|
||||
return (Criteria) this;
|
||||
}
|
||||
|
||||
public Criteria andIdIn(List<Long> values) {
|
||||
addCriterion("Id in", values, "id");
|
||||
return (Criteria) this;
|
||||
}
|
||||
|
||||
public Criteria andIdNotIn(List<Long> values) {
|
||||
addCriterion("Id not in", values, "id");
|
||||
return (Criteria) this;
|
||||
}
|
||||
|
||||
public Criteria andIdBetween(Long value1, Long value2) {
|
||||
addCriterion("Id between", value1, value2, "id");
|
||||
return (Criteria) this;
|
||||
}
|
||||
|
||||
public Criteria andIdNotBetween(Long value1, Long value2) {
|
||||
addCriterion("Id not between", value1, value2, "id");
|
||||
return (Criteria) this;
|
||||
}
|
||||
|
||||
public Criteria andTypeIsNull() {
|
||||
addCriterion("Type is null");
|
||||
return (Criteria) this;
|
||||
}
|
||||
|
||||
public Criteria andTypeIsNotNull() {
|
||||
addCriterion("Type is not null");
|
||||
return (Criteria) this;
|
||||
}
|
||||
|
||||
public Criteria andTypeEqualTo(String value) {
|
||||
addCriterion("Type =", value, "type");
|
||||
return (Criteria) this;
|
||||
}
|
||||
|
||||
public Criteria andTypeNotEqualTo(String value) {
|
||||
addCriterion("Type <>", value, "type");
|
||||
return (Criteria) this;
|
||||
}
|
||||
|
||||
public Criteria andTypeGreaterThan(String value) {
|
||||
addCriterion("Type >", value, "type");
|
||||
return (Criteria) this;
|
||||
}
|
||||
|
||||
public Criteria andTypeGreaterThanOrEqualTo(String value) {
|
||||
addCriterion("Type >=", value, "type");
|
||||
return (Criteria) this;
|
||||
}
|
||||
|
||||
public Criteria andTypeLessThan(String value) {
|
||||
addCriterion("Type <", value, "type");
|
||||
return (Criteria) this;
|
||||
}
|
||||
|
||||
public Criteria andTypeLessThanOrEqualTo(String value) {
|
||||
addCriterion("Type <=", value, "type");
|
||||
return (Criteria) this;
|
||||
}
|
||||
|
||||
public Criteria andTypeLike(String value) {
|
||||
addCriterion("Type like", value, "type");
|
||||
return (Criteria) this;
|
||||
}
|
||||
|
||||
public Criteria andTypeNotLike(String value) {
|
||||
addCriterion("Type not like", value, "type");
|
||||
return (Criteria) this;
|
||||
}
|
||||
|
||||
public Criteria andTypeIn(List<String> values) {
|
||||
addCriterion("Type in", values, "type");
|
||||
return (Criteria) this;
|
||||
}
|
||||
|
||||
public Criteria andTypeNotIn(List<String> values) {
|
||||
addCriterion("Type not in", values, "type");
|
||||
return (Criteria) this;
|
||||
}
|
||||
|
||||
public Criteria andTypeBetween(String value1, String value2) {
|
||||
addCriterion("Type between", value1, value2, "type");
|
||||
return (Criteria) this;
|
||||
}
|
||||
|
||||
public Criteria andTypeNotBetween(String value1, String value2) {
|
||||
addCriterion("Type not between", value1, value2, "type");
|
||||
return (Criteria) this;
|
||||
}
|
||||
|
||||
public Criteria andOrganidIsNull() {
|
||||
addCriterion("OrganId is null");
|
||||
return (Criteria) this;
|
||||
}
|
||||
|
||||
public Criteria andOrganidIsNotNull() {
|
||||
addCriterion("OrganId is not null");
|
||||
return (Criteria) this;
|
||||
}
|
||||
|
||||
public Criteria andOrganidEqualTo(Long value) {
|
||||
addCriterion("OrganId =", value, "organid");
|
||||
return (Criteria) this;
|
||||
}
|
||||
|
||||
public Criteria andOrganidNotEqualTo(Long value) {
|
||||
addCriterion("OrganId <>", value, "organid");
|
||||
return (Criteria) this;
|
||||
}
|
||||
|
||||
public Criteria andOrganidGreaterThan(Long value) {
|
||||
addCriterion("OrganId >", value, "organid");
|
||||
return (Criteria) this;
|
||||
}
|
||||
|
||||
public Criteria andOrganidGreaterThanOrEqualTo(Long value) {
|
||||
addCriterion("OrganId >=", value, "organid");
|
||||
return (Criteria) this;
|
||||
}
|
||||
|
||||
public Criteria andOrganidLessThan(Long value) {
|
||||
addCriterion("OrganId <", value, "organid");
|
||||
return (Criteria) this;
|
||||
}
|
||||
|
||||
public Criteria andOrganidLessThanOrEqualTo(Long value) {
|
||||
addCriterion("OrganId <=", value, "organid");
|
||||
return (Criteria) this;
|
||||
}
|
||||
|
||||
public Criteria andOrganidIn(List<Long> values) {
|
||||
addCriterion("OrganId in", values, "organid");
|
||||
return (Criteria) this;
|
||||
}
|
||||
|
||||
public Criteria andOrganidNotIn(List<Long> values) {
|
||||
addCriterion("OrganId not in", values, "organid");
|
||||
return (Criteria) this;
|
||||
}
|
||||
|
||||
public Criteria andOrganidBetween(Long value1, Long value2) {
|
||||
addCriterion("OrganId between", value1, value2, "organid");
|
||||
return (Criteria) this;
|
||||
}
|
||||
|
||||
public Criteria andOrganidNotBetween(Long value1, Long value2) {
|
||||
addCriterion("OrganId not between", value1, value2, "organid");
|
||||
return (Criteria) this;
|
||||
}
|
||||
|
||||
public Criteria andHandspersonidIsNull() {
|
||||
addCriterion("HandsPersonId is null");
|
||||
return (Criteria) this;
|
||||
}
|
||||
|
||||
public Criteria andHandspersonidIsNotNull() {
|
||||
addCriterion("HandsPersonId is not null");
|
||||
return (Criteria) this;
|
||||
}
|
||||
|
||||
public Criteria andHandspersonidEqualTo(Long value) {
|
||||
addCriterion("HandsPersonId =", value, "handspersonid");
|
||||
return (Criteria) this;
|
||||
}
|
||||
|
||||
public Criteria andHandspersonidNotEqualTo(Long value) {
|
||||
addCriterion("HandsPersonId <>", value, "handspersonid");
|
||||
return (Criteria) this;
|
||||
}
|
||||
|
||||
public Criteria andHandspersonidGreaterThan(Long value) {
|
||||
addCriterion("HandsPersonId >", value, "handspersonid");
|
||||
return (Criteria) this;
|
||||
}
|
||||
|
||||
public Criteria andHandspersonidGreaterThanOrEqualTo(Long value) {
|
||||
addCriterion("HandsPersonId >=", value, "handspersonid");
|
||||
return (Criteria) this;
|
||||
}
|
||||
|
||||
public Criteria andHandspersonidLessThan(Long value) {
|
||||
addCriterion("HandsPersonId <", value, "handspersonid");
|
||||
return (Criteria) this;
|
||||
}
|
||||
|
||||
public Criteria andHandspersonidLessThanOrEqualTo(Long value) {
|
||||
addCriterion("HandsPersonId <=", value, "handspersonid");
|
||||
return (Criteria) this;
|
||||
}
|
||||
|
||||
public Criteria andHandspersonidIn(List<Long> values) {
|
||||
addCriterion("HandsPersonId in", values, "handspersonid");
|
||||
return (Criteria) this;
|
||||
}
|
||||
|
||||
public Criteria andHandspersonidNotIn(List<Long> values) {
|
||||
addCriterion("HandsPersonId not in", values, "handspersonid");
|
||||
return (Criteria) this;
|
||||
}
|
||||
|
||||
public Criteria andHandspersonidBetween(Long value1, Long value2) {
|
||||
addCriterion("HandsPersonId between", value1, value2, "handspersonid");
|
||||
return (Criteria) this;
|
||||
}
|
||||
|
||||
public Criteria andHandspersonidNotBetween(Long value1, Long value2) {
|
||||
addCriterion("HandsPersonId not between", value1, value2, "handspersonid");
|
||||
return (Criteria) this;
|
||||
}
|
||||
|
||||
public Criteria andChangeamountIsNull() {
|
||||
addCriterion("ChangeAmount is null");
|
||||
return (Criteria) this;
|
||||
}
|
||||
|
||||
public Criteria andChangeamountIsNotNull() {
|
||||
addCriterion("ChangeAmount is not null");
|
||||
return (Criteria) this;
|
||||
}
|
||||
|
||||
public Criteria andChangeamountEqualTo(Double value) {
|
||||
addCriterion("ChangeAmount =", value, "changeamount");
|
||||
return (Criteria) this;
|
||||
}
|
||||
|
||||
public Criteria andChangeamountNotEqualTo(Double value) {
|
||||
addCriterion("ChangeAmount <>", value, "changeamount");
|
||||
return (Criteria) this;
|
||||
}
|
||||
|
||||
public Criteria andChangeamountGreaterThan(Double value) {
|
||||
addCriterion("ChangeAmount >", value, "changeamount");
|
||||
return (Criteria) this;
|
||||
}
|
||||
|
||||
public Criteria andChangeamountGreaterThanOrEqualTo(Double value) {
|
||||
addCriterion("ChangeAmount >=", value, "changeamount");
|
||||
return (Criteria) this;
|
||||
}
|
||||
|
||||
public Criteria andChangeamountLessThan(Double value) {
|
||||
addCriterion("ChangeAmount <", value, "changeamount");
|
||||
return (Criteria) this;
|
||||
}
|
||||
|
||||
public Criteria andChangeamountLessThanOrEqualTo(Double value) {
|
||||
addCriterion("ChangeAmount <=", value, "changeamount");
|
||||
return (Criteria) this;
|
||||
}
|
||||
|
||||
public Criteria andChangeamountIn(List<Double> values) {
|
||||
addCriterion("ChangeAmount in", values, "changeamount");
|
||||
return (Criteria) this;
|
||||
}
|
||||
|
||||
public Criteria andChangeamountNotIn(List<Double> values) {
|
||||
addCriterion("ChangeAmount not in", values, "changeamount");
|
||||
return (Criteria) this;
|
||||
}
|
||||
|
||||
public Criteria andChangeamountBetween(Double value1, Double value2) {
|
||||
addCriterion("ChangeAmount between", value1, value2, "changeamount");
|
||||
return (Criteria) this;
|
||||
}
|
||||
|
||||
public Criteria andChangeamountNotBetween(Double value1, Double value2) {
|
||||
addCriterion("ChangeAmount not between", value1, value2, "changeamount");
|
||||
return (Criteria) this;
|
||||
}
|
||||
|
||||
public Criteria andTotalpriceIsNull() {
|
||||
addCriterion("TotalPrice is null");
|
||||
return (Criteria) this;
|
||||
}
|
||||
|
||||
public Criteria andTotalpriceIsNotNull() {
|
||||
addCriterion("TotalPrice is not null");
|
||||
return (Criteria) this;
|
||||
}
|
||||
|
||||
public Criteria andTotalpriceEqualTo(Double value) {
|
||||
addCriterion("TotalPrice =", value, "totalprice");
|
||||
return (Criteria) this;
|
||||
}
|
||||
|
||||
public Criteria andTotalpriceNotEqualTo(Double value) {
|
||||
addCriterion("TotalPrice <>", value, "totalprice");
|
||||
return (Criteria) this;
|
||||
}
|
||||
|
||||
public Criteria andTotalpriceGreaterThan(Double value) {
|
||||
addCriterion("TotalPrice >", value, "totalprice");
|
||||
return (Criteria) this;
|
||||
}
|
||||
|
||||
public Criteria andTotalpriceGreaterThanOrEqualTo(Double value) {
|
||||
addCriterion("TotalPrice >=", value, "totalprice");
|
||||
return (Criteria) this;
|
||||
}
|
||||
|
||||
public Criteria andTotalpriceLessThan(Double value) {
|
||||
addCriterion("TotalPrice <", value, "totalprice");
|
||||
return (Criteria) this;
|
||||
}
|
||||
|
||||
public Criteria andTotalpriceLessThanOrEqualTo(Double value) {
|
||||
addCriterion("TotalPrice <=", value, "totalprice");
|
||||
return (Criteria) this;
|
||||
}
|
||||
|
||||
public Criteria andTotalpriceIn(List<Double> values) {
|
||||
addCriterion("TotalPrice in", values, "totalprice");
|
||||
return (Criteria) this;
|
||||
}
|
||||
|
||||
public Criteria andTotalpriceNotIn(List<Double> values) {
|
||||
addCriterion("TotalPrice not in", values, "totalprice");
|
||||
return (Criteria) this;
|
||||
}
|
||||
|
||||
public Criteria andTotalpriceBetween(Double value1, Double value2) {
|
||||
addCriterion("TotalPrice between", value1, value2, "totalprice");
|
||||
return (Criteria) this;
|
||||
}
|
||||
|
||||
public Criteria andTotalpriceNotBetween(Double value1, Double value2) {
|
||||
addCriterion("TotalPrice not between", value1, value2, "totalprice");
|
||||
return (Criteria) this;
|
||||
}
|
||||
|
||||
public Criteria andAccountidIsNull() {
|
||||
addCriterion("AccountId is null");
|
||||
return (Criteria) this;
|
||||
}
|
||||
|
||||
public Criteria andAccountidIsNotNull() {
|
||||
addCriterion("AccountId is not null");
|
||||
return (Criteria) this;
|
||||
}
|
||||
|
||||
public Criteria andAccountidEqualTo(Long value) {
|
||||
addCriterion("AccountId =", value, "accountid");
|
||||
return (Criteria) this;
|
||||
}
|
||||
|
||||
public Criteria andAccountidNotEqualTo(Long value) {
|
||||
addCriterion("AccountId <>", value, "accountid");
|
||||
return (Criteria) this;
|
||||
}
|
||||
|
||||
public Criteria andAccountidGreaterThan(Long value) {
|
||||
addCriterion("AccountId >", value, "accountid");
|
||||
return (Criteria) this;
|
||||
}
|
||||
|
||||
public Criteria andAccountidGreaterThanOrEqualTo(Long value) {
|
||||
addCriterion("AccountId >=", value, "accountid");
|
||||
return (Criteria) this;
|
||||
}
|
||||
|
||||
public Criteria andAccountidLessThan(Long value) {
|
||||
addCriterion("AccountId <", value, "accountid");
|
||||
return (Criteria) this;
|
||||
}
|
||||
|
||||
public Criteria andAccountidLessThanOrEqualTo(Long value) {
|
||||
addCriterion("AccountId <=", value, "accountid");
|
||||
return (Criteria) this;
|
||||
}
|
||||
|
||||
public Criteria andAccountidIn(List<Long> values) {
|
||||
addCriterion("AccountId in", values, "accountid");
|
||||
return (Criteria) this;
|
||||
}
|
||||
|
||||
public Criteria andAccountidNotIn(List<Long> values) {
|
||||
addCriterion("AccountId not in", values, "accountid");
|
||||
return (Criteria) this;
|
||||
}
|
||||
|
||||
public Criteria andAccountidBetween(Long value1, Long value2) {
|
||||
addCriterion("AccountId between", value1, value2, "accountid");
|
||||
return (Criteria) this;
|
||||
}
|
||||
|
||||
public Criteria andAccountidNotBetween(Long value1, Long value2) {
|
||||
addCriterion("AccountId not between", value1, value2, "accountid");
|
||||
return (Criteria) this;
|
||||
}
|
||||
|
||||
public Criteria andBillnoIsNull() {
|
||||
addCriterion("BillNo is null");
|
||||
return (Criteria) this;
|
||||
}
|
||||
|
||||
public Criteria andBillnoIsNotNull() {
|
||||
addCriterion("BillNo is not null");
|
||||
return (Criteria) this;
|
||||
}
|
||||
|
||||
public Criteria andBillnoEqualTo(String value) {
|
||||
addCriterion("BillNo =", value, "billno");
|
||||
return (Criteria) this;
|
||||
}
|
||||
|
||||
public Criteria andBillnoNotEqualTo(String value) {
|
||||
addCriterion("BillNo <>", value, "billno");
|
||||
return (Criteria) this;
|
||||
}
|
||||
|
||||
public Criteria andBillnoGreaterThan(String value) {
|
||||
addCriterion("BillNo >", value, "billno");
|
||||
return (Criteria) this;
|
||||
}
|
||||
|
||||
public Criteria andBillnoGreaterThanOrEqualTo(String value) {
|
||||
addCriterion("BillNo >=", value, "billno");
|
||||
return (Criteria) this;
|
||||
}
|
||||
|
||||
public Criteria andBillnoLessThan(String value) {
|
||||
addCriterion("BillNo <", value, "billno");
|
||||
return (Criteria) this;
|
||||
}
|
||||
|
||||
public Criteria andBillnoLessThanOrEqualTo(String value) {
|
||||
addCriterion("BillNo <=", value, "billno");
|
||||
return (Criteria) this;
|
||||
}
|
||||
|
||||
public Criteria andBillnoLike(String value) {
|
||||
addCriterion("BillNo like", value, "billno");
|
||||
return (Criteria) this;
|
||||
}
|
||||
|
||||
public Criteria andBillnoNotLike(String value) {
|
||||
addCriterion("BillNo not like", value, "billno");
|
||||
return (Criteria) this;
|
||||
}
|
||||
|
||||
public Criteria andBillnoIn(List<String> values) {
|
||||
addCriterion("BillNo in", values, "billno");
|
||||
return (Criteria) this;
|
||||
}
|
||||
|
||||
public Criteria andBillnoNotIn(List<String> values) {
|
||||
addCriterion("BillNo not in", values, "billno");
|
||||
return (Criteria) this;
|
||||
}
|
||||
|
||||
public Criteria andBillnoBetween(String value1, String value2) {
|
||||
addCriterion("BillNo between", value1, value2, "billno");
|
||||
return (Criteria) this;
|
||||
}
|
||||
|
||||
public Criteria andBillnoNotBetween(String value1, String value2) {
|
||||
addCriterion("BillNo not between", value1, value2, "billno");
|
||||
return (Criteria) this;
|
||||
}
|
||||
|
||||
public Criteria andBilltimeIsNull() {
|
||||
addCriterion("BillTime is null");
|
||||
return (Criteria) this;
|
||||
}
|
||||
|
||||
public Criteria andBilltimeIsNotNull() {
|
||||
addCriterion("BillTime is not null");
|
||||
return (Criteria) this;
|
||||
}
|
||||
|
||||
public Criteria andBilltimeEqualTo(Date value) {
|
||||
addCriterion("BillTime =", value, "billtime");
|
||||
return (Criteria) this;
|
||||
}
|
||||
|
||||
public Criteria andBilltimeNotEqualTo(Date value) {
|
||||
addCriterion("BillTime <>", value, "billtime");
|
||||
return (Criteria) this;
|
||||
}
|
||||
|
||||
public Criteria andBilltimeGreaterThan(Date value) {
|
||||
addCriterion("BillTime >", value, "billtime");
|
||||
return (Criteria) this;
|
||||
}
|
||||
|
||||
public Criteria andBilltimeGreaterThanOrEqualTo(Date value) {
|
||||
addCriterion("BillTime >=", value, "billtime");
|
||||
return (Criteria) this;
|
||||
}
|
||||
|
||||
public Criteria andBilltimeLessThan(Date value) {
|
||||
addCriterion("BillTime <", value, "billtime");
|
||||
return (Criteria) this;
|
||||
}
|
||||
|
||||
public Criteria andBilltimeLessThanOrEqualTo(Date value) {
|
||||
addCriterion("BillTime <=", value, "billtime");
|
||||
return (Criteria) this;
|
||||
}
|
||||
|
||||
public Criteria andBilltimeIn(List<Date> values) {
|
||||
addCriterion("BillTime in", values, "billtime");
|
||||
return (Criteria) this;
|
||||
}
|
||||
|
||||
public Criteria andBilltimeNotIn(List<Date> values) {
|
||||
addCriterion("BillTime not in", values, "billtime");
|
||||
return (Criteria) this;
|
||||
}
|
||||
|
||||
public Criteria andBilltimeBetween(Date value1, Date value2) {
|
||||
addCriterion("BillTime between", value1, value2, "billtime");
|
||||
return (Criteria) this;
|
||||
}
|
||||
|
||||
public Criteria andBilltimeNotBetween(Date value1, Date value2) {
|
||||
addCriterion("BillTime not between", value1, value2, "billtime");
|
||||
return (Criteria) this;
|
||||
}
|
||||
|
||||
public Criteria andRemarkIsNull() {
|
||||
addCriterion("Remark is null");
|
||||
return (Criteria) this;
|
||||
}
|
||||
|
||||
public Criteria andRemarkIsNotNull() {
|
||||
addCriterion("Remark is not null");
|
||||
return (Criteria) this;
|
||||
}
|
||||
|
||||
public Criteria andRemarkEqualTo(String value) {
|
||||
addCriterion("Remark =", value, "remark");
|
||||
return (Criteria) this;
|
||||
}
|
||||
|
||||
public Criteria andRemarkNotEqualTo(String value) {
|
||||
addCriterion("Remark <>", value, "remark");
|
||||
return (Criteria) this;
|
||||
}
|
||||
|
||||
public Criteria andRemarkGreaterThan(String value) {
|
||||
addCriterion("Remark >", value, "remark");
|
||||
return (Criteria) this;
|
||||
}
|
||||
|
||||
public Criteria andRemarkGreaterThanOrEqualTo(String value) {
|
||||
addCriterion("Remark >=", value, "remark");
|
||||
return (Criteria) this;
|
||||
}
|
||||
|
||||
public Criteria andRemarkLessThan(String value) {
|
||||
addCriterion("Remark <", value, "remark");
|
||||
return (Criteria) this;
|
||||
}
|
||||
|
||||
public Criteria andRemarkLessThanOrEqualTo(String value) {
|
||||
addCriterion("Remark <=", value, "remark");
|
||||
return (Criteria) this;
|
||||
}
|
||||
|
||||
public Criteria andRemarkLike(String value) {
|
||||
addCriterion("Remark like", value, "remark");
|
||||
return (Criteria) this;
|
||||
}
|
||||
|
||||
public Criteria andRemarkNotLike(String value) {
|
||||
addCriterion("Remark not like", value, "remark");
|
||||
return (Criteria) this;
|
||||
}
|
||||
|
||||
public Criteria andRemarkIn(List<String> values) {
|
||||
addCriterion("Remark in", values, "remark");
|
||||
return (Criteria) this;
|
||||
}
|
||||
|
||||
public Criteria andRemarkNotIn(List<String> values) {
|
||||
addCriterion("Remark not in", values, "remark");
|
||||
return (Criteria) this;
|
||||
}
|
||||
|
||||
public Criteria andRemarkBetween(String value1, String value2) {
|
||||
addCriterion("Remark between", value1, value2, "remark");
|
||||
return (Criteria) this;
|
||||
}
|
||||
|
||||
public Criteria andRemarkNotBetween(String value1, String value2) {
|
||||
addCriterion("Remark not between", value1, value2, "remark");
|
||||
return (Criteria) this;
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* This class was generated by MyBatis Generator.
|
||||
* This class corresponds to the database table jsh_accounthead
|
||||
*
|
||||
* @mbggenerated 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 jsh_accounthead
|
||||
*
|
||||
* @mbggenerated
|
||||
*/
|
||||
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);
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user