This commit is contained in:
77
2024-04-21 01:31:10 +08:00
parent 96411407b8
commit bb3852ff76
11 changed files with 192 additions and 11 deletions

View File

@@ -0,0 +1,21 @@
package com.ruoyi.xq.enums.account;
import lombok.Getter;
/**
*
* @author duet
*/
@Getter
public enum WithdrawTypeEnum {
ALI(1,"支付宝"),
WX(2,"微信"),
;
private final Integer code;
private final String text;
WithdrawTypeEnum(Integer code, String text) {
this.code = code;
this.text = text;
}
}