¶Ô±ÈÐÂÎļþ |
| | |
| | | package org.dromara.workflow.domain; |
| | | |
| | | import org.dromara.common.tenant.core.TenantEntity; |
| | | import com.baomidou.mybatisplus.annotation.*; |
| | | import lombok.Data; |
| | | import lombok.EqualsAndHashCode; |
| | | |
| | | import java.io.Serial; |
| | | |
| | | /** |
| | | * èç¹é
置对象 wf_node_config |
| | | * |
| | | * @author may |
| | | * @date 2024-03-30 |
| | | */ |
| | | @Data |
| | | @EqualsAndHashCode(callSuper = true) |
| | | @TableName("wf_node_config") |
| | | public class WfNodeConfig extends TenantEntity { |
| | | |
| | | @Serial |
| | | private static final long serialVersionUID = 1L; |
| | | |
| | | /** |
| | | * ä¸»é® |
| | | */ |
| | | @TableId(value = "id") |
| | | private Long id; |
| | | |
| | | /** |
| | | * 表åid |
| | | */ |
| | | private Long formId; |
| | | |
| | | /** |
| | | * 表åç±»å |
| | | */ |
| | | private String formType; |
| | | |
| | | /** |
| | | * èç¹åç§° |
| | | */ |
| | | private String nodeName; |
| | | |
| | | /** |
| | | * èç¹id |
| | | */ |
| | | private String nodeId; |
| | | |
| | | /** |
| | | * æµç¨å®ä¹id |
| | | */ |
| | | private String definitionId; |
| | | |
| | | /** |
| | | * æ¯å¦ä¸ºç³è¯·äººèç¹ ï¼0æ¯ 1å¦ï¼ |
| | | */ |
| | | private String applyUserTask; |
| | | |
| | | |
| | | } |