All Downloads are FREE. Search and download functionalities are using the official Maven repository.

cn.binarywang.wx.miniapp.bean.code.WxMaCodeSubmitAuditItem Maven / Gradle / Ivy

There is a newer version: 4.6.7.B
Show newest version
package cn.binarywang.wx.miniapp.bean.code;

import com.google.gson.annotations.SerializedName;
import lombok.AllArgsConstructor;
import lombok.Builder;
import lombok.Data;
import lombok.NoArgsConstructor;
import lombok.experimental.Accessors;

import java.io.Serializable;

/**
 * 小程序帐号的可选类目,其中 address / tag / title 是提交审核会用到的
 *
 * @author Charming
 * @since 2018-04-26 19:44
 */
@Data
@Builder
@NoArgsConstructor
@AllArgsConstructor
@Accessors(chain = true)
public class WxMaCodeSubmitAuditItem implements Serializable {
  private static final long serialVersionUID = -7663757440028175135L;

  /**
   * 小程序的页面,可通过“获取小程序的第三方提交代码的页面配置”接口获得
   */
  private String address;
  /**
   * 小程序的标签,多个标签用空格分隔,标签不能多于10个,标签长度不超过20
   */
  private String tag;

  /**
   * 一级类目名称
   * 类目名称,可通过“获取授权小程序帐号的可选类目”接口获得
   */
  @SerializedName("first_class")
  private String firstClass;
  /**
   * 二级类目名称
   */
  @SerializedName("second_class")
  private String secondClass;
  /**
   * 三级类目名称
   */
  @SerializedName("third_class")
  private String thirdClass;
  /**
   * 一级类目的ID编号
   * 类目的ID,可通过“获取授权小程序帐号的可选类目”接口获得
   */
  @SerializedName("first_id")
  private Long firstId;
  /**
   * 二级类目的ID编号
   */
  @SerializedName("second_id")
  private Long secondId;
  /**
   * 三级类目的ID编号
   */
  @SerializedName("third_id")
  private Long thirdId;

  /**
   * 小程序页面的标题,标题长度不超过32
   */
  private String title;
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy