You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
|
|
|
package com.docus.bgts.entity;
|
|
|
|
|
|
|
|
|
|
import io.swagger.annotations.ApiModelProperty;
|
|
|
|
|
import lombok.Data;
|
|
|
|
|
|
|
|
|
|
@Data
|
|
|
|
|
public class ReportDownScanFileDto {
|
|
|
|
|
@ApiModelProperty(value = "文件标题")
|
|
|
|
|
private String filetitle;
|
|
|
|
|
@ApiModelProperty(value = "采集类型(文件来源 1:采集器;2:扫描生产软件)")
|
|
|
|
|
private int filesource;
|
|
|
|
|
@ApiModelProperty(value = "下载类型(1:服务器本地;2:ftp服务器;3:共享文件夹)")
|
|
|
|
|
private int filestoragetype;
|
|
|
|
|
@ApiModelProperty(value = "下载地址")
|
|
|
|
|
private String downurl;
|
|
|
|
|
@ApiModelProperty(value = "档案信息")
|
|
|
|
|
private String recordid;
|
|
|
|
|
@ApiModelProperty("采集流水号")
|
|
|
|
|
private String serialnum;
|
|
|
|
|
@ApiModelProperty(value = "任务id")
|
|
|
|
|
private Long taskid;
|
|
|
|
|
@ApiModelProperty("文件类型(1:url,2:base64)")
|
|
|
|
|
private Integer filetype = 1;
|
|
|
|
|
|
|
|
|
|
}
|