Browse Source

fix:[模板管理]优化

master
15881625488@163.com 1 month ago
parent
commit
9db85e413a
1 changed files with 12 additions and 2 deletions
  1. +12
    -2
      hxhq-modules/hxhq-system/src/main/java/com/hxhq/business/enums/template/ProductEnum.java

+ 12
- 2
hxhq-modules/hxhq-system/src/main/java/com/hxhq/business/enums/template/ProductEnum.java View File

@ -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;

Loading…
Cancel
Save