补全注释

This commit is contained in:
cnzzs
2017-05-09 21:40:15 +08:00
parent 3f38713898
commit 89910f2474
9 changed files with 83 additions and 47 deletions

View File

@@ -9,16 +9,16 @@ import com.egzosn.pay.common.bean.CurType;
*/
public enum FuiouCurType implements CurType {
CNY("人民币"),
USD("美元"),
HKD("港币"),
MOP("澳门元"),
EUR("欧元"),
TWD("新台币"),
KRW("韩元"),
JPY("日元"),
SGD("新加坡元"),
AUD("澳大利亚元");
CNY("人民币"),
USD("美元"),
HKD("港币"),
MOP("澳门元"),
EUR("欧元"),
TWD("新台币"),
KRW("韩元"),
JPY("日元"),
SGD("新加坡元"),
AUD("澳大利亚元");
/**
* 币种名称
*/
@@ -43,4 +43,4 @@ public enum FuiouCurType implements CurType {
return this.name();
}
}
}