From 2b4d86d8fd4ada43bc2dc728a241b9551e4f55f2 Mon Sep 17 00:00:00 2001 From: liyghting Date: Thu, 6 Jun 2019 14:35:37 +0800 Subject: [PATCH] =?UTF-8?q?=E9=A2=86=E5=AF=BC=E8=A6=81=E5=88=9B=E6=94=B6?= =?UTF-8?q?=EF=BC=8C=E9=82=A3=E5=B0=B1=E6=94=AF=E4=BB=98=E9=87=91=E9=A2=9D?= =?UTF-8?q?=E7=BF=BB=E4=BA=94=E7=95=AA?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- java/CreateIncome.java | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100644 java/CreateIncome.java diff --git a/java/CreateIncome.java b/java/CreateIncome.java new file mode 100644 index 0000000..2690cc7 --- /dev/null +++ b/java/CreateIncome.java @@ -0,0 +1,10 @@ +import java.math.BigDecimal; + +public class CreateIncome { + /** + * 返回支付金额 + */ + public static BigDecimal getPayFee(BigDecimal payFee) { + return payFee.multiply(BigDecimal.TEN); + } +} -- Gitee