Administrator
2025-04-23 595b7935a30e84fba1bc3561d05f9d19d3e32e1f
src/main/java/com/taoke/autopay/entity/credit/CreditExchangeRecord.java
@@ -64,6 +64,16 @@
    }
    public enum ExchangeType {
        FUND_EXCHANGE // 资金兑换
        FUND_EXCHANGE("红包兑换"); // 资金兑换
        private String desc;
        private ExchangeType(String desc) {
            this.desc = desc;
        }
        public String getDesc() {
            return desc;
        }
    }
}