This commit is contained in:
parent
277adf8582
commit
47a7940789
|
|
@ -1,2 +1,14 @@
|
||||||
package com.nflg.product.bomnew.constant;public enum FactoryCodeEnum {
|
package com.nflg.product.bomnew.constant;
|
||||||
|
|
||||||
|
import lombok.AllArgsConstructor;
|
||||||
|
import lombok.Getter;
|
||||||
|
|
||||||
|
@Getter
|
||||||
|
@AllArgsConstructor
|
||||||
|
public enum FactoryCodeEnum {
|
||||||
|
FACTORY_1010 ("1010", "泉州工厂"),
|
||||||
|
FACTORY_1020("1020", "仙桃工厂");
|
||||||
|
|
||||||
|
private final String value;
|
||||||
|
private final String description;
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue