package com.iotechn.unimall.data.enums; import com.dobbinsoft.fw.core.enums.BaseEnums; /** * Created by rize on 2019/7/2. */ public enum SpuStatusType implements BaseEnums { STOCK(0, "库存中"), SELLING(1, "售卖中"), ; SpuStatusType(int code, String msg) { this.code = code; this.msg = msg; } private int code; private String msg; public Integer getCode() { return code; } public String getMsg() { return msg; } }