1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
| package com.ld.igds.constant;
|
| import com.ld.igds.models.DicCheckItem;
|
|
| /**
| * 化验项
| * 在LS/T 1704.1-2004粮食信息分类与编码粮食检验
| */
| public class CheckType {
|
| public static String getRemark(String code) {
| if (null == code) {
| return "";
| }
|
| return DicCheckItem.mapCheckType.get(code);
| }
| }
|
|