完成课程退款功能

This commit is contained in:
2025-07-01 08:47:27 +08:00
parent bca95d683d
commit 8e578a9542
17 changed files with 538 additions and 15 deletions

View File

@ -1,5 +1,7 @@
package com.greenorange.promotion.constant;
import java.math.BigDecimal;
public interface SystemConstant {
/**
@ -11,6 +13,18 @@ public interface SystemConstant {
/**
* 文件公共前缀
*/
String FILE_COMMON_PREFIX = "http://27.30.77.229:9091/file/download/";
String FILE_COMMON_PREFIX = "http://160.202.242.36:9091/file/download/";
/**
* 一级抽成比例
*/
BigDecimal FIRST_LEVEL_COMMISSION_RATE = new BigDecimal("0.02");
/**
* 二级抽成比例
*/
BigDecimal SECOND_LEVEL_COMMISSION_RATE = new BigDecimal("0.03");
}