xin
2025-06-03 51df6e262c2d625e700a8194cbe0ec1e40b80843
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
package com.oying.domain;
 
import com.oying.base.BaseEntity;
import cn.hutool.core.bean.BeanUtil;
import io.swagger.annotations.ApiModelProperty;
import cn.hutool.core.bean.copier.CopyOptions;
import java.io.Serializable;
import com.baomidou.mybatisplus.annotation.IdType;
import com.baomidou.mybatisplus.annotation.TableId;
import com.baomidou.mybatisplus.annotation.TableName;
import lombok.Getter;
import lombok.Setter;
 
/**
* @description /
* @author lixin
* @date 2025-06-03
**/
@Getter
@Setter
@TableName("tool_bucket_storage")
public class BucketStorage extends BaseEntity implements Serializable {
 
    @TableId(value = "bucket_id", type = IdType.AUTO)
    @ApiModelProperty(value = "主键")
    private Long bucketId;
 
    @ApiModelProperty(value = "文件真实的名称")
    private String realName;
 
    @ApiModelProperty(value = "文件名")
    private String name;
 
    @ApiModelProperty(value = "后缀")
    private String suffix;
 
    @ApiModelProperty(value = "路径")
    private String path;
 
    @ApiModelProperty(value = "类型")
    private String type;
 
    @ApiModelProperty(value = "大小")
    private String size;
 
    public void copy(BucketStorage source){
        BeanUtil.copyProperties(source,this, CopyOptions.create().setIgnoreNullValue(true));
    }
 
    public BucketStorage(String realName,String name, String suffix, String path, String type, String size) {
        this.realName = realName;
        this.name = name;
        this.suffix = suffix;
        this.path = path;
        this.type = type;
        this.size = size;
    }
}