文件名从 ruoyi-modules/ruoyi-workflow/src/main/java/org/dromara/workflow/domain/vo/WfFormDefinitionVo.java 修改 |
| | |
| | | package org.dromara.workflow.domain.vo; |
| | | |
| | | import org.dromara.workflow.domain.WfFormDefinition; |
| | | 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 java.io.Serializable; |
| | | |
| | | |
| | | |
| | | /** |
| | | * 琛ㄥ崟閰嶇疆瑙嗗浘瀵硅薄 wf_form_definition |
| | | * |
| | | * @author gssong |
| | | * @author may |
| | | * @date 2024-03-18 |
| | | */ |
| | | @Data |
| | | @ExcelIgnoreUnannotated |
| | | @AutoMapper(target = WfFormDefinition.class) |
| | | public class WfFormDefinitionVo implements Serializable { |
| | | @AutoMapper(target = WfDefinitionConfig.class) |
| | | public class WfDefinitionConfigVo implements Serializable { |
| | | |
| | | @Serial |
| | | private static final long serialVersionUID = 1L; |
| | |
| | | private Long id; |
| | | |
| | | /** |
| | | * 璺敱鍦板潃 |
| | | * 琛ㄥ崟ID |
| | | */ |
| | | @ExcelProperty(value = "璺敱鍦板潃") |
| | | private String path; |
| | | @ExcelProperty(value = "琛ㄥ崟ID") |
| | | private Long formId; |
| | | |
| | | /** |
| | | * 娴佺▼瀹氫箟ID |
| | |
| | | @ExcelProperty(value = "澶囨敞") |
| | | private String remark; |
| | | |
| | | /** |
| | | * 琛ㄥ崟绠$悊 |
| | | */ |
| | | private WfFormManageVo wfFormManageVo; |
| | | |
| | | |
| | | } |