1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
  | 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; 
 |      } 
 |    
 |  } 
 |  
  |