1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
| package com.ld.igds.constant;
|
| /**
| * 通风模式枚举
| */
| public enum GrainAnalysisModel {
|
| MODEL_01("01", "粮温异常点位分析");
|
| private String code;
| private String msg;
|
| GrainAnalysisModel(String code, String msg) {
| this.code = code;
| this.msg = msg;
| }
|
| public String getCode() {
| return code;
| }
|
| public String getMsg() {
| return msg;
| }
| }
|
|