You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

44 lines
717 B
Java

package com.rehome.zhdcoa.bean;
import java.util.List;
/**
* Created by ruihong on 2018/1/6.
*/
public class qduploadBean {
/**
* result : success
* results : []
* msg : 签到成功!
*/
private String result;
private String msg;
private List<?> results;
public String getResult() {
return result;
}
public void setResult(String result) {
this.result = result;
}
public String getMsg() {
return msg;
}
public void setMsg(String msg) {
this.msg = msg;
}
public List<?> getResults() {
return results;
}
public void setResults(List<?> results) {
this.results = results;
}
}