-
Notifications
You must be signed in to change notification settings - Fork 13
Expand file tree
/
Copy pathRevenue.java
More file actions
71 lines (50 loc) · 1.27 KB
/
Revenue.java
File metadata and controls
71 lines (50 loc) · 1.27 KB
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
package com.codejam.demo.pojo;
import javax.persistence.*;
@Entity
@Table(name = "REVENUE")
public class Revenue {
@Id
@GeneratedValue(strategy = GenerationType.IDENTITY)
private Integer id;
@Column
private Integer idol_personal_info_id;
@Column
private String monthly_rate;
@Column
private String date_time;
public Revenue() {
super();
// TODO Auto-generated constructor stub
}
public Revenue(Integer id, Integer idol_personal_info_id, String monthly_rate, String date_time) {
super();
this.id = id;
this.idol_personal_info_id = idol_personal_info_id;
this.monthly_rate = monthly_rate;
this.date_time = date_time;
}
public Integer getId() {
return id;
}
public void setId(Integer id) {
this.id = id;
}
public Integer getIdol_personal_info_id() {
return idol_personal_info_id;
}
public void setIdol_personal_info_id(Integer idol_personal_info_id) {
this.idol_personal_info_id = idol_personal_info_id;
}
public String getMonthly_rate() {
return monthly_rate;
}
public void setMonthly_rate(String monthly_rate) {
this.monthly_rate = monthly_rate;
}
public String getDate_time() {
return date_time;
}
public void setDate_time(String date_time) {
this.date_time = date_time;
}
}