1 package com.foxinmy.weixin4j.mp.datacube;
2
3 import java.io.Serializable;
4 import java.util.Date;
5 import java.util.List;
6
7 import com.alibaba.fastjson.annotation.JSONField;
8
9
10
11
12
13
14
15
16
17
18 public class ArticleTotal implements Serializable {
19 private static final long serialVersionUID = -6820948857241500950L;
20
21
22
23
24 @JSONField(name = "ref_date")
25 private Date refDate;
26
27
28
29
30 @JSONField(name = "msgid")
31 private String msgId;
32
33
34
35 private String title;
36
37
38
39 private List<ArticleDatacube2> details;
40
41 public Date getRefDate() {
42 return refDate;
43 }
44
45 public void setRefDate(Date refDate) {
46 this.refDate = refDate;
47 }
48
49 public String getMsgId() {
50 return msgId;
51 }
52
53 public void setMsgId(String msgId) {
54 this.msgId = msgId;
55 }
56
57 public String getTitle() {
58 return title;
59 }
60
61 public void setTitle(String title) {
62 this.title = title;
63 }
64
65 public List<ArticleDatacube2> getDetails() {
66 return details;
67 }
68
69 public void setDetails(List<ArticleDatacube2> details) {
70 this.details = details;
71 }
72
73 @Override
74 public String toString() {
75 return "ArticleTotal [refDate=" + refDate + ", msgId=" + msgId
76 + ", title=" + title + ", details=" + details + "]";
77 }
78 }