winter 1 год назад
Родитель
Сommit
1b1245115d
1 измененных файлов: 4 добавлений и 1 удалений
  1. +4
    -1
      mallinkService/src/main/java/com/iformall/domain/po/WxFinanceReceiveBill.java

+ 4
- 1
mallinkService/src/main/java/com/iformall/domain/po/WxFinanceReceiveBill.java Просмотреть файл

@@ -47,7 +47,10 @@ public class WxFinanceReceiveBill extends TenantEntity {
@TableField(exist = false)
private String billTypeName;
public String getBillTypeName() {
return EnumBillAllType.getEnum(billType).getMessage();
if (null != billType) {
return EnumBillAllType.getEnum(billType).getMessage();
}
return null;
}
@io.swagger.annotations.ApiModelProperty(value="科目编号",name="feesId")


Загрузка…
Отмена
Сохранить