package com.fjhx.entity.process; import com.baomidou.mybatisplus.annotation.IdType; import com.baomidou.mybatisplus.annotation.TableId; import lombok.Data; import java.io.Serializable; /** *
* 租户流程表 *
* * @author ${author} * @since 2022-08-16 */ @Data public class ProcessTenant implements Serializable { private static final long serialVersionUID = 1L; /** * 主键id */ @TableId(value = "id", type = IdType.ASSIGN_ID) private Long id; /** * 流程id */ private Long processInfoId; /** * 流程名称 */ private String name; /** * 绑定租户id */ private String bindingTenantId; /** * 版本号 */ private Integer versionNumber; /** * 是否当前版本 */ private Integer current; }