package com.zy.acs.common.enums; public enum AgvDirectionType { LEFT(1), RIGHT(2), ; public int val; AgvDirectionType(int val) { this.val = val; } }