PositionCode.java 297 Bytes Edit Raw Blame History Permalink 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 package com.huaheng.mobilewms.bean; public enum PositionCode { LK("立体库仓"), OLDTOOL("旧工具仓"); private final String code; private PositionCode(String code) { this.code = code; } @Override public String toString() { return this.code; } }