| | |
| | | import java.util.Date; |
| | | |
| | | /** |
| | | * @author wzy |
| | | * @author |
| | | * @date 2022-03-21 |
| | | **/ |
| | | @Data |
| | |
| | | public DappAccountMoneyChangeEntity() { |
| | | } |
| | | |
| | | public DappAccountMoneyChangeEntity(Long memberId, BigDecimal preAmount, BigDecimal amount, BigDecimal afterAmount, String content, Integer type) { |
| | | public DappAccountMoneyChangeEntity(Long memberId, BigDecimal preAmount, BigDecimal amount, BigDecimal afterAmount, Integer type, String content) { |
| | | this.memberId = memberId; |
| | | this.preAmount = preAmount; |
| | | this.amount = amount; |
| | | this.afterAmount = afterAmount; |
| | | this.content = content; |
| | | this.type = type; |
| | | |
| | | this.setCreateBy("system"); |
| | | this.setUpdateBy("system"); |
| | | this.setCreateTime(new Date()); |
| | | this.setUpdateTime(new Date()); |
| | | this.setVersion(1); |
| | | this.content = content; |
| | | } |
| | | |
| | | private Long memberId; |