zhangherong
2025-07-16 c3ae2cc63c6e771ee7007c041a5f499cc9861f29
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 org.jeecg.modules.dlglong.entity;
 
import lombok.Data;
 
/**
 * 模拟实体
 * @author: jeecg-boot
 */
@Data
public class MockEntity {
 
    /**
     * id
     */
    private String id;
    /**
     * 父级ID
     */
    private String parentId;
    /**
     * 状态
     */
    private String status;
 
    /* -- 省略其他字段 -- */
 
}