新建分店接口

This commit is contained in:
shuo.wang
2025-01-08 16:08:56 +08:00
parent 3579bb5f7c
commit 96f8ad4a7e
8 changed files with 144 additions and 2 deletions

View File

@@ -0,0 +1,25 @@
package com.cool.store.enums.point;
/**
* @Author: WangShuo
* @Date: 2025/01/08/下午3:54
* @Version 1.0
* @注释:
*/
public enum ShopStatusEnum {
ING(0,"跟进中"),
DONE(1,"已完成"),
ABANDON(2,"已放弃");
private int code;
private String desc;
private ShopStatusEnum(int code, String desc) {
this.code = code;
this.desc = desc;
}
public int getCode() {
return code;
}
public String getDesc() {
return desc;
}
}