com.zopen.wechat.mp.dto.message.template.TemplateMessageResp Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of zopen-ato-starter Show documentation
Show all versions of zopen-ato-starter Show documentation
Alibaba Tencent And Others For Spring Boot.
package com.zopen.wechat.mp.dto.message.template;
import com.zopen.wechat.mp.dto.BaseResponse;
public class TemplateMessageResp extends BaseResponse {
private Long msgid;
public Long getMsgid() {
return msgid;
}
public void setMsgid(Long msgid) {
this.msgid = msgid;
}
}