-
-
Notifications
You must be signed in to change notification settings - Fork 8.8k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
🆕 #2399 【小程序】增加内容安全mediaCheckAsync接口新的实现方法
- Loading branch information
1 parent
1984b28
commit 95d130d
Showing
3 changed files
with
72 additions
and
5 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
34 changes: 34 additions & 0 deletions
34
...p/src/main/java/cn/binarywang/wx/miniapp/bean/security/WxMaMediaSecCheckCheckRequest.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,34 @@ | ||
package cn.binarywang.wx.miniapp.bean.security; | ||
|
||
import com.google.gson.annotations.SerializedName; | ||
import lombok.Builder; | ||
import lombok.Data; | ||
|
||
import java.io.Serializable; | ||
|
||
/** | ||
* @author dingxw | ||
* @date 2021/11/18 20:27 | ||
*/ | ||
@Data | ||
@Builder | ||
public class WxMaMediaSecCheckCheckRequest implements Serializable { | ||
|
||
private static final long serialVersionUID = -3947838615379224577L; | ||
|
||
@SerializedName("media_url") | ||
private String mediaUrl; | ||
|
||
@SerializedName("media_type") | ||
private Integer mediaType; | ||
|
||
@SerializedName("version") | ||
private Integer version; | ||
|
||
@SerializedName("openid") | ||
private String openid; | ||
|
||
@SerializedName("scene") | ||
private Integer scene; | ||
|
||
} |