提供者--SmsInfo

public class SmsInfo {

public SmsInfo(long date,int type,String body,String address){
this.address=address;
this.body=body;
this.date=date;
this.type=type;

}
private long date;
private int type;
private String body;
private String address;
private int id;
public long getDate() {
return date;
}

public void setDate(long date) {
this.date = date;
}

public int getType() {
return type;
}

public void setType(int type) {
this.type = type;
}

public String getBody() {
return body;
}

public void setBody(String body) {
this.body = body;
}

public String getAddress() {
return address;
}

public void setAddress(String address) {
this.address = address;
}

public int getId() {
return id;
}

public void setId(int id) {
this.id = id;
}
}

posted @ 2017-06-25 18:00  12306.1  阅读(267)  评论(0)    收藏  举报