办学质量监测教学评价系统
ageer
2024-01-16 1f7f97e86a79ee4f1515d753e84a1e20a3ec41fb
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
72
package com.xmzs.system.domain.vo;
 
import com.xmzs.common.translation.annotation.Translation;
import com.xmzs.common.translation.constant.TransConstant;
import com.xmzs.system.domain.SysOss;
import io.github.linpeilie.annotations.AutoMapper;
import lombok.Data;
 
import java.io.Serial;
import java.io.Serializable;
import java.util.Date;
 
/**
 * OSS对象存储视图对象 sys_oss
 *
 * @author Lion Li
 */
@Data
@AutoMapper(target = SysOss.class)
public class SysOssVo implements Serializable {
 
    @Serial
    private static final long serialVersionUID = 1L;
 
    /**
     * 对象存储主键
     */
    private Long ossId;
 
    /**
     * 文件名
     */
    private String fileName;
 
    /**
     * 原名
     */
    private String originalName;
 
    /**
     * 文件后缀名
     */
    private String fileSuffix;
 
    /**
     * URL地址
     */
    private String url;
 
    /**
     * 创建时间
     */
    private Date createTime;
 
    /**
     * 上传人
     */
    private Long createBy;
 
    /**
     * 上传人名称
     */
    @Translation(type = TransConstant.USER_ID_TO_NAME, mapper = "createBy")
    private String createByName;
 
    /**
     * 服务商
     */
    private String service;
 
 
}