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

eleme.openapi.sdk.api.entity.product.AuditStatusCallBackRequest Maven / Gradle / Ivy

The newest version!
package eleme.openapi.sdk.api.entity.product;


public class AuditStatusCallBackRequest{

    /**
     * 类型:1-聚合品,2-聚合品子品,3-费率
     */
    private Integer type;
    public Integer getType() {
        return type;
    }
    public void setType(Integer type) {
        this.type = type;
    }
    
    /**
     * 业务id:type1-聚合品id,2-聚合品子品id
     */
    private Long bizId;
    public Long getBizId() {
        return bizId;
    }
    public void setBizId(Long bizId) {
        this.bizId = bizId;
    }
    
    /**
     * 店铺id
     */
    private Long shopId;
    public Long getShopId() {
        return shopId;
    }
    public void setShopId(Long shopId) {
        this.shopId = shopId;
    }
    
    /**
     * 审核状态:1-通过2-失败
     */
    private Integer auditStatus;
    public Integer getAuditStatus() {
        return auditStatus;
    }
    public void setAuditStatus(Integer auditStatus) {
        this.auditStatus = auditStatus;
    }
    
    /**
     * 通过/拒绝原因
     */
    private String remark;
    public String getRemark() {
        return remark;
    }
    public void setRemark(String remark) {
        this.remark = remark;
    }
    
    /**
     * 类型:1-创建审核,2-修改审核
     */
    private Integer operationType;
    public Integer getOperationType() {
        return operationType;
    }
    public void setOperationType(Integer operationType) {
        this.operationType = operationType;
    }
    
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy