xiaoyong931011
2023-08-11 86c9e2f51f0b8b0fb1a6ee4b6d6a703878ad53e8
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
package cc.mrbird.febs.tree;
 
import java.math.BigDecimal;
 
public interface TreeConstants {
 
    /**
     * 投入金额
     */
    BigDecimal PUT_IN_AMOUNT = new BigDecimal("200");
 
    /**
     * 满收益(至少推荐一人)
     */
    BigDecimal FULL_PROFIT_AMOUNT = new BigDecimal("400");
 
}