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
28
29
30
31
32
33
34
35
| package com.dobbinsoft.fw.support.model;
|
| import lombok.Data;
|
| import java.io.Serializable;
| import java.util.Map;
|
| /**
| * ClassName: ClassDescription
| * Description: 类文件描述
| *
| * @author: e-weichaozheng
| * @date: 2021-05-25
| */
| @Data
| public class ClassDescription implements Serializable {
|
| /**
| * 类型 1: 接口; 2. 类
| */
| private Integer type;
|
| /**
| * 标记是哪个系统的
| */
| private String app;
|
| /**
| * 标记是哪个场景
| */
| private String scene;
|
| private Map<String, byte[]> byteMap;
|
| }
|
|