package com.nq.enums; import lombok.Getter; @Getter public enum EStockAIStatus { //上线 online("online"), //下架 out("out"), ; private String value; EStockAIStatus(String value) { this.value = value; } }