Lius
2025-06-20 e096d728a44eb0c92a107dff8711092fc69d3026
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
package org.jeecg.modules.flowable.apithird.entity;
 
import lombok.Data;
 
/**
 *流程分类
 *@author PanMeiCheng
 *@date 2021/11/25
 *@version 1.0
 */
@Data
public class SysCategory {
    private static final long serialVersionUID = 1L;
 
    /**
     * id
     */
    private String id;
 
    /**
     * 分类名称
     */
    private String name;
}