diff --git a/leecx-items-facade/.gitignore b/leecx-items-facade/.gitignore deleted file mode 100644 index 10d81e8..0000000 --- a/leecx-items-facade/.gitignore +++ /dev/null @@ -1,4 +0,0 @@ -/.classpath -/.project -/.settings/ -/target/ diff --git a/leecx-items-facade/pom.xml b/leecx-items-facade/pom.xml deleted file mode 100644 index 4d917c5..0000000 --- a/leecx-items-facade/pom.xml +++ /dev/null @@ -1,25 +0,0 @@ - - 4.0.0 - - com.itzixi.items - leecx-items-mng - 0.0.1-SNAPSHOT - - leecx-items-facade - - - - org.springframework - spring-context - - - org.hibernate - hibernate-validator - - - javax.validation - validation-api - - - \ No newline at end of file diff --git a/leecx-items-facade/src/main/java/com/itzixi/items/pojo/Items.java b/leecx-items-facade/src/main/java/com/itzixi/items/pojo/Items.java deleted file mode 100644 index c7a5e35..0000000 --- a/leecx-items-facade/src/main/java/com/itzixi/items/pojo/Items.java +++ /dev/null @@ -1,47 +0,0 @@ -package com.itzixi.items.pojo; - -import java.io.Serializable; - -public class Items implements Serializable { - private static final long serialVersionUID = -3255670677835531509L; - - private String id; - - private String name; - - private Integer counts; - - private Integer buyCounts; - - public String getId() { - return id; - } - - public void setId(String id) { - this.id = id == null ? null : id.trim(); - } - - public String getName() { - return name; - } - - public void setName(String name) { - this.name = name == null ? null : name.trim(); - } - - public Integer getCounts() { - return counts; - } - - public void setCounts(Integer counts) { - this.counts = counts; - } - - public Integer getBuyCounts() { - return buyCounts; - } - - public void setBuyCounts(Integer buyCounts) { - this.buyCounts = buyCounts; - } -} \ No newline at end of file diff --git a/leecx-items-facade/src/main/java/com/itzixi/items/pojo/ItemsExample.java b/leecx-items-facade/src/main/java/com/itzixi/items/pojo/ItemsExample.java deleted file mode 100644 index 5bfcb7c..0000000 --- a/leecx-items-facade/src/main/java/com/itzixi/items/pojo/ItemsExample.java +++ /dev/null @@ -1,400 +0,0 @@ -package com.itzixi.items.pojo; - -import java.util.ArrayList; -import java.util.List; - -public class ItemsExample { - protected String orderByClause; - - protected boolean distinct; - - protected List oredCriteria; - - public ItemsExample() { - oredCriteria = new ArrayList(); - } - - public void setOrderByClause(String orderByClause) { - this.orderByClause = orderByClause; - } - - public String getOrderByClause() { - return orderByClause; - } - - public void setDistinct(boolean distinct) { - this.distinct = distinct; - } - - public boolean isDistinct() { - return distinct; - } - - public List getOredCriteria() { - return oredCriteria; - } - - public void or(Criteria criteria) { - oredCriteria.add(criteria); - } - - public Criteria or() { - Criteria criteria = createCriteriaInternal(); - oredCriteria.add(criteria); - return criteria; - } - - public Criteria createCriteria() { - Criteria criteria = createCriteriaInternal(); - if (oredCriteria.size() == 0) { - oredCriteria.add(criteria); - } - return criteria; - } - - protected Criteria createCriteriaInternal() { - Criteria criteria = new Criteria(); - return criteria; - } - - public void clear() { - oredCriteria.clear(); - orderByClause = null; - distinct = false; - } - - protected abstract static class GeneratedCriteria { - protected List criteria; - - protected GeneratedCriteria() { - super(); - criteria = new ArrayList(); - } - - public boolean isValid() { - return criteria.size() > 0; - } - - public List getAllCriteria() { - return criteria; - } - - public List 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(String value) { - addCriterion("id =", value, "id"); - return (Criteria) this; - } - - public Criteria andIdNotEqualTo(String value) { - addCriterion("id <>", value, "id"); - return (Criteria) this; - } - - public Criteria andIdGreaterThan(String value) { - addCriterion("id >", value, "id"); - return (Criteria) this; - } - - public Criteria andIdGreaterThanOrEqualTo(String value) { - addCriterion("id >=", value, "id"); - return (Criteria) this; - } - - public Criteria andIdLessThan(String value) { - addCriterion("id <", value, "id"); - return (Criteria) this; - } - - public Criteria andIdLessThanOrEqualTo(String value) { - addCriterion("id <=", value, "id"); - return (Criteria) this; - } - - public Criteria andIdLike(String value) { - addCriterion("id like", value, "id"); - return (Criteria) this; - } - - public Criteria andIdNotLike(String value) { - addCriterion("id not like", value, "id"); - return (Criteria) this; - } - - public Criteria andIdIn(List values) { - addCriterion("id in", values, "id"); - return (Criteria) this; - } - - public Criteria andIdNotIn(List values) { - addCriterion("id not in", values, "id"); - return (Criteria) this; - } - - public Criteria andIdBetween(String value1, String value2) { - addCriterion("id between", value1, value2, "id"); - return (Criteria) this; - } - - public Criteria andIdNotBetween(String value1, String value2) { - addCriterion("id not between", value1, value2, "id"); - return (Criteria) this; - } - - public Criteria andNameIsNull() { - addCriterion("name is null"); - return (Criteria) this; - } - - public Criteria andNameIsNotNull() { - addCriterion("name is not null"); - return (Criteria) this; - } - - public Criteria andNameEqualTo(String value) { - addCriterion("name =", value, "name"); - return (Criteria) this; - } - - public Criteria andNameNotEqualTo(String value) { - addCriterion("name <>", value, "name"); - return (Criteria) this; - } - - public Criteria andNameGreaterThan(String value) { - addCriterion("name >", value, "name"); - return (Criteria) this; - } - - public Criteria andNameGreaterThanOrEqualTo(String value) { - addCriterion("name >=", value, "name"); - return (Criteria) this; - } - - public Criteria andNameLessThan(String value) { - addCriterion("name <", value, "name"); - return (Criteria) this; - } - - public Criteria andNameLessThanOrEqualTo(String value) { - addCriterion("name <=", value, "name"); - return (Criteria) this; - } - - public Criteria andNameLike(String value) { - addCriterion("name like", value, "name"); - return (Criteria) this; - } - - public Criteria andNameNotLike(String value) { - addCriterion("name not like", value, "name"); - return (Criteria) this; - } - - public Criteria andNameIn(List values) { - addCriterion("name in", values, "name"); - return (Criteria) this; - } - - public Criteria andNameNotIn(List values) { - addCriterion("name not in", values, "name"); - return (Criteria) this; - } - - public Criteria andNameBetween(String value1, String value2) { - addCriterion("name between", value1, value2, "name"); - return (Criteria) this; - } - - public Criteria andNameNotBetween(String value1, String value2) { - addCriterion("name not between", value1, value2, "name"); - return (Criteria) this; - } - - public Criteria andCountsIsNull() { - addCriterion("counts is null"); - return (Criteria) this; - } - - public Criteria andCountsIsNotNull() { - addCriterion("counts is not null"); - return (Criteria) this; - } - - public Criteria andCountsEqualTo(Integer value) { - addCriterion("counts =", value, "counts"); - return (Criteria) this; - } - - public Criteria andCountsNotEqualTo(Integer value) { - addCriterion("counts <>", value, "counts"); - return (Criteria) this; - } - - public Criteria andCountsGreaterThan(Integer value) { - addCriterion("counts >", value, "counts"); - return (Criteria) this; - } - - public Criteria andCountsGreaterThanOrEqualTo(Integer value) { - addCriterion("counts >=", value, "counts"); - return (Criteria) this; - } - - public Criteria andCountsLessThan(Integer value) { - addCriterion("counts <", value, "counts"); - return (Criteria) this; - } - - public Criteria andCountsLessThanOrEqualTo(Integer value) { - addCriterion("counts <=", value, "counts"); - return (Criteria) this; - } - - public Criteria andCountsIn(List values) { - addCriterion("counts in", values, "counts"); - return (Criteria) this; - } - - public Criteria andCountsNotIn(List values) { - addCriterion("counts not in", values, "counts"); - return (Criteria) this; - } - - public Criteria andCountsBetween(Integer value1, Integer value2) { - addCriterion("counts between", value1, value2, "counts"); - return (Criteria) this; - } - - public Criteria andCountsNotBetween(Integer value1, Integer value2) { - addCriterion("counts not between", value1, value2, "counts"); - return (Criteria) this; - } - } - - public static class Criteria extends GeneratedCriteria { - - protected Criteria() { - super(); - } - } - - 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); - } - } -} \ No newline at end of file diff --git a/leecx-items-facade/src/main/java/com/itzixi/items/service/ItemsService.java b/leecx-items-facade/src/main/java/com/itzixi/items/service/ItemsService.java deleted file mode 100644 index 02d3b59..0000000 --- a/leecx-items-facade/src/main/java/com/itzixi/items/service/ItemsService.java +++ /dev/null @@ -1,12 +0,0 @@ -package com.itzixi.items.service; - -import com.itzixi.items.pojo.Items; - -public interface ItemsService { - - public Items getItem(String itemId); - - public boolean displayReduceCounts(int buyCounts); - -} - diff --git a/leecx-items-facade/src/main/resources/Test b/leecx-items-facade/src/main/resources/Test deleted file mode 100644 index 259f9a6..0000000 --- a/leecx-items-facade/src/main/resources/Test +++ /dev/null @@ -1 +0,0 @@ -dubbo \ No newline at end of file diff --git a/leecx-items-facade/src/test/java/Test b/leecx-items-facade/src/test/java/Test deleted file mode 100644 index 259f9a6..0000000 --- a/leecx-items-facade/src/test/java/Test +++ /dev/null @@ -1 +0,0 @@ -dubbo \ No newline at end of file diff --git a/leecx-items-facade/src/test/resources/Test b/leecx-items-facade/src/test/resources/Test deleted file mode 100644 index 259f9a6..0000000 --- a/leecx-items-facade/src/test/resources/Test +++ /dev/null @@ -1 +0,0 @@ -dubbo \ No newline at end of file