#
luxiaotao1123
2020-08-15 538496d2361fb5cd6ab2a48f609a37b5cbfb5e4d
src/main/java/com/zy/core/enums/CrnLiftPosType.java
@@ -2,14 +2,16 @@
public enum CrnLiftPosType {
    DOWN(1),  // 下定位
    UP(2),   // 上定位
    NONE(0),   // 不在定位
    DOWN(1, "下定位"),  // 下定位
    UP(2, "上定位"),   // 上定位
    NONE(0, "不在定位"),   // 不在定位
    ;
    public Integer id;
    CrnLiftPosType(Integer id) {
    public String desc;
    CrnLiftPosType(Integer id, String desc) {
        this.id = id;
        this.desc = desc;
    }
    public static CrnLiftPosType get(Short id) {