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