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

cn.binarywang.wx.miniapp.bean.cloud.WxCloudCloudDatabaseMigrateQueryInfoResult Maven / Gradle / Ivy

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

import com.google.gson.annotations.SerializedName;
import lombok.Data;

import java.io.Serializable;

/**
 * 云开发数据库迁移状态查询结果.
 *
 * @author Binary Wang
 * created on  2020-01-26
 */
@Data
public class WxCloudCloudDatabaseMigrateQueryInfoResult implements Serializable {
  private static final long serialVersionUID = 2014197503355968243L;

  /**
   * status	string	导出状态
   */
  private String status;

  /**
   * record_success	number	导出成功记录数
   */
  @SerializedName("record_success")
  private Integer recordSuccess;

  /**
   * record_fail	number	导出失败记录数
   */
  @SerializedName("record_fail")
  private Integer recordFail;

  /**
   * err_msg	string	导出错误信息
   */
  @SerializedName("err_msg")
  private String errMsg;

  /**
   * file_url	string	导出文件下载地址
   */
  @SerializedName("file_url")
  private String fileUrl;

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy