30 lines
414 B
Java
30 lines
414 B
Java
package com.rzyc.enums;
|
|
|
|
|
|
/**
|
|
* post_path 拼接
|
|
* @author Xuwanxin
|
|
* @date 2023/2/2
|
|
* */
|
|
public enum PostPathConcat {
|
|
|
|
//企业岗位
|
|
company("company");
|
|
|
|
/*******分界线********/
|
|
|
|
private String key;
|
|
|
|
PostPathConcat(String key) {
|
|
this.key = key;
|
|
}
|
|
|
|
public String getKey() {
|
|
return key;
|
|
}
|
|
|
|
public void setKey(String key) {
|
|
this.key = key;
|
|
}
|
|
}
|