feat: 客户详情 + review 修改

This commit is contained in:
Wanwan
2023-11-04 03:21:20 +08:00
parent 4092f298ed
commit 64db1a9c90
12 changed files with 105 additions and 31 deletions

View File

@ -19,13 +19,12 @@ public enum CrmCustomerLevelEnum implements IntArrayValuable {
GENERAL(2, "B普通客户"),
LOW_PRIORITY(3, "C非优先客户");
public static final int[] ARRAYS = Arrays.stream(values()).mapToInt(CrmCustomerLevelEnum::getStatus).toArray();
public static final int[] ARRAYS = Arrays.stream(values()).mapToInt(CrmCustomerLevelEnum::getLevel).toArray();
// TODO @wanwan这里的 status 字段,可以考虑改成 level
/**
* 状态
*/
private final Integer status;
private final Integer level;
/**
* 状态名
*/