mirror of
https://gitee.com/binary/weixin-java-tools.git
synced 2026-02-18 14:16:25 +08:00
🆕 #2243 【小程序】增加自定义组件申请接入相关接口
This commit is contained in:
@@ -0,0 +1,22 @@
|
||||
package cn.binarywang.wx.miniapp.bean.shop.request;
|
||||
|
||||
import com.google.gson.annotations.SerializedName;
|
||||
import lombok.Data;
|
||||
|
||||
import java.io.Serializable;
|
||||
|
||||
/**
|
||||
* @author liming1019
|
||||
* @date 2021/8/6
|
||||
*/
|
||||
@Data
|
||||
public class WxMaShopRegisterApplySceneRequest implements Serializable {
|
||||
|
||||
private static final long serialVersionUID = -3008686013597621522L;
|
||||
/**
|
||||
* 1:视频号、公众号场景
|
||||
*/
|
||||
@SerializedName("scene_group_id")
|
||||
private Long sceneGroupId;
|
||||
}
|
||||
|
||||
@@ -0,0 +1,21 @@
|
||||
package cn.binarywang.wx.miniapp.bean.shop.request;
|
||||
|
||||
import com.google.gson.annotations.SerializedName;
|
||||
import lombok.Data;
|
||||
|
||||
import java.io.Serializable;
|
||||
|
||||
/**
|
||||
* @author liming1019
|
||||
* @date 2021/8/6
|
||||
*/
|
||||
@Data
|
||||
public class WxMaShopRegisterFinishAccessInfoRequest implements Serializable {
|
||||
private static final long serialVersionUID = 8679586799807671563L;
|
||||
/**
|
||||
* 6:完成spu接口,7:完成订单接口,8:完成物流接口,9:完成售后接口,10:测试完成,11:发版完成
|
||||
*/
|
||||
@SerializedName("access_info_item")
|
||||
private Long accessInfoItem;
|
||||
}
|
||||
|
||||
@@ -0,0 +1,22 @@
|
||||
package cn.binarywang.wx.miniapp.bean.shop.response;
|
||||
|
||||
import com.google.gson.JsonObject;
|
||||
import com.google.gson.annotations.SerializedName;
|
||||
import lombok.Data;
|
||||
import lombok.EqualsAndHashCode;
|
||||
|
||||
import java.io.Serializable;
|
||||
|
||||
/**
|
||||
* @author liming1019
|
||||
* @date 2021/8/5
|
||||
*/
|
||||
@Data
|
||||
@EqualsAndHashCode(callSuper = true)
|
||||
public class WxMaShopRegisterCheckResponse extends WxMaShopBaseResponse implements Serializable {
|
||||
|
||||
private static final long serialVersionUID = 9061844525630614116L;
|
||||
|
||||
@SerializedName("data")
|
||||
private JsonObject data;
|
||||
}
|
||||
Reference in New Issue
Block a user