该实体类用于实现定义纸牌类,方便进行数据的存储,以便存放到SQLite之中!
package com.example.azhipai;

public class Zhipai {
	private int id;
	private String name; 
	private int examcm;
	public Zhipai() {
		super();
	}
	public Zhipai(int id, String name, int examcm) {
		super();
		this.id = id;
		this.name = name;
		this.examcm = examcm;
	}
	public int getId() {
		return id;
	}
	public void setId(int id) {
		this.id = id;
	}
	public String getName() {
		return name;
	}
	public void setName(String name) {
		this.name = name;
	}
	public int getExamcm() {
		return examcm;
	}
	public void setExamcm(int examcm) {
		this.examcm = examcm;
	}
	
}

posted on 2016-06-22 21:46  波波嘟  阅读(200)  评论(0)    收藏  举报