Skip to content

Commit

Permalink
dubbo 商品服务
Browse files Browse the repository at this point in the history
  • Loading branch information
leechenxiang committed Dec 2, 2017
0 parents commit 3e1441a
Show file tree
Hide file tree
Showing 26 changed files with 2,348 additions and 0 deletions.
2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
/.settings/
/.project
4 changes: 4 additions & 0 deletions leecx-items-facade/.gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
/.classpath
/.project
/.settings/
/target/
25 changes: 25 additions & 0 deletions leecx-items-facade/pom.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<parent>
<groupId>com.itzixi.items</groupId>
<artifactId>leecx-items-mng</artifactId>
<version>0.0.1-SNAPSHOT</version>
</parent>
<artifactId>leecx-items-facade</artifactId>

<dependencies>
<dependency>
<groupId>org.springframework</groupId>
<artifactId>spring-context</artifactId>
</dependency>
<dependency>
<groupId>org.hibernate</groupId>
<artifactId>hibernate-validator</artifactId>
</dependency>
<dependency>
<groupId>javax.validation</groupId>
<artifactId>validation-api</artifactId>
</dependency>
</dependencies>
</project>
47 changes: 47 additions & 0 deletions leecx-items-facade/src/main/java/com/itzixi/items/pojo/Items.java
Original file line number Diff line number Diff line change
@@ -0,0 +1,47 @@
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;
}
}
Loading

0 comments on commit 3e1441a

Please sign in to comment.