mirror of
https://codeup.aliyun.com/67c68d4e484ca2f0a13ac3c1/ydc/jsowell-charger-web.git
synced 2026-04-25 05:25:12 +08:00
新增 微信第三方平台 提交代码审核接口
This commit is contained in:
@@ -0,0 +1,25 @@
|
||||
package com.jsowell.pile.dto.agentDev;
|
||||
|
||||
import com.alibaba.fastjson2.annotation.JSONField;
|
||||
import com.jsowell.pile.domain.agentDev.AuditItem;
|
||||
import lombok.Data;
|
||||
|
||||
import java.util.List;
|
||||
|
||||
/**
|
||||
* 提交代码审核DTO
|
||||
*
|
||||
* @author Lemon
|
||||
* @Date 2023/7/29 15:29
|
||||
*/
|
||||
@Data
|
||||
public class SubmitAuditDTO {
|
||||
|
||||
/**
|
||||
* 用户授权的appid
|
||||
*/
|
||||
private String authorizerAppid;
|
||||
|
||||
// 审核项列表
|
||||
private List<AuditItem> auditItems;
|
||||
}
|
||||
Reference in New Issue
Block a user