提供者--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;
}
}

浙公网安备 33010602011771号