新管家状态枚举

This commit is contained in:
shuo.wang
2025-06-04 11:30:46 +08:00
parent eaf416ad5e
commit a101a89c21

View File

@@ -0,0 +1,25 @@
package com.cool.store.enums;
/**
* @Author: WangShuo
* @Date: 2025/06/04/11:16
* @Version 1.0
* @注释:
*/
public enum XGJCollectionStatusEnum {
WAIT_PAY(0, "待缴费"),
PARTIAL_PAYMENT(1, "部分缴款"),
COMPLETED(2, "已完成");
private Integer code;
private String message;
XGJCollectionStatusEnum(Integer code, String message) {
this.code = code;
this.message = message;
}
public Integer getCode() {
return code;
}
public String getMessage() {
return message;
}
}