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;