com.zopen.wechat.mp.dto.miniprogram.MiniProgramTemplateMessageData 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.miniprogram;
public class MiniProgramTemplateMessageData {
private String value;
public MiniProgramTemplateMessageData() {
}
public MiniProgramTemplateMessageData(String value) {
this.value = value;
}
public String getValue() {
return this.value;
}
public void setValue(String value) {
this.value = value;
}
}