com.zopen.wechat.mp.dto.miniprogram.MiniProgramRiskyCheck 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 MiniProgramRiskyCheck {
private String content;
public MiniProgramRiskyCheck() {
}
public MiniProgramRiskyCheck(String content) {
this.content = content;
}
public String getContent() {
return content;
}
public void setContent(String content) {
this.content = content;
}
}