Lius
2025-07-16 6134c73876d20fe26e12e52ee8d6f80e4ffbe03a
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;
}