This commit is contained in:
dute7liang
2024-01-14 22:04:48 +08:00
parent b163213beb
commit cd281375ac
17 changed files with 124 additions and 24 deletions

View File

@@ -8,7 +8,7 @@ public enum AccountBusinessEnum {
/**
* 提现
*/
WITHDRAW(AccountChangeEnum.WITHDRAW,null,null,null),
// WITHDRAW(AccountChangeEnum.WITHDRAW,null,null,null),
/**
* 守护
*/

View File

@@ -0,0 +1,25 @@
package com.ruoyi.cai.enums;
import lombok.Getter;
/**
* 1 申请 2 审核通过 3 审核不通过 4 提现取消
* <p>created on 2024/1/14 21:55</p>
* @author duet
*/
@Getter
public enum AccountCashStatusEnum {
READY(1,"申请中"),
SUCCESS(2,"审核通过"),
FAIL(3,"审核未通过"),
CLOSE(4,"提现取消"),
;
private final Integer code;
private final String text;
AccountCashStatusEnum(Integer code, String text) {
this.code = code;
this.text = text;
}
}

View File

@@ -0,0 +1,17 @@
package com.ruoyi.cai.enums;
import lombok.Getter;
@Getter
public enum IsAnchorEnum {
YES(1,""),
NO(0,""),
;
private final Integer code;
private final String message;
IsAnchorEnum(Integer code, String message) {
this.code = code;
this.message = message;
}
}