Commit f1e52b40 authored by neo's avatar neo

[dev] add entity and mapper

parent 5f9f88ea
......@@ -7,7 +7,7 @@ import java.util.List;
public class PeriodCellTemplateConfigExample {
/**
* This field was generated by MyBatis Generator.
* This field corresponds to the database table TAX_PROJECT.PERIOD_CELL_TEMPLATE_CONFIG
* This field corresponds to the database table TAX_ADMIN.PERIOD_CELL_TEMPLATE_CONFIG
*
* @mbg.generated
*/
......@@ -15,7 +15,7 @@ public class PeriodCellTemplateConfigExample {
/**
* This field was generated by MyBatis Generator.
* This field corresponds to the database table TAX_PROJECT.PERIOD_CELL_TEMPLATE_CONFIG
* This field corresponds to the database table TAX_ADMIN.PERIOD_CELL_TEMPLATE_CONFIG
*
* @mbg.generated
*/
......@@ -23,7 +23,7 @@ public class PeriodCellTemplateConfigExample {
/**
* This field was generated by MyBatis Generator.
* This field corresponds to the database table TAX_PROJECT.PERIOD_CELL_TEMPLATE_CONFIG
* This field corresponds to the database table TAX_ADMIN.PERIOD_CELL_TEMPLATE_CONFIG
*
* @mbg.generated
*/
......@@ -31,7 +31,7 @@ public class PeriodCellTemplateConfigExample {
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table TAX_PROJECT.PERIOD_CELL_TEMPLATE_CONFIG
* This method corresponds to the database table TAX_ADMIN.PERIOD_CELL_TEMPLATE_CONFIG
*
* @mbg.generated
*/
......@@ -41,7 +41,7 @@ public class PeriodCellTemplateConfigExample {
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table TAX_PROJECT.PERIOD_CELL_TEMPLATE_CONFIG
* This method corresponds to the database table TAX_ADMIN.PERIOD_CELL_TEMPLATE_CONFIG
*
* @mbg.generated
*/
......@@ -51,7 +51,7 @@ public class PeriodCellTemplateConfigExample {
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table TAX_PROJECT.PERIOD_CELL_TEMPLATE_CONFIG
* This method corresponds to the database table TAX_ADMIN.PERIOD_CELL_TEMPLATE_CONFIG
*
* @mbg.generated
*/
......@@ -61,7 +61,7 @@ public class PeriodCellTemplateConfigExample {
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table TAX_PROJECT.PERIOD_CELL_TEMPLATE_CONFIG
* This method corresponds to the database table TAX_ADMIN.PERIOD_CELL_TEMPLATE_CONFIG
*
* @mbg.generated
*/
......@@ -71,7 +71,7 @@ public class PeriodCellTemplateConfigExample {
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table TAX_PROJECT.PERIOD_CELL_TEMPLATE_CONFIG
* This method corresponds to the database table TAX_ADMIN.PERIOD_CELL_TEMPLATE_CONFIG
*
* @mbg.generated
*/
......@@ -81,7 +81,7 @@ public class PeriodCellTemplateConfigExample {
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table TAX_PROJECT.PERIOD_CELL_TEMPLATE_CONFIG
* This method corresponds to the database table TAX_ADMIN.PERIOD_CELL_TEMPLATE_CONFIG
*
* @mbg.generated
*/
......@@ -91,7 +91,7 @@ public class PeriodCellTemplateConfigExample {
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table TAX_PROJECT.PERIOD_CELL_TEMPLATE_CONFIG
* This method corresponds to the database table TAX_ADMIN.PERIOD_CELL_TEMPLATE_CONFIG
*
* @mbg.generated
*/
......@@ -101,7 +101,7 @@ public class PeriodCellTemplateConfigExample {
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table TAX_PROJECT.PERIOD_CELL_TEMPLATE_CONFIG
* This method corresponds to the database table TAX_ADMIN.PERIOD_CELL_TEMPLATE_CONFIG
*
* @mbg.generated
*/
......@@ -113,7 +113,7 @@ public class PeriodCellTemplateConfigExample {
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table TAX_PROJECT.PERIOD_CELL_TEMPLATE_CONFIG
* This method corresponds to the database table TAX_ADMIN.PERIOD_CELL_TEMPLATE_CONFIG
*
* @mbg.generated
*/
......@@ -127,7 +127,7 @@ public class PeriodCellTemplateConfigExample {
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table TAX_PROJECT.PERIOD_CELL_TEMPLATE_CONFIG
* This method corresponds to the database table TAX_ADMIN.PERIOD_CELL_TEMPLATE_CONFIG
*
* @mbg.generated
*/
......@@ -138,7 +138,7 @@ public class PeriodCellTemplateConfigExample {
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table TAX_PROJECT.PERIOD_CELL_TEMPLATE_CONFIG
* This method corresponds to the database table TAX_ADMIN.PERIOD_CELL_TEMPLATE_CONFIG
*
* @mbg.generated
*/
......@@ -150,7 +150,7 @@ public class PeriodCellTemplateConfigExample {
/**
* This class was generated by MyBatis Generator.
* This class corresponds to the database table TAX_PROJECT.PERIOD_CELL_TEMPLATE_CONFIG
* This class corresponds to the database table TAX_ADMIN.PERIOD_CELL_TEMPLATE_CONFIG
*
* @mbg.generated
*/
......@@ -1844,11 +1844,81 @@ public class PeriodCellTemplateConfigExample {
addCriterion("KEY_VALUE_PARSED_FORMULA not between", value1, value2, "keyValueParsedFormula");
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;
}
}
/**
* This class was generated by MyBatis Generator.
* This class corresponds to the database table TAX_PROJECT.PERIOD_CELL_TEMPLATE_CONFIG
* This class corresponds to the database table TAX_ADMIN.PERIOD_CELL_TEMPLATE_CONFIG
*
* @mbg.generated do_not_delete_during_merge
*/
......@@ -1861,7 +1931,7 @@ public class PeriodCellTemplateConfigExample {
/**
* This class was generated by MyBatis Generator.
* This class corresponds to the database table TAX_PROJECT.PERIOD_CELL_TEMPLATE_CONFIG
* This class corresponds to the database table TAX_ADMIN.PERIOD_CELL_TEMPLATE_CONFIG
*
* @mbg.generated
*/
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment