Merge remote-tracking branch 'xfsg/cc_partner_init' into cc_partner_init

This commit is contained in:
苏竹红
2024-03-22 18:58:25 +08:00
9 changed files with 106 additions and 16 deletions

View File

@@ -0,0 +1,29 @@
package com.cool.store.enums;
/**
* @author zhangchenbiao
* @FileName: UserRoleEnum
* @Description: 用户职位
* @date 2024-03-22 16:37
*/
public enum UserRoleEnum {
INVESTMENT_MANAGER(1, "招商经理"),
SELECT_SITE_MANAGER(2, "选址人员"),
REGION_MANAGER(3, "大区经理"),
THEATER_MANAGER(4, "战区经理"),
;
private Integer code;
private String desc;
UserRoleEnum(Integer code, String desc) {
this.code = code;
this.desc = desc;
}
public Integer getCode() {
return code;
}
}