weixin.popular.bean.wxa.SubmitAudit Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of weixin-popular Show documentation
Show all versions of weixin-popular Show documentation
The weixin-popular is a JAVA SDK for weixin. Weixin web url is https://mp.weixin.qq.com.
package weixin.popular.bean.wxa;
import java.util.ArrayList;
import java.util.List;
public class SubmitAudit {
private List- item_list;
public List
- getItem_list() {
return item_list;
}
public void setItem_list(List
- item_list) {
this.item_list = item_list;
}
public SubmitAudit() {
item_list = new ArrayList
- ();
}
public SubmitAudit(List
- item_list) {
this.item_list = item_list;
}
public void addItem(String address,String tag,String first_class,String second_class,String third_class,Integer first_id,Integer second_id,Integer third_id,String title){
Item item = new Item(address,tag,first_class,second_class,third_class, first_id, second_id, third_id, title);
item_list.add(item);
}
public void removeItem(Item item){
item_list.remove(item);
}
public void removeItem(int index){
item_list.remove(index);
}
public static class Item {
private String address;
private String tag;
private String first_class;
private String second_class;
private String third_class;
private Integer first_id;
private Integer second_id;
private Integer third_id;
private String title;
public Item() {
}
public Item(String address, String tag, String first_class, String second_class, String third_class, Integer first_id, Integer second_id, Integer third_id, String title) {
this.address = address;
this.tag = tag;
this.first_class = first_class;
this.second_class = second_class;
this.third_class = third_class;
this.first_id = first_id;
this.second_id = second_id;
this.third_id = third_id;
this.title = title;
}
public String getAddress() {
return address;
}
public void setAddress(String address) {
this.address = address;
}
public String getTag() {
return tag;
}
public void setTag(String tag) {
this.tag = tag;
}
public String getFirst_class() {
return first_class;
}
public void setFirst_class(String first_class) {
this.first_class = first_class;
}
public String getSecond_class() {
return second_class;
}
public void setSecond_class(String second_class) {
this.second_class = second_class;
}
public String getThird_class() {
return third_class;
}
public void setThird_class(String third_class) {
this.third_class = third_class;
}
public Integer getFirst_id() {
return first_id;
}
public void setFirst_id(Integer first_id) {
this.first_id = first_id;
}
public Integer getSecond_id() {
return second_id;
}
public void setSecond_id(Integer second_id) {
this.second_id = second_id;
}
public Integer getThird_id() {
return third_id;
}
public void setThird_id(Integer third_id) {
this.third_id = third_id;
}
public String getTitle() {
return title;
}
public void setTitle(String title) {
this.title = title;
}
}
}