|
|
|
@@ -1,9 +1,11 @@ |
|
|
|
package com.iformall.domain.po; |
|
|
|
|
|
|
|
import com.aliyun.openservices.shade.org.apache.commons.lang3.StringUtils; |
|
|
|
import com.baomidou.mybatisplus.annotation.TableField; |
|
|
|
import com.baomidou.mybatisplus.annotation.TableName; |
|
|
|
import com.iformall.domain.po.base.TenantEntity; |
|
|
|
import com.iformall.enums.EnumBillAllType; |
|
|
|
import com.iformall.utils.Constant; |
|
|
|
|
|
|
|
import lombok.Data; |
|
|
|
import lombok.EqualsAndHashCode; |
|
|
|
@@ -70,6 +72,23 @@ public class WxFinanceReceiveBill extends TenantEntity { |
|
|
|
@io.swagger.annotations.ApiModelProperty(value = "是否已删除", name = "isDel") |
|
|
|
private Integer isDel; |
|
|
|
|
|
|
|
@TableField(exist = false) |
|
|
|
private String receivePay; |
|
|
|
public String getReceivePay() { |
|
|
|
if (null != payWay && payWay != Constant.bill_pay_way_setoff) { |
|
|
|
receivePay = receive; |
|
|
|
} |
|
|
|
return receivePay; |
|
|
|
} |
|
|
|
@TableField(exist = false) |
|
|
|
private String setOff; |
|
|
|
public String getSetOff() { |
|
|
|
if (null != payWay && payWay == Constant.bill_pay_way_setoff) { |
|
|
|
setOff = receive; |
|
|
|
} |
|
|
|
return setOff; |
|
|
|
} |
|
|
|
|
|
|
|
@TableField(exist = false) |
|
|
|
private String shopNumber; |
|
|
|
@TableField(exist = false) |
|
|
|
|