xinyb
2024-09-13 7cf738d43c5d38e9a6246c7d6212d2d5bd055886
提交 | 用户 | age
7cf738 1 package com.yc.crm.custom.entity;
X 2
3 import lombok.Data;
4
5 import java.util.List;
6
7 /**
8  * @BelongsProject: eCoWorksV3
9  * @BelongsPackage: com.yc.crm.custom.entity
10  * @author: xinyb
11  * @CreateTime: 2024-09-07  10:21
12  * @Description:客户模块
13  */
14 @Data
15 public class CustomModule {
16     private String key;
17     private String id;
18     private String name;
19     private String title;
20     private boolean isCommon;//常用
21
22
23     public static List<CustomModule> setCustomModuleInitial() {
24
25         return null;
26     }
27 }