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.
71 lines
1.3 KiB
Java
71 lines
1.3 KiB
Java
package com.rehome.zhdcoa.bean;
|
|
|
|
import java.util.List;
|
|
|
|
/**
|
|
* Created by ruihong on 2019/4/15.
|
|
*/
|
|
|
|
public class yjyaResultBean {
|
|
|
|
/**
|
|
* Rows : [{"result":"1","msg":"发起推送成功","id":" YJYA201904151402479526"}]
|
|
* Total : 1
|
|
*/
|
|
|
|
private int Total;
|
|
private List<RowsBean> Rows;
|
|
|
|
public int getTotal() {
|
|
return Total;
|
|
}
|
|
|
|
public void setTotal(int Total) {
|
|
this.Total = Total;
|
|
}
|
|
|
|
public List<RowsBean> getRows() {
|
|
return Rows;
|
|
}
|
|
|
|
public void setRows(List<RowsBean> Rows) {
|
|
this.Rows = Rows;
|
|
}
|
|
|
|
public static class RowsBean {
|
|
/**
|
|
* result : 1
|
|
* msg : 发起推送成功
|
|
* id : YJYA201904151402479526
|
|
*/
|
|
|
|
private String result;
|
|
private String msg;
|
|
private String id;
|
|
|
|
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 String getId() {
|
|
return id;
|
|
}
|
|
|
|
public void setId(String id) {
|
|
this.id = id;
|
|
}
|
|
}
|
|
}
|