|
|
@ -1,7 +1,7 @@ |
|
|
package com.hxhq.business.enums.template; |
|
|
package com.hxhq.business.enums.template; |
|
|
|
|
|
|
|
|
/** |
|
|
/** |
|
|
* 产物:1:试剂;3:给药制剂;5:麻精药;7:无 |
|
|
|
|
|
|
|
|
* 产物:1:试剂;3:给药制剂;5:麻精药;7:无 9:细菌 11:细胞 |
|
|
* @author tanfei |
|
|
* @author tanfei |
|
|
*/ |
|
|
*/ |
|
|
public enum ProductEnum { |
|
|
public enum ProductEnum { |
|
|
@ -24,7 +24,17 @@ public enum ProductEnum { |
|
|
/** |
|
|
/** |
|
|
* 无 |
|
|
* 无 |
|
|
*/ |
|
|
*/ |
|
|
none(7, "无"); |
|
|
|
|
|
|
|
|
none(7, "无"), |
|
|
|
|
|
|
|
|
|
|
|
/** |
|
|
|
|
|
* 细菌 |
|
|
|
|
|
*/ |
|
|
|
|
|
Bacteria(9, "细菌"), |
|
|
|
|
|
|
|
|
|
|
|
/** |
|
|
|
|
|
* 细胞 |
|
|
|
|
|
*/ |
|
|
|
|
|
Cell(11, "细胞"); |
|
|
|
|
|
|
|
|
private int value; |
|
|
private int value; |
|
|
private String text; |
|
|
private String text; |
|
|
|