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

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

parent 0c8600d3
...@@ -2,21 +2,25 @@ package cn.quantgroup.customer.rest.enums.phone; ...@@ -2,21 +2,25 @@ package cn.quantgroup.customer.rest.enums.phone;
public enum ModifyPhoneApplyStatus { public enum ModifyPhoneApplyStatus {
INIT("处理中"), INIT("0", "处理中"),
DONE("修改完成"), DONE("1", "修改完成"),
NO_ALLOW("不允许修改"), NO_ALLOW("2", "不允许修改"),
; ;
private String code;
private String message;
public String getMessage() { public String getMessage() {
return message; return message;
} }
public String getCode() {
return code;
}
private String message; ModifyPhoneApplyStatus(String code, String message) {
ModifyPhoneApplyStatus(String message) {
this.message = message; this.message = message;
this.code = code;
} }
} }
package cn.quantgroup.customer.rest.enums.phone; package cn.quantgroup.customer.rest.enums.phone;
public enum ModifyPhoneProcessingStatus { public enum ModifyPhoneProcessingStatus {
INIT("待人工处理"), INIT("0", "待人工处理"),
WAIT_4_USER_FEEDBACK("待用户反馈结果"), WAIT_4_USER_FEEDBACK("1", "待用户反馈结果"),
DONE("已反馈"), DONE("2", "已反馈"),
; ;
private String message;
private String code;
ModifyPhoneProcessingStatus(String code, String message) {
this.code = code;
this.message = message;
}
public String getMessage() { public String getMessage() {
return message; return message;
} }
public String getCode() {
private String message; return code;
ModifyPhoneProcessingStatus(String message) {
this.message = message;
} }
} }
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