com.hframe.test.DemoBean Maven / Gradle / Ivy
The newest version!
package com.hframe.test;
import com.fasterxml.jackson.annotation.JsonProperty;
import java.util.List;
public class DemoBean {
@JsonProperty("total_count")
private String totalCount;
@JsonProperty("item_count")
private String itemCount;
@JsonProperty("item")
private List- itemList;
public DemoBean() {
}
public String getTotalCount(){
return totalCount;
}
public void setTotalCount(String totalCount){
this.totalCount = totalCount;
}
public String getItemCount(){
return itemCount;
}
public void setItemCount(String itemCount){
this.itemCount = itemCount;
}
public List
- getItemList(){
return itemList;
}
public void setItemList(List
- itemList){
this.itemList = itemList;
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy