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