#
luxiaotao1123
2 天以前 9b79c0073a7108cd05ed49806a4affb45e9f1629
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
package com.zy.acs.manager.core.domain.type;
 
public enum CodeDirectionType {
 
    NONE(null, "NONE"),
    NORTH(0.0, "NORTH"),
    EAST(90.0, "EAST"),
    SOUTH(180.0, "SOUTH"),
    WEST(270.0, "WEST"),
    ;
 
    public Double angle;
    public String desc;
 
    CodeDirectionType(Double angle, String desc) {
        this.angle = angle;
        this.desc = desc;
    }
 
}