xinyb
4 天以前 67a32b3138862fa8faf2d774f4f841280f0e4000
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;
    }
}