商品模块代码提交

This commit is contained in:
谭凯凯 2025-02-11 15:15:08 +08:00 committed by Tankaikai
parent 142c927e97
commit 0da6ec2890
1 changed files with 27 additions and 0 deletions

View File

@ -0,0 +1,27 @@
package com.czg.service.product.enums;
/**
* 单位类型
* @author tankaikai
* @since 2025-02-11 14:49
*/
public enum UnitTypeEnum {
/**
* 计数
*/
NUMBER("number"),
/**
* 记重
*/
WEIGHT("weight");
private String value;
UnitTypeEnum(String value) {
this.value = value;
}
public String value() {
return this.value;
}
}