admin
2020-06-29 941271bb52d26e484e2fe9c82d19bd9f94b84838
1
2
3
4
5
6
7
8
9
10
11
12
package com.yeshi.fanli.util.elme;
 
import java.math.BigDecimal;
 
import com.yeshi.fanli.util.MoneyBigDecimalUtil;
 
public class ElmeOrderUtil {
    public static BigDecimal getCommission(BigDecimal payMoney) {
        return MoneyBigDecimalUtil.mul(payMoney, new BigDecimal("0.06"));
    }
 
}