生日有礼修改

This commit is contained in:
张松
2025-10-16 16:46:03 +08:00
parent b4f52dd555
commit 04a45099a9
6 changed files with 81 additions and 4 deletions

View File

@@ -70,4 +70,19 @@ public interface TableValueConstant {
}
}
}
interface MkConsumeCashback {
@Getter
enum CashbackType {
FIX("fix", "待推送"),
PERCENTAGE("percentage", "推送成功");
private final String code;
private final String msg;
CashbackType(String code, String msg) {
this.code = code;
this.msg = msg;
}
}
}
}

View File

@@ -10,6 +10,7 @@ import lombok.Getter;
public enum ShopUserFlowBizEnum {
// 会员充值
CASH_IN("cashIn", "会员充值"),
CASHBACK("cashback", "消费返现"),
FREE_IN("freeIn", "霸王餐充值"),
// 重置奖励
AWARD_IN("awardIn", "充值奖励"),