新增 微信第三方平台 授权回调接口

This commit is contained in:
Lemon
2023-08-02 10:13:48 +08:00
parent 8bedb86374
commit 1065a81db7
4 changed files with 90 additions and 19 deletions

View File

@@ -0,0 +1,22 @@
package com.jsowell.pile.domain.agentDev;
import lombok.Data;
/**
* ext.json配置文件对象
*
* @author Lemon
* @Date 2023/8/2 10:09
*/
@Data
public class ExtJson {
/**
* 配置 ext.json 是否生效
*/
private boolean extEnable;
/**
* 配置 extAppid
*/
private String extAppid;
}