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

me.chanjar.weixin.channel.bean.audit.ProductAuditInfo Maven / Gradle / Ivy

There is a newer version: 4.7.1.B
Show newest version
package me.chanjar.weixin.channel.bean.audit;

import com.fasterxml.jackson.annotation.JsonProperty;
import java.io.Serializable;
import lombok.Data;
import lombok.NoArgsConstructor;

/**
 * 商品审核信息
 *
 * @author Zeyes
 */
@Data
@NoArgsConstructor
public class ProductAuditInfo implements Serializable {

  private static final long serialVersionUID = -5264206679057480206L;

  /** 审核单id */
  @JsonProperty("audit_id")
  private String auditId;

  /** 上一次提交时间, yyyy-MM-dd HH:mm:ss */
  @JsonProperty("submit_time")
  private String submitTime;

  /** 上一次审核时间, yyyy-MM-dd HH:mm:ss */
  @JsonProperty("audit_time")
  private String auditTime;

  /** 拒绝理由,只有edit_status为3时出现 */
  @JsonProperty("reject_reason")
  private String rejectReason;

  @JsonProperty("func_type")
  private Integer funcType;
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy