mirror of
https://gitee.com/hhyykk/ipms-sjy.git
synced 2025-07-14 19:15:06 +08:00
crm-客户管理:完善客户、公海客户分页查询
This commit is contained in:
@ -8,18 +8,18 @@ import lombok.Getter;
|
||||
import java.util.Arrays;
|
||||
|
||||
/**
|
||||
* CRM 客户等级
|
||||
* CRM 列表检索场景
|
||||
*
|
||||
* @author Wanwan
|
||||
* @author HUIHUI
|
||||
*/
|
||||
@Getter
|
||||
@AllArgsConstructor
|
||||
public enum CrmCustomerSceneEnum implements IntArrayValuable {
|
||||
public enum CrmSceneEnum implements IntArrayValuable {
|
||||
|
||||
OWNER(1, "我负责的客户"),
|
||||
FOLLOW(2, "我关注的客户");
|
||||
OWNER(1, "我负责的"),
|
||||
FOLLOW(2, "我关注的");
|
||||
|
||||
public static final int[] ARRAYS = Arrays.stream(values()).mapToInt(CrmCustomerSceneEnum::getType).toArray();
|
||||
public static final int[] ARRAYS = Arrays.stream(values()).mapToInt(CrmSceneEnum::getType).toArray();
|
||||
|
||||
/**
|
||||
* 场景类型
|
Reference in New Issue
Block a user