摘要: Hello.java:public class Hello{ @DatabaseField(generatedId = true,unique=true) int id; @DatabaseField String word; //这是必须加的,否则会出错 public Hello(){} public int getId() { return id; } public Hello(String word) { super(); this.word = word; } pub... 阅读全文
posted @ 2012-11-12 11:08 暗殇 阅读(290) 评论(0) 推荐(0)