zhuguifei
2025-04-28 442928123f63ee497d766f9a7a14f0a6ee067e25
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
package org.jeecg.modules.doc.entity;
 
import java.io.Serializable;
import java.io.UnsupportedEncodingException;
import java.util.Date;
import java.math.BigDecimal;
import com.baomidou.mybatisplus.annotation.IdType;
import com.baomidou.mybatisplus.annotation.TableId;
import com.baomidou.mybatisplus.annotation.TableName;
import lombok.Data;
import com.fasterxml.jackson.annotation.JsonFormat;
import org.springframework.format.annotation.DateTimeFormat;
import org.jeecgframework.poi.excel.annotation.Excel;
import org.jeecg.common.aspect.annotation.Dict;
import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
import lombok.EqualsAndHashCode;
import lombok.experimental.Accessors;
 
/**
 * @Description: upload_task_detail
 * @Author: jeecg-boot
 * @Date:   2022-07-13
 * @Version: V1.0
 */
@Data
@TableName("upload_task_detail")
@Accessors(chain = true)
@EqualsAndHashCode(callSuper = false)
@ApiModel(value="upload_task_detail对象", description="upload_task_detail")
public class UploadTaskDetail implements Serializable {
    private static final long serialVersionUID = 1L;
 
    /**uploadTaskDetailId*/
    @TableId
    @Excel(name = "uploadTaskDetailId", width = 15)
    @ApiModelProperty(value = "uploadTaskDetailId")
    private Long uploadTaskDetailId;
    /**当前分片数*/
    @Excel(name = "当前分片数", width = 15)
    @ApiModelProperty(value = "当前分片数")
    private Integer chunkNumber;
    /**当前分片大小*/
    @Excel(name = "当前分片大小", width = 15)
    @ApiModelProperty(value = "当前分片大小")
    private Integer chunkSize;
    /**文件路径*/
    @Excel(name = "文件路径", width = 15)
    @ApiModelProperty(value = "文件路径")
    private String filePath;
    /**文件名称*/
    @Excel(name = "文件名称", width = 15)
    @ApiModelProperty(value = "文件名称")
    private String fileName;
    /**文件md5唯一标识*/
    @Excel(name = "文件md5唯一标识", width = 15)
    @ApiModelProperty(value = "文件md5唯一标识")
    private String identifier;
    /**文件相对路径*/
    @Excel(name = "文件相对路径", width = 15)
    @ApiModelProperty(value = "文件相对路径")
    private String relativePath;
    /**文件总分片数*/
    @Excel(name = "文件总分片数", width = 15)
    @ApiModelProperty(value = "文件总分片数")
    private Integer totalChunks;
    /**文件总大小*/
    @Excel(name = "文件总大小", width = 15)
    @ApiModelProperty(value = "文件总大小")
    private Integer totalSize;
}