管理端店铺用户相关接口

This commit is contained in:
张松
2025-02-13 16:06:15 +08:00
parent 140f9344e0
commit aa6df702f3
16 changed files with 504 additions and 0 deletions

View File

@@ -0,0 +1,25 @@
package com.czg.enums;
import lombok.Getter;
/**
* @author Administrator
*/
@Getter
public enum ShopUserFlowBizEnum {
// 会员充值
CASH_IN("cashIn"),
AWARD_IN("awardIn"),
WECHAT_IN("wechatIn"),
ALIPAY_IN("alipayIn"),
ORDER_PAY("orderPay"),
ORDER_REFUND("orderRefund"),
RECHARGE_REFUND("rechargeRefund"),
ADMIN_IN("adminIn");
private final String code;
ShopUserFlowBizEnum(String code) {
this.code = code;
}
}