1
13693261870
2024-09-18 19df007763d19dd6fa16ac44048e1dbf368186db
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
package com.se.simu.domain.dto;
 
/**
 * GEDB文件实体类
 *
 * @author WWW
 * @date 2024-09-14
 */
public class GeFile {
    String name;
 
    Long size;
 
    String type;
 
    public String getName() {
        return name;
    }
 
    public void setName(String name) {
        this.name = name;
    }
 
    public Long getSize() {
        return size;
    }
 
    public void setSize(Long size) {
        this.size = size;
    }
 
    public String getType() {
        return type;
    }
 
    public void setType(String type) {
        this.type = type;
    }
}