| @@ -1,6 +1,7 @@ | |||||
| package com.iformall.domain.po; | package com.iformall.domain.po; | ||||
| import lombok.Data; | import lombok.Data; | ||||
| import lombok.EqualsAndHashCode; | |||||
| import javax.persistence.Id; | import javax.persistence.Id; | ||||
| import javax.persistence.Table; | import javax.persistence.Table; | ||||
| @@ -15,7 +16,8 @@ import java.util.List; | |||||
| */ | */ | ||||
| @Table(name = "wx_pay_bill") | @Table(name = "wx_pay_bill") | ||||
| @Data | @Data | ||||
| public class WxPayBill implements Serializable { | |||||
| @EqualsAndHashCode(callSuper = true) | |||||
| public class WxPayBill extends BaseEntity { | |||||
| private static final long serialVersionUID = 1L; | private static final long serialVersionUID = 1L; | ||||
| @Id | @Id | ||||
| @@ -81,6 +83,20 @@ public class WxPayBill implements Serializable { | |||||
| private String openId; | private String openId; | ||||
| public Long getbUserId() { | |||||
| return bUserId; | |||||
| } | |||||
| public void setbUserId(Long bUserId) { | |||||
| this.bUserId = bUserId; | |||||
| } | |||||
| public Long getBUserId() { | |||||
| return bUserId; | |||||
| } | |||||
| public void setBUserId(Long bUserId) { | |||||
| this.bUserId = bUserId; | |||||
| } | |||||
| } | } | ||||