Skip to content

Commit

Permalink
更新specBean 结构,更新 readme
Browse files Browse the repository at this point in the history
  • Loading branch information
Wongxd committed Feb 9, 2018
1 parent 02821ac commit 79b9f28
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 7 deletions.
1 change: 0 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,6 @@

实现类似淘宝规格选择的效果。

数据可自由扩展。

源码有较为详细的注释,更多信息请查看源码。

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -14,8 +14,7 @@
* 经过查看sun的说明文档,在java中是”不能创建一个确切的泛型类型的数组”的。
* 所以,把 AttrsBean {@link io.github.wongxd.skulibray.specSelect.bean.SpecBean.AttrsBean} 设置为 final。
* <p>
* CombsBean {@link io.github.wongxd.skulibray.specSelect.bean.SpecBean.CombsBean} 则可以拓展,所以,如果你有自定义的数据,你可放到
* 继承自 CombsBean 的pojo中.
* CombsBean {@link io.github.wongxd.skulibray.specSelect.bean.SpecBean.CombsBean} 同理
* <p>
* 可能你们后台返回的 AttrsBean.ValueBean 中,还会有 对应于 key 的 唯一的 id 值,以供属性分组使用,但是你可以选择不使用,因为,
* 在代码中,我已经为每个属性组生成了 groupId。
Expand Down Expand Up @@ -107,7 +106,7 @@ public void setName(String name) {
}
}

public static class CombsBean {
public static final class CombsBean {
/**
* id : 10
* productId : 5
Expand All @@ -119,7 +118,8 @@ public static class CombsBean {
*/

private long id = 0L; // 有的 后台 使用 id 去判断选择的规格
private int productId;
private long productId;
private String productName;
private int stock;
private String comb; // 有的 后台 使用 组合 去判断选择的规格
private String desc;
Expand All @@ -134,14 +134,22 @@ public void setId(long id) {
this.id = id;
}

public int getProductId() {
public long getProductId() {
return productId;
}

public void setProductId(int productId) {
public void setProductId(long productId) {
this.productId = productId;
}

public String getProductName() {
return productName;
}

public void setProductName(String productName) {
this.productName = productName;
}

public int getStock() {
return stock;
}
Expand Down

0 comments on commit 79b9f28

Please sign in to comment.