对比新文件 |
| | |
| | | package org.dromara.workflow.domain; |
| | | |
| | | import org.dromara.common.mybatis.core.domain.BaseEntity; |
| | | import com.baomidou.mybatisplus.annotation.*; |
| | | import lombok.Data; |
| | | import lombok.EqualsAndHashCode; |
| | | |
| | | import java.io.Serial; |
| | | |
| | | /** |
| | | * 娴佺▼瀹氫箟閰嶇疆瀵硅薄 wf_definition_config |
| | | * |
| | | * @author may |
| | | * @date 2024-03-18 |
| | | */ |
| | | @Data |
| | | @EqualsAndHashCode(callSuper = true) |
| | | @TableName("wf_definition_config") |
| | | public class WfDefinitionConfig extends BaseEntity { |
| | | |
| | | @Serial |
| | | private static final long serialVersionUID = 1L; |
| | | |
| | | /** |
| | | * 涓婚敭 |
| | | */ |
| | | @TableId(value = "id") |
| | | private Long id; |
| | | |
| | | /** |
| | | * 琛ㄥ悕 |
| | | */ |
| | | private String tableName; |
| | | |
| | | /** |
| | | * 娴佺▼瀹氫箟ID |
| | | */ |
| | | private String definitionId; |
| | | |
| | | /** |
| | | * 娴佺▼KEY |
| | | */ |
| | | private String processKey; |
| | | |
| | | /** |
| | | * 娴佺▼鐗堟湰 |
| | | */ |
| | | private Integer version; |
| | | |
| | | /** |
| | | * 澶囨敞 |
| | | */ |
| | | private String remark; |
| | | |
| | | |
| | | } |