查找加盟商接口,改造跟进日志接口
This commit is contained in:
@@ -0,0 +1,24 @@
|
||||
package com.cool.store.enums;
|
||||
|
||||
/**
|
||||
* @Author: WangShuo
|
||||
* @Date: 2025/01/07/下午2:18
|
||||
* @Version 1.0
|
||||
* @注释:
|
||||
*/
|
||||
public enum FollowLogTypeEnum {
|
||||
LINE(1,"线索"),
|
||||
SHOP(2,"门店");
|
||||
private int code;
|
||||
private String desc;
|
||||
private FollowLogTypeEnum(int code, String desc) {
|
||||
this.code = code;
|
||||
this.desc = desc;
|
||||
}
|
||||
public int getCode() {
|
||||
return code;
|
||||
}
|
||||
public String getDesc() {
|
||||
return desc;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user