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

io.github.ealenxie.goodcang.product.ProductFreezeDetail Maven / Gradle / Ivy

The newest version!
package io.github.ealenxie.goodcang.product;

import com.fasterxml.jackson.annotation.JsonProperty;
import lombok.Getter;
import lombok.Setter;

import java.util.List;

/**
 * @author EalenXie created on 2023/6/25 16:17
 */
@Getter
@Setter
public class ProductFreezeDetail {
    /**
     * 商品名称
     */
    @JsonProperty("product_name_cn")
    private String productNameCn;
    /**
     * 国家/地区名称
     */
    @JsonProperty("country_name")
    private String countryName;
    /**
     * 创建时间
     */
    @JsonProperty("create_time")
    private String createTime;
    /**
     * 操作日志
     */
    @JsonProperty("freeze_log_list")
    private List freezeLogList;
    /**
     * 冻结id
     */
    @JsonProperty("id")
    private String id;
    /**
     * 商品sku
     */
    @JsonProperty("product_sku")
    private String productSku;
    /**
     * 冻结状态
     */
    @JsonProperty("freeze_status")
    private Integer freezeStatus;
    /**
     * 状态文本
     */
    @JsonProperty("freeze_status_text")
    private String freezeStatusText;
    /**
     * 仓库代码
     */
    @JsonProperty("warehouse_code")
    private String warehouseCode;
    /**
     * 仓库名称
     */
    @JsonProperty("warehouse_name")
    private String warehouseName;
    /**
     * 操作原因
     */
    @JsonProperty("operate_reason")
    private String operateReason;
    /**
     * 操作时间
     */
    @JsonProperty("operate_time")
    private String operateTime;
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy