yangys
2025-08-14 33e6270d2d3a40591e58d45fd8435d2f3eaf66b2
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
package org.springblade.mdm.flow.vo;
 
import io.swagger.v3.oas.annotations.media.Schema;
import lombok.Getter;
import lombok.Setter;
import org.springframework.web.multipart.MultipartFile;
 
/**
 * 流程中NC程序上传VO
 */
@Setter
@Getter
public class ProgramUploadVO {
    @Schema(description = "流程实例id")
    private String processInstanceId;
    @Schema(description = "文件")
    private MultipartFile file;
 
    @Schema(description = "文件类型(program/other)")
    private String fileType;
}