ソースを参照

fix

release_toaliyun_real
winter 1年前
コミット
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")


読み込み中…
キャンセル
保存