me.hao0.wechat.model.data.msg.MsgSendSummaryHour Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of wechat Show documentation
Show all versions of wechat Show documentation
A Lightweight Wechat Component
The newest version!
package me.hao0.wechat.model.data.msg;
import com.fasterxml.jackson.annotation.JsonProperty;
/**
* Author: haolin
* Email: [email protected]
* Date: 20/11/15
*/
public class MsgSendSummaryHour extends MsgSendSummary {
private static final long serialVersionUID = -1978665674344648838L;
@JsonProperty("ref_hour")
private Integer hour;
public Integer getHour() {
return hour;
}
public void setHour(Integer hour) {
this.hour = hour;
}
@Override
public String toString() {
return "MsgSendSummaryHour{" +
"hour=" + hour +
"} " + super.toString();
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy