Browse Source

新政策

master
张彭杰 11 months ago
parent
commit
56e618705b
1 changed files with 3 additions and 3 deletions
  1. 6
      dating-agency-mall-entity/src/main/java/com/qniao/dam/domain/aggregate/revenuereward/entity/RevenueReward.java

6
dating-agency-mall-entity/src/main/java/com/qniao/dam/domain/aggregate/revenuereward/entity/RevenueReward.java

@ -29,13 +29,13 @@ public class RevenueReward extends Entity<RevenueReward> {
private IdentityTypeEnum identityType;
@ApiModelProperty("已回本金额")
private BigDecimal recoveredAmount;
private BigDecimal recoveredAmount = BigDecimal.ZERO;
@ApiModelProperty("回本一半要求")
private Boolean halfRecoveryRequirement;
private Boolean halfRecoveryRequirement = false;
@ApiModelProperty("全回本要求")
private Boolean allRecoveryRequirement;
private Boolean allRecoveryRequirement = false;
@ApiModelProperty("收益记录")
private transient List<RevenueRewardRecord> recordList;

Loading…
Cancel
Save