对比新文件 |
| | |
| | | package org.dromara.workflow.domain.vo; |
| | | |
| | | import org.dromara.workflow.domain.WfDefinitionConfig; |
| | | import com.alibaba.excel.annotation.ExcelIgnoreUnannotated; |
| | | import com.alibaba.excel.annotation.ExcelProperty; |
| | | import io.github.linpeilie.annotations.AutoMapper; |
| | | import lombok.Data; |
| | | |
| | | import java.io.Serial; |
| | | import java.io.Serializable; |
| | | |
| | | |
| | | /** |
| | | * 娴佺▼瀹氫箟閰嶇疆瑙嗗浘瀵硅薄 wf_definition_config |
| | | * |
| | | * @author may |
| | | * @date 2024-03-18 |
| | | */ |
| | | @Data |
| | | @ExcelIgnoreUnannotated |
| | | @AutoMapper(target = WfDefinitionConfig.class) |
| | | public class WfDefinitionConfigVo implements Serializable { |
| | | |
| | | @Serial |
| | | private static final long serialVersionUID = 1L; |
| | | |
| | | /** |
| | | * 涓婚敭 |
| | | */ |
| | | @ExcelProperty(value = "涓婚敭") |
| | | private Long id; |
| | | |
| | | /** |
| | | * 琛ㄥ悕 |
| | | */ |
| | | @ExcelProperty(value = "琛ㄥ悕") |
| | | private String tableName; |
| | | |
| | | /** |
| | | * 娴佺▼瀹氫箟ID |
| | | */ |
| | | @ExcelProperty(value = "娴佺▼瀹氫箟ID") |
| | | private String definitionId; |
| | | |
| | | /** |
| | | * 娴佺▼KEY |
| | | */ |
| | | @ExcelProperty(value = "娴佺▼KEY") |
| | | private String processKey; |
| | | |
| | | |
| | | /** |
| | | * 娴佺▼鐗堟湰 |
| | | */ |
| | | @ExcelProperty(value = "娴佺▼鐗堟湰") |
| | | private Integer version; |
| | | |
| | | /** |
| | | * 澶囨敞 |
| | | */ |
| | | @ExcelProperty(value = "澶囨敞") |
| | | private String remark; |
| | | |
| | | /** |
| | | * 琛ㄥ崟绠$悊 |
| | | */ |
| | | private WfFormManageVo wfFormManageVo; |
| | | |
| | | |
| | | } |