Commit e90f9d77 by guojuxing

二维码类型字典

parent fa1f9fbe
package com.gic.enterprise.constant;
/**
* @ClassName:
* @Description: 

* @author guojuxing

* @date 2021/1/5 11:25 AM

*/
public enum QrcodeTypeEnum {
/**
* 门店
*/
STORE(1, "门店"),
/**
* 导购
*/
CLERK(2, "导购"),
/**
* 审核员
*/
AUDITOR(3, "审核员"),
/**
* 管理员
*/
USER(4, "管理员")
;
private Integer code;
private String msg;
QrcodeTypeEnum(Integer code, String msg) {
this.code = code;
this.msg = msg;
}
public Integer getCode() {
return code;
}
public String getMsg() {
return msg;
}
}
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