2 changed files with 70 additions and 5 deletions
@ -0,0 +1,46 @@
|
||||
package org.springblade.common.constant.aftersales; |
||||
|
||||
public enum WorkOrderTypeConstant { |
||||
huosun("货损","1","HS"), |
||||
shaohuo("少货","2","SH"), |
||||
cuanhuo("窜货","3","CH"), |
||||
jiaji("加急","4","JJ"), |
||||
qita("其他","5","QT"), |
||||
|
||||
; |
||||
|
||||
private String name; |
||||
private String value; |
||||
|
||||
private String anotherName; |
||||
|
||||
WorkOrderTypeConstant(String name, String value, String anotherName) { |
||||
this.name = name; |
||||
this.value = value; |
||||
this.anotherName = anotherName; |
||||
} |
||||
|
||||
public String getName() { |
||||
return name; |
||||
} |
||||
|
||||
public void setName(String name) { |
||||
this.name = name; |
||||
} |
||||
|
||||
public String getValue() { |
||||
return value; |
||||
} |
||||
|
||||
public void setValue(String value) { |
||||
this.value = value; |
||||
} |
||||
|
||||
public String getAnotherName() { |
||||
return anotherName; |
||||
} |
||||
|
||||
public void setAnotherName(String anotherName) { |
||||
this.anotherName = anotherName; |
||||
} |
||||
} |
Loading…
Reference in new issue