zh
2024-11-25 aac98d314df1563537e386ab9df150191035b280
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
36
37
38
39
package com.ycl.domain.entity;
 
import com.baomidou.mybatisplus.annotation.FieldFill;
import com.baomidou.mybatisplus.annotation.TableField;
import com.baomidou.mybatisplus.annotation.TableName;
import com.ycl.system.domain.base.AbsEntity;
import lombok.Data;
 
import java.time.LocalDateTime;
 
/**
 * 流程分类
 */
@Data
@TableName("t_flowable_type")
public class FlowableType extends AbsEntity {
 
    private static final long serialVersionUID = 1L;
 
    @TableField(value = "name")
    private String name;
 
    @TableField(value = "parent_id")
    private Integer parentId;
 
    @TableField(value = "level")
    private Integer level;
 
    @TableField(value = "leaf")
    private Boolean leaf;
 
    @TableField(value = "create_by")
    private String createBy;
 
    @TableField(value = "update_by")
    private String updateBy;
 
 
}