com.zopen.wechat.mp.dto.miniprogram.MiniProgramWatermark 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;
import com.zcj.util.coder.annotation.CnName;
@CnName("小程序用户信息中的水印")
public class MiniProgramWatermark {
private Long timestamp;
private String appid;
@Override
public String toString() {
return "MiniProgramWatermark{" +
"timestamp=" + timestamp +
", appid='" + appid + '\'' +
'}';
}
public Long getTimestamp() {
return timestamp;
}
public void setTimestamp(Long timestamp) {
this.timestamp = timestamp;
}
public String getAppid() {
return appid;
}
public void setAppid(String appid) {
this.appid = appid;
}
}