Android实现购物车功能

2019-12-10 19:09:18王振洲

实体类:

 

package com.autoserve.net33.model;


public class Test {
  @Override
  public String toString() {
    return "test [id=" + id + ", color=" + color
        + ", type=" + type + ", integral=" + integral + "]";
  }

  public String getId() {
    return id;
  }
  public void setId(String id) {
    this.id = id;
  }
  public String getColor() {
    return color;
  }
  public void setColor(String color) {
    this.color = color;
  }
  public String getType() {
    return type;
  }
  public void setType(String type) {
    this.type = type;
  }
  public String getIntegral() {
    return integral;
  }
  public void setIntegral(String integral) {
    this.integral = integral;
  }
  private String id;
  private String color;
  private String type;
  private String integral;
  private int num;//商品数量
  private int sumIntegral;
  private boolean isChoosed;   //商品是否在购物车中被选中

  public Test(String id, String color, String type, String integral) {
    super();
    this.id = id;
    this.color = color;
    this.type = type;
    this.integral = integral;
  }
  public Test() {
    super();
  }

  public int getNum() {
    return num;
  }

  public void setNum(int num) {
    this.num = num;
  }

  public int getSumIntegral() {
    return sumIntegral;
  }

  public void setSumIntegral(int sumIntegral) {
    this.sumIntegral = sumIntegral;
  }

  public boolean isChoosed() {
    return isChoosed;
  }

  public void setChoosed(boolean isChoosed) {
    this.isChoosed = isChoosed;
  }  
}

以上就是本文的全部内容,祝大家在新的一年里工作顺利,事事顺心,我们大家共同努力。



注:相关教程知识阅读请移步到Android开发频道。