MCPcopy Create free account
hub / github.com/Java-Techie-jt/file-storage / FileData

Class FileData

src/main/java/com/javatechie/entity/FileData.java:9–24  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

7
8import javax.persistence.*;
9@Entity
10@Table(name = "FILE_DATA")
11@Data
12@AllArgsConstructor
13@NoArgsConstructor
14@Builder
15public class FileData {
16
17 @Id
18 @GeneratedValue(strategy = GenerationType.IDENTITY)
19 private Long id;
20
21 private String name;
22 private String type;
23 private String filePath;
24}

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected