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

k.e.book.common.enums.ItemMarketStatus Maven / Gradle / Ivy

package k.e.book.common.enums;

/**
 *状态:0=隐藏,1=挂售中,2=已卖出,3=锁定中,4=取消挂售,5=系统取消,6=后台取消
 */
public enum ItemMarketStatus {
    HIDDEN("0"),//已取消
    OnSale("1"),//确认中
    Sold("2"),//已确认
    LOCKING("3"),
    CANCEL("4");

    private final String name;
    ItemMarketStatus(String n){
        this.name = n;
    }

    public String getName(){
        return this.name;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy