Commit 7d7924cc by guojuxing

发票管理接口

parent cd4d4aed
......@@ -23,7 +23,7 @@ public enum InvoiceStatusEnum {
public static String getMessageByCode(Integer code) {
if (code == null) {
return "未知";
return "--";
}
for (InvoiceStatusEnum typeEnum : values()) {
if (code.intValue() == typeEnum.getCode()) {
......
......@@ -20,7 +20,7 @@ public enum InvoiceTypeEnum {
public static String getMessageByCode(Integer code) {
if (code == null) {
return "未知";
return "--";
}
for (InvoiceTypeEnum typeEnum : values()) {
if (code.intValue() == typeEnum.getCode()) {
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment