作者 陈志颖

fix:金额激励分红规则时间判断

... ... @@ -44,7 +44,7 @@ func (domainService *ConfirmMoneyIncentivesEstimateService) Confirm(contract *do
// 判断金额激励阶段是否合法
currentTime := time.Now()
if currentTime.Before(moneyIncentivesRuleMatched.MoneyIncentivesStageStart) {
if currentTime.Before(moneyIncentivesRuleMatched.MoneyIncentivesTime) {
return nil, fmt.Errorf("还未到分红时间")
}
... ...