-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathFilm_Category.java
More file actions
39 lines (33 loc) · 978 Bytes
/
Film_Category.java
File metadata and controls
39 lines (33 loc) · 978 Bytes
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
//
// JDX (version: 05.08) reverse engineered class
// JDX is a product of Software Tree, LLC.
//
// DBURL=jdbc:mysql://localhost:3306/sakila?useSSL=false, Database=MySQL, Version: 8.0.45
// Date: Wed Mar 25 17:54:08 PDT 2026
//
package com.softwaretree.jdxmysqlsakilaexample.reversed.model;
public class Film_Category {
private java.sql.Timestamp last_update;
private short film_id;
private short category_id;
public void setLast_update (java.sql.Timestamp p_last_update) {
last_update = p_last_update;
}
public java.sql.Timestamp getLast_update() {
return last_update;
}
public void setFilm_id (short p_film_id) {
film_id = p_film_id;
}
public short getFilm_id() {
return film_id;
}
public void setCategory_id (short p_category_id) {
category_id = p_category_id;
}
public short getCategory_id() {
return category_id;
}
public Film_Category() {
}
}