Browse Source

fix

release_toaliyun_real
winter 1 year ago
parent
commit
0853bb6dec
1 changed files with 4 additions and 1 deletions
  1. +4
    -1
      mallinkService/src/main/java/com/iformall/domain/vo/WxFinanceReceiveVo.java

+ 4
- 1
mallinkService/src/main/java/com/iformall/domain/vo/WxFinanceReceiveVo.java View File

@@ -118,7 +118,10 @@ public class WxFinanceReceiveVo implements Serializable {
@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")


Loading…
Cancel
Save