From 9db85e413ae8f9e49fbdfaccffc94fd433fb13d9 Mon Sep 17 00:00:00 2001 From: "15881625488@163.com" <15881625488@163.com> Date: Fri, 6 Mar 2026 10:11:04 +0800 Subject: [PATCH] =?UTF-8?q?fix:[=E6=A8=A1=E6=9D=BF=E7=AE=A1=E7=90=86]?= =?UTF-8?q?=E4=BC=98=E5=8C=96?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../java/com/hxhq/business/enums/template/ProductEnum.java | 14 ++++++++++++-- 1 file changed, 12 insertions(+), 2 deletions(-) diff --git a/hxhq-modules/hxhq-system/src/main/java/com/hxhq/business/enums/template/ProductEnum.java b/hxhq-modules/hxhq-system/src/main/java/com/hxhq/business/enums/template/ProductEnum.java index 44bf1dc..c63dab3 100644 --- a/hxhq-modules/hxhq-system/src/main/java/com/hxhq/business/enums/template/ProductEnum.java +++ b/hxhq-modules/hxhq-system/src/main/java/com/hxhq/business/enums/template/ProductEnum.java @@ -1,7 +1,7 @@ package com.hxhq.business.enums.template; /** - * 产物:1:试剂;3:给药制剂;5:麻精药;7:无 + * 产物:1:试剂;3:给药制剂;5:麻精药;7:无 9:细菌 11:细胞 * @author tanfei */ public enum ProductEnum { @@ -24,7 +24,17 @@ public enum ProductEnum { /** * 无 */ - none(7, "无"); + none(7, "无"), + + /** + * 细菌 + */ + Bacteria(9, "细菌"), + + /** + * 细胞 + */ + Cell(11, "细胞"); private int value; private String text;