Compare commits
2 Commits
951269c8de
...
9daa3e1277
| Author | SHA1 | Date |
|---|---|---|
|
|
9daa3e1277 | 1 month ago |
|
|
9ced4c7cbe | 1 month ago |
1 changed files with 30 additions and 0 deletions
@ -0,0 +1,30 @@ |
||||
package org.springblade.desk.order.constant; |
||||
|
||||
import java.util.Map; |
||||
|
||||
/** |
||||
* 镀层物料需求枚举 |
||||
* |
||||
* @author lqk |
||||
* @date 2025-12-19 9:25 |
||||
*/ |
||||
public interface PlateGoodsConst { |
||||
/** |
||||
* 金钾物料号 |
||||
*/ |
||||
String GOLD_POTASSIUM = "04-05-023"; |
||||
/** |
||||
* 银板物料号 |
||||
*/ |
||||
String SILVER_PLATE = "04-05-024"; |
||||
/** |
||||
* 银钾物料号 |
||||
*/ |
||||
String SILVER_POTASSIUM = "04-05-025"; |
||||
|
||||
Map<String, String> GOODS_NAME_MAP = Map.of( |
||||
GOLD_POTASSIUM, "氰化亚金钾", |
||||
SILVER_PLATE, "银板", |
||||
SILVER_POTASSIUM, "氰化银钾" |
||||
); |
||||
} |
||||
Loading…
Reference in new issue