package pwc.taxtech.atms.vat.entity; import java.math.BigDecimal; import java.util.ArrayList; import java.util.Date; import java.util.List; public class BalanceSheetExample { /** * This field was generated by MyBatis Generator. * This field corresponds to the database table balance_sheet * * @mbg.generated */ protected String orderByClause; /** * This field was generated by MyBatis Generator. * This field corresponds to the database table balance_sheet * * @mbg.generated */ protected boolean distinct; /** * This field was generated by MyBatis Generator. * This field corresponds to the database table balance_sheet * * @mbg.generated */ protected List<Criteria> oredCriteria; /** * This method was generated by MyBatis Generator. * This method corresponds to the database table balance_sheet * * @mbg.generated */ public BalanceSheetExample() { oredCriteria = new ArrayList<Criteria>(); } /** * This method was generated by MyBatis Generator. * This method corresponds to the database table balance_sheet * * @mbg.generated */ public void setOrderByClause(String orderByClause) { this.orderByClause = orderByClause; } /** * This method was generated by MyBatis Generator. * This method corresponds to the database table balance_sheet * * @mbg.generated */ public String getOrderByClause() { return orderByClause; } /** * This method was generated by MyBatis Generator. * This method corresponds to the database table balance_sheet * * @mbg.generated */ public void setDistinct(boolean distinct) { this.distinct = distinct; } /** * This method was generated by MyBatis Generator. * This method corresponds to the database table balance_sheet * * @mbg.generated */ public boolean isDistinct() { return distinct; } /** * This method was generated by MyBatis Generator. * This method corresponds to the database table balance_sheet * * @mbg.generated */ public List<Criteria> getOredCriteria() { return oredCriteria; } /** * This method was generated by MyBatis Generator. * This method corresponds to the database table balance_sheet * * @mbg.generated */ public void or(Criteria criteria) { oredCriteria.add(criteria); } /** * This method was generated by MyBatis Generator. * This method corresponds to the database table balance_sheet * * @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 balance_sheet * * @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 balance_sheet * * @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 balance_sheet * * @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 balance_sheet * * @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 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 andOrganizationIdIsNull() { addCriterion("organization_id is null"); return (Criteria) this; } public Criteria andOrganizationIdIsNotNull() { addCriterion("organization_id is not null"); return (Criteria) this; } public Criteria andOrganizationIdEqualTo(String value) { addCriterion("organization_id =", value, "organizationId"); return (Criteria) this; } public Criteria andOrganizationIdNotEqualTo(String value) { addCriterion("organization_id <>", value, "organizationId"); return (Criteria) this; } public Criteria andOrganizationIdGreaterThan(String value) { addCriterion("organization_id >", value, "organizationId"); return (Criteria) this; } public Criteria andOrganizationIdGreaterThanOrEqualTo(String value) { addCriterion("organization_id >=", value, "organizationId"); return (Criteria) this; } public Criteria andOrganizationIdLessThan(String value) { addCriterion("organization_id <", value, "organizationId"); return (Criteria) this; } public Criteria andOrganizationIdLessThanOrEqualTo(String value) { addCriterion("organization_id <=", value, "organizationId"); return (Criteria) this; } public Criteria andOrganizationIdLike(String value) { addCriterion("organization_id like", value, "organizationId"); return (Criteria) this; } public Criteria andOrganizationIdNotLike(String value) { addCriterion("organization_id not like", value, "organizationId"); return (Criteria) this; } public Criteria andOrganizationIdIn(List<String> values) { addCriterion("organization_id in", values, "organizationId"); return (Criteria) this; } public Criteria andOrganizationIdNotIn(List<String> values) { addCriterion("organization_id not in", values, "organizationId"); return (Criteria) this; } public Criteria andOrganizationIdBetween(String value1, String value2) { addCriterion("organization_id between", value1, value2, "organizationId"); return (Criteria) this; } public Criteria andOrganizationIdNotBetween(String value1, String value2) { addCriterion("organization_id not between", value1, value2, "organizationId"); return (Criteria) this; } public Criteria andProjectIdIsNull() { addCriterion("project_id is null"); return (Criteria) this; } public Criteria andProjectIdIsNotNull() { addCriterion("project_id is not null"); return (Criteria) this; } public Criteria andProjectIdEqualTo(String value) { addCriterion("project_id =", value, "projectId"); return (Criteria) this; } public Criteria andProjectIdNotEqualTo(String value) { addCriterion("project_id <>", value, "projectId"); return (Criteria) this; } public Criteria andProjectIdGreaterThan(String value) { addCriterion("project_id >", value, "projectId"); return (Criteria) this; } public Criteria andProjectIdGreaterThanOrEqualTo(String value) { addCriterion("project_id >=", value, "projectId"); return (Criteria) this; } public Criteria andProjectIdLessThan(String value) { addCriterion("project_id <", value, "projectId"); return (Criteria) this; } public Criteria andProjectIdLessThanOrEqualTo(String value) { addCriterion("project_id <=", value, "projectId"); return (Criteria) this; } public Criteria andProjectIdLike(String value) { addCriterion("project_id like", value, "projectId"); return (Criteria) this; } public Criteria andProjectIdNotLike(String value) { addCriterion("project_id not like", value, "projectId"); return (Criteria) this; } public Criteria andProjectIdIn(List<String> values) { addCriterion("project_id in", values, "projectId"); return (Criteria) this; } public Criteria andProjectIdNotIn(List<String> values) { addCriterion("project_id not in", values, "projectId"); return (Criteria) this; } public Criteria andProjectIdBetween(String value1, String value2) { addCriterion("project_id between", value1, value2, "projectId"); return (Criteria) this; } public Criteria andProjectIdNotBetween(String value1, String value2) { addCriterion("project_id not between", value1, value2, "projectId"); return (Criteria) this; } public Criteria andDateIsNull() { addCriterion("`date` is null"); return (Criteria) this; } public Criteria andDateIsNotNull() { addCriterion("`date` is not null"); return (Criteria) this; } public Criteria andDateEqualTo(Date value) { addCriterion("`date` =", value, "date"); return (Criteria) this; } public Criteria andDateNotEqualTo(Date value) { addCriterion("`date` <>", value, "date"); return (Criteria) this; } public Criteria andDateGreaterThan(Date value) { addCriterion("`date` >", value, "date"); return (Criteria) this; } public Criteria andDateGreaterThanOrEqualTo(Date value) { addCriterion("`date` >=", value, "date"); return (Criteria) this; } public Criteria andDateLessThan(Date value) { addCriterion("`date` <", value, "date"); return (Criteria) this; } public Criteria andDateLessThanOrEqualTo(Date value) { addCriterion("`date` <=", value, "date"); return (Criteria) this; } public Criteria andDateIn(List<Date> values) { addCriterion("`date` in", values, "date"); return (Criteria) this; } public Criteria andDateNotIn(List<Date> values) { addCriterion("`date` not in", values, "date"); return (Criteria) this; } public Criteria andDateBetween(Date value1, Date value2) { addCriterion("`date` between", value1, value2, "date"); return (Criteria) this; } public Criteria andDateNotBetween(Date value1, Date value2) { addCriterion("`date` not between", value1, value2, "date"); return (Criteria) this; } public Criteria andSourceIsNull() { addCriterion("`source` is null"); return (Criteria) this; } public Criteria andSourceIsNotNull() { addCriterion("`source` is not null"); return (Criteria) this; } public Criteria andSourceEqualTo(String value) { addCriterion("`source` =", value, "source"); return (Criteria) this; } public Criteria andSourceNotEqualTo(String value) { addCriterion("`source` <>", value, "source"); return (Criteria) this; } public Criteria andSourceGreaterThan(String value) { addCriterion("`source` >", value, "source"); return (Criteria) this; } public Criteria andSourceGreaterThanOrEqualTo(String value) { addCriterion("`source` >=", value, "source"); return (Criteria) this; } public Criteria andSourceLessThan(String value) { addCriterion("`source` <", value, "source"); return (Criteria) this; } public Criteria andSourceLessThanOrEqualTo(String value) { addCriterion("`source` <=", value, "source"); return (Criteria) this; } public Criteria andSourceLike(String value) { addCriterion("`source` like", value, "source"); return (Criteria) this; } public Criteria andSourceNotLike(String value) { addCriterion("`source` not like", value, "source"); return (Criteria) this; } public Criteria andSourceIn(List<String> values) { addCriterion("`source` in", values, "source"); return (Criteria) this; } public Criteria andSourceNotIn(List<String> values) { addCriterion("`source` not in", values, "source"); return (Criteria) this; } public Criteria andSourceBetween(String value1, String value2) { addCriterion("`source` between", value1, value2, "source"); return (Criteria) this; } public Criteria andSourceNotBetween(String value1, String value2) { addCriterion("`source` not between", value1, value2, "source"); return (Criteria) this; } public Criteria andTmsPeriodIsNull() { addCriterion("tms_period is null"); return (Criteria) this; } public Criteria andTmsPeriodIsNotNull() { addCriterion("tms_period is not null"); return (Criteria) this; } public Criteria andTmsPeriodEqualTo(Integer value) { addCriterion("tms_period =", value, "tmsPeriod"); return (Criteria) this; } public Criteria andTmsPeriodNotEqualTo(Integer value) { addCriterion("tms_period <>", value, "tmsPeriod"); return (Criteria) this; } public Criteria andTmsPeriodGreaterThan(Integer value) { addCriterion("tms_period >", value, "tmsPeriod"); return (Criteria) this; } public Criteria andTmsPeriodGreaterThanOrEqualTo(Integer value) { addCriterion("tms_period >=", value, "tmsPeriod"); return (Criteria) this; } public Criteria andTmsPeriodLessThan(Integer value) { addCriterion("tms_period <", value, "tmsPeriod"); return (Criteria) this; } public Criteria andTmsPeriodLessThanOrEqualTo(Integer value) { addCriterion("tms_period <=", value, "tmsPeriod"); return (Criteria) this; } public Criteria andTmsPeriodIn(List<Integer> values) { addCriterion("tms_period in", values, "tmsPeriod"); return (Criteria) this; } public Criteria andTmsPeriodNotIn(List<Integer> values) { addCriterion("tms_period not in", values, "tmsPeriod"); return (Criteria) this; } public Criteria andTmsPeriodBetween(Integer value1, Integer value2) { addCriterion("tms_period between", value1, value2, "tmsPeriod"); return (Criteria) this; } public Criteria andTmsPeriodNotBetween(Integer value1, Integer value2) { addCriterion("tms_period not between", value1, value2, "tmsPeriod"); return (Criteria) this; } public Criteria andPeriodIsNull() { addCriterion("period is null"); return (Criteria) this; } public Criteria andPeriodIsNotNull() { addCriterion("period is not null"); return (Criteria) this; } public Criteria andPeriodEqualTo(Integer value) { addCriterion("period =", value, "period"); return (Criteria) this; } public Criteria andPeriodNotEqualTo(Integer value) { addCriterion("period <>", value, "period"); return (Criteria) this; } public Criteria andPeriodGreaterThan(Integer value) { addCriterion("period >", value, "period"); return (Criteria) this; } public Criteria andPeriodGreaterThanOrEqualTo(Integer value) { addCriterion("period >=", value, "period"); return (Criteria) this; } public Criteria andPeriodLessThan(Integer value) { addCriterion("period <", value, "period"); return (Criteria) this; } public Criteria andPeriodLessThanOrEqualTo(Integer value) { addCriterion("period <=", value, "period"); return (Criteria) this; } public Criteria andPeriodIn(List<Integer> values) { addCriterion("period in", values, "period"); return (Criteria) this; } public Criteria andPeriodNotIn(List<Integer> values) { addCriterion("period not in", values, "period"); return (Criteria) this; } public Criteria andPeriodBetween(Integer value1, Integer value2) { addCriterion("period between", value1, value2, "period"); return (Criteria) this; } public Criteria andPeriodNotBetween(Integer value1, Integer value2) { addCriterion("period not between", value1, value2, "period"); 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 andLedgerIdIsNull() { addCriterion("ledger_id is null"); return (Criteria) this; } public Criteria andLedgerIdIsNotNull() { addCriterion("ledger_id is not null"); return (Criteria) this; } public Criteria andLedgerIdEqualTo(String value) { addCriterion("ledger_id =", value, "ledgerId"); return (Criteria) this; } public Criteria andLedgerIdNotEqualTo(String value) { addCriterion("ledger_id <>", value, "ledgerId"); return (Criteria) this; } public Criteria andLedgerIdGreaterThan(String value) { addCriterion("ledger_id >", value, "ledgerId"); return (Criteria) this; } public Criteria andLedgerIdGreaterThanOrEqualTo(String value) { addCriterion("ledger_id >=", value, "ledgerId"); return (Criteria) this; } public Criteria andLedgerIdLessThan(String value) { addCriterion("ledger_id <", value, "ledgerId"); return (Criteria) this; } public Criteria andLedgerIdLessThanOrEqualTo(String value) { addCriterion("ledger_id <=", value, "ledgerId"); return (Criteria) this; } public Criteria andLedgerIdLike(String value) { addCriterion("ledger_id like", value, "ledgerId"); return (Criteria) this; } public Criteria andLedgerIdNotLike(String value) { addCriterion("ledger_id not like", value, "ledgerId"); return (Criteria) this; } public Criteria andLedgerIdIn(List<String> values) { addCriterion("ledger_id in", values, "ledgerId"); return (Criteria) this; } public Criteria andLedgerIdNotIn(List<String> values) { addCriterion("ledger_id not in", values, "ledgerId"); return (Criteria) this; } public Criteria andLedgerIdBetween(String value1, String value2) { addCriterion("ledger_id between", value1, value2, "ledgerId"); return (Criteria) this; } public Criteria andLedgerIdNotBetween(String value1, String value2) { addCriterion("ledger_id not between", value1, value2, "ledgerId"); return (Criteria) this; } public Criteria andLedgerNameIsNull() { addCriterion("ledger_name is null"); return (Criteria) this; } public Criteria andLedgerNameIsNotNull() { addCriterion("ledger_name is not null"); return (Criteria) this; } public Criteria andLedgerNameEqualTo(String value) { addCriterion("ledger_name =", value, "ledgerName"); return (Criteria) this; } public Criteria andLedgerNameNotEqualTo(String value) { addCriterion("ledger_name <>", value, "ledgerName"); return (Criteria) this; } public Criteria andLedgerNameGreaterThan(String value) { addCriterion("ledger_name >", value, "ledgerName"); return (Criteria) this; } public Criteria andLedgerNameGreaterThanOrEqualTo(String value) { addCriterion("ledger_name >=", value, "ledgerName"); return (Criteria) this; } public Criteria andLedgerNameLessThan(String value) { addCriterion("ledger_name <", value, "ledgerName"); return (Criteria) this; } public Criteria andLedgerNameLessThanOrEqualTo(String value) { addCriterion("ledger_name <=", value, "ledgerName"); return (Criteria) this; } public Criteria andLedgerNameLike(String value) { addCriterion("ledger_name like", value, "ledgerName"); return (Criteria) this; } public Criteria andLedgerNameNotLike(String value) { addCriterion("ledger_name not like", value, "ledgerName"); return (Criteria) this; } public Criteria andLedgerNameIn(List<String> values) { addCriterion("ledger_name in", values, "ledgerName"); return (Criteria) this; } public Criteria andLedgerNameNotIn(List<String> values) { addCriterion("ledger_name not in", values, "ledgerName"); return (Criteria) this; } public Criteria andLedgerNameBetween(String value1, String value2) { addCriterion("ledger_name between", value1, value2, "ledgerName"); return (Criteria) this; } public Criteria andLedgerNameNotBetween(String value1, String value2) { addCriterion("ledger_name not between", value1, value2, "ledgerName"); return (Criteria) this; } public Criteria andLedgerCurrencyCodeIsNull() { addCriterion("ledger_currency_code is null"); return (Criteria) this; } public Criteria andLedgerCurrencyCodeIsNotNull() { addCriterion("ledger_currency_code is not null"); return (Criteria) this; } public Criteria andLedgerCurrencyCodeEqualTo(String value) { addCriterion("ledger_currency_code =", value, "ledgerCurrencyCode"); return (Criteria) this; } public Criteria andLedgerCurrencyCodeNotEqualTo(String value) { addCriterion("ledger_currency_code <>", value, "ledgerCurrencyCode"); return (Criteria) this; } public Criteria andLedgerCurrencyCodeGreaterThan(String value) { addCriterion("ledger_currency_code >", value, "ledgerCurrencyCode"); return (Criteria) this; } public Criteria andLedgerCurrencyCodeGreaterThanOrEqualTo(String value) { addCriterion("ledger_currency_code >=", value, "ledgerCurrencyCode"); return (Criteria) this; } public Criteria andLedgerCurrencyCodeLessThan(String value) { addCriterion("ledger_currency_code <", value, "ledgerCurrencyCode"); return (Criteria) this; } public Criteria andLedgerCurrencyCodeLessThanOrEqualTo(String value) { addCriterion("ledger_currency_code <=", value, "ledgerCurrencyCode"); return (Criteria) this; } public Criteria andLedgerCurrencyCodeLike(String value) { addCriterion("ledger_currency_code like", value, "ledgerCurrencyCode"); return (Criteria) this; } public Criteria andLedgerCurrencyCodeNotLike(String value) { addCriterion("ledger_currency_code not like", value, "ledgerCurrencyCode"); return (Criteria) this; } public Criteria andLedgerCurrencyCodeIn(List<String> values) { addCriterion("ledger_currency_code in", values, "ledgerCurrencyCode"); return (Criteria) this; } public Criteria andLedgerCurrencyCodeNotIn(List<String> values) { addCriterion("ledger_currency_code not in", values, "ledgerCurrencyCode"); return (Criteria) this; } public Criteria andLedgerCurrencyCodeBetween(String value1, String value2) { addCriterion("ledger_currency_code between", value1, value2, "ledgerCurrencyCode"); return (Criteria) this; } public Criteria andLedgerCurrencyCodeNotBetween(String value1, String value2) { addCriterion("ledger_currency_code not between", value1, value2, "ledgerCurrencyCode"); return (Criteria) this; } public Criteria andEntityCodeIsNull() { addCriterion("entity_code is null"); return (Criteria) this; } public Criteria andEntityCodeIsNotNull() { addCriterion("entity_code is not null"); return (Criteria) this; } public Criteria andEntityCodeEqualTo(String value) { addCriterion("entity_code =", value, "entityCode"); return (Criteria) this; } public Criteria andEntityCodeNotEqualTo(String value) { addCriterion("entity_code <>", value, "entityCode"); return (Criteria) this; } public Criteria andEntityCodeGreaterThan(String value) { addCriterion("entity_code >", value, "entityCode"); return (Criteria) this; } public Criteria andEntityCodeGreaterThanOrEqualTo(String value) { addCriterion("entity_code >=", value, "entityCode"); return (Criteria) this; } public Criteria andEntityCodeLessThan(String value) { addCriterion("entity_code <", value, "entityCode"); return (Criteria) this; } public Criteria andEntityCodeLessThanOrEqualTo(String value) { addCriterion("entity_code <=", value, "entityCode"); return (Criteria) this; } public Criteria andEntityCodeLike(String value) { addCriterion("entity_code like", value, "entityCode"); return (Criteria) this; } public Criteria andEntityCodeNotLike(String value) { addCriterion("entity_code not like", value, "entityCode"); return (Criteria) this; } public Criteria andEntityCodeIn(List<String> values) { addCriterion("entity_code in", values, "entityCode"); return (Criteria) this; } public Criteria andEntityCodeNotIn(List<String> values) { addCriterion("entity_code not in", values, "entityCode"); return (Criteria) this; } public Criteria andEntityCodeBetween(String value1, String value2) { addCriterion("entity_code between", value1, value2, "entityCode"); return (Criteria) this; } public Criteria andEntityCodeNotBetween(String value1, String value2) { addCriterion("entity_code not between", value1, value2, "entityCode"); return (Criteria) this; } public Criteria andEntityNameIsNull() { addCriterion("entity_name is null"); return (Criteria) this; } public Criteria andEntityNameIsNotNull() { addCriterion("entity_name is not null"); return (Criteria) this; } public Criteria andEntityNameEqualTo(String value) { addCriterion("entity_name =", value, "entityName"); return (Criteria) this; } public Criteria andEntityNameNotEqualTo(String value) { addCriterion("entity_name <>", value, "entityName"); return (Criteria) this; } public Criteria andEntityNameGreaterThan(String value) { addCriterion("entity_name >", value, "entityName"); return (Criteria) this; } public Criteria andEntityNameGreaterThanOrEqualTo(String value) { addCriterion("entity_name >=", value, "entityName"); return (Criteria) this; } public Criteria andEntityNameLessThan(String value) { addCriterion("entity_name <", value, "entityName"); return (Criteria) this; } public Criteria andEntityNameLessThanOrEqualTo(String value) { addCriterion("entity_name <=", value, "entityName"); return (Criteria) this; } public Criteria andEntityNameLike(String value) { addCriterion("entity_name like", value, "entityName"); return (Criteria) this; } public Criteria andEntityNameNotLike(String value) { addCriterion("entity_name not like", value, "entityName"); return (Criteria) this; } public Criteria andEntityNameIn(List<String> values) { addCriterion("entity_name in", values, "entityName"); return (Criteria) this; } public Criteria andEntityNameNotIn(List<String> values) { addCriterion("entity_name not in", values, "entityName"); return (Criteria) this; } public Criteria andEntityNameBetween(String value1, String value2) { addCriterion("entity_name between", value1, value2, "entityName"); return (Criteria) this; } public Criteria andEntityNameNotBetween(String value1, String value2) { addCriterion("entity_name not between", value1, value2, "entityName"); return (Criteria) this; } public Criteria andCategoryIsNull() { addCriterion("category is null"); return (Criteria) this; } public Criteria andCategoryIsNotNull() { addCriterion("category is not null"); return (Criteria) this; } public Criteria andCategoryEqualTo(String value) { addCriterion("category =", value, "category"); return (Criteria) this; } public Criteria andCategoryNotEqualTo(String value) { addCriterion("category <>", value, "category"); return (Criteria) this; } public Criteria andCategoryGreaterThan(String value) { addCriterion("category >", value, "category"); return (Criteria) this; } public Criteria andCategoryGreaterThanOrEqualTo(String value) { addCriterion("category >=", value, "category"); return (Criteria) this; } public Criteria andCategoryLessThan(String value) { addCriterion("category <", value, "category"); return (Criteria) this; } public Criteria andCategoryLessThanOrEqualTo(String value) { addCriterion("category <=", value, "category"); return (Criteria) this; } public Criteria andCategoryLike(String value) { addCriterion("category like", value, "category"); return (Criteria) this; } public Criteria andCategoryNotLike(String value) { addCriterion("category not like", value, "category"); return (Criteria) this; } public Criteria andCategoryIn(List<String> values) { addCriterion("category in", values, "category"); return (Criteria) this; } public Criteria andCategoryNotIn(List<String> values) { addCriterion("category not in", values, "category"); return (Criteria) this; } public Criteria andCategoryBetween(String value1, String value2) { addCriterion("category between", value1, value2, "category"); return (Criteria) this; } public Criteria andCategoryNotBetween(String value1, String value2) { addCriterion("category not between", value1, value2, "category"); return (Criteria) this; } public Criteria andFrequencyIsNull() { addCriterion("frequency is null"); return (Criteria) this; } public Criteria andFrequencyIsNotNull() { addCriterion("frequency is not null"); return (Criteria) this; } public Criteria andFrequencyEqualTo(String value) { addCriterion("frequency =", value, "frequency"); return (Criteria) this; } public Criteria andFrequencyNotEqualTo(String value) { addCriterion("frequency <>", value, "frequency"); return (Criteria) this; } public Criteria andFrequencyGreaterThan(String value) { addCriterion("frequency >", value, "frequency"); return (Criteria) this; } public Criteria andFrequencyGreaterThanOrEqualTo(String value) { addCriterion("frequency >=", value, "frequency"); return (Criteria) this; } public Criteria andFrequencyLessThan(String value) { addCriterion("frequency <", value, "frequency"); return (Criteria) this; } public Criteria andFrequencyLessThanOrEqualTo(String value) { addCriterion("frequency <=", value, "frequency"); return (Criteria) this; } public Criteria andFrequencyLike(String value) { addCriterion("frequency like", value, "frequency"); return (Criteria) this; } public Criteria andFrequencyNotLike(String value) { addCriterion("frequency not like", value, "frequency"); return (Criteria) this; } public Criteria andFrequencyIn(List<String> values) { addCriterion("frequency in", values, "frequency"); return (Criteria) this; } public Criteria andFrequencyNotIn(List<String> values) { addCriterion("frequency not in", values, "frequency"); return (Criteria) this; } public Criteria andFrequencyBetween(String value1, String value2) { addCriterion("frequency between", value1, value2, "frequency"); return (Criteria) this; } public Criteria andFrequencyNotBetween(String value1, String value2) { addCriterion("frequency not between", value1, value2, "frequency"); return (Criteria) this; } public Criteria andItemNameIsNull() { addCriterion("item_name is null"); return (Criteria) this; } public Criteria andItemNameIsNotNull() { addCriterion("item_name is not null"); return (Criteria) this; } public Criteria andItemNameEqualTo(String value) { addCriterion("item_name =", value, "itemName"); return (Criteria) this; } public Criteria andItemNameNotEqualTo(String value) { addCriterion("item_name <>", value, "itemName"); return (Criteria) this; } public Criteria andItemNameGreaterThan(String value) { addCriterion("item_name >", value, "itemName"); return (Criteria) this; } public Criteria andItemNameGreaterThanOrEqualTo(String value) { addCriterion("item_name >=", value, "itemName"); return (Criteria) this; } public Criteria andItemNameLessThan(String value) { addCriterion("item_name <", value, "itemName"); return (Criteria) this; } public Criteria andItemNameLessThanOrEqualTo(String value) { addCriterion("item_name <=", value, "itemName"); return (Criteria) this; } public Criteria andItemNameLike(String value) { addCriterion("item_name like", value, "itemName"); return (Criteria) this; } public Criteria andItemNameNotLike(String value) { addCriterion("item_name not like", value, "itemName"); return (Criteria) this; } public Criteria andItemNameIn(List<String> values) { addCriterion("item_name in", values, "itemName"); return (Criteria) this; } public Criteria andItemNameNotIn(List<String> values) { addCriterion("item_name not in", values, "itemName"); return (Criteria) this; } public Criteria andItemNameBetween(String value1, String value2) { addCriterion("item_name between", value1, value2, "itemName"); return (Criteria) this; } public Criteria andItemNameNotBetween(String value1, String value2) { addCriterion("item_name not between", value1, value2, "itemName"); return (Criteria) this; } public Criteria andEndBalIsNull() { addCriterion("end_bal is null"); return (Criteria) this; } public Criteria andEndBalIsNotNull() { addCriterion("end_bal is not null"); return (Criteria) this; } public Criteria andEndBalEqualTo(BigDecimal value) { addCriterion("end_bal =", value, "endBal"); return (Criteria) this; } public Criteria andEndBalNotEqualTo(BigDecimal value) { addCriterion("end_bal <>", value, "endBal"); return (Criteria) this; } public Criteria andEndBalGreaterThan(BigDecimal value) { addCriterion("end_bal >", value, "endBal"); return (Criteria) this; } public Criteria andEndBalGreaterThanOrEqualTo(BigDecimal value) { addCriterion("end_bal >=", value, "endBal"); return (Criteria) this; } public Criteria andEndBalLessThan(BigDecimal value) { addCriterion("end_bal <", value, "endBal"); return (Criteria) this; } public Criteria andEndBalLessThanOrEqualTo(BigDecimal value) { addCriterion("end_bal <=", value, "endBal"); return (Criteria) this; } public Criteria andEndBalIn(List<BigDecimal> values) { addCriterion("end_bal in", values, "endBal"); return (Criteria) this; } public Criteria andEndBalNotIn(List<BigDecimal> values) { addCriterion("end_bal not in", values, "endBal"); return (Criteria) this; } public Criteria andEndBalBetween(BigDecimal value1, BigDecimal value2) { addCriterion("end_bal between", value1, value2, "endBal"); return (Criteria) this; } public Criteria andEndBalNotBetween(BigDecimal value1, BigDecimal value2) { addCriterion("end_bal not between", value1, value2, "endBal"); return (Criteria) this; } public Criteria andBegBalIsNull() { addCriterion("beg_bal is null"); return (Criteria) this; } public Criteria andBegBalIsNotNull() { addCriterion("beg_bal is not null"); return (Criteria) this; } public Criteria andBegBalEqualTo(BigDecimal value) { addCriterion("beg_bal =", value, "begBal"); return (Criteria) this; } public Criteria andBegBalNotEqualTo(BigDecimal value) { addCriterion("beg_bal <>", value, "begBal"); return (Criteria) this; } public Criteria andBegBalGreaterThan(BigDecimal value) { addCriterion("beg_bal >", value, "begBal"); return (Criteria) this; } public Criteria andBegBalGreaterThanOrEqualTo(BigDecimal value) { addCriterion("beg_bal >=", value, "begBal"); return (Criteria) this; } public Criteria andBegBalLessThan(BigDecimal value) { addCriterion("beg_bal <", value, "begBal"); return (Criteria) this; } public Criteria andBegBalLessThanOrEqualTo(BigDecimal value) { addCriterion("beg_bal <=", value, "begBal"); return (Criteria) this; } public Criteria andBegBalIn(List<BigDecimal> values) { addCriterion("beg_bal in", values, "begBal"); return (Criteria) this; } public Criteria andBegBalNotIn(List<BigDecimal> values) { addCriterion("beg_bal not in", values, "begBal"); return (Criteria) this; } public Criteria andBegBalBetween(BigDecimal value1, BigDecimal value2) { addCriterion("beg_bal between", value1, value2, "begBal"); return (Criteria) this; } public Criteria andBegBalNotBetween(BigDecimal value1, BigDecimal value2) { addCriterion("beg_bal not between", value1, value2, "begBal"); return (Criteria) this; } public Criteria andPrcFlagIsNull() { addCriterion("prc_flag is null"); return (Criteria) this; } public Criteria andPrcFlagIsNotNull() { addCriterion("prc_flag is not null"); return (Criteria) this; } public Criteria andPrcFlagEqualTo(Boolean value) { addCriterion("prc_flag =", value, "prcFlag"); return (Criteria) this; } public Criteria andPrcFlagNotEqualTo(Boolean value) { addCriterion("prc_flag <>", value, "prcFlag"); return (Criteria) this; } public Criteria andPrcFlagGreaterThan(Boolean value) { addCriterion("prc_flag >", value, "prcFlag"); return (Criteria) this; } public Criteria andPrcFlagGreaterThanOrEqualTo(Boolean value) { addCriterion("prc_flag >=", value, "prcFlag"); return (Criteria) this; } public Criteria andPrcFlagLessThan(Boolean value) { addCriterion("prc_flag <", value, "prcFlag"); return (Criteria) this; } public Criteria andPrcFlagLessThanOrEqualTo(Boolean value) { addCriterion("prc_flag <=", value, "prcFlag"); return (Criteria) this; } public Criteria andPrcFlagIn(List<Boolean> values) { addCriterion("prc_flag in", values, "prcFlag"); return (Criteria) this; } public Criteria andPrcFlagNotIn(List<Boolean> values) { addCriterion("prc_flag not in", values, "prcFlag"); return (Criteria) this; } public Criteria andPrcFlagBetween(Boolean value1, Boolean value2) { addCriterion("prc_flag between", value1, value2, "prcFlag"); return (Criteria) this; } public Criteria andPrcFlagNotBetween(Boolean value1, Boolean value2) { addCriterion("prc_flag not between", value1, value2, "prcFlag"); return (Criteria) this; } public Criteria andCreateTimeIsNull() { addCriterion("create_time is null"); return (Criteria) this; } public Criteria andCreateTimeIsNotNull() { addCriterion("create_time is not null"); return (Criteria) this; } public Criteria andCreateTimeEqualTo(Date value) { addCriterion("create_time =", value, "createTime"); return (Criteria) this; } public Criteria andCreateTimeNotEqualTo(Date value) { addCriterion("create_time <>", value, "createTime"); return (Criteria) this; } public Criteria andCreateTimeGreaterThan(Date value) { addCriterion("create_time >", value, "createTime"); return (Criteria) this; } public Criteria andCreateTimeGreaterThanOrEqualTo(Date value) { addCriterion("create_time >=", value, "createTime"); return (Criteria) this; } public Criteria andCreateTimeLessThan(Date value) { addCriterion("create_time <", value, "createTime"); return (Criteria) this; } public Criteria andCreateTimeLessThanOrEqualTo(Date value) { addCriterion("create_time <=", value, "createTime"); return (Criteria) this; } public Criteria andCreateTimeIn(List<Date> values) { addCriterion("create_time in", values, "createTime"); return (Criteria) this; } public Criteria andCreateTimeNotIn(List<Date> values) { addCriterion("create_time not in", values, "createTime"); return (Criteria) this; } public Criteria andCreateTimeBetween(Date value1, Date value2) { addCriterion("create_time between", value1, value2, "createTime"); return (Criteria) this; } public Criteria andCreateTimeNotBetween(Date value1, Date value2) { addCriterion("create_time not between", value1, value2, "createTime"); return (Criteria) this; } public Criteria andUpdateTimeIsNull() { addCriterion("update_time is null"); return (Criteria) this; } public Criteria andUpdateTimeIsNotNull() { addCriterion("update_time is not null"); return (Criteria) this; } public Criteria andUpdateTimeEqualTo(Date value) { addCriterion("update_time =", value, "updateTime"); return (Criteria) this; } public Criteria andUpdateTimeNotEqualTo(Date value) { addCriterion("update_time <>", value, "updateTime"); return (Criteria) this; } public Criteria andUpdateTimeGreaterThan(Date value) { addCriterion("update_time >", value, "updateTime"); return (Criteria) this; } public Criteria andUpdateTimeGreaterThanOrEqualTo(Date value) { addCriterion("update_time >=", value, "updateTime"); return (Criteria) this; } public Criteria andUpdateTimeLessThan(Date value) { addCriterion("update_time <", value, "updateTime"); return (Criteria) this; } public Criteria andUpdateTimeLessThanOrEqualTo(Date value) { addCriterion("update_time <=", value, "updateTime"); return (Criteria) this; } public Criteria andUpdateTimeIn(List<Date> values) { addCriterion("update_time in", values, "updateTime"); return (Criteria) this; } public Criteria andUpdateTimeNotIn(List<Date> values) { addCriterion("update_time not in", values, "updateTime"); return (Criteria) this; } public Criteria andUpdateTimeBetween(Date value1, Date value2) { addCriterion("update_time between", value1, value2, "updateTime"); return (Criteria) this; } public Criteria andUpdateTimeNotBetween(Date value1, Date value2) { addCriterion("update_time not between", value1, value2, "updateTime"); return (Criteria) this; } } /** * This class was generated by MyBatis Generator. * This class corresponds to the database table balance_sheet * * @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 balance_sheet * * @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); } } }