叶松
2023-09-26 6b2db463c1dc672db49b761f68068e438b77d043
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
package com.thhy.general.common.enums;
 
public enum PipeOutModType {
 
    IN("入模",1),
    OUT("出模",2),
    ;
 
    private String name;
 
    private Integer value;
 
    public Integer getValue() {
        return value;
    }
 
    PipeOutModType(String name, Integer value) {
        this.name = name;
        this.value = value;
    }
 
    public static void main(String[] args) {
        System.out.println(PipeOutModType.OUT.getValue());
    }
 
}