Commit c8d2f17c authored by xiaozhe.chen's avatar xiaozhe.chen

添加修改手机号后台管理接口

parent 0c8600d3
......@@ -2,21 +2,25 @@ package cn.quantgroup.customer.rest.enums.phone;
public enum ModifyPhoneApplyStatus {
INIT("处理中"),
DONE("修改完成"),
NO_ALLOW("不允许修改"),
INIT("0", "处理中"),
DONE("1", "修改完成"),
NO_ALLOW("2", "不允许修改"),
;
private String code;
private String message;
public String getMessage() {
return message;
}
public String getCode() {
return code;
}
private String message;
ModifyPhoneApplyStatus(String message) {
ModifyPhoneApplyStatus(String code, String message) {
this.message = message;
this.code = code;
}
}
package cn.quantgroup.customer.rest.enums.phone;
public enum ModifyPhoneProcessingStatus {
INIT("待人工处理"),
WAIT_4_USER_FEEDBACK("待用户反馈结果"),
DONE("已反馈"),
INIT("0", "待人工处理"),
WAIT_4_USER_FEEDBACK("1", "待用户反馈结果"),
DONE("2", "已反馈"),
;
private String message;
private String code;
ModifyPhoneProcessingStatus(String code, String message) {
this.code = code;
this.message = message;
}
public String getMessage() {
return message;
}
private String message;
ModifyPhoneProcessingStatus(String message) {
this.message = message;
public String getCode() {
return code;
}
}
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment