| 1234567891011121314151617 |
- package cn.com.lzt.common.pmenum;
- public enum Flag {
- NONE("NONE"),
- PART("PART"),
- ALL("ALL");
-
- private final String value;
- private Flag(final String value) {
- this.value = value;
- }
- public String value() {
- return this.value;
- }
- }
|