Procházet zdrojové kódy

fix

release_toaliyun_real
winter před 1 rokem
rodič
revize
0853bb6dec
1 změnil soubory, kde provedl 4 přidání a 1 odebrání
  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 Zobrazit soubor

@@ -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")


Načítá se…
Zrušit
Uložit