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

eleme.openapi.sdk.api.enumeration.product.ItemShelfStatusDTO Maven / Gradle / Ivy

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

public enum ItemShelfStatusDTO {
    /**
     * 上架状态
     */
    ON("ON"), 
    
    /**
     * 下架状态
     */
    OFF("OFF");
    

    private String productDesc;
    ItemShelfStatusDTO(String productDesc) {
        this.productDesc = productDesc;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy