mirror of
https://gitee.com/hhyykk/ipms-sjy.git
synced 2025-07-25 00:15:06 +08:00
完善商品管理
This commit is contained in:
@ -0,0 +1,27 @@
|
||||
package cn.iocoder.yudao.module.product.enums.spu;
|
||||
|
||||
import lombok.AllArgsConstructor;
|
||||
import lombok.Getter;
|
||||
|
||||
/**
|
||||
* 商品spu标签枚举类型
|
||||
*
|
||||
* @author HUIHUI
|
||||
*/
|
||||
@Getter
|
||||
@AllArgsConstructor
|
||||
public enum ProductSpuTabTypeEnum {
|
||||
FOR_SALE(0,"出售中商品"),
|
||||
IN_WAREHOUSE(1,"仓库中商品"),
|
||||
SOLD_OUT(2,"已售空商品"),
|
||||
ALERT_STOCK(3,"警戒库存"),
|
||||
RECYCLE_BIN(4,"商品回收站");
|
||||
/**
|
||||
* 状态
|
||||
*/
|
||||
private final Integer type;
|
||||
/**
|
||||
* 状态名
|
||||
*/
|
||||
private final String name;
|
||||
}
|
Reference in New Issue
Block a user