quartzPro/.svn/pristine/b7/b7ceaa99fbad034b531d9587a42...

30 lines
459 B
Plaintext

package com.ifish.enums;
public enum PhoneTypeEnum {
ios("ios","ios"),
android("android","安卓");
private PhoneTypeEnum(String key,String value){
this.key = key;
this.value = value;
}
private String key;
private String value;
public String getKey() {
return key;
}
public void setKey(String key) {
this.key = key;
}
public String getValue() {
return value;
}
public void setValue(String value) {
this.value = value;
}
}