package org.dromara.workflow.domain;
|
|
import com.baomidou.mybatisplus.annotation.TableId;
|
import com.baomidou.mybatisplus.annotation.TableName;
|
import lombok.Data;
|
import lombok.EqualsAndHashCode;
|
import org.dromara.common.tenant.core.TenantEntity;
|
|
import java.io.Serial;
|
|
/**
|
* 流程分类对象 wf_category
|
*
|
* @author may
|
* @date 2023-06-27
|
*/
|
@Data
|
@EqualsAndHashCode(callSuper = true)
|
@TableName("wf_category")
|
public class WfCategory extends TenantEntity {
|
|
@Serial
|
private static final long serialVersionUID = 1L;
|
|
/**
|
* 主键
|
*/
|
@TableId(value = "id")
|
private Long id;
|
|
/**
|
* 分类名称
|
*/
|
private String categoryName;
|
|
/**
|
* 分类编码
|
*/
|
private String categoryCode;
|
|
/**
|
* 父级id
|
*/
|
private Long parentId;
|
|
/**
|
* 排序
|
*/
|
private Long sortNum;
|
|
|
}
|