You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
32 lines
551 B
32 lines
551 B
package com.ruoyi.common.enums;
|
|
|
|
/**
|
|
* 售后状态
|
|
*
|
|
* @author ruoyi
|
|
*/
|
|
public enum AftersaleStatus
|
|
{
|
|
APPLY(0, "待处理"),
|
|
WAIT(1, "退货中"),
|
|
SUCCESS(2, "已完成"),
|
|
REJECT(3, "已拒绝"),
|
|
CANCEL(4,"用户取消");
|
|
|
|
private final Integer type;
|
|
private final String msg;
|
|
|
|
private AftersaleStatus(Integer type, String msg) {
|
|
this.type = type;
|
|
this.msg = msg;
|
|
}
|
|
|
|
public Integer getType() {
|
|
return this.type;
|
|
}
|
|
|
|
public String getMsg() {
|
|
return this.msg;
|
|
}
|
|
}
|