mirror of
https://codeup.aliyun.com/67c68d4e484ca2f0a13ac3c1/ydc/jsowell-charger-web.git
synced 2026-04-20 11:05:18 +08:00
新增 微信第三方平台 授权回调接口
This commit is contained in:
@@ -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;
|
||||
}
|
||||
@@ -1,6 +1,7 @@
|
||||
package com.jsowell.pile.dto.agentDev;
|
||||
|
||||
import com.alibaba.fastjson2.annotation.JSONField;
|
||||
import com.jsowell.pile.domain.agentDev.ExtJson;
|
||||
import lombok.AllArgsConstructor;
|
||||
import lombok.Builder;
|
||||
import lombok.Data;
|
||||
@@ -27,13 +28,13 @@ public class CommitCodeDTO {
|
||||
* 代码库中的代码模板 ID,可通过getTemplateList接口获取代码模板template_id。
|
||||
*/
|
||||
// @JSONField(name = "template_id")
|
||||
private String templateId;
|
||||
private long templateId;
|
||||
|
||||
/**
|
||||
* 为了方便第三方平台的开发者引入 extAppid 的开发调试工作,引入ext.json配置文件概念,该参数则是用于控制ext.json配置文件的内容。
|
||||
*/
|
||||
// @JSONField(name = "ext_json")
|
||||
private String extJson;
|
||||
private ExtJson extJson;
|
||||
|
||||
/**
|
||||
* 代码版本号,开发者可自定义(长度不要超过 64 个字符)
|
||||
|
||||
Reference in New Issue
Block a user