1234567891011121314151617181920212223242526272829303132333435363738394041424344454647 |
- package pojo;
- import java.util.List;
- /**
- * @author tangxiangan
- */
- public class YunpianSendResult {
- private Integer total_count;
- private String total_fee;
- private String unit;
- private List<SendResult> data;
- public Integer getTotal_count() {
- return total_count;
- }
- public void setTotal_count(Integer total_count) {
- this.total_count = total_count;
- }
- public String getTotal_fee() {
- return total_fee;
- }
- public void setTotal_fee(String total_fee) {
- this.total_fee = total_fee;
- }
- public String getUnit() {
- return unit;
- }
- public void setUnit(String unit) {
- this.unit = unit;
- }
- public List<SendResult> getData() {
- return data;
- }
- public void setData(List<SendResult> data) {
- this.data = data;
- }
- }
|