刘光辉
昨天 bb638871a7fb692d80f1b7a758f991dc0879002c
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
26
27
28
package jnpf.limsEntity;
 
/**
 * 留样记录状态(lims_liuyang_jilu.biz_status)。
 */
public enum LiuyangStatus {
 
    PENDING_RECEIVE("pending_receive", "待接收"),
    PENDING_AUDIT("pending_audit", "待审核"),
    REJECTED("rejected", "已退回"),
    RECEIVED("received", "已接收");
 
    private final String code;
    private final String label;
 
    LiuyangStatus(String code, String label) {
        this.code = code;
        this.label = label;
    }
 
    public String getCode() {
        return code;
    }
 
    public String getLabel() {
        return label;
    }
}