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;
|
|
|
}
|