| | |
| | | import java.util.Date; |
| | | |
| | | /** |
| | | * @author wzy |
| | | * @author |
| | | * @date 2022-03-21 |
| | | **/ |
| | | @Data |
| | |
| | | |
| | | public DappFundFlowEntity() {} |
| | | |
| | | public DappFundFlowEntity(Long memberId, BigDecimal amount, Integer type, Integer status) { |
| | | public DappFundFlowEntity(Long memberId, BigDecimal amount, Integer type, Integer status, Integer fee) { |
| | | this.memberId = memberId; |
| | | this.amount = amount; |
| | | this.type = type; |
| | | this.status = status; |
| | | this.fee = fee; |
| | | |
| | | this.setCreateBy("system"); |
| | | this.setUpdateBy("system"); |
| | |
| | | |
| | | @TableField(exist = false) |
| | | private String address; |
| | | |
| | | private Integer fee; |
| | | } |