Subversion Repositories bacoAlunos

Rev

Rev 1927 | Details | Compare with Previous | Last modification | View Log | RSS feed

Rev Author Line No. Line
1312 jmachado 1
package pt.estgp.estgweb.domain;
1974 grupo5 2
// Generated 29/jan/2018 12:25:13 by Hibernate Tools 3.2.0.b9
1312 jmachado 3
 
4
 
5
import java.util.Date;
6
import java.util.HashSet;
7
import java.util.Set;
8
 
9
/**
10
 * UrlStatMonth generated by hbm2java
11
 */
12
public abstract class UrlStatMonth extends pt.estgp.estgweb.domain.DomainObject implements java.io.1.5.0/docs/api/java/io/Serializable.html">Serializable {
13
 
14
 
15
     private UrlStatMonthId id;
16
     private 5+0%2Fdocs%2Fapi+Date">Date updateDate;
17
     private 5+0%2Fdocs%2Fapi+Date">Date saveDate;
18
     private 5+0%2Fdocs%2Fapi+Date">Date date;
19
     private 1.5.0/docs/api/java/lang/Integer.html">Integer totalClicks;
20
     private Set<UrlStatDay> days = new HashSet<UrlStatDay>(0);
21
 
22
    public UrlStatMonth() {
23
    }
24
 
25
 
26
    public UrlStatMonth(UrlStatMonthId id) {
27
        this.id = id;
28
    }
29
 
30
    public UrlStatMonthId getId() {
31
        return this.id;
32
    }
33
 
34
    public void setId(UrlStatMonthId id) {
35
        this.id = id;
36
    }
37
    public 5+0%2Fdocs%2Fapi+Date">Date getUpdateDate() {
38
        return this.updateDate;
39
    }
40
 
41
    public void setUpdateDate(5+0%2Fdocs%2Fapi+Date">Date updateDate) {
42
        this.updateDate = updateDate;
43
    }
44
    public 5+0%2Fdocs%2Fapi+Date">Date getSaveDate() {
45
        return this.saveDate;
46
    }
47
 
48
    public void setSaveDate(5+0%2Fdocs%2Fapi+Date">Date saveDate) {
49
        this.saveDate = saveDate;
50
    }
51
    public 5+0%2Fdocs%2Fapi+Date">Date getDate() {
52
        return this.date;
53
    }
54
 
55
    public void setDate(5+0%2Fdocs%2Fapi+Date">Date date) {
56
        this.date = date;
57
    }
58
    public 1.5.0/docs/api/java/lang/Integer.html">Integer getTotalClicks() {
59
        return this.totalClicks;
60
    }
61
 
62
    public void setTotalClicks(1.5.0/docs/api/java/lang/Integer.html">Integer totalClicks) {
63
        this.totalClicks = totalClicks;
64
    }
65
    public Set<UrlStatDay> getDays() {
66
        return this.days;
67
    }
68
 
69
    public void setDays(Set<UrlStatDay> days) {
70
        this.days = days;
71
    }
72
 
73
 
74
 
75
 
76
}
77
 
78