package com.zy.acs.manager.core.domain.type; @SuppressWarnings("all") public enum JobType { CONVEYOR_PICK(2000, null, "取"), CONVEYOR_DROP(2000, null, "放"), LOC_PICK(1000, true, "取"), LOCK_DROP(1000, false, "放"), ; public long waitTime; public Boolean increase; public String breif; JobType(long waitTime, Boolean increase, String breif) { this.waitTime = waitTime; this.increase = increase; this.breif = breif; } }